diff --git a/.woodpecker/.code_standards_check.yml b/.woodpecker/.code_standards_check.yml index 30938f15fe..e6b02c3d7d 100644 --- a/.woodpecker/.code_standards_check.yml +++ b/.woodpecker/.code_standards_check.yml @@ -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} diff --git a/.woodpecker/.continuous-deployment.yml b/.woodpecker/.continuous-deployment.yml index dde6af8ff3..fbcbc0576c 100644 --- a/.woodpecker/.continuous-deployment.yml +++ b/.woodpecker/.continuous-deployment.yml @@ -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 diff --git a/.woodpecker/.database_checks.yml b/.woodpecker/.database_checks.yml index a081fc676d..ea768bf132 100644 --- a/.woodpecker/.database_checks.yml +++ b/.woodpecker/.database_checks.yml @@ -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: diff --git a/.woodpecker/.license_check.yml b/.woodpecker/.license_check.yml index 1417fb9a9c..86174e51fd 100644 --- a/.woodpecker/.license_check.yml +++ b/.woodpecker/.license_check.yml @@ -2,6 +2,11 @@ # # SPDX-License-Identifier: CC0-1.0 +when: + branch: + exclude: [ stable ] + event: [ pull_request, push ] + steps: check: image: fsfe/reuse:latest diff --git a/.woodpecker/.messages.po_check.yml b/.woodpecker/.messages.po_check.yml index 8df12b93ce..2f9ae94044 100644 --- a/.woodpecker/.messages.po_check.yml +++ b/.woodpecker/.messages.po_check.yml @@ -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 ] diff --git a/.woodpecker/.phpunit.yml b/.woodpecker/.phpunit.yml index 1f776fc01b..04c66bcb97 100644 --- a/.woodpecker/.phpunit.yml +++ b/.woodpecker/.phpunit.yml @@ -19,6 +19,11 @@ matrix: labels: location: opensocial +when: + branch: + exclude: [ stable ] + event: [ pull_request, push ] + steps: php-lint: image: php:${PHP_MAJOR_VERSION} diff --git a/.woodpecker/.releaser.yml b/.woodpecker/.releaser.yml index 794ba5fbd3..ad779e399b 100644 --- a/.woodpecker/.releaser.yml +++ b/.woodpecker/.releaser.yml @@ -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 diff --git a/CHANGELOG b/CHANGELOG index c6d00f5183..0b955bb1a0 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 diff --git a/CREDITS.txt b/CREDITS.txt index be42cd8606..db97b238f9 100644 --- a/CREDITS.txt +++ b/CREDITS.txt @@ -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 Михаил Олексій Замковий 朱陈锬 diff --git a/VERSION b/VERSION index 36a4cb0dc4..2d4bb52626 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2024.12-dev +2025.02-dev diff --git a/Vagrantfile b/Vagrantfile index 1687351231..60117e9cf6 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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 diff --git a/bin/dev/vagrant_provision.sh b/bin/dev/vagrant_provision.sh index bf1d02f5ad..46459fd869 100755 --- a/bin/dev/vagrant_provision.sh +++ b/bin/dev/vagrant_provision.sh @@ -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" diff --git a/database.sql b/database.sql index d7af7f95a1..f496269255 100644 --- a/database.sql +++ b/database.sql @@ -1,5 +1,5 @@ -- ------------------------------------------ --- Friendica 2024.12-dev (Yellow Archangel) +-- Friendica 2025.02-dev (Interrupted Fern) -- DB_UPDATE_VERSION 1576 -- ------------------------------------------ diff --git a/src/App.php b/src/App.php index c24215e37d..9cacfaf6cf 100644 --- a/src/App.php +++ b/src/App.php @@ -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 { diff --git a/src/Model/User.php b/src/Model/User.php index 3d107ca79c..f837146c8b 100644 --- a/src/Model/User.php +++ b/src/Model/User.php @@ -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); } diff --git a/src/Module/Search/Index.php b/src/Module/Search/Index.php index a42f9ddaff..122b6c569b 100644 --- a/src/Module/Search/Index.php +++ b/src/Module/Search/Index.php @@ -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; } diff --git a/src/Protocol/ATProtocol.php b/src/Protocol/ATProtocol.php index 064bb589f4..cc17d9e93e 100644 --- a/src/Protocol/ATProtocol.php +++ b/src/Protocol/ATProtocol.php @@ -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)) { diff --git a/src/Security/Authentication.php b/src/Security/Authentication.php index acd3e6d38d..2f383cfefb 100644 --- a/src/Security/Authentication.php +++ b/src/Security/Authentication.php @@ -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(); diff --git a/src/Security/OAuth.php b/src/Security/OAuth.php index 9a50a438d7..d169cb7eab 100644 --- a/src/Security/OAuth.php +++ b/src/Security/OAuth.php @@ -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]); } diff --git a/src/Util/JsonLD.php b/src/Util/JsonLD.php index abbf02fb91..fc91bcd0b6 100644 --- a/src/Util/JsonLD.php +++ b/src/Util/JsonLD.php @@ -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. diff --git a/view/lang/C/messages.po b/view/lang/C/messages.po index 144b1c7b33..4a8a0a1b83 100644 --- a/view/lang/C/messages.po +++ b/view/lang/C/messages.po @@ -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 \n" "Language-Team: LANGUAGE \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 Settings 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 " likes this" msgid_plural " like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:268 +#: src/Content/Conversation.php:265 #, php-format msgid " doesn't like this" msgid_plural " don't like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:271 +#: src/Content/Conversation.php:268 #, php-format msgid " attends" msgid_plural " attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:274 +#: src/Content/Conversation.php:271 #, php-format msgid " doesn't attend" msgid_plural " don't attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:277 +#: src/Content/Conversation.php:274 #, php-format msgid " attends maybe" msgid_plural " attend maybe" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:280 +#: src/Content/Conversation.php:277 #, php-format msgid " reshared this" msgid_plural " reshared this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:326 +#: src/Content/Conversation.php:323 msgid "Visible to everybody" 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 "%2$s %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 here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
" 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 here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
" 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 here for more information.
" 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 .htconfig.php. See the Config help page 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 config/local.ini.php. See the Config help page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:104 +#: src/Module/Admin/Summary.php:106 #, php-format msgid "%s is not reachable on your system. This is a severe configuration issue that prevents server to server communication. See the installation page 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 %s." 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 %s 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 Terms of Service 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 Friendi.ca 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 "

What next

" 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 registration page 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 Theme Customization settings." 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 "" "

The server domain pattern syntax is case-insensitive shell wildcard, comprising the following special characters:

\n" "" 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 "

This file can be downloaded from the /friendica path of any Friendica server.

" 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 /friendica 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 debug.store_source config key is set in config/local.config.php 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 %s Cancel" 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 \"nickname@%s\"." 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:
login: %s
password: %s

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 "

You can enter one of your one-time recovery codes in case you lost access to your mobile device.

" msgstr "" -#: src/Module/Security/TwoFactor/Recovery.php:89 +#: src/Module/Security/TwoFactor/Recovery.php:87 #, php-format msgid "Don’t have your phone? Enter a two-factor recovery code" 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 "

If you choose to trust this browser, you will not be asked for a verification code the next time you sign in.

" 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 local directory. 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. %s)." 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 '%s' 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 "" diff --git a/view/lang/ar/messages.po b/view/lang/ar/messages.po index 9c4d0a6b4c..d086f76d7c 100644 --- a/view/lang/ar/messages.po +++ b/view/lang/ar/messages.po @@ -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 , 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 Settings page after " "successful login." msgstr "يمكنك تغيير كلمة المرور من الإعدادات بعد ولوجك بنجاح." -#: 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 "احذف الصورة" -#: mod/photos.php:958 +#: mod/photos.php:956 msgid "Use as profile photo" msgstr "استخدامها كصورة الملف الشخصي" -#: mod/photos.php:965 +#: mod/photos.php:963 msgid "Private Photo" msgstr "صور خاصة" -#: mod/photos.php:971 +#: mod/photos.php:969 msgid "View Full Size" msgstr "اعرض بالحجم الكامل" -#: mod/photos.php:1024 +#: mod/photos.php:1022 msgid "Tags: " msgstr "الوسوم: " -#: mod/photos.php:1027 +#: mod/photos.php:1025 msgid "[Select tags to remove]" msgstr "[اختر وسومًا لإزالتها]" -#: mod/photos.php:1042 +#: mod/photos.php:1040 msgid "New album name" msgstr "اسم الألبوم الجديد" -#: mod/photos.php:1043 +#: mod/photos.php:1041 msgid "Caption" msgstr "وصف الصورة" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "Add a Tag" msgstr "أضف وسمًا" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "مثال: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1045 +#: mod/photos.php:1043 msgid "Do not rotate" msgstr "لا تُدر" -#: mod/photos.php:1046 +#: mod/photos.php:1044 msgid "Rotate CW (right)" msgstr "أدر باتجاه عقارب الساعة" -#: mod/photos.php:1047 +#: mod/photos.php:1045 msgid "Rotate CCW (left)" msgstr "أدر عكس اتجاه عقارب الساعة" -#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: mod/photos.php:1091 mod/photos.php:1147 mod/photos.php:1227 #: src/Module/Contact.php:600 src/Module/Item/Compose.php:184 -#: src/Object/Post.php:1142 +#: src/Object/Post.php:1143 msgid "This is you" msgstr "هذا أنت" -#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 -#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:598 -#: src/Object/Post.php:1144 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:599 +#: src/Object/Post.php:1145 msgid "Comment" msgstr "علِّق" -#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 -#: src/Content/Conversation.php:401 src/Module/Calendar/Event/Form.php:234 +#: 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 -#: src/Object/Post.php:1158 +#: src/Object/Post.php:1159 msgid "Preview" msgstr "معاينة" -#: mod/photos.php:1098 src/Content/Conversation.php:355 -#: src/Module/Post/Edit.php:121 src/Object/Post.php:1146 +#: mod/photos.php:1096 src/Content/Conversation.php:357 +#: src/Module/Post/Edit.php:121 src/Object/Post.php:1147 msgid "Loading..." msgstr "يحمل..." -#: mod/photos.php:1190 src/Content/Conversation.php:1485 -#: src/Object/Post.php:260 +#: mod/photos.php:1188 src/Content/Conversation.php:1487 +#: src/Object/Post.php:261 msgid "Select" msgstr "اختر" -#: mod/photos.php:1191 src/Content/Conversation.php:1486 -#: 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:233 +#: 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 +#: src/Module/Settings/Connectors.php:226 #: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "احذف" -#: mod/photos.php:1252 src/Object/Post.php:426 +#: mod/photos.php:1250 src/Object/Post.php:427 msgid "Like" msgstr "أعجبني" -#: mod/photos.php:1253 src/Object/Post.php:426 +#: mod/photos.php:1251 src/Object/Post.php:427 msgid "I like this (toggle)" msgstr "أعجبني (بدِّل)" -#: mod/photos.php:1254 src/Object/Post.php:427 +#: mod/photos.php:1252 src/Object/Post.php:428 msgid "Dislike" msgstr "لم يعجبني" -#: mod/photos.php:1256 src/Object/Post.php:427 +#: mod/photos.php:1254 src/Object/Post.php:428 msgid "I don't like this (toggle)" msgstr "لم يعجبني (بدِّل)" -#: mod/photos.php:1278 +#: mod/photos.php:1276 msgid "Map" msgstr "خريطة" -#: src/App.php:467 +#: src/App.php:255 msgid "Apologies but the website is unavailable at the moment." msgstr "نعتذر هذا الموقع غير متاح حاليا." -#: src/App/Page.php:237 +#: src/App/Page.php:241 msgid "Delete this item?" msgstr "أتريد حذف العنصر؟" -#: src/App/Page.php:238 +#: src/App/Page.php:242 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:239 +#: src/App/Page.php:243 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:240 +#: src/App/Page.php:244 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:241 +#: src/App/Page.php:245 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:242 src/Module/Settings/Server/Action.php:47 +#: src/App/Page.php:246 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:244 +#: src/App/Page.php:248 msgid "Like not successful" msgstr "" -#: src/App/Page.php:245 +#: src/App/Page.php:249 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:246 +#: src/App/Page.php:250 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:247 +#: src/App/Page.php:251 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:248 +#: src/App/Page.php:252 msgid "Backend error" msgstr "" -#: src/App/Page.php:249 +#: src/App/Page.php:253 msgid "Network error" msgstr "" -#: src/App/Page.php:252 +#: src/App/Page.php:256 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:257 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:254 +#: src/App/Page.php:258 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:255 +#: src/App/Page.php:259 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:256 +#: src/App/Page.php:260 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:261 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:262 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:263 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:264 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:265 msgid "Remove file" msgstr "" -#: src/App/Page.php:262 +#: src/App/Page.php:266 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:346 +#: src/App/Page.php:350 msgid "toggle mobile" msgstr "بدّل واجهة الهاتف" @@ -804,7 +806,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:181 src/Module/Contact.php:395 +#: src/Content/Widget.php:254 src/Core/ACL.php:182 src/Module/Contact.php:395 #: src/Module/Privacy/PermissionTooltip.php:150 #: src/Module/Privacy/PermissionTooltip.php:172 #: src/Module/Settings/Channels.php:146 @@ -846,7 +848,7 @@ msgstr "تعذر العثور على مُدخل غير مؤرشف للمتراس msgid "The contact entries have been archived" msgstr "أُرشفت مُدخلات المتراسل" -#: src/Console/ClearAvatarCache.php:73 +#: src/Console/ClearAvatarCache.php:74 msgid "" "The avatar cache needs to be disabled in local.config.php to use this " "command." @@ -932,22 +934,22 @@ msgstr "" msgid "no resource in photo %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:123 +#: src/Console/MoveToAvatarCache.php:127 #, php-format msgid "no photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:132 +#: src/Console/MoveToAvatarCache.php:136 #, php-format msgid "no image data for photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:141 +#: src/Console/MoveToAvatarCache.php:145 #, php-format msgid "invalid image for id %s" msgstr "الضورة ذات المعرف %s غير صالحة" -#: src/Console/MoveToAvatarCache.php:154 +#: src/Console/MoveToAvatarCache.php:158 #, php-format msgid "Quit on invalid photo %s" msgstr "" @@ -977,11 +979,14 @@ msgstr "تمت كل تحديثات المعلقة للمشاركة." msgid "Enter user nickname: " msgstr "أدخل لقب المستخدم: " -#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Console/User.php:168 src/Model/User.php:830 #: src/Module/Api/Twitter/ContactEndpoint.php:62 -#: 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/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/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "لم يُعثر على المستخدم" @@ -991,12 +996,12 @@ msgid "Enter new password: " msgstr "أدخل كلمة مرور جديدة: " #: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 -#: src/Module/Settings/Account.php:59 +#: src/Module/Settings/Account.php:57 msgid "Password update failed. Please try again." msgstr "فشل تحديث كلمة المرور. من فضلك أعد المحاولة." #: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 -#: src/Module/Settings/Account.php:62 +#: src/Module/Settings/Account.php:60 msgid "Password changed." msgstr "غُيّرت كلمة المرور." @@ -1077,86 +1082,86 @@ msgstr "أسبوعيًا" msgid "Monthly" msgstr "شهرياً" -#: src/Content/ContactSelector.php:118 +#: src/Content/ContactSelector.php:117 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:119 +#: src/Content/ContactSelector.php:118 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:120 +#: src/Content/ContactSelector.php:119 msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:121 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Content/ContactSelector.php:120 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:58 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "البريد الإلكتروني" -#: src/Content/ContactSelector.php:122 src/Module/Debug/Babel.php:273 +#: src/Content/ContactSelector.php:121 src/Module/Debug/Babel.php:273 msgid "Diaspora" msgstr "دياسبورا" -#: src/Content/ContactSelector.php:123 +#: src/Content/ContactSelector.php:122 msgid "Zot!" msgstr "زوت!" -#: src/Content/ContactSelector.php:124 +#: src/Content/ContactSelector.php:123 msgid "LinkedIn" msgstr "لينكد إن" -#: src/Content/ContactSelector.php:125 +#: src/Content/ContactSelector.php:124 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:125 msgid "MySpace" msgstr "ماي سبيس" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:126 msgid "Google+" msgstr "غوغل+" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:127 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:129 +#: src/Content/ContactSelector.php:128 msgid "Twitter" msgstr "تويتر" -#: src/Content/ContactSelector.php:130 +#: src/Content/ContactSelector.php:129 msgid "Discourse" msgstr "دسکورس" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:130 msgid "Diaspora Connector" msgstr "موصل دياسبورا" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:131 msgid "GNU Social Connector" msgstr "موصل غنو سوشل" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:132 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:133 msgid "pnut" msgstr "" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:134 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:135 msgid "Bluesky" msgstr "" @@ -1165,16 +1170,16 @@ msgstr "" msgid "%s (via %s)" msgstr "%s (عبر %s)" -#: src/Content/Conversation.php:213 +#: src/Content/Conversation.php:215 msgid "and" msgstr "و" -#: src/Content/Conversation.php:216 +#: src/Content/Conversation.php:218 #, php-format msgid "and %d other people" msgstr "و %d أشخاص آخرين" -#: src/Content/Conversation.php:222 +#: src/Content/Conversation.php:224 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." @@ -1185,7 +1190,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Content/Conversation.php:224 +#: src/Content/Conversation.php:226 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." @@ -1196,7 +1201,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:228 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." @@ -1207,7 +1212,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:230 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." @@ -1218,7 +1223,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Content/Conversation.php:230 +#: src/Content/Conversation.php:232 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." @@ -1229,7 +1234,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Content/Conversation.php:232 +#: src/Content/Conversation.php:234 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." @@ -1240,7 +1245,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Content/Conversation.php:263 +#: src/Content/Conversation.php:265 #, php-format msgid " likes this" msgid_plural " like this" @@ -1251,7 +1256,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Content/Conversation.php:266 +#: src/Content/Conversation.php:268 #, php-format msgid " doesn't like this" msgid_plural " don't like this" @@ -1262,7 +1267,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Content/Conversation.php:269 +#: src/Content/Conversation.php:271 #, php-format msgid " attends" msgid_plural " attend" @@ -1273,7 +1278,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Content/Conversation.php:272 +#: src/Content/Conversation.php:274 #, php-format msgid " doesn't attend" msgid_plural " don't attend" @@ -1284,7 +1289,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Content/Conversation.php:275 +#: src/Content/Conversation.php:277 #, php-format msgid " attends maybe" msgid_plural " attend maybe" @@ -1295,7 +1300,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Content/Conversation.php:278 +#: src/Content/Conversation.php:280 #, php-format msgid " reshared this" msgid_plural " reshared this" @@ -1306,281 +1311,281 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Content/Conversation.php:324 +#: src/Content/Conversation.php:326 msgid "Visible to everybody" msgstr "مرئي للجميع" -#: src/Content/Conversation.php:325 src/Module/Item/Compose.php:196 -#: src/Object/Post.php:1157 +#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196 +#: src/Object/Post.php:1158 msgid "Please enter a image/video/audio/webpage URL:" msgstr "رجاء أدخل رابط صورة/فيديو/صوت/صفحة ويب:" -#: src/Content/Conversation.php:326 +#: src/Content/Conversation.php:328 msgid "Tag term:" msgstr "مصطلح الوسم:" -#: src/Content/Conversation.php:327 src/Module/Filer/SaveTag.php:59 +#: src/Content/Conversation.php:329 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "احفظ في مجلد:" -#: src/Content/Conversation.php:328 +#: src/Content/Conversation.php:330 msgid "Where are you right now?" msgstr "أين أنت حاليا؟" -#: src/Content/Conversation.php:329 +#: src/Content/Conversation.php:331 msgid "Delete item(s)?" msgstr "أتريد حذف العناصر؟" -#: src/Content/Conversation.php:341 src/Module/Item/Compose.php:171 +#: src/Content/Conversation.php:343 src/Module/Item/Compose.php:171 msgid "Created at" msgstr "أُنشئ في" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:353 msgid "New Post" msgstr "مشاركة جديدة" -#: src/Content/Conversation.php:354 +#: src/Content/Conversation.php:356 msgid "Share" msgstr "شارك" -#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:123 +#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:123 msgid "upload photo" msgstr "ارفع صورة" -#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:124 +#: src/Content/Conversation.php:360 src/Module/Post/Edit.php:124 msgid "Attach file" msgstr "أرفق ملفًا" -#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:125 +#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:125 msgid "attach file" msgstr "أرفق ملفًا" -#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:186 -#: src/Module/Post/Edit.php:162 src/Object/Post.php:1147 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1148 msgid "Bold" msgstr "عريض" -#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:187 -#: src/Module/Post/Edit.php:163 src/Object/Post.php:1148 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1149 msgid "Italic" msgstr "مائل" -#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:188 -#: src/Module/Post/Edit.php:164 src/Object/Post.php:1149 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1150 msgid "Underline" msgstr "تحته خط" -#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:189 -#: src/Module/Post/Edit.php:165 src/Object/Post.php:1151 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:165 src/Object/Post.php:1152 msgid "Quote" msgstr "اقتبس" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:166 src/Object/Post.php:1152 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:166 src/Object/Post.php:1153 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:191 -#: src/Object/Post.php:1150 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Object/Post.php:1151 msgid "Content Warning" msgstr "" -#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:167 src/Object/Post.php:1153 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:167 src/Object/Post.php:1154 msgid "Code" msgstr "شفرة" -#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:193 -#: src/Object/Post.php:1154 +#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1155 msgid "Image" msgstr "صورة" -#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:168 src/Object/Post.php:1155 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:168 src/Object/Post.php:1156 msgid "Link" msgstr "رابط" -#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:195 -#: src/Module/Post/Edit.php:169 src/Object/Post.php:1156 +#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:169 src/Object/Post.php:1157 msgid "Link or Media" msgstr "رابط أو وسائط" -#: src/Content/Conversation.php:370 +#: src/Content/Conversation.php:372 msgid "Video" msgstr "فيديو" -#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:198 +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:198 #: src/Module/Post/Edit.php:132 msgid "Set your location" msgstr "عيّن موقعك" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:133 msgid "set location" msgstr "عين الموقع" -#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:134 msgid "Clear browser location" msgstr "امسح موقع المتصفح" -#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:135 +#: src/Content/Conversation.php:376 src/Module/Post/Edit.php:135 msgid "clear location" msgstr "امسح الموقع" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:203 +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:203 #: src/Module/Post/Edit.php:148 msgid "Set title" msgstr "عين العنوان" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:204 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 #: src/Module/Post/Edit.php:150 msgid "Categories (comma-separated list)" msgstr "الفئات (قائمة مفصولة بفاصلة)" -#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:220 +#: src/Content/Conversation.php:385 src/Module/Item/Compose.php:220 msgid "Scheduled at" msgstr "بُرمِج في" -#: src/Content/Conversation.php:388 src/Module/Post/Edit.php:137 +#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:137 msgid "Permission settings" msgstr "إعدادات الأذونات" -#: src/Content/Conversation.php:397 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:399 src/Module/Post/Edit.php:146 msgid "Public post" msgstr "مشاركة علنية" -#: src/Content/Conversation.php:411 src/Content/Widget/VCard.php:121 +#: 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 msgid "Message" msgstr "الرسالة" -#: src/Content/Conversation.php:412 src/Module/Post/Edit.php:173 +#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:173 #: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "المتصفح" -#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:176 +#: src/Content/Conversation.php:416 src/Module/Post/Edit.php:176 msgid "Open Compose page" msgstr "افتح صفحة الإنشاء" -#: src/Content/Conversation.php:581 +#: src/Content/Conversation.php:583 msgid "remove" msgstr "أزل" -#: src/Content/Conversation.php:585 +#: src/Content/Conversation.php:587 msgid "Delete Selected Items" msgstr "أزل العناصر المختارة" -#: src/Content/Conversation.php:713 src/Content/Conversation.php:716 -#: src/Content/Conversation.php:719 src/Content/Conversation.php:722 -#: src/Content/Conversation.php:725 +#: 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 #, php-format msgid "You had been addressed (%s)." msgstr "ذُكرت (%s)." -#: src/Content/Conversation.php:728 +#: src/Content/Conversation.php:730 #, php-format msgid "You are following %s." msgstr "تتابع %s." -#: src/Content/Conversation.php:733 +#: src/Content/Conversation.php:735 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:735 +#: src/Content/Conversation.php:737 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:755 +#: src/Content/Conversation.php:757 #, php-format msgid "%s reshared this." msgstr "أعاد %s نشره." -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 msgid "Reshared" msgstr "أُعيد نشره" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 #, php-format msgid "Reshared by %s <%s>" msgstr "أعاد نشره %s <%s>" -#: src/Content/Conversation.php:760 +#: src/Content/Conversation.php:762 #, php-format msgid "%s is participating in this thread." msgstr "%s مشترك في هذا النقاش." -#: src/Content/Conversation.php:763 +#: src/Content/Conversation.php:765 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:766 +#: src/Content/Conversation.php:768 msgid "Global post" msgstr "مشاركة علنية" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 msgid "Fetched" msgstr "جُلب" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 #, php-format msgid "Fetched because of %s <%s>" msgstr "جُلب بسبب %s <%s>" -#: src/Content/Conversation.php:775 +#: src/Content/Conversation.php:777 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:778 +#: src/Content/Conversation.php:780 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:781 +#: src/Content/Conversation.php:783 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:784 +#: src/Content/Conversation.php:786 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:787 +#: src/Content/Conversation.php:789 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1505 src/Object/Post.php:247 +#: src/Content/Conversation.php:1507 src/Object/Post.php:248 msgid "Pinned item" msgstr "عنصر مثبت" -#: src/Content/Conversation.php:1522 src/Object/Post.php:541 -#: src/Object/Post.php:542 +#: src/Content/Conversation.php:1524 src/Object/Post.php:542 +#: src/Object/Post.php:543 #, php-format msgid "View %s's profile @ %s" msgstr "اعرض ملف %s الشخصي @ %s" -#: src/Content/Conversation.php:1536 src/Object/Post.php:529 +#: src/Content/Conversation.php:1538 src/Object/Post.php:530 msgid "Categories:" msgstr "الفئات:" -#: src/Content/Conversation.php:1537 src/Object/Post.php:530 +#: src/Content/Conversation.php:1539 src/Object/Post.php:531 msgid "Filed under:" msgstr "مصنف كـ:" -#: src/Content/Conversation.php:1545 src/Object/Post.php:556 +#: src/Content/Conversation.php:1547 src/Object/Post.php:557 #, php-format msgid "%s from %s" msgstr "%s من %s" -#: src/Content/Conversation.php:1561 +#: src/Content/Conversation.php:1563 msgid "View in context" msgstr "اعرضه في السياق" @@ -1713,7 +1718,7 @@ msgstr "نشاطي" msgid "Posts that mention or involve you" msgstr "المشاركات التي تذكرك أو تتعلق بك" -#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:398 msgid "Starred" msgstr "المفضلة" @@ -1800,7 +1805,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:552 src/Model/User.php:1390 +#: src/Content/Widget.php:555 src/Model/User.php:1390 msgid "Groups" msgstr "" @@ -1808,7 +1813,7 @@ msgstr "" msgid "Display posts that have been distributed by the selected group." msgstr "" -#: src/Content/Feature.php:117 src/Content/Widget.php:521 +#: src/Content/Feature.php:117 src/Content/Widget.php:524 msgid "Archives" msgstr "الأرشيفات" @@ -1824,8 +1829,8 @@ msgstr "الموافيق" msgid "Display posts with the selected protocols." msgstr "" -#: src/Content/Feature.php:119 src/Content/Widget.php:558 -#: src/Module/Settings/Account.php:429 +#: src/Content/Feature.php:119 src/Content/Widget.php:561 +#: src/Module/Settings/Account.php:391 msgid "Account Types" msgstr "أنواع الحسابات" @@ -1833,7 +1838,7 @@ msgstr "أنواع الحسابات" msgid "Display posts done by accounts with the selected account type." msgstr "" -#: src/Content/Feature.php:120 src/Content/Widget.php:607 +#: 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 msgid "Channels" @@ -1859,7 +1864,7 @@ msgstr "المجلدات المحفوظة" msgid "Display a list of folders in which posts are stored." msgstr "" -#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:189 msgid "Own Contacts" msgstr "مشاركات متراسليك" @@ -1915,12 +1920,12 @@ msgstr "" msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:139 src/Content/Widget.php:527 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:530 msgid "show less" msgstr "اعرض أقلّ" #: src/Content/GroupManager.php:140 src/Content/Widget.php:425 -#: src/Content/Widget.php:528 +#: src/Content/Widget.php:531 msgid "show more" msgstr "اعرض المزيد" @@ -1928,66 +1933,66 @@ msgstr "اعرض المزيد" msgid "Create new group" msgstr "" -#: src/Content/Item.php:317 src/Model/Item.php:3273 +#: src/Content/Item.php:322 src/Model/Item.php:3281 msgid "event" msgstr "حدث" -#: src/Content/Item.php:320 src/Content/Item.php:330 +#: src/Content/Item.php:325 src/Content/Item.php:335 msgid "status" msgstr "حالة" -#: src/Content/Item.php:326 src/Model/Item.php:3275 +#: src/Content/Item.php:331 src/Model/Item.php:3283 #: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "صورة" -#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 +#: src/Content/Item.php:345 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s وسم %3$s %2$s بـ %4$s" -#: src/Content/Item.php:414 view/theme/frio/theme.php:253 +#: src/Content/Item.php:419 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "تابع المناقشة" -#: src/Content/Item.php:415 src/Model/Contact.php:1244 +#: src/Content/Item.php:420 src/Model/Contact.php:1245 msgid "View Status" msgstr "اعرض الحالة" -#: 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/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 msgid "View Profile" msgstr "اعرض الملف الشخصي" -#: src/Content/Item.php:417 src/Model/Contact.php:1246 +#: src/Content/Item.php:422 src/Model/Contact.php:1247 msgid "View Photos" msgstr "اعرض الصور" -#: src/Content/Item.php:418 src/Model/Contact.php:1213 +#: src/Content/Item.php:423 src/Model/Contact.php:1214 #: src/Model/Profile.php:446 msgid "Network Posts" msgstr "مشاركات الشبكة" -#: src/Content/Item.php:419 src/Model/Contact.php:1237 -#: src/Model/Contact.php:1248 +#: src/Content/Item.php:424 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1249 msgid "View Contact" msgstr "اعرض المتراسل" -#: src/Content/Item.php:420 src/Model/Contact.php:1249 +#: src/Content/Item.php:425 src/Model/Contact.php:1250 msgid "Send PM" msgstr "أرسل رسالة خاصة" -#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Content/Item.php:426 src/Module/Contact.php:449 #: src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:104 -#: src/Module/Moderation/Users/Active.php:123 -#: src/Module/Moderation/Users/Index.php:138 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Index.php:141 msgid "Block" msgstr "احجب" -#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Content/Item.php:427 src/Module/Contact.php:450 #: src/Module/Contact/Profile.php:532 #: src/Module/Notifications/Introductions.php:126 #: src/Module/Notifications/Introductions.php:199 @@ -1995,27 +2000,27 @@ msgstr "احجب" msgid "Ignore" msgstr "تجاهل" -#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Content/Item.php:428 src/Module/Contact.php:451 #: src/Module/Contact/Profile.php:540 msgid "Collapse" msgstr "" -#: src/Content/Item.php:424 src/Object/Post.php:288 +#: src/Content/Item.php:429 src/Object/Post.php:289 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 -#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 +#: src/Content/Item.php:433 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:503 msgid "Languages" msgstr "اللغات" -#: src/Content/Item.php:431 src/Object/Post.php:582 +#: src/Content/Item.php:436 src/Object/Post.php:583 msgid "Search Text" msgstr "" -#: src/Content/Item.php:436 src/Content/Widget.php:66 -#: src/Model/Contact.php:1238 src/Model/Contact.php:1250 +#: src/Content/Item.php:441 src/Content/Widget.php:66 +#: src/Model/Contact.php:1239 src/Model/Contact.php:1251 #: src/Module/Contact/Follow.php:152 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "اقترن\\تابع" @@ -2028,7 +2033,7 @@ msgstr "" msgid "Nothing new here" msgstr "لا جديد هنا" -#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:64 msgid "Go back" msgstr "عُد" @@ -2242,7 +2247,7 @@ msgstr "التنبيهات" msgid "See all notifications" msgstr "الاطّلاع على جميع التنبيهات" -#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:226 msgid "Mark as seen" msgstr "علّمه كمُشاهَد" @@ -2270,8 +2275,8 @@ msgstr "الحسابات" msgid "Manage other pages" msgstr "إدارة الصفحات الأخرى" -#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 -#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:170 +#: 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/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "الإعدادات" @@ -2299,10 +2304,10 @@ msgstr "إعداد الموقع وتكوينه" #: src/Module/Moderation/Blocklist/Server/Index.php:84 #: 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:119 -#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 #: src/Module/Moderation/Users/Deleted.php:66 -#: src/Module/Moderation/Users/Index.php:133 +#: src/Module/Moderation/Users/Index.php:136 msgid "Moderation" msgstr "" @@ -2334,33 +2339,33 @@ msgstr "التالي" msgid "last" msgstr "الأخير" -#: src/Content/Text/BBCode.php:908 +#: src/Content/Text/BBCode.php:903 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:931 src/Model/Item.php:4069 -#: src/Model/Item.php:4075 src/Model/Item.php:4076 +#: src/Content/Text/BBCode.php:926 src/Model/Item.php:4080 +#: src/Model/Item.php:4086 src/Model/Item.php:4087 msgid "Link to source" msgstr "رابط المصدر" -#: src/Content/Text/BBCode.php:1745 src/Content/Text/HTML.php:892 +#: src/Content/Text/BBCode.php:1740 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "أنقر للفتح/للإغلاق" -#: src/Content/Text/BBCode.php:1800 +#: src/Content/Text/BBCode.php:1795 msgid "$1 wrote:" msgstr "كتب $1:" -#: src/Content/Text/BBCode.php:1874 src/Content/Text/BBCode.php:1875 +#: src/Content/Text/BBCode.php:1869 src/Content/Text/BBCode.php:1870 msgid "Encrypted content" msgstr "محتوى مشفر" -#: src/Content/Text/BBCode.php:2208 +#: src/Content/Text/BBCode.php:2203 msgid "Invalid source protocol" msgstr "ميفاق المصدر غير صالح" -#: src/Content/Text/BBCode.php:2227 +#: src/Content/Text/BBCode.php:2222 msgid "Invalid link protocol" msgstr "ميفاق الرابط غير صالح" @@ -2417,7 +2422,7 @@ msgid "Examples: Robert Morgenstein, Fishing" msgstr "مثال: أحمد علي، الصيد" #: src/Content/Widget.php:68 src/Module/Contact.php:441 -#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 +#: src/Module/Directory.php:82 view/theme/vier/theme.php:185 msgid "Find" msgstr "ابحث" @@ -2438,7 +2443,7 @@ msgstr "ملف شخصي عشوائي" msgid "Invite Friends" msgstr "دعوة أصدقاء" -#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: src/Content/Widget.php:73 src/Module/Directory.php:74 #: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "الدليل العالمي" @@ -2459,7 +2464,7 @@ msgstr "" msgid "Relationships" msgstr "العلاقات" -#: src/Content/Widget.php:264 src/Module/Circle.php:280 +#: src/Content/Widget.php:264 src/Module/Circle.php:281 #: src/Module/Contact.php:325 msgid "All Contacts" msgstr "كل المتراسلين" @@ -2487,27 +2492,27 @@ msgstr[3] "%d متراسلين مشتركين" msgstr[4] "%d متراسلًا مشتركًا" msgstr[5] "%d متراسل مشترك" -#: src/Content/Widget.php:529 +#: src/Content/Widget.php:532 msgid "On this date" msgstr "" -#: src/Content/Widget.php:549 +#: src/Content/Widget.php:552 msgid "Persons" msgstr "الأشخاص" -#: src/Content/Widget.php:550 +#: src/Content/Widget.php:553 msgid "Organisations" msgstr "المنظّمات" -#: src/Content/Widget.php:551 src/Model/Contact.php:1750 +#: src/Content/Widget.php:554 src/Model/Contact.php:1751 msgid "News" msgstr "الأخبار" -#: src/Content/Widget.php:553 +#: src/Content/Widget.php:556 msgid "Relays" msgstr "" -#: src/Content/Widget.php:560 src/Module/Moderation/BaseUsers.php:58 +#: src/Content/Widget.php:563 src/Module/Moderation/BaseUsers.php:58 msgid "All" msgstr "الكل" @@ -2561,12 +2566,12 @@ msgstr[5] "الوسوم الشائعة (آخر %d ساعة)" msgid "More Trending Tags" msgstr "المزيد من الوسوم الشائعة" -#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1207 +#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1208 #: src/Model/Profile.php:440 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1211 +#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1212 #: src/Model/Profile.php:444 src/Module/Moderation/Item/Source.php:80 msgid "Mention" msgstr "ذكر" @@ -2581,10 +2586,10 @@ msgstr "XMPP:" msgid "Matrix:" msgstr "مايتركس:" -#: src/Content/Widget/VCard.php:112 src/Model/Event.php:68 -#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: 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:134 src/Module/Notifications/Introductions.php:180 +#: src/Module/Directory.php:133 src/Module/Notifications/Introductions.php:180 #: src/Module/Profile/Profile.php:212 msgid "Location:" msgstr "الموقع:" @@ -2594,75 +2599,75 @@ msgstr "الموقع:" msgid "Network:" msgstr "الشبكة:" -#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1239 -#: src/Model/Contact.php:1251 src/Model/Profile.php:457 +#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1252 src/Model/Profile.php:457 #: src/Module/Contact/Profile.php:476 msgid "Unfollow" msgstr "ألغِ المتابعة" -#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1209 +#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1210 #: src/Model/Profile.php:442 msgid "View group" msgstr "" -#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:260 +#: src/Core/ACL.php:153 src/Module/Profile/Profile.php:260 msgid "Yourself" msgstr "أنت" -#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Core/ACL.php:189 src/Module/Privacy/PermissionTooltip.php:156 #: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "المشتركة" -#: src/Core/ACL.php:280 +#: src/Core/ACL.php:281 msgid "Post to Email" msgstr "أنشر عبر البريد الإلكتروني" -#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Core/ACL.php:308 src/Module/Privacy/PermissionTooltip.php:103 #: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "علني" -#: src/Core/ACL.php:308 +#: src/Core/ACL.php:309 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:309 src/Module/Privacy/PermissionTooltip.php:105 +#: src/Core/ACL.php:310 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "محدود/خاص" -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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:310 +#: src/Core/ACL.php:311 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:311 +#: src/Core/ACL.php:312 msgid "Show to:" msgstr "اعرضه لـ:" -#: src/Core/ACL.php:312 +#: src/Core/ACL.php:313 msgid "Except to:" msgstr "استثني:" -#: src/Core/ACL.php:313 src/Module/Post/Edit.php:145 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:145 msgid "CC: email addresses" msgstr "أرسله إلى عناوين البريد الإلكتروني" -#: src/Core/ACL.php:314 src/Module/Post/Edit.php:151 +#: src/Core/ACL.php:315 src/Module/Post/Edit.php:151 msgid "Example: bob@example.com, mary@example.com" msgstr "مثل: bob@example.com, mary@example.com" -#: src/Core/ACL.php:315 +#: src/Core/ACL.php:316 msgid "Connectors" msgstr "الموصّلات" @@ -2997,176 +3002,176 @@ msgstr "قاعدة البيانات قيد الاستخدام." msgid "Could not connect to database." msgstr "يتعذر الاتصال بقاعدة البيانات." -#: src/Core/L10n.php:430 src/Model/Item.php:2316 +#: src/Core/L10n.php:426 src/Model/Item.php:2324 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:437 +#: src/Core/L10n.php:433 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Core/L10n.php:481 src/Model/Event.php:418 #: src/Module/Settings/Display.php:292 msgid "Monday" msgstr "الإثنين" -#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Core/L10n.php:481 src/Model/Event.php:419 #: src/Module/Settings/Display.php:293 msgid "Tuesday" msgstr "الثلاثاء" -#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Core/L10n.php:481 src/Model/Event.php:420 #: src/Module/Settings/Display.php:294 msgid "Wednesday" msgstr "الأربعاء" -#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Core/L10n.php:481 src/Model/Event.php:421 #: src/Module/Settings/Display.php:295 msgid "Thursday" msgstr "الخميس" -#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Core/L10n.php:481 src/Model/Event.php:422 #: src/Module/Settings/Display.php:296 msgid "Friday" msgstr "الجمعة" -#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Core/L10n.php:481 src/Model/Event.php:423 #: src/Module/Settings/Display.php:297 msgid "Saturday" msgstr "السبت" -#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Core/L10n.php:481 src/Model/Event.php:417 #: src/Module/Settings/Display.php:291 msgid "Sunday" msgstr "الأحد" -#: src/Core/L10n.php:489 src/Model/Event.php:436 +#: src/Core/L10n.php:485 src/Model/Event.php:438 msgid "January" msgstr "جانفي" -#: src/Core/L10n.php:489 src/Model/Event.php:437 +#: src/Core/L10n.php:485 src/Model/Event.php:439 msgid "February" msgstr "فيفري" -#: src/Core/L10n.php:489 src/Model/Event.php:438 +#: src/Core/L10n.php:485 src/Model/Event.php:440 msgid "March" msgstr "مارس" -#: src/Core/L10n.php:489 src/Model/Event.php:439 +#: src/Core/L10n.php:485 src/Model/Event.php:441 msgid "April" msgstr "أفريل" -#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 +#: src/Core/L10n.php:485 src/Core/L10n.php:504 src/Model/Event.php:429 msgid "May" msgstr "ماي" -#: src/Core/L10n.php:489 src/Model/Event.php:440 +#: src/Core/L10n.php:485 src/Model/Event.php:442 msgid "June" msgstr "جوان" -#: src/Core/L10n.php:489 src/Model/Event.php:441 +#: src/Core/L10n.php:485 src/Model/Event.php:443 msgid "July" msgstr "جويلية" -#: src/Core/L10n.php:489 src/Model/Event.php:442 +#: src/Core/L10n.php:485 src/Model/Event.php:444 msgid "August" msgstr "أوت" -#: src/Core/L10n.php:489 src/Model/Event.php:443 +#: src/Core/L10n.php:485 src/Model/Event.php:445 msgid "September" msgstr "سبتمبر" -#: src/Core/L10n.php:489 src/Model/Event.php:444 +#: src/Core/L10n.php:485 src/Model/Event.php:446 msgid "October" msgstr "أكتوبر" -#: src/Core/L10n.php:489 src/Model/Event.php:445 +#: src/Core/L10n.php:485 src/Model/Event.php:447 msgid "November" msgstr "نوفمبر" -#: src/Core/L10n.php:489 src/Model/Event.php:446 +#: src/Core/L10n.php:485 src/Model/Event.php:448 msgid "December" msgstr "ديسمبر" -#: src/Core/L10n.php:504 src/Model/Event.php:408 +#: src/Core/L10n.php:500 src/Model/Event.php:410 msgid "Mon" msgstr "إث" -#: src/Core/L10n.php:504 src/Model/Event.php:409 +#: src/Core/L10n.php:500 src/Model/Event.php:411 msgid "Tue" msgstr "ثلا" -#: src/Core/L10n.php:504 src/Model/Event.php:410 +#: src/Core/L10n.php:500 src/Model/Event.php:412 msgid "Wed" msgstr "أر" -#: src/Core/L10n.php:504 src/Model/Event.php:411 +#: src/Core/L10n.php:500 src/Model/Event.php:413 msgid "Thu" msgstr "خم" -#: src/Core/L10n.php:504 src/Model/Event.php:412 +#: src/Core/L10n.php:500 src/Model/Event.php:414 msgid "Fri" msgstr "جم" -#: src/Core/L10n.php:504 src/Model/Event.php:413 +#: src/Core/L10n.php:500 src/Model/Event.php:415 msgid "Sat" msgstr "سب" -#: src/Core/L10n.php:504 src/Model/Event.php:407 +#: src/Core/L10n.php:500 src/Model/Event.php:409 msgid "Sun" msgstr "أح" -#: src/Core/L10n.php:508 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:425 msgid "Jan" msgstr "جا" -#: src/Core/L10n.php:508 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:426 msgid "Feb" msgstr "في" -#: src/Core/L10n.php:508 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:427 msgid "Mar" msgstr "مارس" -#: src/Core/L10n.php:508 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:428 msgid "Apr" msgstr "أف" -#: src/Core/L10n.php:508 src/Model/Event.php:428 +#: src/Core/L10n.php:504 src/Model/Event.php:430 msgid "Jun" msgstr "جو" -#: src/Core/L10n.php:508 src/Model/Event.php:429 +#: src/Core/L10n.php:504 src/Model/Event.php:431 msgid "Jul" msgstr "جوي" -#: src/Core/L10n.php:508 src/Model/Event.php:430 +#: src/Core/L10n.php:504 src/Model/Event.php:432 msgid "Aug" msgstr "أو" -#: src/Core/L10n.php:508 +#: src/Core/L10n.php:504 msgid "Sep" msgstr "سب" -#: src/Core/L10n.php:508 src/Model/Event.php:432 +#: src/Core/L10n.php:504 src/Model/Event.php:434 msgid "Oct" msgstr "أك" -#: src/Core/L10n.php:508 src/Model/Event.php:433 +#: src/Core/L10n.php:504 src/Model/Event.php:435 msgid "Nov" msgstr "نو" -#: src/Core/L10n.php:508 src/Model/Event.php:434 +#: src/Core/L10n.php:504 src/Model/Event.php:436 msgid "Dec" msgstr "دي" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:44 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "لا يمكن استخدام ملف السجل ''%s'. لا يمكن كتابة السجلات (خطأ: '%s')" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:67 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" @@ -3358,7 +3363,7 @@ msgstr "أضف" msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:592 src/Module/Circle.php:181 +#: src/Model/Circle.php:592 src/Module/Circle.php:185 msgid "Contacts not in any circle" msgstr "" @@ -3366,8 +3371,8 @@ msgstr "" msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:595 src/Module/Circle.php:166 -#: src/Module/Circle.php:189 src/Module/Circle.php:264 +#: src/Model/Circle.php:595 src/Module/Circle.php:168 +#: src/Module/Circle.php:190 src/Module/Circle.php:265 msgid "Circle Name: " msgstr "" @@ -3375,247 +3380,247 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1258 src/Module/Moderation/Users/Pending.php:88 +#: src/Model/Contact.php:1259 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:1594 src/Model/Contact.php:1666 +#: src/Model/Contact.php:1595 src/Model/Contact.php:1667 #: src/Module/Contact/Profile.php:360 #, php-format msgid "%s has blocked you" msgstr "" -#: src/Model/Contact.php:1746 +#: src/Model/Contact.php:1747 msgid "Organisation" msgstr "منظّمة" -#: src/Model/Contact.php:1754 +#: src/Model/Contact.php:1755 msgid "Group" msgstr "" -#: src/Model/Contact.php:1758 src/Module/Moderation/BaseUsers.php:122 +#: src/Model/Contact.php:1759 src/Module/Moderation/BaseUsers.php:122 msgid "Relay" msgstr "مُرحِل" -#: src/Model/Contact.php:3073 +#: src/Model/Contact.php:3085 msgid "Disallowed profile URL." msgstr "رابط الملف الشخصي غير المسموح." -#: src/Model/Contact.php:3078 src/Module/Friendica.php:88 +#: src/Model/Contact.php:3090 src/Module/Friendica.php:88 msgid "Blocked domain" msgstr "نطاق محجوب" -#: src/Model/Contact.php:3083 +#: src/Model/Contact.php:3095 msgid "Connect URL missing." msgstr "رابط الاتصال مفقود." -#: src/Model/Contact.php:3092 +#: src/Model/Contact.php:3104 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "تعذر إضافة المتراسل. تحقق من بيانات اعتماد الشبكة المستهدفة في الإعدادات -> صفحة الشبكات الاجتماعية." -#: src/Model/Contact.php:3110 +#: src/Model/Contact.php:3122 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3127 +#: src/Model/Contact.php:3139 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3134 +#: src/Model/Contact.php:3146 msgid "The profile address specified does not provide adequate information." msgstr "عنوان الملف الشخصي لا يوفر معلومات كافية." -#: src/Model/Contact.php:3136 +#: src/Model/Contact.php:3148 msgid "No compatible communication protocols or feeds were discovered." msgstr "لم تكتشف أي موافيق اتصال أو تغذيات متوافقة." -#: src/Model/Contact.php:3139 +#: src/Model/Contact.php:3151 msgid "An author or name was not found." msgstr "لم يُعثر على الكاتب أو اسمه." -#: src/Model/Contact.php:3142 +#: src/Model/Contact.php:3154 msgid "No browser URL could be matched to this address." msgstr "لا يوجد رابط يطابق هذا العنوان." -#: src/Model/Contact.php:3145 +#: src/Model/Contact.php:3157 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "غير قادر على مطابقة عنوان المعرف \"@\" بميفاق معروف أو متراسل بريد إلكتروني." -#: src/Model/Contact.php:3146 +#: src/Model/Contact.php:3158 msgid "Use mailto: in front of address to force email check." msgstr "استخدم mailto: أمام العنوان للتعرّف عليه كبريد إلكتروني." -#: src/Model/Contact.php:3152 +#: src/Model/Contact.php:3164 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "ملف شخصي محدود. لن يتمكن هذا الشخص من تلقي تنبيهات مباشرة/شخصية." -#: src/Model/Contact.php:3211 +#: src/Model/Contact.php:3223 msgid "Unable to retrieve contact information." msgstr "تعذر جلب معلومات المتراسل." -#: src/Model/Event.php:40 +#: src/Model/Event.php:42 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 -#: src/Model/Event.php:928 +#: src/Model/Event.php:63 src/Model/Event.php:80 src/Model/Event.php:457 +#: src/Model/Event.php:929 msgid "Starts:" msgstr "يبدأ:" -#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 -#: src/Model/Event.php:932 +#: src/Model/Event.php:66 src/Model/Event.php:86 src/Model/Event.php:458 +#: src/Model/Event.php:933 msgid "Finishes:" msgstr "ينتهي:" -#: src/Model/Event.php:405 +#: src/Model/Event.php:407 msgid "all-day" msgstr "طوال اليوم" -#: src/Model/Event.php:431 +#: src/Model/Event.php:433 msgid "Sept" msgstr "سبتمبر" -#: src/Model/Event.php:448 src/Module/Calendar/Show.php:117 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:117 #: src/Util/Temporal.php:329 msgid "today" msgstr "اليوم" -#: src/Model/Event.php:449 src/Module/Calendar/Show.php:118 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:118 #: src/Module/Settings/Display.php:302 src/Util/Temporal.php:339 msgid "month" msgstr "شهر" -#: src/Model/Event.php:450 src/Module/Calendar/Show.php:119 +#: src/Model/Event.php:452 src/Module/Calendar/Show.php:119 #: src/Module/Settings/Display.php:303 src/Util/Temporal.php:340 msgid "week" msgstr "أسبوع" -#: src/Model/Event.php:451 src/Module/Calendar/Show.php:120 +#: src/Model/Event.php:453 src/Module/Calendar/Show.php:120 #: src/Module/Settings/Display.php:304 src/Util/Temporal.php:341 msgid "day" msgstr "يوم" -#: src/Model/Event.php:453 +#: src/Model/Event.php:455 msgid "No events to display" msgstr "لا توجد أحداث لعرضها" -#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Model/Event.php:504 src/Module/Feed.php:56 #: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "قُيِّد الوصول لهذا الملف الشخصي." -#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:52 +#: src/Model/Event.php:545 src/Module/Calendar/Event/Show.php:52 msgid "Event not found." msgstr "" -#: src/Model/Event.php:623 +#: src/Model/Event.php:624 msgid "l, F j" msgstr "" -#: src/Model/Event.php:650 +#: src/Model/Event.php:651 msgid "Edit event" msgstr "عدّل الحدث" -#: src/Model/Event.php:651 +#: src/Model/Event.php:652 msgid "Duplicate event" msgstr "ضاعف الحدث" -#: src/Model/Event.php:652 +#: src/Model/Event.php:653 msgid "Delete event" msgstr "احذف الحدث" -#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 +#: src/Model/Event.php:883 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:883 +#: src/Model/Event.php:884 msgid "D g:i A" msgstr "" -#: src/Model/Event.php:884 +#: src/Model/Event.php:885 msgid "g:i A" msgstr "" -#: src/Model/Event.php:947 src/Model/Event.php:949 +#: src/Model/Event.php:948 src/Model/Event.php:950 msgid "Show map" msgstr "أظهر الخريطة" -#: src/Model/Event.php:948 +#: src/Model/Event.php:949 msgid "Hide map" msgstr "اخف الخريطة" -#: src/Model/Event.php:1041 +#: src/Model/Event.php:1042 #, php-format msgid "%s's birthday" msgstr "عيد ميلاد %s" -#: src/Model/Event.php:1042 +#: src/Model/Event.php:1043 #, php-format msgid "Happy Birthday %s" msgstr "%s عيد ميلاد سعيد" -#: src/Model/Item.php:2323 +#: src/Model/Item.php:2331 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2325 +#: src/Model/Item.php:2333 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2328 +#: src/Model/Item.php:2336 #, php-format msgid "" "Detected languages in this post:\n" "%s" msgstr "" -#: src/Model/Item.php:3277 +#: src/Model/Item.php:3285 msgid "activity" msgstr "النشاط" -#: src/Model/Item.php:3279 +#: src/Model/Item.php:3287 msgid "comment" msgstr "تعليق" -#: src/Model/Item.php:3282 src/Module/Post/Tag/Add.php:109 +#: src/Model/Item.php:3290 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "مشاركة" -#: src/Model/Item.php:3452 +#: src/Model/Item.php:3463 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3454 +#: src/Model/Item.php:3465 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3456 +#: src/Model/Item.php:3467 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3460 +#: src/Model/Item.php:3471 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3969 +#: src/Model/Item.php:3980 msgid "bytes" msgstr "بايت" -#: src/Model/Item.php:4000 +#: src/Model/Item.php:4011 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3626,7 +3631,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Model/Item.php:4002 +#: src/Model/Item.php:4013 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3637,7 +3642,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Model/Item.php:4007 +#: src/Model/Item.php:4018 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3648,7 +3653,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Model/Item.php:4009 +#: src/Model/Item.php:4020 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3659,12 +3664,12 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: src/Model/Item.php:4011 +#: src/Model/Item.php:4022 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:4052 src/Model/Item.php:4053 +#: src/Model/Item.php:4063 src/Model/Item.php:4064 msgid "View on separate page" msgstr "اعرضه في صفحة منفصلة" @@ -3672,7 +3677,7 @@ msgstr "اعرضه في صفحة منفصلة" msgid "[no subject]" msgstr "[بدون موضوع]" -#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 +#: src/Model/Photo.php:1192 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "صور الحائط" @@ -3685,7 +3690,7 @@ msgstr "عدّل الملف الشخصي" msgid "Change profile photo" msgstr "غير صورة الملف الشخصي" -#: src/Model/Profile.php:357 src/Module/Directory.php:139 +#: src/Model/Profile.php:357 src/Module/Directory.php:138 #: src/Module/Profile/Profile.php:200 msgid "Homepage:" msgstr "الصفحة رئيسية:" @@ -3775,7 +3780,7 @@ msgstr "لم يعجبني:" msgid "Title/Description:" msgstr "العنوان/الوصف:" -#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:176 +#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:174 #: src/Module/Moderation/Report/Create.php:266 #: src/Module/Moderation/Summary.php:65 msgid "Summary" @@ -3826,59 +3831,59 @@ msgstr "" msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "خطأ قاتل: فشل توليد مفاتيح الأمان." -#: src/Model/User.php:740 src/Model/User.php:773 +#: src/Model/User.php:739 src/Model/User.php:772 msgid "Login failed" msgstr "فشل الولوج" -#: src/Model/User.php:805 +#: src/Model/User.php:804 msgid "Not enough information to authenticate" msgstr "لا توجد معلومات كافية للاستيثاق" -#: src/Model/User.php:930 +#: src/Model/User.php:929 msgid "Password can't be empty" msgstr "لا يمكن أن تكون كلمة المرور فارغة" -#: src/Model/User.php:972 +#: src/Model/User.php:971 msgid "Empty passwords are not allowed." msgstr "لا يسمح بكلمات مرور فارغة." -#: src/Model/User.php:976 +#: src/Model/User.php:975 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "كلمة المرور الجديدة جزء من تسريب بيانات علني ، يرجى اختيار كلمة مرور مختلفة." -#: src/Model/User.php:980 +#: src/Model/User.php:979 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:984 +#: src/Model/User.php:983 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1193 +#: src/Model/User.php:1192 msgid "Passwords do not match. Password unchanged." msgstr "كلمتا المرور غير متطابقتين. لم تغيَّر كلمة المرور." -#: src/Model/User.php:1200 +#: src/Model/User.php:1199 msgid "An invitation is required." msgstr "الدعوة إلزامية." -#: src/Model/User.php:1204 +#: src/Model/User.php:1203 msgid "Invitation could not be verified." msgstr "تعذر التحقق من الدعوة." -#: src/Model/User.php:1212 +#: src/Model/User.php:1211 msgid "Invalid OpenID url" msgstr "رابط OpenID عير صالح" -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "واجهنا مشكلة أثناء الولوج باستخدام OpenID. يرجى التحقق من صحة المعرف." -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "The error message was:" msgstr "رسالة الخطأ:" @@ -4077,57 +4082,57 @@ msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:51 +#: src/Module/Admin/Addons/Details.php:49 msgid "Addon not found." msgstr "لم يُعثر على الإضافة." -#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 +#: src/Module/Admin/Addons/Details.php:60 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "الإضافة %s معطلة." -#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 +#: src/Module/Admin/Addons/Details.php:63 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "الإضافة %s مفعلة." -#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Addons/Details.php:72 #: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "عطّل" -#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Addons/Details.php:75 #: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351 msgid "Enable" msgstr "فعّل" -#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Addons/Details.php:95 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:175 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Summary.php:173 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:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/Admin/Addons/Details.php:96 src/Module/Admin/Addons/Index.php:60 #: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:127 msgid "Addons" msgstr "الإضافات" -#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Addons/Details.php:97 #: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "بدّل" -#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Addons/Details.php:104 #: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "الكاتب: " -#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Addons/Details.php:105 #: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "المصين: " @@ -4144,9 +4149,10 @@ msgstr "فشل تثبيت إضافة %s." #: 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:545 src/Module/Settings/Addons.php:64 -#: src/Module/Settings/Connectors.php:149 -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Account.php:507 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/Features.php:61 msgid "Save Settings" @@ -4163,62 +4169,62 @@ msgid "" "official addon repository at %1$s." msgstr "" -#: src/Module/Admin/DBSync.php:37 +#: src/Module/Admin/DBSync.php:35 msgid "Update has been marked successful" msgstr "تُحقق من صحة التحديث وعلّم كـ\"ناجح\"" -#: src/Module/Admin/DBSync.php:45 +#: src/Module/Admin/DBSync.php:43 #, php-format msgid "Database structure update %s was successfully applied." msgstr "نجح تطبيق التحديث بنية قاعدة البيانات %s." -#: src/Module/Admin/DBSync.php:47 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "فشل تنفيذ تحديث بنية قاعدة البيانات %s مع رمز الخطأ: %s" -#: src/Module/Admin/DBSync.php:62 +#: src/Module/Admin/DBSync.php:60 #, php-format msgid "Executing %s failed with error: %s" msgstr "فشل تنفيذ %s مع رمز الخطأ: %s" -#: src/Module/Admin/DBSync.php:64 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Update %s was successfully applied." msgstr "نجح تنفيذ التحديث %s." -#: src/Module/Admin/DBSync.php:67 +#: src/Module/Admin/DBSync.php:65 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "لم يُعد أي رمز حالة للتحديث %s. تتعذر معرفة حالة التحديث." -#: src/Module/Admin/DBSync.php:70 +#: src/Module/Admin/DBSync.php:68 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "لا توجد وظيفة تحديث إضافية %s يلزم استدعاؤها." -#: src/Module/Admin/DBSync.php:91 +#: src/Module/Admin/DBSync.php:89 msgid "No failed updates." msgstr "لم تفشل أي تحديثات." -#: src/Module/Admin/DBSync.php:92 +#: src/Module/Admin/DBSync.php:90 msgid "Check database structure" msgstr "تحقق من بنية قاعدة البيانات" -#: src/Module/Admin/DBSync.php:96 +#: src/Module/Admin/DBSync.php:94 msgid "Failed Updates" msgstr "التحديثات الفاشلة" -#: src/Module/Admin/DBSync.php:97 +#: src/Module/Admin/DBSync.php:95 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "هذا لا يشمل الإصدارات السابقة لـ 1139، التي لم تُرجع تفاصيل." -#: src/Module/Admin/DBSync.php:98 +#: src/Module/Admin/DBSync.php:96 msgid "Mark success (if update was manually applied)" msgstr "ضع علامة النجاح (إذا حدثته يدوياً)" -#: src/Module/Admin/DBSync.php:99 +#: src/Module/Admin/DBSync.php:97 msgid "Attempt to execute this update step automatically" msgstr "حاول تنفيذ الخطوة تلقائيًا" @@ -5815,12 +5821,12 @@ msgstr "" msgid "Database (legacy)" msgstr "" -#: src/Module/Admin/Summary.php:41 +#: src/Module/Admin/Summary.php:39 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:45 +#: src/Module/Admin/Summary.php:43 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5831,7 +5837,7 @@ msgid "" " an automatic conversion.
" msgstr "تستخدم قاعدة البيانات جداول MYISAM. يجب عليك تغيير المحرك إلى InnoDB حيث أنه من المخطط أن يستخدم فرنديكا ميزات منوطة بـ InnoDB في المستقبل.راجع هذا الدليل لتحديث قاعدة البيانات الخاصة بك. يمكنك أيضًا تشغيل الأمر php bin/console.php dbstructure toinnodb في دليل الجذر لفرنديكا للتحويل التلقائي.
" -#: src/Module/Admin/Summary.php:50 +#: src/Module/Admin/Summary.php:48 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5842,7 +5848,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "تستخدم قاعدة البيانات جداول InnoDB بتنسيق Antelope. يجب عليك تغيير التنسيق إلى Barracuda حيث أن فرنديكا يستخدم ميزات منوطة بتنسيق Barracuda راجع هذا الدليل لتحديث قاعدة البيانات. يمكنك أيضًا تشغيل الأمر php bin/console.php dbstructure toinnodb في دليل الجذر لفرنديكا للتحويل التلقائي.
" -#: src/Module/Admin/Summary.php:60 +#: src/Module/Admin/Summary.php:58 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5850,46 +5856,46 @@ msgid "" " to %d. See here for more information.
" msgstr "" -#: src/Module/Admin/Summary.php:68 +#: src/Module/Admin/Summary.php:66 #, 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 "يتوفر إصدار جديد لفرنديكا. الإصدار الحالي هو %1$s والإصدار الجديد هو %2$s" -#: src/Module/Admin/Summary.php:76 +#: src/Module/Admin/Summary.php:74 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 "فشل تحديث قاعدة البيانات. رجاءً شغّل أمر \"php bin/console.php dbstructure update\" من سطر الأوامر وألق نظرة على الأخطاء التي قد تظهر." -#: src/Module/Admin/Summary.php:80 +#: src/Module/Admin/Summary.php:78 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 "فشل آخر تحديث لقاعدة البيانات. رجاءً شغّل أمر \"php bin/console.php dbstructure update\" من سطر الأوامر وألق نظرة على الأخطاء التي قد تظهر. (قد تجد بعض الأخطاء في ملف السجل)" -#: src/Module/Admin/Summary.php:84 +#: src/Module/Admin/Summary.php:82 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:89 +#: src/Module/Admin/Summary.php:87 msgid "The worker was never executed. Please check your database structure!" msgstr "لم يتم تنفيذ المهمة أبداً. يرجى التحقق من بنية قاعدة البيانات!" -#: src/Module/Admin/Summary.php:91 +#: src/Module/Admin/Summary.php:89 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "تنفيذ آخر مهمة كان على %s UTC. هذا أقدم من ساعة. يرجى التحقق من إعدادات crontab." -#: src/Module/Admin/Summary.php:96 +#: src/Module/Admin/Summary.php:94 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5898,7 +5904,7 @@ msgid "" "help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:100 +#: src/Module/Admin/Summary.php:98 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5907,7 +5913,7 @@ msgid "" "page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:106 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5915,40 +5921,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "" -#: src/Module/Admin/Summary.php:130 +#: src/Module/Admin/Summary.php:128 #, 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:138 +#: src/Module/Admin/Summary.php:136 #, 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:146 +#: src/Module/Admin/Summary.php:144 #, 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:157 +#: src/Module/Admin/Summary.php:155 msgid "Message queues" msgstr "طوابير الرسائل" -#: src/Module/Admin/Summary.php:160 +#: src/Module/Admin/Summary.php:158 msgid "Server Settings" msgstr "إعدادات الخادم" -#: src/Module/Admin/Summary.php:178 +#: src/Module/Admin/Summary.php:176 msgid "Version" msgstr "الإصدار" -#: src/Module/Admin/Summary.php:182 +#: src/Module/Admin/Summary.php:180 msgid "Active addons" msgstr "الإضافات النشطة" @@ -6225,8 +6231,8 @@ msgstr "" msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:134 -#: src/Module/Moderation/Users/Index.php:144 +#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:137 +#: src/Module/Moderation/Users/Index.php:147 msgid "Users" msgstr "المستخدمون" @@ -6262,7 +6268,7 @@ msgstr "" msgid "Only You Can See This" msgstr "فقط أنت من يمكنه رؤية هذا" -#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:67 +#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:65 msgid "Scheduled Posts" msgstr "المشاركات المبرمجة" @@ -6318,7 +6324,7 @@ msgstr "الاستيثاق بعاملَيْن" msgid "Display" msgstr "العرض" -#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:195 +#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:189 msgid "Social Networks" msgstr "الشبكات الاجتماعية" @@ -6334,11 +6340,15 @@ msgstr "التطبيقات المتصلة" msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:84 +#: src/Module/BaseSettings.php:155 src/Module/Settings/ContactImport.php:109 +msgid "Import Contacts" +msgstr "استيراد متراسلين" + +#: src/Module/BaseSettings.php:162 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "تصدير البيانات الشخصية" -#: src/Module/BaseSettings.php:162 +#: src/Module/BaseSettings.php:169 msgid "Remove account" msgstr "أزل الحساب" @@ -6467,8 +6477,8 @@ msgstr "قائمة" msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:54 src/Module/Circle.php:202 -#: src/Module/Circle.php:226 +#: src/Module/Circle.php:54 src/Module/Circle.php:203 +#: src/Module/Circle.php:227 msgid "Circle not found." msgstr "" @@ -6476,15 +6486,15 @@ msgstr "" msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:78 +#: src/Module/Circle.php:80 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Circle.php:86 src/Module/Circle.php:95 #: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 -#: 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/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/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 @@ -6493,75 +6503,75 @@ msgstr "" msgid "Contact not found." msgstr "لم يُعثر على المتراسل." -#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 +#: src/Module/Circle.php:90 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "متراسل غير صالح." -#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 +#: src/Module/Circle.php:99 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "حُذف المتراسل." -#: src/Module/Circle.php:103 +#: src/Module/Circle.php:105 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:106 +#: src/Module/Circle.php:108 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:110 +#: src/Module/Circle.php:112 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:113 +#: src/Module/Circle.php:115 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:119 msgid "Bad request." msgstr "طلب خاطئ." -#: src/Module/Circle.php:158 +#: src/Module/Circle.php:160 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:159 +#: src/Module/Circle.php:161 msgid "Filter" msgstr "رشّح" -#: src/Module/Circle.php:165 +#: src/Module/Circle.php:167 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:207 +#: src/Module/Circle.php:208 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:258 +#: src/Module/Circle.php:259 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:268 +#: src/Module/Circle.php:269 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:278 +#: src/Module/Circle.php:279 msgid "Members" msgstr "الأعضاء" -#: src/Module/Circle.php:281 +#: src/Module/Circle.php:282 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:297 +#: src/Module/Circle.php:298 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:320 +#: src/Module/Circle.php:321 msgid "Click on a contact to add or remove." msgstr "أنقر على المتراسل لإضافته أو حذفه." -#: src/Module/Circle.php:337 +#: src/Module/Circle.php:338 msgid "Add contact to circle" msgstr "" @@ -6599,7 +6609,7 @@ msgid "Only show blocked contacts" msgstr "أظهِر المتراسلين المحجوبين فقط" #: src/Module/Contact.php:349 src/Module/Contact.php:421 -#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:386 msgid "Ignored" msgstr "مُتجاهَل" @@ -6650,8 +6660,8 @@ 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:124 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Blocked.php:127 +#: src/Module/Moderation/Users/Index.php:143 msgid "Unblock" msgstr "ارفع الحجب" @@ -6727,12 +6737,12 @@ 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:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:56 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "الاسم" @@ -7317,11 +7327,11 @@ msgstr "" msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:190 +#: src/Module/Conversation/Timeline.php:193 msgid "Include" msgstr "تضمين" -#: src/Module/Conversation/Timeline.php:191 +#: src/Module/Conversation/Timeline.php:194 msgid "Hide" msgstr "اخف" @@ -7594,19 +7604,19 @@ msgstr "" msgid "Lookup address:" msgstr "عنوان المسح:" -#: src/Module/Directory.php:61 +#: src/Module/Directory.php:60 msgid "No entries (some entries may be hidden)." msgstr "لا توجد مدخلات (قد تكون بعض المدخلات مخفية)." -#: src/Module/Directory.php:77 +#: src/Module/Directory.php:76 msgid "Find on this site" msgstr "ابحث في هذا الموقع" -#: src/Module/Directory.php:79 +#: src/Module/Directory.php:78 msgid "Results for:" msgstr "نتائج:" -#: src/Module/Directory.php:81 +#: src/Module/Directory.php:80 msgid "Site Directory" msgstr "دليل الموقع" @@ -7859,29 +7869,29 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "انتقل إلى صفحة التسجيل وسجل كمستخدم جديد. تذكر أن تستخدم نفس البريد الإلكتروني الذي أدخلته للمدير. هذا سيسمح لك بالدخول إلى لوحة الإدارة." -#: src/Module/Invite.php:43 +#: src/Module/Invite.php:42 msgid "Total invitation limit exceeded." msgstr "تجاوزت حد عدد الدعوات." -#: src/Module/Invite.php:68 +#: src/Module/Invite.php:67 #, php-format msgid "%s : Not a valid email address." msgstr "%s : عناوين بريد الكتروني غير صالحة." -#: src/Module/Invite.php:94 +#: src/Module/Invite.php:93 msgid "Please join us on Friendica" msgstr "انضم إلينا في فرَندِكا" -#: src/Module/Invite.php:103 +#: src/Module/Invite.php:102 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "تجاوزت عدد الدعوات. رجاء اتصال بمدير الموقع." -#: src/Module/Invite.php:107 +#: src/Module/Invite.php:106 #, php-format msgid "%s : Message delivery failed." msgstr "%s : فشل توصيل الرسالة." -#: src/Module/Invite.php:111 +#: src/Module/Invite.php:110 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." @@ -7892,11 +7902,11 @@ msgstr[3] "أُرسلت %d رسائل." msgstr[4] "أُرسلت %d رسالة." msgstr[5] "أُرسلت %d رسالة." -#: src/Module/Invite.php:129 +#: src/Module/Invite.php:127 msgid "You have no more invitations available" msgstr "لم تتبقى لديك أي دعوة" -#: src/Module/Invite.php:136 +#: src/Module/Invite.php:134 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7904,14 +7914,14 @@ msgid "" " other social networks." msgstr "زر %s للحصول على قائمة المواقع العمومية التي يمكنك الانضمام إليها. يمكن لجميع أعضاء مواقع شبكة فرَندِكا الوصول لبعضهم البعض، وكذلك مع عديد من الشبكات الاجتماعية الأخرى." -#: src/Module/Invite.php:138 +#: src/Module/Invite.php:136 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "لقبول هذه الدعوة، من فضلك زر وسجل في %s أو في أي موقع فرَندِكا آخر." -#: src/Module/Invite.php:139 +#: src/Module/Invite.php:137 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7920,48 +7930,48 @@ msgid "" "sites you can join." msgstr "مواقع فرَندِكا كلها متصلة لإنشاء شبكة اجتماعية ضخمة تدعم الخصوصية يملكها ويسيطر عليها أعضاؤها. يمكنهم أيضا التواصل مع العديد من الشبكات الاجتماعية الأخرى. راجع %s للحصول على قائمة مواقع فرَندِكا بديلة." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:141 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "" -#: src/Module/Invite.php:146 +#: src/Module/Invite.php:144 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:145 +#: src/Module/Invite.php:143 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "لقبول هذه الدعوة، من فضلك زر وسجل في %s." -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:151 msgid "Send invitations" msgstr "أرسل دعوات" -#: src/Module/Invite.php:154 +#: src/Module/Invite.php:152 msgid "Enter email addresses, one per line:" msgstr "أدخل عناوين البريد الإلكتروني ،واحد في كل سطر:" -#: src/Module/Invite.php:158 +#: src/Module/Invite.php:156 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:160 +#: src/Module/Invite.php:158 msgid "You will need to supply this invitation code: $invite_code" msgstr "" -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "" -#: src/Module/Invite.php:162 +#: src/Module/Invite.php:160 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" @@ -8063,12 +8073,12 @@ msgid "File upload failed." msgstr "فشل رفع الملف." #: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 -#: src/Module/Profile/Photos.php:204 +#: src/Module/Profile/Photos.php:212 #: 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:224 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:232 #: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "فشل رفع الصورة." @@ -8101,23 +8111,23 @@ msgstr "حُذف" msgid "List of pending user deletions" msgstr "قائمة الحذف المعلق للمستخدمين" -#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:469 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:431 msgid "Normal Account Page" msgstr "صفحة حساب عادي" -#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:476 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:438 msgid "Soapbox Page" msgstr "صفحة سياسي" -#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:483 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:445 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:490 +#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:452 msgid "Public Group - Restricted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:497 +#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:459 msgid "Automatic Friend Page" msgstr "صفحة اشترك تلقائي" @@ -8126,22 +8136,22 @@ msgid "Private Group" msgstr "" #: src/Module/Moderation/BaseUsers.php:118 -#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:440 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:402 msgid "Personal Page" msgstr "صفحة شخصية" #: src/Module/Moderation/BaseUsers.php:119 -#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:447 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:409 msgid "Organisation Page" msgstr "صفحة منظمة" #: src/Module/Moderation/BaseUsers.php:120 -#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:454 +#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:416 msgid "News Page" msgstr "صفحة إخبارية" #: src/Module/Moderation/BaseUsers.php:121 -#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:461 +#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:423 msgid "Community Group" msgstr "" @@ -8175,9 +8185,9 @@ msgid "Block Remote Contact" msgstr "احجب مستخدمًا بعيدًا" #: src/Module/Moderation/Blocklist/Contact.php:102 -#: 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/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:138 #: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "اختر الكل" @@ -8542,9 +8552,9 @@ msgid "Tag" msgstr "وسم" #: src/Module/Moderation/Item/Source.php:77 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 -#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 +#: src/Module/Moderation/Users/Index.php:129 msgid "Type" msgstr "نوع" @@ -8813,7 +8823,7 @@ msgstr[5] "" msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:418 +#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:380 msgid "Channel Relay" msgstr "" @@ -8838,11 +8848,11 @@ msgstr[4] "حُجب %s مستخدما" msgstr[5] "حُجب %s مستخدم" #: src/Module/Moderation/Users/Active.php:37 -#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Active.php:74 #: src/Module/Moderation/Users/Blocked.php:37 -#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Blocked.php:74 #: src/Module/Moderation/Users/Index.php:44 -#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Index.php:81 msgid "You can't remove yourself" msgstr "لا يمكنك إزالة نفسك" @@ -8859,81 +8869,81 @@ msgstr[3] "%s مستخدمين محذوفين" msgstr[4] "%s مستخدمًا محذوفًا" msgstr[5] "%s مستخدم محذوف" -#: src/Module/Moderation/Users/Active.php:69 -#: src/Module/Moderation/Users/Blocked.php:69 -#: src/Module/Moderation/Users/Index.php:76 +#: src/Module/Moderation/Users/Active.php:72 +#: src/Module/Moderation/Users/Blocked.php:72 +#: src/Module/Moderation/Users/Index.php:79 #, php-format msgid "User \"%s\" deleted" msgstr "حذف المستخدم \"%s\"" -#: src/Module/Moderation/Users/Active.php:79 -#: src/Module/Moderation/Users/Index.php:86 +#: src/Module/Moderation/Users/Active.php:82 +#: src/Module/Moderation/Users/Index.php:89 #, php-format msgid "User \"%s\" blocked" msgstr "حُجب المستخدم \"%s\"" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Register date" msgstr "تاريخ التسجيل" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last login" msgstr "آخر ولوج" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last public item" msgstr "آخر عنصر منشور" -#: src/Module/Moderation/Users/Active.php:120 +#: src/Module/Moderation/Users/Active.php:123 msgid "Active Accounts" msgstr "الحسابات النشطة" -#: src/Module/Moderation/Users/Active.php:124 -#: src/Module/Moderation/Users/Blocked.php:123 -#: src/Module/Moderation/Users/Index.php:139 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "User blocked" msgstr "المستخدم محجوب" -#: src/Module/Moderation/Users/Active.php:125 -#: src/Module/Moderation/Users/Blocked.php:125 -#: src/Module/Moderation/Users/Index.php:141 +#: src/Module/Moderation/Users/Active.php:128 +#: src/Module/Moderation/Users/Blocked.php:128 +#: src/Module/Moderation/Users/Index.php:144 msgid "Site admin" msgstr "مدير الموقع" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:142 +#: src/Module/Moderation/Users/Active.php:129 +#: src/Module/Moderation/Users/Blocked.php:129 +#: src/Module/Moderation/Users/Index.php:145 msgid "Account expired" msgstr "انتهت صلاحية الحساب" -#: src/Module/Moderation/Users/Active.php:127 -#: src/Module/Moderation/Users/Index.php:145 +#: src/Module/Moderation/Users/Active.php:130 +#: src/Module/Moderation/Users/Index.php:148 msgid "Create a new user" msgstr "أنشئ مستخدمًا جديدًا" -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:132 -#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:154 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "سيُحذف المستخدمون المحددون!\\n\\nكل ما نشره هؤلاء على هذا الموقع سيُحذف نهائيًا!\\n\\nهل أنت متأكد؟" -#: src/Module/Moderation/Users/Active.php:134 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:155 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" @@ -8951,13 +8961,13 @@ msgstr[3] "رُفع الحجب عن %s مستخدمين" msgstr[4] "رُفع الحجب عن %s مستخدما" msgstr[5] "رُفع الحجب عن %s مستخدم" -#: src/Module/Moderation/Users/Blocked.php:78 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Blocked.php:81 +#: src/Module/Moderation/Users/Index.php:95 #, php-format msgid "User \"%s\" unblocked" msgstr "رُفع الحجب عن المستخدم \"%s\"" -#: src/Module/Moderation/Users/Blocked.php:120 +#: src/Module/Moderation/Users/Blocked.php:123 msgid "Blocked Users" msgstr "المستخدمون المحجوبون" @@ -8990,11 +9000,11 @@ msgid "Users awaiting permanent deletion" msgstr "مستخدمون في انتظار الحذف الدائم" #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:149 msgid "Permanent deletion" msgstr "حذف نهائي" -#: src/Module/Moderation/Users/Index.php:136 +#: src/Module/Moderation/Users/Index.php:139 msgid "User waiting for permanent deletion" msgstr "مستخدم ينتظر الحذف الكلي لحسابه" @@ -9167,7 +9177,7 @@ msgstr "الرجاء نسخ رمز الاستيثاق إلى التطبيق وإ msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:91 +#: src/Module/OAuth/Token.php:73 msgid "Unsupported or missing grant type" msgstr "" @@ -9219,7 +9229,7 @@ msgstr "متجاهل" msgid "Keep this window open until done." msgstr "أبق هذه النافذة مفتوحة حتى ينتهي." -#: src/Module/OpenSearch.php:57 +#: src/Module/OpenSearch.php:55 #, php-format msgid "Search in Friendica %s" msgstr "" @@ -9233,12 +9243,12 @@ msgstr "الصورة غير متوفرة." msgid "The Photo with id %s is not available." msgstr "الصورة ذات المعرف %s غير متوفّرة." -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:178 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:180 #, php-format msgid "Invalid photo with id %s." msgstr "الصورة ذات المعرف %s غير صالحة." @@ -9271,15 +9281,15 @@ msgstr "إدراج رابط ملف صوتي" msgid "audio link" msgstr "رابط ملف صوتي" -#: src/Module/Post/Tag/Remove.php:92 +#: src/Module/Post/Tag/Remove.php:93 msgid "Remove Item Tag" msgstr "أزل وسم العنصر" -#: src/Module/Post/Tag/Remove.php:93 +#: src/Module/Post/Tag/Remove.php:94 msgid "Select a tag to remove: " msgstr "اختر الوسم لإزالته: " -#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Post/Tag/Remove.php:95 #: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "أزل" @@ -9358,32 +9368,32 @@ msgstr "تعليقات %s" msgid "%s's timeline" msgstr "الخط الزمني لـ %s" -#: src/Module/Profile/Photos.php:153 src/Module/Profile/Photos.php:156 -#: src/Module/Profile/Photos.php:181 +#: src/Module/Profile/Photos.php:157 src/Module/Profile/Photos.php:160 +#: src/Module/Profile/Photos.php:189 #: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "تجاوزت الصورة الحد الأقصى للحجم وهو %s" -#: src/Module/Profile/Photos.php:159 +#: src/Module/Profile/Photos.php:163 msgid "Image upload didn't complete, please try again" msgstr "لم يكتمل رفع الصورة، من فضلك أعد المحاولة" -#: src/Module/Profile/Photos.php:162 +#: src/Module/Profile/Photos.php:166 msgid "Image file is missing" msgstr "ملف الصورة مفقود" -#: src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:171 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "الخادم لا يقبل رفع ملفات جديدة، يرجى التواصل مع مدير الموقع" -#: src/Module/Profile/Photos.php:189 +#: src/Module/Profile/Photos.php:197 msgid "Image file is empty." msgstr "ملف الصورة فارغ." -#: src/Module/Profile/Photos.php:341 +#: src/Module/Profile/Photos.php:349 msgid "View Album" msgstr "اعرض الألبوم" @@ -9503,15 +9513,15 @@ msgid "" "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:69 +#: src/Module/Profile/Schedule.php:67 msgid "Scheduled" msgstr "مُبرمج" -#: src/Module/Profile/Schedule.php:70 +#: src/Module/Profile/Schedule.php:68 msgid "Content" msgstr "المحتوى" -#: src/Module/Profile/Schedule.php:71 +#: src/Module/Profile/Schedule.php:69 msgid "Remove post" msgstr "أزل المشاركة" @@ -9576,7 +9586,7 @@ msgid "Please repeat your e-mail address:" msgstr "رجاء أعد إدخال عنوان بريدك الإلكتروني:" #: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:551 +#: src/Module/Settings/Account.php:513 msgid "New Password:" msgstr "كلمة المرور الجديدة:" @@ -9585,7 +9595,7 @@ 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:552 +#: src/Module/Settings/Account.php:514 msgid "Confirm:" msgstr "التأكيد:" @@ -9769,20 +9779,20 @@ msgstr "خرجت." msgid "OpenID protocol error. No ID returned" msgstr "خطأ في ميفاق OpenID. لم يعد أي معرف" -#: src/Module/Security/OpenID.php:76 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "لم يُعثر على الحساب. رجاء لج إلى حسابك الحالي لإضافة معرف OpenID إليه." -#: src/Module/Security/OpenID.php:78 +#: src/Module/Security/OpenID.php:80 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "لم يُعثر على الحساب. رجاء سجل حساب جديد أو لج إلى حسابك الحالي لإضافة معرف OpenID إليه." #: src/Module/Security/PasswordTooLong.php:43 -#: src/Module/Settings/Account.php:51 +#: src/Module/Settings/Account.php:49 msgid "Passwords do not match." msgstr "كلمتا المرور غير متطابقتين." @@ -9791,7 +9801,7 @@ msgid "Password does not need changing." msgstr "" #: src/Module/Security/PasswordTooLong.php:63 -#: src/Module/Settings/Account.php:65 +#: src/Module/Settings/Account.php:63 msgid "Password unchanged." msgstr "لم تُغير كلمة المرور." @@ -9811,24 +9821,24 @@ msgid "Update Password" msgstr "" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Current Password:" msgstr "كلمة المرور الحالية:" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Your current password to confirm the changes" msgstr "اكتب كلمة المرور الحالية لتأكيد التغييرات" #: src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:537 +#: src/Module/Settings/Account.php:499 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:538 +#: src/Module/Settings/Account.php:500 msgid "Password length is limited to 72 characters." msgstr "" @@ -9932,129 +9942,121 @@ msgstr "يرجى إدخال رمز من تطبيق الاستيثاق" msgid "Verify code and complete login" msgstr "تحقق من الرمز وأكمل الولوج" -#: src/Module/Settings/Account.php:80 +#: src/Module/Settings/Account.php:78 msgid "Please use a shorter name." msgstr "يرجى استخدام اسم أقصر." -#: src/Module/Settings/Account.php:83 +#: src/Module/Settings/Account.php:81 msgid "Name too short." msgstr "الاسم قصير جداً." -#: src/Module/Settings/Account.php:92 +#: src/Module/Settings/Account.php:90 msgid "Wrong Password." msgstr "كلمة المرور خاطئة." -#: src/Module/Settings/Account.php:97 +#: src/Module/Settings/Account.php:95 msgid "Invalid email." msgstr "البريد الإلكتروني غير صالح." -#: src/Module/Settings/Account.php:101 +#: src/Module/Settings/Account.php:99 msgid "Cannot change to that email." msgstr "لا يمكن التغيير إلى هذا البريد الإلكتروني." -#: 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 +#: 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 msgid "Settings were not updated." msgstr "لم تُحدث الإعدادات." -#: src/Module/Settings/Account.php:331 -msgid "Contact CSV file upload error" -msgstr "خطأ أثناء رفع ملف CSV" - -#: src/Module/Settings/Account.php:350 -msgid "Importing Contacts done" -msgstr "أُستورد المتراسلون" - -#: src/Module/Settings/Account.php:363 +#: src/Module/Settings/Account.php:325 msgid "Relocate message has been send to your contacts" msgstr "أُرسلت رسالة تنبيه بانتقالك إلى متراسليك" -#: src/Module/Settings/Account.php:380 +#: src/Module/Settings/Account.php:342 msgid "Unable to find your profile. Please contact your admin." msgstr "تعذر العثور على ملفك الشخصي. من فضلك اتصال بالمدير." -#: src/Module/Settings/Account.php:420 +#: src/Module/Settings/Account.php:382 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:430 +#: src/Module/Settings/Account.php:392 msgid "Personal Page Subtypes" msgstr "الأنواع الفرعية للصفحة الشخصية" -#: src/Module/Settings/Account.php:431 +#: src/Module/Settings/Account.php:393 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:442 +#: src/Module/Settings/Account.php:404 msgid "Account for a personal profile." msgstr "حساب ملف شخصي خاص." -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:411 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "حساب المنظمة يوافق تلقائياً على طلبات المراسلة \"كمتابعين\"." -#: src/Module/Settings/Account.php:456 +#: src/Module/Settings/Account.php:418 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "حساب إخباري يوافق تلقائياً على طلبات المراسلة \"كمتابعين\"." -#: src/Module/Settings/Account.php:463 +#: src/Module/Settings/Account.php:425 msgid "Account for community discussions." msgstr "حساب مناقشات مجتمعية." -#: src/Module/Settings/Account.php:471 +#: src/Module/Settings/Account.php:433 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "حساب ملف شخصي عادي يتطلب الموافقة اليدوية على \"الأصدقاء\" و \"المتابعين\"." -#: src/Module/Settings/Account.php:478 +#: src/Module/Settings/Account.php:440 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "حساب شخصي علني يوافق تلقائياً على طلبات المراسلة \"كمتابعين\"." -#: src/Module/Settings/Account.php:485 +#: src/Module/Settings/Account.php:447 msgid "Automatically approves all contact requests." msgstr "يوافق تلقائياً على جميع طلبات المراسلة." -#: src/Module/Settings/Account.php:492 +#: src/Module/Settings/Account.php:454 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:499 +#: src/Module/Settings/Account.php:461 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "حساب ملف شخصي لمشهور يوافق تلقائياً على طلبات المراسلة كـ\"أصدقاء\"." -#: src/Module/Settings/Account.php:504 +#: src/Module/Settings/Account.php:466 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:506 +#: src/Module/Settings/Account.php:468 msgid "Requires manual approval of contact requests." msgstr "يتطلب الموافقة اليدوية على طلبات المراسلة." -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(اختياري) اسمح لمعرف OpenID بالولوج إلى هذا الحساب." -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 msgid "Publish your profile in your local site directory?" msgstr "أتريد نشر ملفك الشخصي في الدليل المحلي للموقع؟" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 #, php-format msgid "" "Your profile will be published in this node's local " @@ -10062,94 +10064,94 @@ msgid "" " system settings." msgstr "سينشر ملفك الشخصي في الدليل المحلي لهذه العقدة. تعتمد خصوصية معلوماتك على إعدادات النظام." -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:491 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "سينشر ملفك الشخصي كذلك في الأدلة العالمية لفرَندِيكا (مثال %s)." -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:504 msgid "Account Settings" msgstr "إعدادات الحساب" -#: src/Module/Settings/Account.php:543 +#: src/Module/Settings/Account.php:505 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "عنوان معرفك هو '%s' أو '%s'." -#: src/Module/Settings/Account.php:550 +#: src/Module/Settings/Account.php:512 msgid "Password Settings" msgstr "إعدادات كلمة المرور" -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Leave password fields blank unless changing" msgstr "اترك حقول كلمة المرور فارغة ما لم ترد تغييرها" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Password:" msgstr "كلمة المرور:" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Your current password to confirm the changes of the email address" msgstr "اكتب كلمة المرور الحالية لتأكيد تغيير بريدك الإلكتروني" -#: src/Module/Settings/Account.php:557 +#: src/Module/Settings/Account.php:519 msgid "Delete OpenID URL" msgstr "احذف معرف OpenID" -#: src/Module/Settings/Account.php:559 +#: src/Module/Settings/Account.php:521 msgid "Basic Settings" msgstr "الإعدادات الأساسيّة" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:522 #: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "الاسم العلني:" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:523 msgid "Email Address:" msgstr "البريد الإلكتروني:" -#: src/Module/Settings/Account.php:562 +#: src/Module/Settings/Account.php:524 msgid "Your Timezone:" msgstr "المنطقة الزمنية:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "Your Language:" msgstr "لغتك:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "عيّن لغة واجهة فرَندِيكا ورسائل البريد الإلكتروني" -#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Account.php:526 msgid "Default Post Location:" msgstr "موقع النشر الافتراضي:" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:527 msgid "Use Browser Location:" msgstr "استخدم موقع المتصفح:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:529 msgid "Security and Privacy Settings" msgstr "إعدادات الأمان والخصوصية" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "Maximum Friend Requests/Day:" msgstr "حدُ طلبات الصداقة لليوم الواحد:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "(to prevent spam abuse)" msgstr "(لمنع الرسائل المزعجة)" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 msgid "Allow your profile to be searchable globally?" msgstr "أتريد السماح لملفك الشخصي بالظهور في نتائج البحث العالمي؟" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 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 " @@ -10157,43 +10159,43 @@ msgid "" "indexed or not." msgstr "فعّل هذا الإعداد إن أردت أن يُعثر عليك بسهولة. سيتمكن المستخدمون في المواقع البعيد من العثور عليك، وأيضا سيسمح بظهور ملفك الشخصي في محركات البحث." -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "أتريد إخفاء قائمة المتراسلين/الأصدقاء عن متصفحي ملفك الشخصي؟" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 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:573 +#: src/Module/Settings/Account.php:535 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:535 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:574 +#: src/Module/Settings/Account.php:536 msgid "Make public posts unlisted" msgstr "لا تدرج المشاركات العلنية" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:536 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:575 +#: src/Module/Settings/Account.php:537 msgid "Make all posted pictures accessible" msgstr "أتح كل الصور المنشورة" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:537 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 " @@ -10201,227 +10203,213 @@ msgid "" "public on your photo albums though." msgstr "يسمح هذا الخيار بالوصول للصورة المنشورة عبر رابط مباشر. هذا حل لمعظم الشبكات التي لا يمكنها التعامل مع الأذونات. صورك غير العلنية ستبقى مخفية." -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "Allow friends to post to your profile page?" msgstr "أتسمح لأصدقائك بالنشر في صفحة ملفك الشخصي؟" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "يمكن للمتراسلين كتابة مشاركات على حائط ملفك الشخصي. ستكون هذه المشركات مرئية لكل المتراسلين" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Allow friends to tag your posts?" msgstr "أتسمح لأصدقائك بوسم مشاركاتك؟" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Your contacts can add additional tags to your posts." msgstr "يمكن لأصدقائك إضافة وسوم لمشاركاتك." -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:540 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:541 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:542 msgid "Default Post Permissions" msgstr "أذونات النشر الافتراضية" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:546 msgid "Expiration settings" msgstr "إعدادات انتهاء الصلاحية" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "Automatically expire posts after this many days:" msgstr "أنه صَلاحِيَة المشاركات تلقائياً بعد هذا العدد من الأيام:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "إذا كان فارغاً، لن تنتهي صلاحية المشاركات. وإلا بعد المهلة ستحذف المشاركات المنتهية صلاحيتها" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "Expire posts" msgstr "أنه صَلاحِيَة المشاركات" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "When activated, posts and comments will be expired." msgstr "عند تفعيله، ستنهى صلاحية المشاركات والتعليقات." -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "Expire personal notes" msgstr "أنه صَلاحِيَة الملاحظات الشخصية" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "عند تفعيله، ستنهى صلاحية الملاحظات الشخصية على صفحة ملفك الشخصي." -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "Expire starred posts" msgstr "أنتهي صلاحية المشاركات المفضلة" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "تفضيل مشاركة تقيها من انتهاء الصلاحية. هذا السلوك يُتجاوز من خلال هذا الإعداد." -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 msgid "Only expire posts by others" msgstr "أنه صَلاحِيَة مشاركات الآخرين فقط" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 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:592 +#: src/Module/Settings/Account.php:554 msgid "Notification Settings" msgstr "إعدادات التنبيهات" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:555 msgid "Send a notification email when:" msgstr "أرسل تنبيها للبريدي الإلكتروني عند:" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:556 msgid "You receive an introduction" msgstr "تلقي تقديم" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:557 msgid "Your introductions are confirmed" msgstr "أُكدت تقديماتك" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:558 msgid "Someone writes on your profile wall" msgstr "يكتب شخص ما على جدار ملفك الشخصي" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:559 msgid "Someone writes a followup comment" msgstr "شخص ما يعلق على ما نشرت" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:560 msgid "You receive a private message" msgstr "تلقي رسالة خاصة" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:561 msgid "You receive a friend suggestion" msgstr "تلقي اقتراح صداقة" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:562 msgid "You are tagged in a post" msgstr "ذُكرتَ في مشاركة" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:564 msgid "Create a desktop notification when:" msgstr "أنشئ تنبيه سطح المكتب عند:" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:565 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:566 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:567 msgid "Someone liked your content" msgstr "أُعجب شخص بمحتواك" -#: src/Module/Settings/Account.php:605 src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:567 src/Module/Settings/Account.php:568 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:568 msgid "Someone shared your content" msgstr "شارك شخص محتواك" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:569 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:570 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:571 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Activate desktop notifications" msgstr "نشّط تنبيهات سطح المكتب" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Show desktop popup on new notifications" msgstr "أظهر منبثقات للتنبيهات الجديدة" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:577 msgid "Text-only notification emails" msgstr "رسائل تنبيه نصية فقط" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:579 msgid "Send text only notification emails, without the html part" msgstr "أرسل بريد التنبيه كنص فقط، دون وسوم html" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:583 msgid "Show detailled notifications" msgstr "اعرض تنبيهات مفصلة" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:585 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "افتراضيًا ، يعرض أحدث تنبيه فقط لكل محادثة. عند تفعيله ستعرض جميع التنبيهات." -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:589 msgid "Show notifications of ignored contacts" msgstr "أظهر تنبيهات للمتراسلين المتجاهلين" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:591 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:632 +#: src/Module/Settings/Account.php:594 msgid "Advanced Account/Page Type Settings" msgstr "الإعدادات المتقدمة للحساب/للصفحة" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:595 msgid "Change the behaviour of this account for special situations" msgstr "غيّر سلوك هذا الحساب للحالات الخاصة" -#: src/Module/Settings/Account.php:636 -msgid "Import Contacts" -msgstr "استيراد متراسلين" - -#: src/Module/Settings/Account.php:637 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "ارفع ملف CSV معرفات المتراسلين لحسابك القديم، معرفات المتابَعين تكون في العمود الأول." - -#: src/Module/Settings/Account.php:638 -msgid "Upload File" -msgstr "ارفع ملفًا" - -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:598 msgid "Relocate" msgstr "الانتقال" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:599 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:643 +#: src/Module/Settings/Account.php:600 msgid "Resend relocate message to contacts" msgstr "أعد إرسال رسالة الانتقال للمتراسلين" @@ -10586,214 +10574,232 @@ msgstr "" msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:108 +#: src/Module/Settings/Connectors.php:107 msgid "Failed to connect with email account using the settings provided." msgstr "فشل الاتصال بحساب البريد الإلكتروني باستخدام الإعدادات المقدمة." -#: src/Module/Settings/Connectors.php:155 -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:150 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "دياسبورا (سوشل-هوم، هوب-زيلا)" -#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:149 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:150 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:161 msgid "Email access is disabled on this site." msgstr "الوصول إلى البريد الإلكتروني معطل في هذا الموقع." -#: src/Module/Settings/Connectors.php:182 -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:176 +#: src/Module/Settings/Connectors.php:226 msgid "None" msgstr "لا شيء" -#: src/Module/Settings/Connectors.php:186 +#: src/Module/Settings/Connectors.php:180 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "" -#: src/Module/Settings/Connectors.php:187 +#: src/Module/Settings/Connectors.php:181 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "" -#: src/Module/Settings/Connectors.php:188 +#: src/Module/Settings/Connectors.php:182 msgid "Embed the title in the body" msgstr "" -#: src/Module/Settings/Connectors.php:199 +#: src/Module/Settings/Connectors.php:193 msgid "General Social Media Settings" msgstr "الإعدادات العامة لشبكات التواصل الاجتماعي" -#: src/Module/Settings/Connectors.php:202 +#: src/Module/Settings/Connectors.php:196 msgid "Followed content scope" msgstr "حيز المحتوى المتابَع" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:198 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:200 msgid "Only conversations my follows started" msgstr "المحادثات التي بدأها متابَعي فقط" -#: src/Module/Settings/Connectors.php:207 +#: src/Module/Settings/Connectors.php:201 msgid "Conversations my follows started or commented on (default)" msgstr "المحادثات التي بدأها متابَعي أو علقوا عليها (الافتراضي)" -#: src/Module/Settings/Connectors.php:208 +#: src/Module/Settings/Connectors.php:202 msgid "Any conversation my follows interacted with, including likes" msgstr "أي محادثة تفاعل معها متابَعي" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "Enable intelligent shortening" msgstr "فعّل الاختصار الذكي" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "يعثر الاختصار الذكي على الرابط الأنسب في المشاركات المختصرة. عند تعطيله سيشير الرابط إلى منشور فرنديكا الأصلي." -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "Enable simple text shortening" msgstr "فعّل اختصار النصوص" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "Attach the link title" msgstr "أرفق عنوان الرابط" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "عند تفعيله سيتم إرفاق عنوان الصفحة بمنشور دياسبورا. هذا مفيد بشكل أساسي مع المتراسلين \"الذاتيين\" الذين يشاركون تغذيات Rss / Atom." -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "Article Mode" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "" -#: src/Module/Settings/Connectors.php:218 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "حساب GNU Social\\ActivityPub القديم" - -#: src/Module/Settings/Connectors.php:218 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "إذا قمت بإدخال اسم حساب ActivityPub/GNU Social/Statusnet القديم هنا (بنسق user@domain.tld)، سيضاف المتراسلون في هذا الحساب تلقائيا. سيصفر الحقل عند الانتهاء." - -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:215 msgid "Email/Mailbox Setup" msgstr "إعداد بريد الكتروني/صندوق بريد" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:216 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "إذا كنت ترغب في التواصل مع متراسلي البريد الإلكتروني باستخدام هذه الخدمة (اختيارية)، من فضلك حدد كيفية الاتصال بصندوق بريدك." -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:217 msgid "Last successful email check:" msgstr "آخر تحقق ناجح للبريد الإلكتروني:" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:219 msgid "IMAP server name:" msgstr "اسم خادم IMAP:" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:220 msgid "IMAP port:" msgstr "منفذ IMAP:" -#: src/Module/Settings/Connectors.php:228 +#: src/Module/Settings/Connectors.php:221 msgid "Security:" msgstr "الحماية:" -#: src/Module/Settings/Connectors.php:229 +#: src/Module/Settings/Connectors.php:222 msgid "Email login name:" msgstr "اسم الولوج للبريد الإلكتروني:" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:223 msgid "Email password:" msgstr "كلمة مرور البريد الإلكتروني:" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:224 msgid "Reply-to address:" msgstr "الرد على عنوان:" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:225 msgid "Send public posts to all email contacts:" msgstr "أرسل المشاركات العلنية لجميع متراسلي البريد الإلكتروني:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Action after import:" msgstr "الإجراء بعد الاستيراد:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Move to folder" msgstr "انقل إلى مجلد" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:227 msgid "Move to folder:" msgstr "انقل إلى المجلد:" +#: src/Module/Settings/ContactImport.php:63 +msgid "Contact CSV file upload error" +msgstr "خطأ أثناء رفع ملف CSV" + +#: src/Module/Settings/ContactImport.php:82 +msgid "Importing Contacts done" +msgstr "أُستورد المتراسلون" + +#: src/Module/Settings/ContactImport.php:112 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "ارفع ملف CSV معرفات المتراسلين لحسابك القديم، معرفات المتابَعين تكون في العمود الأول." + +#: src/Module/Settings/ContactImport.php:113 +msgid "Upload File" +msgstr "ارفع ملفًا" + +#: src/Module/Settings/ContactImport.php:115 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "حساب GNU Social\\ActivityPub القديم" + +#: src/Module/Settings/ContactImport.php:115 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "إذا قمت بإدخال اسم حساب ActivityPub/GNU Social/Statusnet القديم هنا (بنسق user@domain.tld)، سيضاف المتراسلون في هذا الحساب تلقائيا. سيصفر الحقل عند الانتهاء." + #: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "منح التفويض بنجاح." @@ -11244,42 +11250,42 @@ msgstr "الكلمات المفتاحية الخاصة:" msgid "(Used for searching profiles, never shown to others)" msgstr "(يستخدم للبحث عن ملفات الشخصية، لا يظهر للآخرين)" -#: 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/Crop.php:90 +#: src/Module/Settings/Profile/Photo/Crop.php:108 +#: src/Module/Settings/Profile/Photo/Crop.php:126 #: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "فشل تقليص حجم الصورة [%s]." -#: src/Module/Settings/Profile/Photo/Crop.php:136 +#: src/Module/Settings/Profile/Photo/Crop.php:133 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "إذا لم تظهر الصورة الجديدة أعد تحميل الصفحة مع الضغط على مفتاح Shift، أو امسح ذاكرة التخزين المؤقت للمتصفح." -#: src/Module/Settings/Profile/Photo/Crop.php:141 +#: src/Module/Settings/Profile/Photo/Crop.php:138 msgid "Unable to process image" msgstr "تعذرت معالجة الصورة" -#: src/Module/Settings/Profile/Photo/Crop.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:157 msgid "Photo not found." msgstr "لم يُعثر على الصورة." -#: src/Module/Settings/Profile/Photo/Crop.php:182 +#: src/Module/Settings/Profile/Photo/Crop.php:179 msgid "Profile picture successfully updated." msgstr "نجح تحديث صورة الملف الشخصي." -#: src/Module/Settings/Profile/Photo/Crop.php:208 -#: src/Module/Settings/Profile/Photo/Crop.php:212 +#: src/Module/Settings/Profile/Photo/Crop.php:205 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Crop Image" msgstr "قص الصورة" -#: src/Module/Settings/Profile/Photo/Crop.php:209 +#: src/Module/Settings/Profile/Photo/Crop.php:206 msgid "Please adjust the image cropping for optimum viewing." msgstr "اضبط قص الصور للحصول على أفضل عرض ممكن." -#: src/Module/Settings/Profile/Photo/Crop.php:211 +#: src/Module/Settings/Profile/Photo/Crop.php:208 msgid "Use Image As Is" msgstr "استخدم الصورة كما هي" @@ -11350,17 +11356,17 @@ msgstr "معرف المستخدم هو %d" msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:116 +#: src/Module/Settings/RemoveMe.php:114 msgid "Remove My Account" msgstr "أزل حسابي" -#: src/Module/Settings/RemoveMe.php:117 +#: src/Module/Settings/RemoveMe.php:115 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "سيزال حسابك نهائيًا. لا مجال لتراجع عند انتهائه." -#: src/Module/Settings/RemoveMe.php:122 +#: src/Module/Settings/RemoveMe.php:120 msgid "Please enter your password for verification:" msgstr "يرجى إدخال كلمة المرور للتأكيد:" @@ -11755,11 +11761,11 @@ msgstr "" msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:64 +#: src/Module/Special/HTTPException.php:65 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:69 +#: src/Module/Special/HTTPException.php:70 #, php-format msgid "Exception thrown in %s:%d" msgstr "" @@ -12546,221 +12552,221 @@ msgstr "رجاء اتصل بالمرسل بالرد على هذا المشارك msgid "%s posted an update." msgstr "نشر %s تحديثاً." -#: src/Object/Post.php:124 +#: src/Object/Post.php:125 msgid "Private Message" msgstr "رسالة خاصة" -#: src/Object/Post.php:128 +#: src/Object/Post.php:129 msgid "Public Message" msgstr "رسالة علنية" -#: src/Object/Post.php:132 +#: src/Object/Post.php:133 msgid "Unlisted Message" msgstr "رسالة غير مدرجة" -#: src/Object/Post.php:168 +#: src/Object/Post.php:169 msgid "This entry was edited" msgstr "عدّل المدخل" -#: src/Object/Post.php:196 +#: src/Object/Post.php:197 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:225 src/Object/Post.php:227 +#: src/Object/Post.php:226 src/Object/Post.php:228 msgid "Edit" msgstr "تعديل" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Delete globally" msgstr "احذفه عالميًا" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Remove locally" msgstr "أزله محليًا" -#: src/Object/Post.php:268 +#: src/Object/Post.php:269 #, php-format msgid "Block %s" msgstr "احجب %s" -#: src/Object/Post.php:273 +#: src/Object/Post.php:274 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:278 +#: src/Object/Post.php:279 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:282 +#: src/Object/Post.php:283 msgid "Report post" msgstr "" -#: src/Object/Post.php:293 +#: src/Object/Post.php:294 msgid "Save to folder" msgstr "احفظ في مجلد" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will attend" msgstr "سأحضره" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will not attend" msgstr "لن أحضره" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I might attend" msgstr "قد أحضره" -#: src/Object/Post.php:380 +#: src/Object/Post.php:381 msgid "Ignore thread" msgstr "تجاهل النقاش" -#: src/Object/Post.php:381 +#: src/Object/Post.php:382 msgid "Unignore thread" msgstr "ألغ تجاهل النقاش" -#: src/Object/Post.php:382 +#: src/Object/Post.php:383 msgid "Toggle ignore status" msgstr "بدّل حالة التجاهل" -#: src/Object/Post.php:392 +#: src/Object/Post.php:393 msgid "Add star" msgstr "أضف للمفضلة" -#: src/Object/Post.php:393 +#: src/Object/Post.php:394 msgid "Remove star" msgstr "أزل من المفضلة" -#: src/Object/Post.php:394 +#: src/Object/Post.php:395 msgid "Toggle star status" msgstr "بدِّل حالة التفضيل" -#: src/Object/Post.php:405 +#: src/Object/Post.php:406 msgid "Pin" msgstr "ثبّت" -#: src/Object/Post.php:406 +#: src/Object/Post.php:407 msgid "Unpin" msgstr "ألغ التثبيت" -#: src/Object/Post.php:407 +#: src/Object/Post.php:408 msgid "Toggle pin status" msgstr "بدِّل حالة التثبيت" -#: src/Object/Post.php:410 +#: src/Object/Post.php:411 msgid "Pinned" msgstr "مُثَبَت" -#: src/Object/Post.php:415 +#: src/Object/Post.php:416 msgid "Add tag" msgstr "أضف وسما" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote share this" msgstr "اقتبس وشارك" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote Share" msgstr "اقتبس وشارك" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare this" msgstr "أعاد نشر هذا" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare" msgstr "أعد نشره" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Cancel your Reshare" msgstr "ألغ إعادة النشر" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Unshare" msgstr "ألغ المشاركة" -#: src/Object/Post.php:478 +#: src/Object/Post.php:479 #, php-format msgid "%s (Received %s)" msgstr "%s (استلم %s)" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Comment this item on your system" msgstr "علّق على هذا العنصر على خادمك" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Remote comment" msgstr "تعليق بعيد" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via ..." msgstr "شارك عبر" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:514 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:517 +#: src/Object/Post.php:518 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:519 +#: src/Object/Post.php:520 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:543 +#: src/Object/Post.php:544 msgid "to" msgstr "إلى" -#: src/Object/Post.php:544 +#: src/Object/Post.php:545 msgid "via" msgstr "عبر" -#: src/Object/Post.php:545 +#: src/Object/Post.php:546 msgid "Wall-to-Wall" msgstr "حائط لحائط" -#: src/Object/Post.php:546 +#: src/Object/Post.php:547 msgid "via Wall-To-Wall:" msgstr "عير حائط لحائط" -#: src/Object/Post.php:599 +#: src/Object/Post.php:600 #, php-format msgid "Reply to %s" msgstr "رد على %s" -#: src/Object/Post.php:602 +#: src/Object/Post.php:603 msgid "More" msgstr "المزيد" -#: src/Object/Post.php:621 +#: src/Object/Post.php:622 msgid "Notifier task is pending" msgstr "مهمة التنبيه معلقة" -#: src/Object/Post.php:622 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is pending" msgstr "التسليم للخوادم البعيدة معلق" -#: src/Object/Post.php:623 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is underway" msgstr "التسليم إلى الخوادم البعيدة جار" -#: src/Object/Post.php:624 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is mostly done" msgstr "التسليم إلى الخوادم البعيدة يكاد يكتمل" -#: src/Object/Post.php:625 +#: src/Object/Post.php:626 msgid "Delivery to remote servers is done" msgstr "التسليم للخوادم البعيدة اكتمل" -#: src/Object/Post.php:647 +#: src/Object/Post.php:648 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -12771,74 +12777,74 @@ msgstr[3] "%d تعليقات" msgstr[4] "%d تعليقا" msgstr[5] "%d تعليق" -#: src/Object/Post.php:648 +#: src/Object/Post.php:649 msgid "Show more" msgstr "اعرض المزيد" -#: src/Object/Post.php:649 +#: src/Object/Post.php:650 msgid "Show fewer" msgstr "اعرض أقل" -#: src/Object/Post.php:686 +#: src/Object/Post.php:687 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:691 +#: src/Object/Post.php:692 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:696 +#: src/Object/Post.php:697 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:701 +#: src/Object/Post.php:702 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:706 +#: src/Object/Post.php:707 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:711 +#: src/Object/Post.php:712 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:716 +#: src/Object/Post.php:717 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:721 +#: src/Object/Post.php:722 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:726 +#: src/Object/Post.php:727 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:731 +#: src/Object/Post.php:732 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:754 +#: src/Object/Post.php:755 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:557 +#: src/Protocol/ActivityPub/Receiver.php:558 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:530 +#: src/Protocol/Delivery.php:531 msgid "(no subject)" msgstr "(بدون موضوع)" @@ -12851,20 +12857,20 @@ msgstr "" msgid "Login failed." msgstr "فشل الولوج." -#: src/Security/Authentication.php:260 +#: src/Security/Authentication.php:261 msgid "Login failed. Please check your credentials." msgstr "فشل الولوج. من فضلك تحقق من بيانات الاعتماد." -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:374 #, php-format msgid "Welcome %s" msgstr "مرحباً %s" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:375 msgid "Please upload a profile photo." msgstr "من فضلك ارفع صورة لملفك الشخصي." -#: src/Security/OpenWebAuth.php:149 +#: src/Security/OpenWebAuth.php:150 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s يرحب بـ %2$s" diff --git a/view/lang/ar/strings.php b/view/lang/ar/strings.php index a2ad6a8dac..d5f933fc71 100644 --- a/view/lang/ar/strings.php +++ b/view/lang/ar/strings.php @@ -1106,6 +1106,7 @@ $a->strings['Display'] = 'العرض'; $a->strings['Social Networks'] = 'الشبكات الاجتماعية'; $a->strings['Manage Accounts'] = 'إدارة الحسابات'; $a->strings['Connected apps'] = 'التطبيقات المتصلة'; +$a->strings['Import Contacts'] = 'استيراد متراسلين'; $a->strings['Export personal data'] = 'تصدير البيانات الشخصية'; $a->strings['Remove account'] = 'أزل الحساب'; $a->strings['This page is missing a url parameter.'] = 'هذه الصفحة تفتقد معطى للرابط.'; @@ -1768,8 +1769,6 @@ $a->strings['Wrong Password.'] = 'كلمة المرور خاطئة.'; $a->strings['Invalid email.'] = 'البريد الإلكتروني غير صالح.'; $a->strings['Cannot change to that email.'] = 'لا يمكن التغيير إلى هذا البريد الإلكتروني.'; $a->strings['Settings were not updated.'] = 'لم تُحدث الإعدادات.'; -$a->strings['Contact CSV file upload error'] = 'خطأ أثناء رفع ملف CSV'; -$a->strings['Importing Contacts done'] = 'أُستورد المتراسلون'; $a->strings['Relocate message has been send to your contacts'] = 'أُرسلت رسالة تنبيه بانتقالك إلى متراسليك'; $a->strings['Unable to find your profile. Please contact your admin.'] = 'تعذر العثور على ملفك الشخصي. من فضلك اتصال بالمدير.'; $a->strings['Personal Page Subtypes'] = 'الأنواع الفرعية للصفحة الشخصية'; @@ -1851,9 +1850,6 @@ $a->strings['Show notifications of ignored contacts'] = 'أظهر تنبيهات $a->strings['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.'] = 'أنت لا ترى مشاركات المتراسلين المتجاهلين. لكن لا يزال بإمكانك رؤية تعليقاتهم. هذا الإعداد يتحكم إذا كنت ترغب في الاستمرار في تلقي تنبيهات سببها المتراسلون المتجاهلون.'; $a->strings['Advanced Account/Page Type Settings'] = 'الإعدادات المتقدمة للحساب/للصفحة'; $a->strings['Change the behaviour of this account for special situations'] = 'غيّر سلوك هذا الحساب للحالات الخاصة'; -$a->strings['Import Contacts'] = 'استيراد متراسلين'; -$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'ارفع ملف CSV معرفات المتراسلين لحسابك القديم، معرفات المتابَعين تكون في العمود الأول.'; -$a->strings['Upload File'] = 'ارفع ملفًا'; $a->strings['Relocate'] = 'الانتقال'; $a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'إذا كنت قد نقلت هذا الملف الشخصي من خادم آخر، وبعض المتراسلين لا يتلقون تحديثاتك، أنقر هذا الزر.'; $a->strings['Resend relocate message to contacts'] = 'أعد إرسال رسالة الانتقال للمتراسلين'; @@ -1875,8 +1871,6 @@ $a->strings['Normally the system tries to find the best link to add to shortened $a->strings['Enable simple text shortening'] = 'فعّل اختصار النصوص'; $a->strings['Attach the link title'] = 'أرفق عنوان الرابط'; $a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'عند تفعيله سيتم إرفاق عنوان الصفحة بمنشور دياسبورا. هذا مفيد بشكل أساسي مع المتراسلين "الذاتيين" الذين يشاركون تغذيات Rss / Atom.'; -$a->strings['Your legacy ActivityPub/GNU Social account'] = 'حساب GNU Social\ActivityPub القديم'; -$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'إذا قمت بإدخال اسم حساب ActivityPub/GNU Social/Statusnet القديم هنا (بنسق user@domain.tld)، سيضاف المتراسلون في هذا الحساب تلقائيا. سيصفر الحقل عند الانتهاء.'; $a->strings['Email/Mailbox Setup'] = 'إعداد بريد الكتروني/صندوق بريد'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'إذا كنت ترغب في التواصل مع متراسلي البريد الإلكتروني باستخدام هذه الخدمة (اختيارية)، من فضلك حدد كيفية الاتصال بصندوق بريدك.'; $a->strings['Last successful email check:'] = 'آخر تحقق ناجح للبريد الإلكتروني:'; @@ -1890,6 +1884,12 @@ $a->strings['Send public posts to all email contacts:'] = 'أرسل المشار $a->strings['Action after import:'] = 'الإجراء بعد الاستيراد:'; $a->strings['Move to folder'] = 'انقل إلى مجلد'; $a->strings['Move to folder:'] = 'انقل إلى المجلد:'; +$a->strings['Contact CSV file upload error'] = 'خطأ أثناء رفع ملف CSV'; +$a->strings['Importing Contacts done'] = 'أُستورد المتراسلون'; +$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'ارفع ملف CSV معرفات المتراسلين لحسابك القديم، معرفات المتابَعين تكون في العمود الأول.'; +$a->strings['Upload File'] = 'ارفع ملفًا'; +$a->strings['Your legacy ActivityPub/GNU Social account'] = 'حساب GNU Social\ActivityPub القديم'; +$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'إذا قمت بإدخال اسم حساب ActivityPub/GNU Social/Statusnet القديم هنا (بنسق user@domain.tld)، سيضاف المتراسلون في هذا الحساب تلقائيا. سيصفر الحقل عند الانتهاء.'; $a->strings['Delegation successfully granted.'] = 'منح التفويض بنجاح.'; $a->strings['Parent user not found, unavailable or password doesn\'t match.'] = 'لم يُعثر على الولي أو هو غير متوفر أو كلمة مرور غير صحيحة.'; $a->strings['Delegation successfully revoked.'] = 'نجح إبطال التفويض.'; diff --git a/view/lang/bg/messages.po b/view/lang/bg/messages.po index 7a36d3d879..421353830f 100644 --- a/view/lang/bg/messages.po +++ b/view/lang/bg/messages.po @@ -10,7 +10,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: Rafael Kalachev , 2021\n" "Language-Team: Bulgarian (http://app.transifex.com/Friendica/friendica/language/bg/)\n" @@ -20,34 +20,34 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\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 "Empty мнение изхвърли." -#: 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 @@ -58,7 +58,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 @@ -67,13 +67,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 @@ -82,15 +84,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" @@ -106,7 +108,7 @@ msgid "" "\t\tissued this request." msgstr "" -#: mod/lostpass.php:57 +#: mod/lostpass.php:56 #, php-format msgid "" "\n" @@ -123,70 +125,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "" -#: 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 Settings page after " "successful login." msgstr "Вашата парола може да бъде променена от Настройки , След успешен вход." -#: 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" @@ -197,7 +199,7 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:152 +#: mod/lostpass.php:151 #, php-format msgid "" "\n" @@ -211,7 +213,7 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:164 +#: mod/lostpass.php:163 #, php-format msgid "Your password has been changed at %s" msgstr "" @@ -275,11 +277,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 "Качване на снимка" @@ -288,16 +290,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 @@ -305,7 +307,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 @@ -314,7 +316,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" @@ -372,396 +374,396 @@ msgid_plural "%d messages" msgstr[0] "" msgstr[1] "" -#: 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 "" -#: 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 "" -#: 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 "" -#: mod/photos.php:958 +#: mod/photos.php:956 msgid "Use as profile photo" msgstr "Използва се като снимката на профила" -#: mod/photos.php:965 +#: mod/photos.php:963 msgid "Private Photo" msgstr "" -#: mod/photos.php:971 +#: mod/photos.php:969 msgid "View Full Size" msgstr "Изглед в пълен размер" -#: mod/photos.php:1024 +#: mod/photos.php:1022 msgid "Tags: " msgstr "Маркери: " -#: mod/photos.php:1027 +#: mod/photos.php:1025 msgid "[Select tags to remove]" msgstr "" -#: mod/photos.php:1042 +#: mod/photos.php:1040 msgid "New album name" msgstr "Ново име на албум" -#: mod/photos.php:1043 +#: mod/photos.php:1041 msgid "Caption" msgstr "Надпис" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "Add a Tag" msgstr "Добавите етикет" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Пример: @ Боб, @ Barbara_Jensen, jim@example.com @, # Калифорния, къмпинг" -#: mod/photos.php:1045 +#: mod/photos.php:1043 msgid "Do not rotate" msgstr "" -#: mod/photos.php:1046 +#: mod/photos.php:1044 msgid "Rotate CW (right)" msgstr "Rotate CW (вдясно)" -#: mod/photos.php:1047 +#: mod/photos.php:1045 msgid "Rotate CCW (left)" msgstr "Завъртане ККО (вляво)" -#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: mod/photos.php:1091 mod/photos.php:1147 mod/photos.php:1227 #: src/Module/Contact.php:600 src/Module/Item/Compose.php:184 -#: src/Object/Post.php:1142 +#: src/Object/Post.php:1143 msgid "This is you" msgstr "Това сте вие" -#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 -#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:598 -#: src/Object/Post.php:1144 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:599 +#: src/Object/Post.php:1145 msgid "Comment" msgstr "Коментар" -#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 -#: src/Content/Conversation.php:401 src/Module/Calendar/Event/Form.php:234 +#: 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 -#: src/Object/Post.php:1158 +#: src/Object/Post.php:1159 msgid "Preview" msgstr "Преглед" -#: mod/photos.php:1098 src/Content/Conversation.php:355 -#: src/Module/Post/Edit.php:121 src/Object/Post.php:1146 +#: mod/photos.php:1096 src/Content/Conversation.php:357 +#: src/Module/Post/Edit.php:121 src/Object/Post.php:1147 msgid "Loading..." msgstr "Зареждане..." -#: mod/photos.php:1190 src/Content/Conversation.php:1485 -#: src/Object/Post.php:260 +#: mod/photos.php:1188 src/Content/Conversation.php:1487 +#: src/Object/Post.php:261 msgid "Select" msgstr "избор" -#: mod/photos.php:1191 src/Content/Conversation.php:1486 -#: 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:233 +#: 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 +#: src/Module/Settings/Connectors.php:226 #: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Изтриване" -#: mod/photos.php:1252 src/Object/Post.php:426 +#: mod/photos.php:1250 src/Object/Post.php:427 msgid "Like" msgstr "" -#: mod/photos.php:1253 src/Object/Post.php:426 +#: mod/photos.php:1251 src/Object/Post.php:427 msgid "I like this (toggle)" msgstr "Харесва ми това (смяна)" -#: mod/photos.php:1254 src/Object/Post.php:427 +#: mod/photos.php:1252 src/Object/Post.php:428 msgid "Dislike" msgstr "" -#: mod/photos.php:1256 src/Object/Post.php:427 +#: mod/photos.php:1254 src/Object/Post.php:428 msgid "I don't like this (toggle)" msgstr "Не ми харесва това (смяна)" -#: mod/photos.php:1278 +#: mod/photos.php:1276 msgid "Map" msgstr "" -#: src/App.php:467 +#: src/App.php:255 msgid "Apologies but the website is unavailable at the moment." msgstr "" -#: src/App/Page.php:237 +#: src/App/Page.php:241 msgid "Delete this item?" msgstr "Изтриване на тази бележка?" -#: src/App/Page.php:238 +#: src/App/Page.php:242 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:239 +#: src/App/Page.php:243 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:240 +#: src/App/Page.php:244 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:241 +#: src/App/Page.php:245 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:242 src/Module/Settings/Server/Action.php:47 +#: src/App/Page.php:246 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:244 +#: src/App/Page.php:248 msgid "Like not successful" msgstr "" -#: src/App/Page.php:245 +#: src/App/Page.php:249 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:246 +#: src/App/Page.php:250 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:247 +#: src/App/Page.php:251 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:248 +#: src/App/Page.php:252 msgid "Backend error" msgstr "" -#: src/App/Page.php:249 +#: src/App/Page.php:253 msgid "Network error" msgstr "" -#: src/App/Page.php:252 +#: src/App/Page.php:256 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:257 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:254 +#: src/App/Page.php:258 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:255 +#: src/App/Page.php:259 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:256 +#: src/App/Page.php:260 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:261 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:262 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:263 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:264 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:265 msgid "Remove file" msgstr "" -#: src/App/Page.php:262 +#: src/App/Page.php:266 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:346 +#: src/App/Page.php:350 msgid "toggle mobile" msgstr "" @@ -794,7 +796,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:181 src/Module/Contact.php:395 +#: src/Content/Widget.php:254 src/Core/ACL.php:182 src/Module/Contact.php:395 #: src/Module/Privacy/PermissionTooltip.php:150 #: src/Module/Privacy/PermissionTooltip.php:172 #: src/Module/Settings/Channels.php:146 @@ -836,7 +838,7 @@ msgstr "" msgid "The contact entries have been archived" msgstr "" -#: src/Console/ClearAvatarCache.php:73 +#: src/Console/ClearAvatarCache.php:74 msgid "" "The avatar cache needs to be disabled in local.config.php to use this " "command." @@ -922,22 +924,22 @@ msgstr "" msgid "no resource in photo %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:123 +#: src/Console/MoveToAvatarCache.php:127 #, php-format msgid "no photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:132 +#: src/Console/MoveToAvatarCache.php:136 #, php-format msgid "no image data for photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:141 +#: src/Console/MoveToAvatarCache.php:145 #, php-format msgid "invalid image for id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:154 +#: src/Console/MoveToAvatarCache.php:158 #, php-format msgid "Quit on invalid photo %s" msgstr "" @@ -967,11 +969,14 @@ msgstr "" msgid "Enter user nickname: " msgstr "" -#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Console/User.php:168 src/Model/User.php:830 #: src/Module/Api/Twitter/ContactEndpoint.php:62 -#: 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/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/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "" @@ -981,12 +986,12 @@ msgid "Enter new password: " msgstr "" #: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 -#: src/Module/Settings/Account.php:59 +#: src/Module/Settings/Account.php:57 msgid "Password update failed. Please try again." msgstr "Парола актуализация се провали. Моля, опитайте отново." #: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 -#: src/Module/Settings/Account.php:62 +#: src/Module/Settings/Account.php:60 msgid "Password changed." msgstr "Парола промени." @@ -1067,86 +1072,86 @@ msgstr "" msgid "Monthly" msgstr "" -#: src/Content/ContactSelector.php:118 +#: src/Content/ContactSelector.php:117 msgid "DFRN" msgstr "" -#: src/Content/ContactSelector.php:119 +#: src/Content/ContactSelector.php:118 msgid "OStatus" msgstr "" -#: src/Content/ContactSelector.php:120 +#: src/Content/ContactSelector.php:119 msgid "RSS/Atom" msgstr "" -#: src/Content/ContactSelector.php:121 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Content/ContactSelector.php:120 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:58 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "Е-поща" -#: src/Content/ContactSelector.php:122 src/Module/Debug/Babel.php:273 +#: src/Content/ContactSelector.php:121 src/Module/Debug/Babel.php:273 msgid "Diaspora" msgstr "Диаспора" -#: src/Content/ContactSelector.php:123 +#: src/Content/ContactSelector.php:122 msgid "Zot!" msgstr "" -#: src/Content/ContactSelector.php:124 +#: src/Content/ContactSelector.php:123 msgid "LinkedIn" msgstr "" -#: src/Content/ContactSelector.php:125 +#: src/Content/ContactSelector.php:124 msgid "XMPP/IM" msgstr "" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:125 msgid "MySpace" msgstr "" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:126 msgid "Google+" msgstr "" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:127 msgid "pump.io" msgstr "" -#: src/Content/ContactSelector.php:129 +#: src/Content/ContactSelector.php:128 msgid "Twitter" msgstr "" -#: src/Content/ContactSelector.php:130 +#: src/Content/ContactSelector.php:129 msgid "Discourse" msgstr "" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:130 msgid "Diaspora Connector" msgstr "" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:131 msgid "GNU Social Connector" msgstr "" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:132 msgid "ActivityPub" msgstr "" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:133 msgid "pnut" msgstr "" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:134 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:135 msgid "Bluesky" msgstr "" @@ -1155,374 +1160,374 @@ msgstr "" msgid "%s (via %s)" msgstr "" -#: src/Content/Conversation.php:213 +#: src/Content/Conversation.php:215 msgid "and" msgstr "и" -#: src/Content/Conversation.php:216 +#: src/Content/Conversation.php:218 #, php-format msgid "and %d other people" msgstr "" -#: src/Content/Conversation.php:222 +#: src/Content/Conversation.php:224 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:224 +#: src/Content/Conversation.php:226 #, 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:226 +#: src/Content/Conversation.php:228 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:230 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:230 +#: src/Content/Conversation.php:232 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:232 +#: src/Content/Conversation.php:234 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:263 +#: src/Content/Conversation.php:265 #, php-format msgid " likes this" msgid_plural " like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:266 +#: src/Content/Conversation.php:268 #, php-format msgid " doesn't like this" msgid_plural " don't like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:269 +#: src/Content/Conversation.php:271 #, php-format msgid " attends" msgid_plural " attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:272 +#: src/Content/Conversation.php:274 #, php-format msgid " doesn't attend" msgid_plural " don't attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:275 +#: src/Content/Conversation.php:277 #, php-format msgid " attends maybe" msgid_plural " attend maybe" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:278 +#: src/Content/Conversation.php:280 #, php-format msgid " reshared this" msgid_plural " reshared this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:324 +#: src/Content/Conversation.php:326 msgid "Visible to everybody" msgstr "Видим всички " -#: src/Content/Conversation.php:325 src/Module/Item/Compose.php:196 -#: src/Object/Post.php:1157 +#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196 +#: src/Object/Post.php:1158 msgid "Please enter a image/video/audio/webpage URL:" msgstr "" -#: src/Content/Conversation.php:326 +#: src/Content/Conversation.php:328 msgid "Tag term:" msgstr "Tag термин:" -#: src/Content/Conversation.php:327 src/Module/Filer/SaveTag.php:59 +#: src/Content/Conversation.php:329 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Запиши в папка:" -#: src/Content/Conversation.php:328 +#: src/Content/Conversation.php:330 msgid "Where are you right now?" msgstr "Къде сте в момента?" -#: src/Content/Conversation.php:329 +#: src/Content/Conversation.php:331 msgid "Delete item(s)?" msgstr "" -#: src/Content/Conversation.php:341 src/Module/Item/Compose.php:171 +#: src/Content/Conversation.php:343 src/Module/Item/Compose.php:171 msgid "Created at" msgstr "" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:353 msgid "New Post" msgstr "Нов пост" -#: src/Content/Conversation.php:354 +#: src/Content/Conversation.php:356 msgid "Share" msgstr "Споделяне" -#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:123 +#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:123 msgid "upload photo" msgstr "качване на снимка" -#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:124 +#: src/Content/Conversation.php:360 src/Module/Post/Edit.php:124 msgid "Attach file" msgstr "Прикачване на файл" -#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:125 +#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:125 msgid "attach file" msgstr "Прикачване на файл" -#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:186 -#: src/Module/Post/Edit.php:162 src/Object/Post.php:1147 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1148 msgid "Bold" msgstr "Получер" -#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:187 -#: src/Module/Post/Edit.php:163 src/Object/Post.php:1148 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1149 msgid "Italic" msgstr "Курсив" -#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:188 -#: src/Module/Post/Edit.php:164 src/Object/Post.php:1149 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1150 msgid "Underline" msgstr "Подчертан" -#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:189 -#: src/Module/Post/Edit.php:165 src/Object/Post.php:1151 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:165 src/Object/Post.php:1152 msgid "Quote" msgstr "Цитат" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:166 src/Object/Post.php:1152 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:166 src/Object/Post.php:1153 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:191 -#: src/Object/Post.php:1150 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Object/Post.php:1151 msgid "Content Warning" msgstr "" -#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:167 src/Object/Post.php:1153 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:167 src/Object/Post.php:1154 msgid "Code" msgstr "Код" -#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:193 -#: src/Object/Post.php:1154 +#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1155 msgid "Image" msgstr "Изображение" -#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:168 src/Object/Post.php:1155 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:168 src/Object/Post.php:1156 msgid "Link" msgstr "Връзка" -#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:195 -#: src/Module/Post/Edit.php:169 src/Object/Post.php:1156 +#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:169 src/Object/Post.php:1157 msgid "Link or Media" msgstr "" -#: src/Content/Conversation.php:370 +#: src/Content/Conversation.php:372 msgid "Video" msgstr "" -#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:198 +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:198 #: src/Module/Post/Edit.php:132 msgid "Set your location" msgstr "Задайте местоположението си" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:133 msgid "set location" msgstr "Задаване на местоположението" -#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:134 msgid "Clear browser location" msgstr "Изчистване на браузъра място" -#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:135 +#: src/Content/Conversation.php:376 src/Module/Post/Edit.php:135 msgid "clear location" msgstr "ясно място" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:203 +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:203 #: src/Module/Post/Edit.php:148 msgid "Set title" msgstr "Задайте заглавие" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:204 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 #: src/Module/Post/Edit.php:150 msgid "Categories (comma-separated list)" msgstr "Категории (разделен със запетаи списък)" -#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:220 +#: src/Content/Conversation.php:385 src/Module/Item/Compose.php:220 msgid "Scheduled at" msgstr "" -#: src/Content/Conversation.php:388 src/Module/Post/Edit.php:137 +#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:137 msgid "Permission settings" msgstr "Настройките за достъп" -#: src/Content/Conversation.php:397 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:399 src/Module/Post/Edit.php:146 msgid "Public post" msgstr "Обществена длъжност" -#: src/Content/Conversation.php:411 src/Content/Widget/VCard.php:121 +#: 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 msgid "Message" msgstr "Съобщение" -#: src/Content/Conversation.php:412 src/Module/Post/Edit.php:173 +#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:173 #: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Браузър" -#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:176 +#: src/Content/Conversation.php:416 src/Module/Post/Edit.php:176 msgid "Open Compose page" msgstr "" -#: src/Content/Conversation.php:581 +#: src/Content/Conversation.php:583 msgid "remove" msgstr "Премахване" -#: src/Content/Conversation.php:585 +#: src/Content/Conversation.php:587 msgid "Delete Selected Items" msgstr "Изтриване на избраните елементи" -#: src/Content/Conversation.php:713 src/Content/Conversation.php:716 -#: src/Content/Conversation.php:719 src/Content/Conversation.php:722 -#: src/Content/Conversation.php:725 +#: 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 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: src/Content/Conversation.php:728 +#: src/Content/Conversation.php:730 #, php-format msgid "You are following %s." msgstr "" -#: src/Content/Conversation.php:733 +#: src/Content/Conversation.php:735 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:735 +#: src/Content/Conversation.php:737 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:755 +#: src/Content/Conversation.php:757 #, php-format msgid "%s reshared this." msgstr "" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 msgid "Reshared" msgstr "" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 #, php-format msgid "Reshared by %s <%s>" msgstr "" -#: src/Content/Conversation.php:760 +#: src/Content/Conversation.php:762 #, php-format msgid "%s is participating in this thread." msgstr "" -#: src/Content/Conversation.php:763 +#: src/Content/Conversation.php:765 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:766 +#: src/Content/Conversation.php:768 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 msgid "Fetched" msgstr "" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 #, php-format msgid "Fetched because of %s <%s>" msgstr "" -#: src/Content/Conversation.php:775 +#: src/Content/Conversation.php:777 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:778 +#: src/Content/Conversation.php:780 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:781 +#: src/Content/Conversation.php:783 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:784 +#: src/Content/Conversation.php:786 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:787 +#: src/Content/Conversation.php:789 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1505 src/Object/Post.php:247 +#: src/Content/Conversation.php:1507 src/Object/Post.php:248 msgid "Pinned item" msgstr "" -#: src/Content/Conversation.php:1522 src/Object/Post.php:541 -#: src/Object/Post.php:542 +#: src/Content/Conversation.php:1524 src/Object/Post.php:542 +#: src/Object/Post.php:543 #, php-format msgid "View %s's profile @ %s" msgstr "Преглед профила на %s в %s" -#: src/Content/Conversation.php:1536 src/Object/Post.php:529 +#: src/Content/Conversation.php:1538 src/Object/Post.php:530 msgid "Categories:" msgstr "Категории:" -#: src/Content/Conversation.php:1537 src/Object/Post.php:530 +#: src/Content/Conversation.php:1539 src/Object/Post.php:531 msgid "Filed under:" msgstr "Записано в:" -#: src/Content/Conversation.php:1545 src/Object/Post.php:556 +#: src/Content/Conversation.php:1547 src/Object/Post.php:557 #, php-format msgid "%s from %s" msgstr "%s от %s" -#: src/Content/Conversation.php:1561 +#: src/Content/Conversation.php:1563 msgid "View in context" msgstr "Поглед в контекста" @@ -1655,7 +1660,7 @@ msgstr "Лично" msgid "Posts that mention or involve you" msgstr "Мнения, които споменават или включват" -#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:398 msgid "Starred" msgstr "Със звезда" @@ -1742,7 +1747,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:552 src/Model/User.php:1390 +#: src/Content/Widget.php:555 src/Model/User.php:1390 msgid "Groups" msgstr "" @@ -1750,7 +1755,7 @@ msgstr "" msgid "Display posts that have been distributed by the selected group." msgstr "" -#: src/Content/Feature.php:117 src/Content/Widget.php:521 +#: src/Content/Feature.php:117 src/Content/Widget.php:524 msgid "Archives" msgstr "Архиви" @@ -1766,8 +1771,8 @@ msgstr "" msgid "Display posts with the selected protocols." msgstr "" -#: src/Content/Feature.php:119 src/Content/Widget.php:558 -#: src/Module/Settings/Account.php:429 +#: src/Content/Feature.php:119 src/Content/Widget.php:561 +#: src/Module/Settings/Account.php:391 msgid "Account Types" msgstr "" @@ -1775,7 +1780,7 @@ msgstr "" msgid "Display posts done by accounts with the selected account type." msgstr "" -#: src/Content/Feature.php:120 src/Content/Widget.php:607 +#: 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 msgid "Channels" @@ -1801,7 +1806,7 @@ msgstr "Записани папки" msgid "Display a list of folders in which posts are stored." msgstr "" -#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:189 msgid "Own Contacts" msgstr "" @@ -1857,12 +1862,12 @@ msgstr "" msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:139 src/Content/Widget.php:527 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:530 msgid "show less" msgstr "" #: src/Content/GroupManager.php:140 src/Content/Widget.php:425 -#: src/Content/Widget.php:528 +#: src/Content/Widget.php:531 msgid "show more" msgstr "покажи още" @@ -1870,66 +1875,66 @@ msgstr "покажи още" msgid "Create new group" msgstr "" -#: src/Content/Item.php:317 src/Model/Item.php:3273 +#: src/Content/Item.php:322 src/Model/Item.php:3281 msgid "event" msgstr "събитието." -#: src/Content/Item.php:320 src/Content/Item.php:330 +#: src/Content/Item.php:325 src/Content/Item.php:335 msgid "status" msgstr "статус" -#: src/Content/Item.php:326 src/Model/Item.php:3275 +#: src/Content/Item.php:331 src/Model/Item.php:3283 #: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "снимка" -#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 +#: src/Content/Item.php:345 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s сложи етикет с %2$s - %3$s %4$s" -#: src/Content/Item.php:414 view/theme/frio/theme.php:253 +#: src/Content/Item.php:419 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "" -#: src/Content/Item.php:415 src/Model/Contact.php:1244 +#: src/Content/Item.php:420 src/Model/Contact.php:1245 msgid "View Status" msgstr "Показване на състоянието" -#: 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/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 msgid "View Profile" msgstr "Преглед на профил" -#: src/Content/Item.php:417 src/Model/Contact.php:1246 +#: src/Content/Item.php:422 src/Model/Contact.php:1247 msgid "View Photos" msgstr "Вижте снимки" -#: src/Content/Item.php:418 src/Model/Contact.php:1213 +#: src/Content/Item.php:423 src/Model/Contact.php:1214 #: src/Model/Profile.php:446 msgid "Network Posts" msgstr "Мрежови Мнения" -#: src/Content/Item.php:419 src/Model/Contact.php:1237 -#: src/Model/Contact.php:1248 +#: src/Content/Item.php:424 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1249 msgid "View Contact" msgstr "Преглед на Контакта" -#: src/Content/Item.php:420 src/Model/Contact.php:1249 +#: src/Content/Item.php:425 src/Model/Contact.php:1250 msgid "Send PM" msgstr "Изпратете PM" -#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Content/Item.php:426 src/Module/Contact.php:449 #: src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:104 -#: src/Module/Moderation/Users/Active.php:123 -#: src/Module/Moderation/Users/Index.php:138 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Index.php:141 msgid "Block" msgstr "Блокиране" -#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Content/Item.php:427 src/Module/Contact.php:450 #: src/Module/Contact/Profile.php:532 #: src/Module/Notifications/Introductions.php:126 #: src/Module/Notifications/Introductions.php:199 @@ -1937,27 +1942,27 @@ msgstr "Блокиране" msgid "Ignore" msgstr "Пренебрегване" -#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Content/Item.php:428 src/Module/Contact.php:451 #: src/Module/Contact/Profile.php:540 msgid "Collapse" msgstr "" -#: src/Content/Item.php:424 src/Object/Post.php:288 +#: src/Content/Item.php:429 src/Object/Post.php:289 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 -#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 +#: src/Content/Item.php:433 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:503 msgid "Languages" msgstr "Езици" -#: src/Content/Item.php:431 src/Object/Post.php:582 +#: src/Content/Item.php:436 src/Object/Post.php:583 msgid "Search Text" msgstr "" -#: src/Content/Item.php:436 src/Content/Widget.php:66 -#: src/Model/Contact.php:1238 src/Model/Contact.php:1250 +#: src/Content/Item.php:441 src/Content/Widget.php:66 +#: src/Model/Contact.php:1239 src/Model/Contact.php:1251 #: src/Module/Contact/Follow.php:152 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Свържете се / последваща" @@ -1970,7 +1975,7 @@ msgstr "" msgid "Nothing new here" msgstr "Нищо ново тук" -#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:64 msgid "Go back" msgstr "" @@ -2184,7 +2189,7 @@ msgstr "Уведомления " msgid "See all notifications" msgstr "Вижте всички нотификации" -#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:226 msgid "Mark as seen" msgstr "Марк, както се вижда" @@ -2212,8 +2217,8 @@ msgstr "" msgid "Manage other pages" msgstr "Управление на други страници" -#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 -#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:170 +#: 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/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Настройки" @@ -2241,10 +2246,10 @@ msgstr "Настройка и конфигуриране на сайта" #: src/Module/Moderation/Blocklist/Server/Index.php:84 #: 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:119 -#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 #: src/Module/Moderation/Users/Deleted.php:66 -#: src/Module/Moderation/Users/Index.php:133 +#: src/Module/Moderation/Users/Index.php:136 msgid "Moderation" msgstr "" @@ -2276,33 +2281,33 @@ msgstr "следващ" msgid "last" msgstr "Дата на последния одит. " -#: src/Content/Text/BBCode.php:908 +#: src/Content/Text/BBCode.php:903 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:931 src/Model/Item.php:4069 -#: src/Model/Item.php:4075 src/Model/Item.php:4076 +#: src/Content/Text/BBCode.php:926 src/Model/Item.php:4080 +#: src/Model/Item.php:4086 src/Model/Item.php:4087 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1745 src/Content/Text/HTML.php:892 +#: src/Content/Text/BBCode.php:1740 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Кликнете за отваряне / затваряне" -#: src/Content/Text/BBCode.php:1800 +#: src/Content/Text/BBCode.php:1795 msgid "$1 wrote:" msgstr "$ 1 пише:" -#: src/Content/Text/BBCode.php:1874 src/Content/Text/BBCode.php:1875 +#: src/Content/Text/BBCode.php:1869 src/Content/Text/BBCode.php:1870 msgid "Encrypted content" msgstr "Шифрирано съдържание" -#: src/Content/Text/BBCode.php:2208 +#: src/Content/Text/BBCode.php:2203 msgid "Invalid source protocol" msgstr "" -#: src/Content/Text/BBCode.php:2227 +#: src/Content/Text/BBCode.php:2222 msgid "Invalid link protocol" msgstr "" @@ -2355,7 +2360,7 @@ msgid "Examples: Robert Morgenstein, Fishing" msgstr "Примери: Робърт Morgenstein, Риболов" #: src/Content/Widget.php:68 src/Module/Contact.php:441 -#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 +#: src/Module/Directory.php:82 view/theme/vier/theme.php:185 msgid "Find" msgstr "Търсене" @@ -2376,7 +2381,7 @@ msgstr "Случайна Профил" msgid "Invite Friends" msgstr "Покани приятели" -#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: src/Content/Widget.php:73 src/Module/Directory.php:74 #: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Глобален справочник" @@ -2397,7 +2402,7 @@ msgstr "" msgid "Relationships" msgstr "" -#: src/Content/Widget.php:264 src/Module/Circle.php:280 +#: src/Content/Widget.php:264 src/Module/Circle.php:281 #: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Всички Контакти" @@ -2421,27 +2426,27 @@ msgid_plural "%d contacts in common" msgstr[0] "" msgstr[1] "" -#: src/Content/Widget.php:529 +#: src/Content/Widget.php:532 msgid "On this date" msgstr "" -#: src/Content/Widget.php:549 +#: src/Content/Widget.php:552 msgid "Persons" msgstr "" -#: src/Content/Widget.php:550 +#: src/Content/Widget.php:553 msgid "Organisations" msgstr "" -#: src/Content/Widget.php:551 src/Model/Contact.php:1750 +#: src/Content/Widget.php:554 src/Model/Contact.php:1751 msgid "News" msgstr "" -#: src/Content/Widget.php:553 +#: src/Content/Widget.php:556 msgid "Relays" msgstr "" -#: src/Content/Widget.php:560 src/Module/Moderation/BaseUsers.php:58 +#: src/Content/Widget.php:563 src/Module/Moderation/BaseUsers.php:58 msgid "All" msgstr "" @@ -2487,12 +2492,12 @@ msgstr[1] "" msgid "More Trending Tags" msgstr "" -#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1207 +#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1208 #: src/Model/Profile.php:440 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1211 +#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1212 #: src/Model/Profile.php:444 src/Module/Moderation/Item/Source.php:80 msgid "Mention" msgstr "" @@ -2507,10 +2512,10 @@ msgstr "" msgid "Matrix:" msgstr "" -#: src/Content/Widget/VCard.php:112 src/Model/Event.php:68 -#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: 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:134 src/Module/Notifications/Introductions.php:180 +#: src/Module/Directory.php:133 src/Module/Notifications/Introductions.php:180 #: src/Module/Profile/Profile.php:212 msgid "Location:" msgstr "Място:" @@ -2520,75 +2525,75 @@ msgstr "Място:" msgid "Network:" msgstr "" -#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1239 -#: src/Model/Contact.php:1251 src/Model/Profile.php:457 +#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1252 src/Model/Profile.php:457 #: src/Module/Contact/Profile.php:476 msgid "Unfollow" msgstr "" -#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1209 +#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1210 #: src/Model/Profile.php:442 msgid "View group" msgstr "" -#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:260 +#: src/Core/ACL.php:153 src/Module/Profile/Profile.php:260 msgid "Yourself" msgstr "" -#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Core/ACL.php:189 src/Module/Privacy/PermissionTooltip.php:156 #: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "" -#: src/Core/ACL.php:280 +#: src/Core/ACL.php:281 msgid "Post to Email" msgstr "Коментар на e-mail" -#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Core/ACL.php:308 src/Module/Privacy/PermissionTooltip.php:103 #: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "" -#: src/Core/ACL.php:308 +#: src/Core/ACL.php:309 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:309 src/Module/Privacy/PermissionTooltip.php:105 +#: src/Core/ACL.php:310 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "" -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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:310 +#: src/Core/ACL.php:311 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:311 +#: src/Core/ACL.php:312 msgid "Show to:" msgstr "" -#: src/Core/ACL.php:312 +#: src/Core/ACL.php:313 msgid "Except to:" msgstr "" -#: src/Core/ACL.php:313 src/Module/Post/Edit.php:145 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:145 msgid "CC: email addresses" msgstr "CC: имейл адреси" -#: src/Core/ACL.php:314 src/Module/Post/Edit.php:151 +#: src/Core/ACL.php:315 src/Module/Post/Edit.php:151 msgid "Example: bob@example.com, mary@example.com" msgstr "Пример: bob@example.com, mary@example.com" -#: src/Core/ACL.php:315 +#: src/Core/ACL.php:316 msgid "Connectors" msgstr "" @@ -2923,176 +2928,176 @@ msgstr "" msgid "Could not connect to database." msgstr "Не може да се свърже с базата данни." -#: src/Core/L10n.php:430 src/Model/Item.php:2316 +#: src/Core/L10n.php:426 src/Model/Item.php:2324 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:437 +#: src/Core/L10n.php:433 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Core/L10n.php:481 src/Model/Event.php:418 #: src/Module/Settings/Display.php:292 msgid "Monday" msgstr "Понеделник" -#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Core/L10n.php:481 src/Model/Event.php:419 #: src/Module/Settings/Display.php:293 msgid "Tuesday" msgstr "Вторник" -#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Core/L10n.php:481 src/Model/Event.php:420 #: src/Module/Settings/Display.php:294 msgid "Wednesday" msgstr "Сряда" -#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Core/L10n.php:481 src/Model/Event.php:421 #: src/Module/Settings/Display.php:295 msgid "Thursday" msgstr "Четвъртък" -#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Core/L10n.php:481 src/Model/Event.php:422 #: src/Module/Settings/Display.php:296 msgid "Friday" msgstr "Петък" -#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Core/L10n.php:481 src/Model/Event.php:423 #: src/Module/Settings/Display.php:297 msgid "Saturday" msgstr "Събота" -#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Core/L10n.php:481 src/Model/Event.php:417 #: src/Module/Settings/Display.php:291 msgid "Sunday" msgstr "Неделя" -#: src/Core/L10n.php:489 src/Model/Event.php:436 +#: src/Core/L10n.php:485 src/Model/Event.php:438 msgid "January" msgstr "януари" -#: src/Core/L10n.php:489 src/Model/Event.php:437 +#: src/Core/L10n.php:485 src/Model/Event.php:439 msgid "February" msgstr "февруари" -#: src/Core/L10n.php:489 src/Model/Event.php:438 +#: src/Core/L10n.php:485 src/Model/Event.php:440 msgid "March" msgstr "март" -#: src/Core/L10n.php:489 src/Model/Event.php:439 +#: src/Core/L10n.php:485 src/Model/Event.php:441 msgid "April" msgstr "април" -#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 +#: src/Core/L10n.php:485 src/Core/L10n.php:504 src/Model/Event.php:429 msgid "May" msgstr "Май" -#: src/Core/L10n.php:489 src/Model/Event.php:440 +#: src/Core/L10n.php:485 src/Model/Event.php:442 msgid "June" msgstr "юни" -#: src/Core/L10n.php:489 src/Model/Event.php:441 +#: src/Core/L10n.php:485 src/Model/Event.php:443 msgid "July" msgstr "юли" -#: src/Core/L10n.php:489 src/Model/Event.php:442 +#: src/Core/L10n.php:485 src/Model/Event.php:444 msgid "August" msgstr "август" -#: src/Core/L10n.php:489 src/Model/Event.php:443 +#: src/Core/L10n.php:485 src/Model/Event.php:445 msgid "September" msgstr "септември" -#: src/Core/L10n.php:489 src/Model/Event.php:444 +#: src/Core/L10n.php:485 src/Model/Event.php:446 msgid "October" msgstr "октомври" -#: src/Core/L10n.php:489 src/Model/Event.php:445 +#: src/Core/L10n.php:485 src/Model/Event.php:447 msgid "November" msgstr "ноември" -#: src/Core/L10n.php:489 src/Model/Event.php:446 +#: src/Core/L10n.php:485 src/Model/Event.php:448 msgid "December" msgstr "декември" -#: src/Core/L10n.php:504 src/Model/Event.php:408 +#: src/Core/L10n.php:500 src/Model/Event.php:410 msgid "Mon" msgstr "" -#: src/Core/L10n.php:504 src/Model/Event.php:409 +#: src/Core/L10n.php:500 src/Model/Event.php:411 msgid "Tue" msgstr "" -#: src/Core/L10n.php:504 src/Model/Event.php:410 +#: src/Core/L10n.php:500 src/Model/Event.php:412 msgid "Wed" msgstr "" -#: src/Core/L10n.php:504 src/Model/Event.php:411 +#: src/Core/L10n.php:500 src/Model/Event.php:413 msgid "Thu" msgstr "" -#: src/Core/L10n.php:504 src/Model/Event.php:412 +#: src/Core/L10n.php:500 src/Model/Event.php:414 msgid "Fri" msgstr "" -#: src/Core/L10n.php:504 src/Model/Event.php:413 +#: src/Core/L10n.php:500 src/Model/Event.php:415 msgid "Sat" msgstr "" -#: src/Core/L10n.php:504 src/Model/Event.php:407 +#: src/Core/L10n.php:500 src/Model/Event.php:409 msgid "Sun" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:425 msgid "Jan" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:426 msgid "Feb" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:427 msgid "Mar" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:428 msgid "Apr" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:428 +#: src/Core/L10n.php:504 src/Model/Event.php:430 msgid "Jun" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:429 +#: src/Core/L10n.php:504 src/Model/Event.php:431 msgid "Jul" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:430 +#: src/Core/L10n.php:504 src/Model/Event.php:432 msgid "Aug" msgstr "" -#: src/Core/L10n.php:508 +#: src/Core/L10n.php:504 msgid "Sep" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:432 +#: src/Core/L10n.php:504 src/Model/Event.php:434 msgid "Oct" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:433 +#: src/Core/L10n.php:504 src/Model/Event.php:435 msgid "Nov" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:434 +#: src/Core/L10n.php:504 src/Model/Event.php:436 msgid "Dec" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:44 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:67 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" @@ -3284,7 +3289,7 @@ msgstr "добави" msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:592 src/Module/Circle.php:181 +#: src/Model/Circle.php:592 src/Module/Circle.php:185 msgid "Contacts not in any circle" msgstr "" @@ -3292,8 +3297,8 @@ msgstr "" msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:595 src/Module/Circle.php:166 -#: src/Module/Circle.php:189 src/Module/Circle.php:264 +#: src/Model/Circle.php:595 src/Module/Circle.php:168 +#: src/Module/Circle.php:190 src/Module/Circle.php:265 msgid "Circle Name: " msgstr "" @@ -3301,280 +3306,280 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1258 src/Module/Moderation/Users/Pending.php:88 +#: src/Model/Contact.php:1259 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:1594 src/Model/Contact.php:1666 +#: src/Model/Contact.php:1595 src/Model/Contact.php:1667 #: src/Module/Contact/Profile.php:360 #, php-format msgid "%s has blocked you" msgstr "" -#: src/Model/Contact.php:1746 +#: src/Model/Contact.php:1747 msgid "Organisation" msgstr "" -#: src/Model/Contact.php:1754 +#: src/Model/Contact.php:1755 msgid "Group" msgstr "" -#: src/Model/Contact.php:1758 src/Module/Moderation/BaseUsers.php:122 +#: src/Model/Contact.php:1759 src/Module/Moderation/BaseUsers.php:122 msgid "Relay" msgstr "" -#: src/Model/Contact.php:3073 +#: src/Model/Contact.php:3085 msgid "Disallowed profile URL." msgstr "Отхвърлен профила URL." -#: src/Model/Contact.php:3078 src/Module/Friendica.php:88 +#: src/Model/Contact.php:3090 src/Module/Friendica.php:88 msgid "Blocked domain" msgstr "" -#: src/Model/Contact.php:3083 +#: src/Model/Contact.php:3095 msgid "Connect URL missing." msgstr "Свързване URL липсва." -#: src/Model/Contact.php:3092 +#: src/Model/Contact.php:3104 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Contact.php:3110 +#: src/Model/Contact.php:3122 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3127 +#: src/Model/Contact.php:3139 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3134 +#: src/Model/Contact.php:3146 msgid "The profile address specified does not provide adequate information." msgstr "Профилът на посочения адрес не предоставя достатъчна информация." -#: src/Model/Contact.php:3136 +#: src/Model/Contact.php:3148 msgid "No compatible communication protocols or feeds were discovered." msgstr "Няма съвместими комуникационни протоколи или фуражите не са били открити." -#: src/Model/Contact.php:3139 +#: src/Model/Contact.php:3151 msgid "An author or name was not found." msgstr "Един автор или име не е намерен." -#: src/Model/Contact.php:3142 +#: src/Model/Contact.php:3154 msgid "No browser URL could be matched to this address." msgstr "Не браузър URL може да съвпадне с този адрес." -#: src/Model/Contact.php:3145 +#: src/Model/Contact.php:3157 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Не мога да съответства @ стил Адрес идентичност с известен протокол или се свържете с имейл." -#: src/Model/Contact.php:3146 +#: src/Model/Contact.php:3158 msgid "Use mailto: in front of address to force email check." msgstr "Използвайте mailto: пред адрес, за да принуди проверка на имейл." -#: src/Model/Contact.php:3152 +#: src/Model/Contact.php:3164 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Limited профил. Този човек ще бъде в състояние да получат преки / лична уведомления от вас." -#: src/Model/Contact.php:3211 +#: src/Model/Contact.php:3223 msgid "Unable to retrieve contact information." msgstr "Не мога да получа информация за контакт." -#: src/Model/Event.php:40 +#: src/Model/Event.php:42 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 -#: src/Model/Event.php:928 +#: src/Model/Event.php:63 src/Model/Event.php:80 src/Model/Event.php:457 +#: src/Model/Event.php:929 msgid "Starts:" msgstr "Започва:" -#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 -#: src/Model/Event.php:932 +#: src/Model/Event.php:66 src/Model/Event.php:86 src/Model/Event.php:458 +#: src/Model/Event.php:933 msgid "Finishes:" msgstr "Играчи:" -#: src/Model/Event.php:405 +#: src/Model/Event.php:407 msgid "all-day" msgstr "" -#: src/Model/Event.php:431 +#: src/Model/Event.php:433 msgid "Sept" msgstr "" -#: src/Model/Event.php:448 src/Module/Calendar/Show.php:117 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:117 #: src/Util/Temporal.php:329 msgid "today" msgstr "" -#: src/Model/Event.php:449 src/Module/Calendar/Show.php:118 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:118 #: src/Module/Settings/Display.php:302 src/Util/Temporal.php:339 msgid "month" msgstr "месец." -#: src/Model/Event.php:450 src/Module/Calendar/Show.php:119 +#: src/Model/Event.php:452 src/Module/Calendar/Show.php:119 #: src/Module/Settings/Display.php:303 src/Util/Temporal.php:340 msgid "week" msgstr "седмица" -#: src/Model/Event.php:451 src/Module/Calendar/Show.php:120 +#: src/Model/Event.php:453 src/Module/Calendar/Show.php:120 #: src/Module/Settings/Display.php:304 src/Util/Temporal.php:341 msgid "day" msgstr "Ден:" -#: src/Model/Event.php:453 +#: src/Model/Event.php:455 msgid "No events to display" msgstr "" -#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Model/Event.php:504 src/Module/Feed.php:56 #: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "Достъпът до този профил е ограничен." -#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:52 +#: src/Model/Event.php:545 src/Module/Calendar/Event/Show.php:52 msgid "Event not found." msgstr "" -#: src/Model/Event.php:623 +#: src/Model/Event.php:624 msgid "l, F j" msgstr "л, F J" -#: src/Model/Event.php:650 +#: src/Model/Event.php:651 msgid "Edit event" msgstr "Редактиране на Събитието" -#: src/Model/Event.php:651 +#: src/Model/Event.php:652 msgid "Duplicate event" msgstr "" -#: src/Model/Event.php:652 +#: src/Model/Event.php:653 msgid "Delete event" msgstr "" -#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 +#: src/Model/Event.php:883 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "L F г, Y \\ @ G: I A" -#: src/Model/Event.php:883 +#: src/Model/Event.php:884 msgid "D g:i A" msgstr "" -#: src/Model/Event.php:884 +#: src/Model/Event.php:885 msgid "g:i A" msgstr "" -#: src/Model/Event.php:947 src/Model/Event.php:949 +#: src/Model/Event.php:948 src/Model/Event.php:950 msgid "Show map" msgstr "" -#: src/Model/Event.php:948 +#: src/Model/Event.php:949 msgid "Hide map" msgstr "" -#: src/Model/Event.php:1041 -#, php-format -msgid "%s's birthday" -msgstr "" - #: src/Model/Event.php:1042 #, php-format +msgid "%s's birthday" +msgstr "" + +#: src/Model/Event.php:1043 +#, php-format msgid "Happy Birthday %s" msgstr "Честит рожден ден, %s!" -#: src/Model/Item.php:2323 +#: src/Model/Item.php:2331 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2325 +#: src/Model/Item.php:2333 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2328 +#: src/Model/Item.php:2336 #, php-format msgid "" "Detected languages in this post:\n" "%s" msgstr "" -#: src/Model/Item.php:3277 +#: src/Model/Item.php:3285 msgid "activity" msgstr "дейност" -#: src/Model/Item.php:3279 +#: src/Model/Item.php:3287 msgid "comment" msgstr "" -#: src/Model/Item.php:3282 src/Module/Post/Tag/Add.php:109 +#: src/Model/Item.php:3290 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "след" -#: src/Model/Item.php:3452 +#: src/Model/Item.php:3463 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3454 +#: src/Model/Item.php:3465 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3456 +#: src/Model/Item.php:3467 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3460 +#: src/Model/Item.php:3471 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3969 +#: src/Model/Item.php:3980 msgid "bytes" msgstr "байта" -#: src/Model/Item.php:4000 +#: src/Model/Item.php:4011 #, 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:4002 +#: src/Model/Item.php:4013 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:4007 +#: src/Model/Item.php:4018 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:4009 +#: src/Model/Item.php:4020 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:4011 +#: src/Model/Item.php:4022 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:4052 src/Model/Item.php:4053 +#: src/Model/Item.php:4063 src/Model/Item.php:4064 msgid "View on separate page" msgstr "" @@ -3582,7 +3587,7 @@ msgstr "" msgid "[no subject]" msgstr "[Без тема]" -#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 +#: src/Model/Photo.php:1192 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Стена снимки" @@ -3595,7 +3600,7 @@ msgstr "Редактиране на потребителския профил" msgid "Change profile photo" msgstr "Промяна на снимката на профил" -#: src/Model/Profile.php:357 src/Module/Directory.php:139 +#: src/Model/Profile.php:357 src/Module/Directory.php:138 #: src/Module/Profile/Profile.php:200 msgid "Homepage:" msgstr "Начална страница:" @@ -3685,7 +3690,7 @@ msgstr "Нехаресвания:" msgid "Title/Description:" msgstr "Наименование/Описание" -#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:176 +#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:174 #: src/Module/Moderation/Report/Create.php:266 #: src/Module/Moderation/Summary.php:65 msgid "Summary" @@ -3736,59 +3741,59 @@ msgstr "" msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "Сериозна грешка: генериране на ключове за защита не успя." -#: src/Model/User.php:740 src/Model/User.php:773 +#: src/Model/User.php:739 src/Model/User.php:772 msgid "Login failed" msgstr "" -#: src/Model/User.php:805 +#: src/Model/User.php:804 msgid "Not enough information to authenticate" msgstr "" -#: src/Model/User.php:930 +#: src/Model/User.php:929 msgid "Password can't be empty" msgstr "" -#: src/Model/User.php:972 +#: src/Model/User.php:971 msgid "Empty passwords are not allowed." msgstr "" -#: src/Model/User.php:976 +#: src/Model/User.php:975 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "" -#: src/Model/User.php:980 +#: src/Model/User.php:979 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:984 +#: src/Model/User.php:983 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1193 +#: src/Model/User.php:1192 msgid "Passwords do not match. Password unchanged." msgstr "Паролите не съвпадат. Парола непроменен." -#: src/Model/User.php:1200 +#: src/Model/User.php:1199 msgid "An invitation is required." msgstr "Се изисква покана." -#: src/Model/User.php:1204 +#: src/Model/User.php:1203 msgid "Invitation could not be verified." msgstr "Покана не може да бъде проверена." -#: src/Model/User.php:1212 +#: src/Model/User.php:1211 msgid "Invalid OpenID url" msgstr "Невалиден URL OpenID" -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Ние се натъкна на проблем, докато влезете с OpenID, който сте посочили. Моля, проверете правилното изписване на идентификацията." -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "The error message was:" msgstr "Съобщението за грешка е:" @@ -3979,57 +3984,57 @@ msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:51 +#: src/Module/Admin/Addons/Details.php:49 msgid "Addon not found." msgstr "" -#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 +#: src/Module/Admin/Addons/Details.php:60 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "" -#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 +#: src/Module/Admin/Addons/Details.php:63 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "" -#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Addons/Details.php:72 #: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "забрани" -#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Addons/Details.php:75 #: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351 msgid "Enable" msgstr "Да се активира ли?" -#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Addons/Details.php:95 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:175 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Summary.php:173 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:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/Admin/Addons/Details.php:96 src/Module/Admin/Addons/Index.php:60 #: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:127 msgid "Addons" msgstr "" -#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Addons/Details.php:97 #: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "切換" -#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Addons/Details.php:104 #: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Автор: " -#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Addons/Details.php:105 #: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Отговорник: " @@ -4046,9 +4051,10 @@ 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:545 src/Module/Settings/Addons.php:64 -#: src/Module/Settings/Connectors.php:149 -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Account.php:507 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/Features.php:61 msgid "Save Settings" @@ -4065,62 +4071,62 @@ msgid "" "official addon repository at %1$s." msgstr "" -#: src/Module/Admin/DBSync.php:37 +#: src/Module/Admin/DBSync.php:35 msgid "Update has been marked successful" msgstr "Update е маркиран успешно" -#: src/Module/Admin/DBSync.php:45 +#: src/Module/Admin/DBSync.php:43 #, php-format msgid "Database structure update %s was successfully applied." msgstr "" -#: src/Module/Admin/DBSync.php:47 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:62 +#: src/Module/Admin/DBSync.php:60 #, php-format msgid "Executing %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:64 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Update %s was successfully applied." msgstr "Актуализация %s бе успешно приложена." -#: src/Module/Admin/DBSync.php:67 +#: src/Module/Admin/DBSync.php:65 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Актуализация %s не се връща статус. Известно дали тя успя." -#: src/Module/Admin/DBSync.php:70 +#: src/Module/Admin/DBSync.php:68 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "" -#: src/Module/Admin/DBSync.php:91 +#: src/Module/Admin/DBSync.php:89 msgid "No failed updates." msgstr "Няма провалени новини." -#: src/Module/Admin/DBSync.php:92 +#: src/Module/Admin/DBSync.php:90 msgid "Check database structure" msgstr "" -#: src/Module/Admin/DBSync.php:96 +#: src/Module/Admin/DBSync.php:94 msgid "Failed Updates" msgstr "Неуспешно Updates" -#: src/Module/Admin/DBSync.php:97 +#: src/Module/Admin/DBSync.php:95 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Това не включва актуализации, преди 1139, които не връщат статута." -#: src/Module/Admin/DBSync.php:98 +#: src/Module/Admin/DBSync.php:96 msgid "Mark success (if update was manually applied)" msgstr "Марк успех (ако актуализация е ръчно прилага)" -#: src/Module/Admin/DBSync.php:99 +#: src/Module/Admin/DBSync.php:97 msgid "Attempt to execute this update step automatically" msgstr "Опита да изпълни тази стъпка се обновяват автоматично" @@ -5685,12 +5691,12 @@ msgstr "" msgid "Database (legacy)" msgstr "" -#: src/Module/Admin/Summary.php:41 +#: src/Module/Admin/Summary.php:39 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:45 +#: src/Module/Admin/Summary.php:43 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5701,7 +5707,7 @@ msgid "" " an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:50 +#: src/Module/Admin/Summary.php:48 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5712,7 +5718,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:60 +#: src/Module/Admin/Summary.php:58 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5720,46 +5726,46 @@ msgid "" " to %d. See here for more information.
" msgstr "" -#: src/Module/Admin/Summary.php:68 +#: src/Module/Admin/Summary.php:66 #, 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:76 +#: src/Module/Admin/Summary.php:74 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:80 +#: src/Module/Admin/Summary.php:78 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:84 +#: src/Module/Admin/Summary.php:82 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:89 +#: src/Module/Admin/Summary.php:87 msgid "The worker was never executed. Please check your database structure!" msgstr "" -#: src/Module/Admin/Summary.php:91 +#: src/Module/Admin/Summary.php:89 #, 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:96 +#: src/Module/Admin/Summary.php:94 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5768,7 +5774,7 @@ msgid "" "help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:100 +#: src/Module/Admin/Summary.php:98 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5777,7 +5783,7 @@ msgid "" "page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:106 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5785,40 +5791,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "" -#: src/Module/Admin/Summary.php:130 +#: src/Module/Admin/Summary.php:128 #, 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:138 +#: src/Module/Admin/Summary.php:136 #, 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:146 +#: src/Module/Admin/Summary.php:144 #, 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:157 +#: src/Module/Admin/Summary.php:155 msgid "Message queues" msgstr "Съобщение опашки" -#: src/Module/Admin/Summary.php:160 +#: src/Module/Admin/Summary.php:158 msgid "Server Settings" msgstr "" -#: src/Module/Admin/Summary.php:178 +#: src/Module/Admin/Summary.php:176 msgid "Version" msgstr "Версия " -#: src/Module/Admin/Summary.php:182 +#: src/Module/Admin/Summary.php:180 msgid "Active addons" msgstr "" @@ -6083,8 +6089,8 @@ msgstr "" msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:134 -#: src/Module/Moderation/Users/Index.php:144 +#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:137 +#: src/Module/Moderation/Users/Index.php:147 msgid "Users" msgstr "Потребители" @@ -6120,7 +6126,7 @@ msgstr "" msgid "Only You Can See This" msgstr "Можете да видите това" -#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:67 +#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:65 msgid "Scheduled Posts" msgstr "" @@ -6172,7 +6178,7 @@ msgstr "" msgid "Display" msgstr "" -#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:195 +#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:189 msgid "Social Networks" msgstr "" @@ -6188,11 +6194,15 @@ msgstr "Свързани приложения" msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:84 +#: src/Module/BaseSettings.php:155 src/Module/Settings/ContactImport.php:109 +msgid "Import Contacts" +msgstr "" + +#: src/Module/BaseSettings.php:162 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Експортиране на личните данни" -#: src/Module/BaseSettings.php:162 +#: src/Module/BaseSettings.php:169 msgid "Remove account" msgstr "Премахване сметка" @@ -6321,8 +6331,8 @@ msgstr "" msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:54 src/Module/Circle.php:202 -#: src/Module/Circle.php:226 +#: src/Module/Circle.php:54 src/Module/Circle.php:203 +#: src/Module/Circle.php:227 msgid "Circle not found." msgstr "" @@ -6330,15 +6340,15 @@ msgstr "" msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:78 +#: src/Module/Circle.php:80 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Circle.php:86 src/Module/Circle.php:95 #: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 -#: 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/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/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 @@ -6347,75 +6357,75 @@ msgstr "" msgid "Contact not found." msgstr "Контактът не е намерен." -#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 +#: src/Module/Circle.php:90 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Невалиден свържете." -#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 +#: src/Module/Circle.php:99 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "" -#: src/Module/Circle.php:103 +#: src/Module/Circle.php:105 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:106 +#: src/Module/Circle.php:108 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:110 +#: src/Module/Circle.php:112 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:113 +#: src/Module/Circle.php:115 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:119 msgid "Bad request." msgstr "" -#: src/Module/Circle.php:158 +#: src/Module/Circle.php:160 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:159 +#: src/Module/Circle.php:161 msgid "Filter" msgstr "" -#: src/Module/Circle.php:165 +#: src/Module/Circle.php:167 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:207 +#: src/Module/Circle.php:208 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:258 +#: src/Module/Circle.php:259 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:268 +#: src/Module/Circle.php:269 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:278 +#: src/Module/Circle.php:279 msgid "Members" msgstr "Членове" -#: src/Module/Circle.php:281 +#: src/Module/Circle.php:282 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:297 +#: src/Module/Circle.php:298 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:320 +#: src/Module/Circle.php:321 msgid "Click on a contact to add or remove." msgstr "Щракнете върху контакт, за да добавите или премахнете." -#: src/Module/Circle.php:337 +#: src/Module/Circle.php:338 msgid "Add contact to circle" msgstr "" @@ -6449,7 +6459,7 @@ msgid "Only show blocked contacts" msgstr "Покажи само Блокираните контакти" #: src/Module/Contact.php:349 src/Module/Contact.php:421 -#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:386 msgid "Ignored" msgstr "Игнорирани" @@ -6500,8 +6510,8 @@ 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:124 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Blocked.php:127 +#: src/Module/Moderation/Users/Index.php:143 msgid "Unblock" msgstr "Разблокиране" @@ -6577,12 +6587,12 @@ 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:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:56 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Име" @@ -7147,11 +7157,11 @@ msgstr "" msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:190 +#: src/Module/Conversation/Timeline.php:193 msgid "Include" msgstr "" -#: src/Module/Conversation/Timeline.php:191 +#: src/Module/Conversation/Timeline.php:194 msgid "Hide" msgstr "" @@ -7420,19 +7430,19 @@ msgstr "" msgid "Lookup address:" msgstr "" -#: src/Module/Directory.php:61 +#: src/Module/Directory.php:60 msgid "No entries (some entries may be hidden)." msgstr "Няма записи (някои вписвания, могат да бъдат скрити)." -#: src/Module/Directory.php:77 +#: src/Module/Directory.php:76 msgid "Find on this site" msgstr "Търсене в този сайт" -#: src/Module/Directory.php:79 +#: src/Module/Directory.php:78 msgid "Results for:" msgstr "" -#: src/Module/Directory.php:81 +#: src/Module/Directory.php:80 msgid "Site Directory" msgstr "Site Directory" @@ -7685,40 +7695,40 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "" -#: src/Module/Invite.php:43 +#: src/Module/Invite.php:42 msgid "Total invitation limit exceeded." msgstr "" -#: src/Module/Invite.php:68 +#: src/Module/Invite.php:67 #, php-format msgid "%s : Not a valid email address." msgstr "%s не е валиден имейл адрес." -#: src/Module/Invite.php:94 +#: src/Module/Invite.php:93 msgid "Please join us on Friendica" msgstr "Моля, присъединете се към нас на Friendica" -#: src/Module/Invite.php:103 +#: src/Module/Invite.php:102 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: src/Module/Invite.php:107 +#: src/Module/Invite.php:106 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Съобщение доставка не успя." -#: src/Module/Invite.php:111 +#: src/Module/Invite.php:110 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "" msgstr[1] "" -#: src/Module/Invite.php:129 +#: src/Module/Invite.php:127 msgid "You have no more invitations available" msgstr "Имате няма повече покани" -#: src/Module/Invite.php:136 +#: src/Module/Invite.php:134 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7726,14 +7736,14 @@ msgid "" " other social networks." msgstr "Посетете %s за списък на публичните сайтове, които можете да се присъедините. Friendica членове на други сайтове могат да се свързват един с друг, както и с членовете на много други социални мрежи." -#: src/Module/Invite.php:138 +#: src/Module/Invite.php:136 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "За да приемете тази покана, моля, посетете и се регистрира в %s или друга публична уебсайт Friendica." -#: src/Module/Invite.php:139 +#: src/Module/Invite.php:137 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7742,48 +7752,48 @@ msgid "" "sites you can join." msgstr "Friendica сайтове се свързват, за да се създаде огромна допълнителна защита на личния живот, социална мрежа, която е собственост и се управлява от нейните членове. Те също могат да се свържат с много от традиционните социални мрежи. Виж %s за списък на алтернативни сайтове Friendica, можете да се присъедините." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:141 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Нашите извинения. Тази система в момента не е конфигуриран да се свържете с други обществени обекти, или ще поканят членове." -#: src/Module/Invite.php:146 +#: src/Module/Invite.php:144 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:145 +#: src/Module/Invite.php:143 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "" -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:151 msgid "Send invitations" msgstr "Изпращане на покани" -#: src/Module/Invite.php:154 +#: src/Module/Invite.php:152 msgid "Enter email addresses, one per line:" msgstr "Въведете имейл адреси, по един на ред:" -#: src/Module/Invite.php:158 +#: src/Module/Invite.php:156 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Вие сте любезно поканени да се присъединят към мен и други близки приятели за Friendica, - и да ни помогне да създадем по-добра социална мрежа." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "You will need to supply this invitation code: $invite_code" msgstr "Вие ще трябва да предоставят този код за покана: $ invite_code" -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "След като сте се регистрирали, моля свържете се с мен чрез профила на моята страница в:" -#: src/Module/Invite.php:162 +#: src/Module/Invite.php:160 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" @@ -7885,12 +7895,12 @@ msgid "File upload failed." msgstr "Файл за качване не успя." #: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 -#: src/Module/Profile/Photos.php:204 +#: src/Module/Profile/Photos.php:212 #: 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:224 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:232 #: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Image Upload неуспешно." @@ -7923,23 +7933,23 @@ msgstr "" msgid "List of pending user deletions" msgstr "" -#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:469 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:431 msgid "Normal Account Page" msgstr "Нормално страницата с профила" -#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:476 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:438 msgid "Soapbox Page" msgstr "Импровизирана трибуна Page" -#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:483 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:445 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:490 +#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:452 msgid "Public Group - Restricted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:497 +#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:459 msgid "Automatic Friend Page" msgstr "Автоматично приятел Page" @@ -7948,22 +7958,22 @@ msgid "Private Group" msgstr "" #: src/Module/Moderation/BaseUsers.php:118 -#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:440 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:402 msgid "Personal Page" msgstr "" #: src/Module/Moderation/BaseUsers.php:119 -#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:447 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:409 msgid "Organisation Page" msgstr "" #: src/Module/Moderation/BaseUsers.php:120 -#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:454 +#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:416 msgid "News Page" msgstr "" #: src/Module/Moderation/BaseUsers.php:121 -#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:461 +#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:423 msgid "Community Group" msgstr "" @@ -7993,9 +8003,9 @@ msgid "Block Remote Contact" msgstr "" #: src/Module/Moderation/Blocklist/Contact.php:102 -#: 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/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:138 #: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "Избор на всичко" @@ -8336,9 +8346,9 @@ msgid "Tag" msgstr "" #: src/Module/Moderation/Item/Source.php:77 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 -#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 +#: src/Module/Moderation/Users/Index.php:129 msgid "Type" msgstr "" @@ -8603,7 +8613,7 @@ msgstr[1] "" msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:418 +#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:380 msgid "Channel Relay" msgstr "" @@ -8624,11 +8634,11 @@ msgstr[0] "" msgstr[1] "" #: src/Module/Moderation/Users/Active.php:37 -#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Active.php:74 #: src/Module/Moderation/Users/Blocked.php:37 -#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Blocked.php:74 #: src/Module/Moderation/Users/Index.php:44 -#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Index.php:81 msgid "You can't remove yourself" msgstr "" @@ -8641,81 +8651,81 @@ msgid_plural "%s users deleted" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Active.php:69 -#: src/Module/Moderation/Users/Blocked.php:69 -#: src/Module/Moderation/Users/Index.php:76 +#: src/Module/Moderation/Users/Active.php:72 +#: src/Module/Moderation/Users/Blocked.php:72 +#: src/Module/Moderation/Users/Index.php:79 #, php-format msgid "User \"%s\" deleted" msgstr "" -#: src/Module/Moderation/Users/Active.php:79 -#: src/Module/Moderation/Users/Index.php:86 +#: src/Module/Moderation/Users/Active.php:82 +#: src/Module/Moderation/Users/Index.php:89 #, php-format msgid "User \"%s\" blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Register date" msgstr "Дата на регистрация" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last login" msgstr "Последно влизане" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last public item" msgstr "" -#: src/Module/Moderation/Users/Active.php:120 +#: src/Module/Moderation/Users/Active.php:123 msgid "Active Accounts" msgstr "" -#: src/Module/Moderation/Users/Active.php:124 -#: src/Module/Moderation/Users/Blocked.php:123 -#: src/Module/Moderation/Users/Index.php:139 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "User blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:125 -#: src/Module/Moderation/Users/Blocked.php:125 -#: src/Module/Moderation/Users/Index.php:141 +#: src/Module/Moderation/Users/Active.php:128 +#: src/Module/Moderation/Users/Blocked.php:128 +#: src/Module/Moderation/Users/Index.php:144 msgid "Site admin" msgstr "Администратор на сайта" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:142 +#: src/Module/Moderation/Users/Active.php:129 +#: src/Module/Moderation/Users/Blocked.php:129 +#: src/Module/Moderation/Users/Index.php:145 msgid "Account expired" msgstr "" -#: src/Module/Moderation/Users/Active.php:127 -#: src/Module/Moderation/Users/Index.php:145 +#: src/Module/Moderation/Users/Active.php:130 +#: src/Module/Moderation/Users/Index.php:148 msgid "Create a new user" msgstr "" -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:132 -#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:154 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Избрани потребители ще бъде изтрита! \\ N \\ nEverything тези потребители са публикувани на този сайт ще бъде изтрит завинаги! \\ N \\ nСигурни ли сте?" -#: src/Module/Moderation/Users/Active.php:134 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:155 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" @@ -8729,13 +8739,13 @@ msgid_plural "%s users unblocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Blocked.php:78 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Blocked.php:81 +#: src/Module/Moderation/Users/Index.php:95 #, php-format msgid "User \"%s\" unblocked" msgstr "" -#: src/Module/Moderation/Users/Blocked.php:120 +#: src/Module/Moderation/Users/Blocked.php:123 msgid "Blocked Users" msgstr "" @@ -8768,11 +8778,11 @@ msgid "Users awaiting permanent deletion" msgstr "" #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:149 msgid "Permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Index.php:136 +#: src/Module/Moderation/Users/Index.php:139 msgid "User waiting for permanent deletion" msgstr "" @@ -8937,7 +8947,7 @@ msgstr "" msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:91 +#: src/Module/OAuth/Token.php:73 msgid "Unsupported or missing grant type" msgstr "" @@ -8989,7 +8999,7 @@ msgstr "" msgid "Keep this window open until done." msgstr "" -#: src/Module/OpenSearch.php:57 +#: src/Module/OpenSearch.php:55 #, php-format msgid "Search in Friendica %s" msgstr "" @@ -9003,12 +9013,12 @@ msgstr "" msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:178 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:180 #, php-format msgid "Invalid photo with id %s." msgstr "" @@ -9041,15 +9051,15 @@ msgstr "Поставете аудио връзка" msgid "audio link" msgstr "аудио връзка" -#: src/Module/Post/Tag/Remove.php:92 +#: src/Module/Post/Tag/Remove.php:93 msgid "Remove Item Tag" msgstr "Извадете Tag т." -#: src/Module/Post/Tag/Remove.php:93 +#: src/Module/Post/Tag/Remove.php:94 msgid "Select a tag to remove: " msgstr "Изберете етикет, за да премахнете: " -#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Post/Tag/Remove.php:95 #: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Премахване" @@ -9128,32 +9138,32 @@ msgstr "" msgid "%s's timeline" msgstr "" -#: src/Module/Profile/Photos.php:153 src/Module/Profile/Photos.php:156 -#: src/Module/Profile/Photos.php:181 +#: src/Module/Profile/Photos.php:157 src/Module/Profile/Photos.php:160 +#: src/Module/Profile/Photos.php:189 #: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "" -#: src/Module/Profile/Photos.php:159 +#: src/Module/Profile/Photos.php:163 msgid "Image upload didn't complete, please try again" msgstr "" -#: src/Module/Profile/Photos.php:162 +#: src/Module/Profile/Photos.php:166 msgid "Image file is missing" msgstr "" -#: src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:171 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "" -#: src/Module/Profile/Photos.php:189 +#: src/Module/Profile/Photos.php:197 msgid "Image file is empty." msgstr "Image файл е празен." -#: src/Module/Profile/Photos.php:341 +#: src/Module/Profile/Photos.php:349 msgid "View Album" msgstr "Вижте албуми" @@ -9269,15 +9279,15 @@ msgid "" "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:69 +#: src/Module/Profile/Schedule.php:67 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:70 +#: src/Module/Profile/Schedule.php:68 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:71 +#: src/Module/Profile/Schedule.php:69 msgid "Remove post" msgstr "" @@ -9342,7 +9352,7 @@ msgid "Please repeat your e-mail address:" msgstr "" #: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:551 +#: src/Module/Settings/Account.php:513 msgid "New Password:" msgstr "нова парола" @@ -9351,7 +9361,7 @@ 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:552 +#: src/Module/Settings/Account.php:514 msgid "Confirm:" msgstr "Потвърждаване..." @@ -9535,20 +9545,20 @@ msgstr "Изход" msgid "OpenID protocol error. No ID returned" msgstr "" -#: src/Module/Security/OpenID.php:76 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "" -#: src/Module/Security/OpenID.php:78 +#: src/Module/Security/OpenID.php:80 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:51 +#: src/Module/Settings/Account.php:49 msgid "Passwords do not match." msgstr "" @@ -9557,7 +9567,7 @@ msgid "Password does not need changing." msgstr "" #: src/Module/Security/PasswordTooLong.php:63 -#: src/Module/Settings/Account.php:65 +#: src/Module/Settings/Account.php:63 msgid "Password unchanged." msgstr "" @@ -9577,24 +9587,24 @@ msgid "Update Password" msgstr "" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Current Password:" msgstr "Текуща парола:" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Your current password to confirm the changes" msgstr "" #: src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:537 +#: src/Module/Settings/Account.php:499 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:538 +#: src/Module/Settings/Account.php:500 msgid "Password length is limited to 72 characters." msgstr "" @@ -9698,129 +9708,121 @@ msgstr "" msgid "Verify code and complete login" msgstr "" -#: src/Module/Settings/Account.php:80 +#: src/Module/Settings/Account.php:78 msgid "Please use a shorter name." msgstr "" -#: src/Module/Settings/Account.php:83 +#: src/Module/Settings/Account.php:81 msgid "Name too short." msgstr "" -#: src/Module/Settings/Account.php:92 +#: src/Module/Settings/Account.php:90 msgid "Wrong Password." msgstr "" -#: src/Module/Settings/Account.php:97 +#: src/Module/Settings/Account.php:95 msgid "Invalid email." msgstr "" -#: src/Module/Settings/Account.php:101 +#: src/Module/Settings/Account.php:99 msgid "Cannot change to that email." msgstr "" -#: 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 +#: 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 msgid "Settings were not updated." msgstr "" -#: src/Module/Settings/Account.php:331 -msgid "Contact CSV file upload error" -msgstr "" - -#: src/Module/Settings/Account.php:350 -msgid "Importing Contacts done" -msgstr "" - -#: src/Module/Settings/Account.php:363 +#: src/Module/Settings/Account.php:325 msgid "Relocate message has been send to your contacts" msgstr "" -#: src/Module/Settings/Account.php:380 +#: src/Module/Settings/Account.php:342 msgid "Unable to find your profile. Please contact your admin." msgstr "" -#: src/Module/Settings/Account.php:420 +#: src/Module/Settings/Account.php:382 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:430 +#: src/Module/Settings/Account.php:392 msgid "Personal Page Subtypes" msgstr "" -#: src/Module/Settings/Account.php:431 +#: src/Module/Settings/Account.php:393 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:442 +#: src/Module/Settings/Account.php:404 msgid "Account for a personal profile." msgstr "" -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:411 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:456 +#: src/Module/Settings/Account.php:418 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:463 +#: src/Module/Settings/Account.php:425 msgid "Account for community discussions." msgstr "" -#: src/Module/Settings/Account.php:471 +#: src/Module/Settings/Account.php:433 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:478 +#: src/Module/Settings/Account.php:440 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:485 +#: src/Module/Settings/Account.php:447 msgid "Automatically approves all contact requests." msgstr "" -#: src/Module/Settings/Account.php:492 +#: src/Module/Settings/Account.php:454 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:499 +#: src/Module/Settings/Account.php:461 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "" -#: src/Module/Settings/Account.php:504 +#: src/Module/Settings/Account.php:466 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:506 +#: src/Module/Settings/Account.php:468 msgid "Requires manual approval of contact requests." msgstr "" -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(По избор) позволяват това OpenID, за да влезете в тази сметка." -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9828,94 +9830,94 @@ msgid "" " system settings." msgstr "" -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:491 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "" -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:504 msgid "Account Settings" msgstr "Настройки на профила" -#: src/Module/Settings/Account.php:543 +#: src/Module/Settings/Account.php:505 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: src/Module/Settings/Account.php:550 +#: src/Module/Settings/Account.php:512 msgid "Password Settings" msgstr "Парола Настройки" -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Leave password fields blank unless changing" msgstr "Оставете паролите полета празни, освен ако промяна" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Password:" msgstr "Парола" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:557 +#: src/Module/Settings/Account.php:519 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:559 +#: src/Module/Settings/Account.php:521 msgid "Basic Settings" msgstr "Основни настройки" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:522 #: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:523 msgid "Email Address:" msgstr "Електронна поща:" -#: src/Module/Settings/Account.php:562 +#: src/Module/Settings/Account.php:524 msgid "Your Timezone:" msgstr "Вашият Часовата зона:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "Your Language:" msgstr "" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "" -#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Account.php:526 msgid "Default Post Location:" msgstr "Мнение местоположението по подразбиране:" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:527 msgid "Use Browser Location:" msgstr "Използвайте Browser Местоположение:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:529 msgid "Security and Privacy Settings" msgstr "Сигурност и и лични настройки" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "Maximum Friend Requests/Day:" msgstr "Максимален брой молби за приятелство / ден:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "(to prevent spam abuse)" msgstr "(Да се ​​предотврати спама злоупотреба)" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 msgid "Allow your profile to be searchable globally?" msgstr "" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 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 " @@ -9923,43 +9925,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 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:573 +#: src/Module/Settings/Account.php:535 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:535 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:574 +#: src/Module/Settings/Account.php:536 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:536 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:575 +#: src/Module/Settings/Account.php:537 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:537 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 " @@ -9967,227 +9969,213 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "Allow friends to post to your profile page?" msgstr "Оставете приятели, които да публикувате в страницата с вашия профил?" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Allow friends to tag your posts?" msgstr "Оставете приятели, за да маркирам собствените си мнения?" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Your contacts can add additional tags to your posts." msgstr "" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:540 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:541 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:542 msgid "Default Post Permissions" msgstr "Разрешения по подразбиране и" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:546 msgid "Expiration settings" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "Automatically expire posts after this many days:" msgstr "Автоматично изтича мнения след толкова много дни:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Ако е празна, мнението няма да изтече. Изтекли мнения ще бъдат изтрити" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "Expire starred posts" msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 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:592 +#: src/Module/Settings/Account.php:554 msgid "Notification Settings" msgstr "Настройки за уведомяване" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:555 msgid "Send a notification email when:" msgstr "Изпращане на известие по имейл, когато:" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:556 msgid "You receive an introduction" msgstr "Вие получавате въведение" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:557 msgid "Your introductions are confirmed" msgstr "Вашите въвеждания са потвърдени" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:558 msgid "Someone writes on your profile wall" msgstr "Някой пише в профила ви стена" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:559 msgid "Someone writes a followup comment" msgstr "Някой пише последващ коментар" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:560 msgid "You receive a private message" msgstr "Ще получите лично съобщение" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:561 msgid "You receive a friend suggestion" msgstr "Ще получите предложение приятел" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:562 msgid "You are tagged in a post" msgstr "Са маркирани в един пост" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:564 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:565 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:566 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:567 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:605 src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:567 src/Module/Settings/Account.php:568 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:568 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:569 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:570 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:571 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Activate desktop notifications" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Show desktop popup on new notifications" msgstr "" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:577 msgid "Text-only notification emails" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:579 msgid "Send text only notification emails, without the html part" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:583 msgid "Show detailled notifications" msgstr "" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:585 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:589 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:591 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:632 +#: src/Module/Settings/Account.php:594 msgid "Advanced Account/Page Type Settings" msgstr "Разширено сметка / Настройки на вид страница" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:595 msgid "Change the behaviour of this account for special situations" msgstr "Промяна на поведението на тази сметка за специални ситуации" -#: src/Module/Settings/Account.php:636 -msgid "Import Contacts" -msgstr "" - -#: src/Module/Settings/Account.php:637 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "" - -#: src/Module/Settings/Account.php:638 -msgid "Upload File" -msgstr "" - -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:598 msgid "Relocate" msgstr "" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:599 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:643 +#: src/Module/Settings/Account.php:600 msgid "Resend relocate message to contacts" msgstr "" @@ -10352,214 +10340,232 @@ msgstr "" msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:108 +#: src/Module/Settings/Connectors.php:107 msgid "Failed to connect with email account using the settings provided." msgstr "Неуспех да се свърже с имейл акаунт, като използвате предоставените настройки." -#: src/Module/Settings/Connectors.php:155 -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:150 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "" -#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:149 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:150 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:161 msgid "Email access is disabled on this site." msgstr "Достъп до електронна поща е забранен на този сайт." -#: src/Module/Settings/Connectors.php:182 -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:176 +#: src/Module/Settings/Connectors.php:226 msgid "None" msgstr "Няма " -#: src/Module/Settings/Connectors.php:186 +#: src/Module/Settings/Connectors.php:180 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "" -#: src/Module/Settings/Connectors.php:187 +#: src/Module/Settings/Connectors.php:181 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "" -#: src/Module/Settings/Connectors.php:188 +#: src/Module/Settings/Connectors.php:182 msgid "Embed the title in the body" msgstr "" -#: src/Module/Settings/Connectors.php:199 +#: src/Module/Settings/Connectors.php:193 msgid "General Social Media Settings" msgstr "" -#: src/Module/Settings/Connectors.php:202 +#: src/Module/Settings/Connectors.php:196 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:198 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:200 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:207 +#: src/Module/Settings/Connectors.php:201 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:208 +#: src/Module/Settings/Connectors.php:202 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "Attach the link title" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "Article Mode" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "" -#: src/Module/Settings/Connectors.php:218 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "" - -#: src/Module/Settings/Connectors.php:218 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "" - -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:215 msgid "Email/Mailbox Setup" msgstr "Email / Mailbox Setup" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:216 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Ако желаете да се комуникира с имейл контакти, които използват тази услуга (по желание), моля посочете как да се свържете с вашата пощенска кутия." -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:217 msgid "Last successful email check:" msgstr "Последна успешна проверка на електронната поща:" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:219 msgid "IMAP server name:" msgstr "Име на IMAP сървъра:" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:220 msgid "IMAP port:" msgstr "IMAP порта:" -#: src/Module/Settings/Connectors.php:228 +#: src/Module/Settings/Connectors.php:221 msgid "Security:" msgstr "Сигурност" -#: src/Module/Settings/Connectors.php:229 +#: src/Module/Settings/Connectors.php:222 msgid "Email login name:" msgstr "Email потребителско име:" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:223 msgid "Email password:" msgstr "Email парола:" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:224 msgid "Reply-to address:" msgstr "Адрес за отговор:" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:225 msgid "Send public posts to all email contacts:" msgstr "Изпратете публични длъжности за всички имейл контакти:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Action after import:" msgstr "Действия след вноса:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Move to folder" msgstr "Премества избраното в папка" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:227 msgid "Move to folder:" msgstr "Премества избраното в папка" +#: src/Module/Settings/ContactImport.php:63 +msgid "Contact CSV file upload error" +msgstr "" + +#: src/Module/Settings/ContactImport.php:82 +msgid "Importing Contacts done" +msgstr "" + +#: src/Module/Settings/ContactImport.php:112 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "" + +#: src/Module/Settings/ContactImport.php:113 +msgid "Upload File" +msgstr "" + +#: src/Module/Settings/ContactImport.php:115 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "" + +#: src/Module/Settings/ContactImport.php:115 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "" + #: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "" @@ -11010,42 +11016,42 @@ msgstr "Частни Ключови думи:" msgid "(Used for searching profiles, never shown to others)" msgstr "(Използва се за търсене на профилите, никога не показва и на други)" -#: 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/Crop.php:90 +#: src/Module/Settings/Profile/Photo/Crop.php:108 +#: src/Module/Settings/Profile/Photo/Crop.php:126 #: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Намаляване на размер [ %s ] не успя." -#: src/Module/Settings/Profile/Photo/Crop.php:136 +#: src/Module/Settings/Profile/Photo/Crop.php:133 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Shift-презаредите страницата или ясно, кеша на браузъра, ако новата снимка не показва веднага." -#: src/Module/Settings/Profile/Photo/Crop.php:141 +#: src/Module/Settings/Profile/Photo/Crop.php:138 msgid "Unable to process image" msgstr "Не може да се обработи" -#: src/Module/Settings/Profile/Photo/Crop.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:157 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:182 +#: src/Module/Settings/Profile/Photo/Crop.php:179 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:208 -#: src/Module/Settings/Profile/Photo/Crop.php:212 +#: src/Module/Settings/Profile/Photo/Crop.php:205 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Crop Image" msgstr "Изрязване на изображението" -#: src/Module/Settings/Profile/Photo/Crop.php:209 +#: src/Module/Settings/Profile/Photo/Crop.php:206 msgid "Please adjust the image cropping for optimum viewing." msgstr "Моля, настроите образа на изрязване за оптимално гледане." -#: src/Module/Settings/Profile/Photo/Crop.php:211 +#: src/Module/Settings/Profile/Photo/Crop.php:208 msgid "Use Image As Is" msgstr "" @@ -11116,17 +11122,17 @@ msgstr "" msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:116 +#: src/Module/Settings/RemoveMe.php:114 msgid "Remove My Account" msgstr "Извадете Моят профил" -#: src/Module/Settings/RemoveMe.php:117 +#: src/Module/Settings/RemoveMe.php:115 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Това ще премахне изцяло сметката си. След като това е направено, не е възстановим." -#: src/Module/Settings/RemoveMe.php:122 +#: src/Module/Settings/RemoveMe.php:120 msgid "Please enter your password for verification:" msgstr "Моля, въведете паролата си за проверка:" @@ -11521,11 +11527,11 @@ msgstr "" msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:64 +#: src/Module/Special/HTTPException.php:65 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:69 +#: src/Module/Special/HTTPException.php:70 #, php-format msgid "Exception thrown in %s:%d" msgstr "" @@ -12308,295 +12314,295 @@ msgstr "Моля, свържете се с подателя, като отгов msgid "%s posted an update." msgstr "%s е публикувал актуализация." -#: src/Object/Post.php:124 +#: src/Object/Post.php:125 msgid "Private Message" msgstr "Лично съобщение" -#: src/Object/Post.php:128 +#: src/Object/Post.php:129 msgid "Public Message" msgstr "" -#: src/Object/Post.php:132 +#: src/Object/Post.php:133 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:168 +#: src/Object/Post.php:169 msgid "This entry was edited" msgstr "Записът е редактиран" -#: src/Object/Post.php:196 +#: src/Object/Post.php:197 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:225 src/Object/Post.php:227 +#: src/Object/Post.php:226 src/Object/Post.php:228 msgid "Edit" msgstr "Редактиране" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Delete globally" msgstr "" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Remove locally" msgstr "" -#: src/Object/Post.php:268 +#: src/Object/Post.php:269 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:273 +#: src/Object/Post.php:274 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:278 +#: src/Object/Post.php:279 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:282 +#: src/Object/Post.php:283 msgid "Report post" msgstr "" -#: src/Object/Post.php:293 +#: src/Object/Post.php:294 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will attend" msgstr "" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will not attend" msgstr "" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I might attend" msgstr "" -#: src/Object/Post.php:380 +#: src/Object/Post.php:381 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:381 +#: src/Object/Post.php:382 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:382 +#: src/Object/Post.php:383 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:392 +#: src/Object/Post.php:393 msgid "Add star" msgstr "" -#: src/Object/Post.php:393 +#: src/Object/Post.php:394 msgid "Remove star" msgstr "" -#: src/Object/Post.php:394 +#: src/Object/Post.php:395 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:405 +#: src/Object/Post.php:406 msgid "Pin" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:407 msgid "Unpin" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:408 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:410 +#: src/Object/Post.php:411 msgid "Pinned" msgstr "" -#: src/Object/Post.php:415 +#: src/Object/Post.php:416 msgid "Add tag" msgstr "" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare" msgstr "" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Unshare" msgstr "" -#: src/Object/Post.php:478 +#: src/Object/Post.php:479 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:514 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:517 +#: src/Object/Post.php:518 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:519 +#: src/Object/Post.php:520 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:543 +#: src/Object/Post.php:544 msgid "to" msgstr "за" -#: src/Object/Post.php:544 +#: src/Object/Post.php:545 msgid "via" msgstr "" -#: src/Object/Post.php:545 +#: src/Object/Post.php:546 msgid "Wall-to-Wall" msgstr "От стена до стена" -#: src/Object/Post.php:546 +#: src/Object/Post.php:547 msgid "via Wall-To-Wall:" msgstr "чрез стена до стена:" -#: src/Object/Post.php:599 +#: src/Object/Post.php:600 #, php-format msgid "Reply to %s" msgstr "" -#: src/Object/Post.php:602 +#: src/Object/Post.php:603 msgid "More" msgstr "" -#: src/Object/Post.php:621 +#: src/Object/Post.php:622 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:622 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:623 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:624 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:625 +#: src/Object/Post.php:626 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:647 +#: src/Object/Post.php:648 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: src/Object/Post.php:648 +#: src/Object/Post.php:649 msgid "Show more" msgstr "" -#: src/Object/Post.php:649 +#: src/Object/Post.php:650 msgid "Show fewer" msgstr "" -#: src/Object/Post.php:686 +#: src/Object/Post.php:687 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:691 +#: src/Object/Post.php:692 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:696 +#: src/Object/Post.php:697 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:701 +#: src/Object/Post.php:702 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:706 +#: src/Object/Post.php:707 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:711 +#: src/Object/Post.php:712 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:716 +#: src/Object/Post.php:717 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:721 +#: src/Object/Post.php:722 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:726 +#: src/Object/Post.php:727 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:731 +#: src/Object/Post.php:732 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:754 +#: src/Object/Post.php:755 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:557 +#: src/Protocol/ActivityPub/Receiver.php:558 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:530 +#: src/Protocol/Delivery.php:531 msgid "(no subject)" msgstr "" @@ -12609,20 +12615,20 @@ msgstr "" msgid "Login failed." msgstr "Влез не успя." -#: src/Security/Authentication.php:260 +#: src/Security/Authentication.php:261 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:374 #, php-format msgid "Welcome %s" msgstr "" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:375 msgid "Please upload a profile photo." msgstr "Моля, да качите снимка профил." -#: src/Security/OpenWebAuth.php:149 +#: src/Security/OpenWebAuth.php:150 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "" diff --git a/view/lang/ca/messages.po b/view/lang/ca/messages.po index fed1fb9ac2..87ff9da86c 100644 --- a/view/lang/ca/messages.po +++ b/view/lang/ca/messages.po @@ -11,7 +11,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: Joan Bar , 2019\n" "Language-Team: Catalan (http://app.transifex.com/Friendica/friendica/language/ca/)\n" @@ -21,34 +21,34 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\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 "No es pot localitzar post original." -#: 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 "Buidat després de rebutjar." -#: 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 "Article no trobat." -#: 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 @@ -59,7 +59,7 @@ msgstr "Article no trobat." #: 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 @@ -68,13 +68,15 @@ msgstr "Article no trobat." #: 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 @@ -83,15 +85,15 @@ msgstr "Article no trobat." msgid "Permission denied." msgstr "Permís denegat." -#: mod/lostpass.php:28 +#: mod/lostpass.php:27 msgid "No valid account found." msgstr "Compte no vàlid trobat." -#: mod/lostpass.php:40 +#: mod/lostpass.php:39 msgid "Password reset request issued. Check your email." msgstr "Sol·licitut de restabliment de contrasenya enviat. Comprovi el seu correu." -#: mod/lostpass.php:46 +#: mod/lostpass.php:45 #, php-format msgid "" "\n" @@ -107,7 +109,7 @@ msgid "" "\t\tissued this request." msgstr "\n\t\tBenvolgut %1$s,\n\t\t\tRecentment es va rebre una sol·licitud a \"%2$s\" per restablir el vostre compte\n\t\tcontrasenya Per confirmar aquesta sol·licitud, seleccioneu l’enllaç de verificació\n\t\ta continuació o enganxeu-lo a la barra d'adreces del navegador web\n\t\tSi NO heu sol·licitat aquest canvi, NO seguiu l'enllaç\n\t\tsempre que, ignorant i / o suprimint aquest correu electrònic, la sol·licitud caducarà en breu.\n\n\t\tLa vostra contrasenya no es canviarà tret que puguem verificar-la\nva emetre aquesta sol·licitud." -#: mod/lostpass.php:57 +#: mod/lostpass.php:56 #, php-format msgid "" "\n" @@ -124,70 +126,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\n\t\tSeguiu aquest enllaç aviat per verificar la vostra identitat:\n\n\t\t%1$s\n\n\t\tA continuació, rebrà un missatge de seguiment que conté la nova contrasenya.\n\t\tPodeu canviar aquesta contrasenya des de la pàgina de configuració del compte després d’iniciar la sessió.\n\t\tEls detalls d’inici de sessió són els següents:\n\n\t\tUbicació del lloc:\t%2$s\n\t\tNom d'usuari:\t%3$s" -#: mod/lostpass.php:72 +#: mod/lostpass.php:71 #, php-format msgid "Password reset requested at %s" msgstr "Contrasenya restablerta enviada a %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 "La sol·licitut no pot ser verificada. (Hauries de presentar-la abans). Restabliment de contrasenya fracassat." -#: mod/lostpass.php:101 +#: mod/lostpass.php:100 msgid "Request has expired, please make a new one." msgstr "La sol·licitud ha caducat, fes-ne una de nova." -#: mod/lostpass.php:116 +#: mod/lostpass.php:115 msgid "Forgot your Password?" msgstr "Has Oblidat la Contrasenya?" -#: 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 "Introdueixi la seva adreça de correu i enivii-la per restablir la seva contrasenya. Llavors comprovi el seu correu per a les següents instruccións. " -#: 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 "Àlies o Correu:" -#: mod/lostpass.php:119 +#: mod/lostpass.php:118 msgid "Reset" msgstr "Restablir" -#: mod/lostpass.php:134 src/Module/Security/Login.php:161 +#: mod/lostpass.php:133 src/Module/Security/Login.php:161 msgid "Password Reset" msgstr "Restabliment de Contrasenya" -#: mod/lostpass.php:135 +#: mod/lostpass.php:134 msgid "Your password has been reset as requested." msgstr "La teva contrasenya fou restablerta com vas demanar." -#: mod/lostpass.php:136 +#: mod/lostpass.php:135 msgid "Your new password is" msgstr "La teva nova contrasenya es" -#: mod/lostpass.php:137 +#: mod/lostpass.php:136 msgid "Save or copy your new password - and then" msgstr "Guarda o copia la nova contrasenya - i llavors" -#: mod/lostpass.php:138 +#: mod/lostpass.php:137 msgid "click here to login" msgstr "clica aquí per identificarte" -#: mod/lostpass.php:139 +#: mod/lostpass.php:138 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Pots camviar la contrasenya des de la pàgina de Configuración desprès d'accedir amb èxit." -#: 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" @@ -198,7 +200,7 @@ msgid "" "\t\t" msgstr "\n\t\t\tBenvolgut %1$s,\n\t\t\t\tLa vostra contrasenya s'ha canviat segons la sol·licitud. Conserveu-ho\n\t\t\tinformació sobre els vostres registres (o canviar-ne la contrasenya immediatament a\n\t\t\tcosa que recordareu).\n\t\t" -#: mod/lostpass.php:152 +#: mod/lostpass.php:151 #, php-format msgid "" "\n" @@ -212,7 +214,7 @@ msgid "" "\t\t" msgstr "\n\t\t\tLes dades de connexió són les següents:\n\n\t\t\tUbicació del lloc:\t%1$s\n\t\t\tNom d'usuari:\t%2$s\n\t\t\tContrasenya:\t%3$s\n\n\t\t\todeu canviar aquesta contrasenya des de la pàgina de configuració del compte després d’iniciar la sessió..\n\t\t" -#: mod/lostpass.php:164 +#: mod/lostpass.php:163 #, php-format msgid "Your password has been changed at %s" msgstr "La teva contrasenya ha estat canviada a %s" @@ -276,11 +278,11 @@ msgstr "Per a:" msgid "Subject:" msgstr "Assumpte::" -#: 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 "El teu missatge:" -#: 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 "Carregar foto" @@ -289,16 +291,16 @@ msgstr "Carregar foto" msgid "Insert web link" msgstr "Inserir enllaç web" -#: 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 "Si us plau esperi" -#: 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 @@ -306,7 +308,7 @@ msgstr "Si us plau esperi" #: 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 @@ -315,7 +317,7 @@ msgstr "Si us plau esperi" #: 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" @@ -373,396 +375,396 @@ msgid_plural "%d messages" msgstr[0] "%d missatge" msgstr[1] "%d missatges" -#: mod/notes.php:40 src/Module/BaseProfile.php:93 +#: mod/notes.php:41 src/Module/BaseProfile.php:93 msgid "Personal Notes" msgstr "Notes Personals" -#: 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 "Guardar" -#: 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 "Àlbum de Fotos" -#: 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 "Fotos Recents" -#: 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 "Actualitzar Noves Fotos" -#: 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 "tothom" -#: mod/photos.php:142 +#: mod/photos.php:140 msgid "Contact information unavailable" msgstr "Informació del Contacte no disponible" -#: mod/photos.php:171 +#: mod/photos.php:169 msgid "Album not found." msgstr "Àlbum no trobat." -#: 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 "una foto" -#: mod/photos.php:504 +#: mod/photos.php:502 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s fou etiquetat a %2$s per %3$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 "Accés públic denegat." -#: mod/photos.php:546 +#: mod/photos.php:544 msgid "No photos selected" msgstr "No s'han seleccionat fotos" -#: mod/photos.php:674 +#: mod/photos.php:672 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:681 +#: mod/photos.php:679 msgid "Upload Photos" msgstr "Carregar Fotos" -#: mod/photos.php:685 mod/photos.php:774 +#: mod/photos.php:683 mod/photos.php:772 msgid "New album name: " msgstr "Nou nom d'àlbum:" -#: 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 "No tornis a mostrar un missatge d'estat d'aquesta pujada" -#: 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 "Permisos" -#: mod/photos.php:755 +#: mod/photos.php:753 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Realment vols esborrar aquest album de fotos amb totes les fotos?" -#: mod/photos.php:756 mod/photos.php:779 +#: mod/photos.php:754 mod/photos.php:777 msgid "Delete Album" msgstr "Eliminar Àlbum" -#: 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 "Cancel·lar" -#: mod/photos.php:783 +#: mod/photos.php:781 msgid "Edit Album" msgstr "Editar Àlbum" -#: 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 "Mostrar el més Nou Primer" -#: mod/photos.php:790 +#: mod/photos.php:788 msgid "Show Oldest First" msgstr "Mostrar el més Antic Primer" -#: mod/photos.php:811 src/Module/Profile/Photos.php:335 +#: mod/photos.php:809 src/Module/Profile/Photos.php:343 msgid "View Photo" msgstr "Veure Foto" -#: mod/photos.php:843 +#: mod/photos.php:841 msgid "Permission denied. Access to this item may be restricted." msgstr "Permís denegat. L'accés a aquest element pot estar restringit." -#: mod/photos.php:845 +#: mod/photos.php:843 msgid "Photo not available" msgstr "Foto no disponible" -#: mod/photos.php:855 +#: mod/photos.php:853 msgid "Do you really want to delete this photo?" msgstr "Realment vols esborrar aquesta foto?" -#: mod/photos.php:856 mod/photos.php:1056 +#: mod/photos.php:854 mod/photos.php:1054 msgid "Delete Photo" msgstr "Eliminar Foto" -#: mod/photos.php:954 +#: mod/photos.php:952 msgid "View photo" msgstr "Veure foto" -#: mod/photos.php:956 +#: mod/photos.php:954 msgid "Edit photo" msgstr "Editar foto" -#: mod/photos.php:957 +#: mod/photos.php:955 msgid "Delete photo" msgstr "" -#: mod/photos.php:958 +#: mod/photos.php:956 msgid "Use as profile photo" msgstr "Emprar com a foto del perfil" -#: mod/photos.php:965 +#: mod/photos.php:963 msgid "Private Photo" msgstr "" -#: mod/photos.php:971 +#: mod/photos.php:969 msgid "View Full Size" msgstr "Veure'l a Mida Completa" -#: mod/photos.php:1024 +#: mod/photos.php:1022 msgid "Tags: " msgstr "Etiquetes:" -#: mod/photos.php:1027 +#: mod/photos.php:1025 msgid "[Select tags to remove]" msgstr "" -#: mod/photos.php:1042 +#: mod/photos.php:1040 msgid "New album name" msgstr "Nou nom d'àlbum" -#: mod/photos.php:1043 +#: mod/photos.php:1041 msgid "Caption" msgstr "Títol" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "Add a Tag" msgstr "Afegir una etiqueta" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Exemple: @bob, @Barbara_jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1045 +#: mod/photos.php:1043 msgid "Do not rotate" msgstr "" -#: mod/photos.php:1046 +#: mod/photos.php:1044 msgid "Rotate CW (right)" msgstr "Rotar CW (dreta)" -#: mod/photos.php:1047 +#: mod/photos.php:1045 msgid "Rotate CCW (left)" msgstr "Rotar CCW (esquerra)" -#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: mod/photos.php:1091 mod/photos.php:1147 mod/photos.php:1227 #: src/Module/Contact.php:600 src/Module/Item/Compose.php:184 -#: src/Object/Post.php:1142 +#: src/Object/Post.php:1143 msgid "This is you" msgstr "Aquest ets tu" -#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 -#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:598 -#: src/Object/Post.php:1144 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:599 +#: src/Object/Post.php:1145 msgid "Comment" msgstr "Comentari" -#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 -#: src/Content/Conversation.php:401 src/Module/Calendar/Event/Form.php:234 +#: 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 -#: src/Object/Post.php:1158 +#: src/Object/Post.php:1159 msgid "Preview" msgstr "Vista prèvia" -#: mod/photos.php:1098 src/Content/Conversation.php:355 -#: src/Module/Post/Edit.php:121 src/Object/Post.php:1146 +#: mod/photos.php:1096 src/Content/Conversation.php:357 +#: src/Module/Post/Edit.php:121 src/Object/Post.php:1147 msgid "Loading..." msgstr "" -#: mod/photos.php:1190 src/Content/Conversation.php:1485 -#: src/Object/Post.php:260 +#: mod/photos.php:1188 src/Content/Conversation.php:1487 +#: src/Object/Post.php:261 msgid "Select" msgstr "Selecionar" -#: mod/photos.php:1191 src/Content/Conversation.php:1486 -#: 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:233 +#: 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 +#: src/Module/Settings/Connectors.php:226 #: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Esborrar" -#: mod/photos.php:1252 src/Object/Post.php:426 +#: mod/photos.php:1250 src/Object/Post.php:427 msgid "Like" msgstr "" -#: mod/photos.php:1253 src/Object/Post.php:426 +#: mod/photos.php:1251 src/Object/Post.php:427 msgid "I like this (toggle)" msgstr "M'agrada això (canviar)" -#: mod/photos.php:1254 src/Object/Post.php:427 +#: mod/photos.php:1252 src/Object/Post.php:428 msgid "Dislike" msgstr "" -#: mod/photos.php:1256 src/Object/Post.php:427 +#: mod/photos.php:1254 src/Object/Post.php:428 msgid "I don't like this (toggle)" msgstr "No m'agrada això (canviar)" -#: mod/photos.php:1278 +#: mod/photos.php:1276 msgid "Map" msgstr "" -#: src/App.php:467 +#: src/App.php:255 msgid "Apologies but the website is unavailable at the moment." msgstr "" -#: src/App/Page.php:237 +#: src/App/Page.php:241 msgid "Delete this item?" msgstr "Esborrar aquest element?" -#: src/App/Page.php:238 +#: src/App/Page.php:242 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:239 +#: src/App/Page.php:243 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:240 +#: src/App/Page.php:244 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:241 +#: src/App/Page.php:245 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:242 src/Module/Settings/Server/Action.php:47 +#: src/App/Page.php:246 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:244 +#: src/App/Page.php:248 msgid "Like not successful" msgstr "" -#: src/App/Page.php:245 +#: src/App/Page.php:249 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:246 +#: src/App/Page.php:250 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:247 +#: src/App/Page.php:251 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:248 +#: src/App/Page.php:252 msgid "Backend error" msgstr "" -#: src/App/Page.php:249 +#: src/App/Page.php:253 msgid "Network error" msgstr "" -#: src/App/Page.php:252 +#: src/App/Page.php:256 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:257 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:254 +#: src/App/Page.php:258 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:255 +#: src/App/Page.php:259 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:256 +#: src/App/Page.php:260 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:261 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:262 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:263 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:264 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:265 msgid "Remove file" msgstr "" -#: src/App/Page.php:262 +#: src/App/Page.php:266 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:346 +#: src/App/Page.php:350 msgid "toggle mobile" msgstr "canviar a mòbil" @@ -795,7 +797,7 @@ msgid "All contacts" msgstr "Tots contactes" #: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 -#: src/Content/Widget.php:254 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Content/Widget.php:254 src/Core/ACL.php:182 src/Module/Contact.php:395 #: src/Module/Privacy/PermissionTooltip.php:150 #: src/Module/Privacy/PermissionTooltip.php:172 #: src/Module/Settings/Channels.php:146 @@ -837,7 +839,7 @@ msgstr "" msgid "The contact entries have been archived" msgstr "" -#: src/Console/ClearAvatarCache.php:73 +#: src/Console/ClearAvatarCache.php:74 msgid "" "The avatar cache needs to be disabled in local.config.php to use this " "command." @@ -923,22 +925,22 @@ msgstr "" msgid "no resource in photo %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:123 +#: src/Console/MoveToAvatarCache.php:127 #, php-format msgid "no photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:132 +#: src/Console/MoveToAvatarCache.php:136 #, php-format msgid "no image data for photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:141 +#: src/Console/MoveToAvatarCache.php:145 #, php-format msgid "invalid image for id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:154 +#: src/Console/MoveToAvatarCache.php:158 #, php-format msgid "Quit on invalid photo %s" msgstr "" @@ -968,11 +970,14 @@ msgstr "" msgid "Enter user nickname: " msgstr "" -#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Console/User.php:168 src/Model/User.php:830 #: src/Module/Api/Twitter/ContactEndpoint.php:62 -#: 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/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/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "" @@ -982,12 +987,12 @@ msgid "Enter new password: " msgstr "" #: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 -#: src/Module/Settings/Account.php:59 +#: src/Module/Settings/Account.php:57 msgid "Password update failed. Please try again." msgstr "Ha fallat l'actualització de la Contrasenya. Per favor, intenti-ho de nou." #: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 -#: src/Module/Settings/Account.php:62 +#: src/Module/Settings/Account.php:60 msgid "Password changed." msgstr "Contrasenya canviada." @@ -1068,86 +1073,86 @@ msgstr "" msgid "Monthly" msgstr "" -#: src/Content/ContactSelector.php:118 +#: src/Content/ContactSelector.php:117 msgid "DFRN" msgstr "" -#: src/Content/ContactSelector.php:119 +#: src/Content/ContactSelector.php:118 msgid "OStatus" msgstr "" -#: src/Content/ContactSelector.php:120 +#: src/Content/ContactSelector.php:119 msgid "RSS/Atom" msgstr "" -#: src/Content/ContactSelector.php:121 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Content/ContactSelector.php:120 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:58 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "Correu" -#: src/Content/ContactSelector.php:122 src/Module/Debug/Babel.php:273 +#: src/Content/ContactSelector.php:121 src/Module/Debug/Babel.php:273 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:123 +#: src/Content/ContactSelector.php:122 msgid "Zot!" msgstr "" -#: src/Content/ContactSelector.php:124 +#: src/Content/ContactSelector.php:123 msgid "LinkedIn" msgstr "" -#: src/Content/ContactSelector.php:125 +#: src/Content/ContactSelector.php:124 msgid "XMPP/IM" msgstr "" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:125 msgid "MySpace" msgstr "" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:126 msgid "Google+" msgstr "" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:127 msgid "pump.io" msgstr "" -#: src/Content/ContactSelector.php:129 +#: src/Content/ContactSelector.php:128 msgid "Twitter" msgstr "" -#: src/Content/ContactSelector.php:130 +#: src/Content/ContactSelector.php:129 msgid "Discourse" msgstr "" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:130 msgid "Diaspora Connector" msgstr "" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:131 msgid "GNU Social Connector" msgstr "" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:132 msgid "ActivityPub" msgstr "" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:133 msgid "pnut" msgstr "" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:134 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:135 msgid "Bluesky" msgstr "" @@ -1156,374 +1161,374 @@ msgstr "" msgid "%s (via %s)" msgstr "" -#: src/Content/Conversation.php:213 +#: src/Content/Conversation.php:215 msgid "and" msgstr "i" -#: src/Content/Conversation.php:216 +#: src/Content/Conversation.php:218 #, php-format msgid "and %d other people" msgstr "i %d altre gent" -#: src/Content/Conversation.php:222 +#: src/Content/Conversation.php:224 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:224 +#: src/Content/Conversation.php:226 #, 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:226 +#: src/Content/Conversation.php:228 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:230 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:230 +#: src/Content/Conversation.php:232 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:232 +#: src/Content/Conversation.php:234 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:263 +#: src/Content/Conversation.php:265 #, php-format msgid " likes this" msgid_plural " like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:266 +#: src/Content/Conversation.php:268 #, php-format msgid " doesn't like this" msgid_plural " don't like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:269 +#: src/Content/Conversation.php:271 #, php-format msgid " attends" msgid_plural " attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:272 +#: src/Content/Conversation.php:274 #, php-format msgid " doesn't attend" msgid_plural " don't attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:275 +#: src/Content/Conversation.php:277 #, php-format msgid " attends maybe" msgid_plural " attend maybe" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:278 +#: src/Content/Conversation.php:280 #, php-format msgid " reshared this" msgid_plural " reshared this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:324 +#: src/Content/Conversation.php:326 msgid "Visible to everybody" msgstr "Visible per a tothom" -#: src/Content/Conversation.php:325 src/Module/Item/Compose.php:196 -#: src/Object/Post.php:1157 +#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196 +#: src/Object/Post.php:1158 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Introduïu una URL / imatge / vídeo / àudio / pàgina web:" -#: src/Content/Conversation.php:326 +#: src/Content/Conversation.php:328 msgid "Tag term:" msgstr "Terminis de l'etiqueta:" -#: src/Content/Conversation.php:327 src/Module/Filer/SaveTag.php:59 +#: src/Content/Conversation.php:329 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Guardar a la Carpeta:" -#: src/Content/Conversation.php:328 +#: src/Content/Conversation.php:330 msgid "Where are you right now?" msgstr "On ets ara?" -#: src/Content/Conversation.php:329 +#: src/Content/Conversation.php:331 msgid "Delete item(s)?" msgstr "Esborrar element(s)?" -#: src/Content/Conversation.php:341 src/Module/Item/Compose.php:171 +#: src/Content/Conversation.php:343 src/Module/Item/Compose.php:171 msgid "Created at" msgstr "" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:353 msgid "New Post" msgstr "Missatge nou" -#: src/Content/Conversation.php:354 +#: src/Content/Conversation.php:356 msgid "Share" msgstr "Compartir" -#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:123 +#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:123 msgid "upload photo" msgstr "carregar fotos" -#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:124 +#: src/Content/Conversation.php:360 src/Module/Post/Edit.php:124 msgid "Attach file" msgstr "Adjunta fitxer" -#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:125 +#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:125 msgid "attach file" msgstr "adjuntar arxiu" -#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:186 -#: src/Module/Post/Edit.php:162 src/Object/Post.php:1147 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1148 msgid "Bold" msgstr "Negreta" -#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:187 -#: src/Module/Post/Edit.php:163 src/Object/Post.php:1148 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1149 msgid "Italic" msgstr "Itallica" -#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:188 -#: src/Module/Post/Edit.php:164 src/Object/Post.php:1149 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1150 msgid "Underline" msgstr "Subratllat" -#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:189 -#: src/Module/Post/Edit.php:165 src/Object/Post.php:1151 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:165 src/Object/Post.php:1152 msgid "Quote" msgstr "Cometes" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:166 src/Object/Post.php:1152 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:166 src/Object/Post.php:1153 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:191 -#: src/Object/Post.php:1150 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Object/Post.php:1151 msgid "Content Warning" msgstr "" -#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:167 src/Object/Post.php:1153 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:167 src/Object/Post.php:1154 msgid "Code" msgstr "Codi" -#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:193 -#: src/Object/Post.php:1154 +#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1155 msgid "Image" msgstr "Imatge" -#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:168 src/Object/Post.php:1155 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:168 src/Object/Post.php:1156 msgid "Link" msgstr "Enllaç" -#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:195 -#: src/Module/Post/Edit.php:169 src/Object/Post.php:1156 +#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:169 src/Object/Post.php:1157 msgid "Link or Media" msgstr "Enllaç o suports" -#: src/Content/Conversation.php:370 +#: src/Content/Conversation.php:372 msgid "Video" msgstr "" -#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:198 +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:198 #: src/Module/Post/Edit.php:132 msgid "Set your location" msgstr "Canvia la teva ubicació" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:133 msgid "set location" msgstr "establir la ubicació" -#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:134 msgid "Clear browser location" msgstr "neteja adreçes del navegador" -#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:135 +#: src/Content/Conversation.php:376 src/Module/Post/Edit.php:135 msgid "clear location" msgstr "netejar ubicació" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:203 +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:203 #: src/Module/Post/Edit.php:148 msgid "Set title" msgstr "Canviar títol" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:204 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 #: src/Module/Post/Edit.php:150 msgid "Categories (comma-separated list)" msgstr "Categories (lista separada per comes)" -#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:220 +#: src/Content/Conversation.php:385 src/Module/Item/Compose.php:220 msgid "Scheduled at" msgstr "" -#: src/Content/Conversation.php:388 src/Module/Post/Edit.php:137 +#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:137 msgid "Permission settings" msgstr "Configuració de permisos" -#: src/Content/Conversation.php:397 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:399 src/Module/Post/Edit.php:146 msgid "Public post" msgstr "Enviament públic" -#: src/Content/Conversation.php:411 src/Content/Widget/VCard.php:121 +#: 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 msgid "Message" msgstr "Missatge" -#: src/Content/Conversation.php:412 src/Module/Post/Edit.php:173 +#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:173 #: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Navegador" -#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:176 +#: src/Content/Conversation.php:416 src/Module/Post/Edit.php:176 msgid "Open Compose page" msgstr "" -#: src/Content/Conversation.php:581 +#: src/Content/Conversation.php:583 msgid "remove" msgstr "esborrar" -#: src/Content/Conversation.php:585 +#: src/Content/Conversation.php:587 msgid "Delete Selected Items" msgstr "Esborra els Elements Seleccionats" -#: src/Content/Conversation.php:713 src/Content/Conversation.php:716 -#: src/Content/Conversation.php:719 src/Content/Conversation.php:722 -#: src/Content/Conversation.php:725 +#: 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 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: src/Content/Conversation.php:728 +#: src/Content/Conversation.php:730 #, php-format msgid "You are following %s." msgstr "" -#: src/Content/Conversation.php:733 +#: src/Content/Conversation.php:735 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:735 +#: src/Content/Conversation.php:737 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:755 +#: src/Content/Conversation.php:757 #, php-format msgid "%s reshared this." msgstr "%s va tornar a compartir això" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 msgid "Reshared" msgstr "" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 #, php-format msgid "Reshared by %s <%s>" msgstr "" -#: src/Content/Conversation.php:760 +#: src/Content/Conversation.php:762 #, php-format msgid "%s is participating in this thread." msgstr "" -#: src/Content/Conversation.php:763 +#: src/Content/Conversation.php:765 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:766 +#: src/Content/Conversation.php:768 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 msgid "Fetched" msgstr "" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 #, php-format msgid "Fetched because of %s <%s>" msgstr "" -#: src/Content/Conversation.php:775 +#: src/Content/Conversation.php:777 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:778 +#: src/Content/Conversation.php:780 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:781 +#: src/Content/Conversation.php:783 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:784 +#: src/Content/Conversation.php:786 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:787 +#: src/Content/Conversation.php:789 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1505 src/Object/Post.php:247 +#: src/Content/Conversation.php:1507 src/Object/Post.php:248 msgid "Pinned item" msgstr "" -#: src/Content/Conversation.php:1522 src/Object/Post.php:541 -#: src/Object/Post.php:542 +#: src/Content/Conversation.php:1524 src/Object/Post.php:542 +#: src/Object/Post.php:543 #, php-format msgid "View %s's profile @ %s" msgstr "Veure perfil de %s @ %s" -#: src/Content/Conversation.php:1536 src/Object/Post.php:529 +#: src/Content/Conversation.php:1538 src/Object/Post.php:530 msgid "Categories:" msgstr "Categories:" -#: src/Content/Conversation.php:1537 src/Object/Post.php:530 +#: src/Content/Conversation.php:1539 src/Object/Post.php:531 msgid "Filed under:" msgstr "Arxivat a:" -#: src/Content/Conversation.php:1545 src/Object/Post.php:556 +#: src/Content/Conversation.php:1547 src/Object/Post.php:557 #, php-format msgid "%s from %s" msgstr "%s des de %s" -#: src/Content/Conversation.php:1561 +#: src/Content/Conversation.php:1563 msgid "View in context" msgstr "Veure en context" @@ -1656,7 +1661,7 @@ msgstr "Personal" msgid "Posts that mention or involve you" msgstr "Missatge que et menciona o t'impliquen" -#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:398 msgid "Starred" msgstr "Favorits" @@ -1743,7 +1748,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:552 src/Model/User.php:1390 +#: src/Content/Widget.php:555 src/Model/User.php:1390 msgid "Groups" msgstr "" @@ -1751,7 +1756,7 @@ msgstr "" msgid "Display posts that have been distributed by the selected group." msgstr "" -#: src/Content/Feature.php:117 src/Content/Widget.php:521 +#: src/Content/Feature.php:117 src/Content/Widget.php:524 msgid "Archives" msgstr "Arxius" @@ -1767,8 +1772,8 @@ msgstr "" msgid "Display posts with the selected protocols." msgstr "" -#: src/Content/Feature.php:119 src/Content/Widget.php:558 -#: src/Module/Settings/Account.php:429 +#: src/Content/Feature.php:119 src/Content/Widget.php:561 +#: src/Module/Settings/Account.php:391 msgid "Account Types" msgstr "" @@ -1776,7 +1781,7 @@ msgstr "" msgid "Display posts done by accounts with the selected account type." msgstr "" -#: src/Content/Feature.php:120 src/Content/Widget.php:607 +#: 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 msgid "Channels" @@ -1802,7 +1807,7 @@ msgstr "Carpetes Guardades" msgid "Display a list of folders in which posts are stored." msgstr "" -#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:189 msgid "Own Contacts" msgstr "" @@ -1858,12 +1863,12 @@ msgstr "" msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:139 src/Content/Widget.php:527 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:530 msgid "show less" msgstr "" #: src/Content/GroupManager.php:140 src/Content/Widget.php:425 -#: src/Content/Widget.php:528 +#: src/Content/Widget.php:531 msgid "show more" msgstr "Mostrar més" @@ -1871,66 +1876,66 @@ msgstr "Mostrar més" msgid "Create new group" msgstr "" -#: src/Content/Item.php:317 src/Model/Item.php:3273 +#: src/Content/Item.php:322 src/Model/Item.php:3281 msgid "event" msgstr "esdeveniment" -#: src/Content/Item.php:320 src/Content/Item.php:330 +#: src/Content/Item.php:325 src/Content/Item.php:335 msgid "status" msgstr "estatus" -#: src/Content/Item.php:326 src/Model/Item.php:3275 +#: src/Content/Item.php:331 src/Model/Item.php:3283 #: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "foto" -#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 +#: src/Content/Item.php:345 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s etiquetats %2$s %3$s amb %4$s" -#: src/Content/Item.php:414 view/theme/frio/theme.php:253 +#: src/Content/Item.php:419 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Seguir el Fil" -#: src/Content/Item.php:415 src/Model/Contact.php:1244 +#: src/Content/Item.php:420 src/Model/Contact.php:1245 msgid "View Status" msgstr "Veure Estatus" -#: 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/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 msgid "View Profile" msgstr "Veure Perfil" -#: src/Content/Item.php:417 src/Model/Contact.php:1246 +#: src/Content/Item.php:422 src/Model/Contact.php:1247 msgid "View Photos" msgstr "Veure Fotos" -#: src/Content/Item.php:418 src/Model/Contact.php:1213 +#: src/Content/Item.php:423 src/Model/Contact.php:1214 #: src/Model/Profile.php:446 msgid "Network Posts" msgstr "Enviaments a la Xarxa" -#: src/Content/Item.php:419 src/Model/Contact.php:1237 -#: src/Model/Contact.php:1248 +#: src/Content/Item.php:424 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1249 msgid "View Contact" msgstr "Veure contacte" -#: src/Content/Item.php:420 src/Model/Contact.php:1249 +#: src/Content/Item.php:425 src/Model/Contact.php:1250 msgid "Send PM" msgstr "Enviar Missatge Privat" -#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Content/Item.php:426 src/Module/Contact.php:449 #: src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:104 -#: src/Module/Moderation/Users/Active.php:123 -#: src/Module/Moderation/Users/Index.php:138 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Index.php:141 msgid "Block" msgstr "Bloquejar" -#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Content/Item.php:427 src/Module/Contact.php:450 #: src/Module/Contact/Profile.php:532 #: src/Module/Notifications/Introductions.php:126 #: src/Module/Notifications/Introductions.php:199 @@ -1938,27 +1943,27 @@ msgstr "Bloquejar" msgid "Ignore" msgstr "Ignorar" -#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Content/Item.php:428 src/Module/Contact.php:451 #: src/Module/Contact/Profile.php:540 msgid "Collapse" msgstr "" -#: src/Content/Item.php:424 src/Object/Post.php:288 +#: src/Content/Item.php:429 src/Object/Post.php:289 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 -#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 +#: src/Content/Item.php:433 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:503 msgid "Languages" msgstr "" -#: src/Content/Item.php:431 src/Object/Post.php:582 +#: src/Content/Item.php:436 src/Object/Post.php:583 msgid "Search Text" msgstr "" -#: src/Content/Item.php:436 src/Content/Widget.php:66 -#: src/Model/Contact.php:1238 src/Model/Contact.php:1250 +#: src/Content/Item.php:441 src/Content/Widget.php:66 +#: src/Model/Contact.php:1239 src/Model/Contact.php:1251 #: src/Module/Contact/Follow.php:152 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Connectar/Seguir" @@ -1971,7 +1976,7 @@ msgstr "" msgid "Nothing new here" msgstr "Res nou aquí" -#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:64 msgid "Go back" msgstr "" @@ -2185,7 +2190,7 @@ msgstr "Notificacions" msgid "See all notifications" msgstr "Veure totes les notificacions" -#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:226 msgid "Mark as seen" msgstr "Marcar com a vist" @@ -2213,8 +2218,8 @@ msgstr "" msgid "Manage other pages" msgstr "Gestiona altres pàgines" -#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 -#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:170 +#: 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/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Ajustos" @@ -2242,10 +2247,10 @@ msgstr "Ajustos i configuració del lloc" #: src/Module/Moderation/Blocklist/Server/Index.php:84 #: 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:119 -#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 #: src/Module/Moderation/Users/Deleted.php:66 -#: src/Module/Moderation/Users/Index.php:133 +#: src/Module/Moderation/Users/Index.php:136 msgid "Moderation" msgstr "" @@ -2277,33 +2282,33 @@ msgstr "següent" msgid "last" msgstr "Últim" -#: src/Content/Text/BBCode.php:908 +#: src/Content/Text/BBCode.php:903 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:931 src/Model/Item.php:4069 -#: src/Model/Item.php:4075 src/Model/Item.php:4076 +#: src/Content/Text/BBCode.php:926 src/Model/Item.php:4080 +#: src/Model/Item.php:4086 src/Model/Item.php:4087 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1745 src/Content/Text/HTML.php:892 +#: src/Content/Text/BBCode.php:1740 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Clicar per a obrir/tancar" -#: src/Content/Text/BBCode.php:1800 +#: src/Content/Text/BBCode.php:1795 msgid "$1 wrote:" msgstr "$1 va escriure:" -#: src/Content/Text/BBCode.php:1874 src/Content/Text/BBCode.php:1875 +#: src/Content/Text/BBCode.php:1869 src/Content/Text/BBCode.php:1870 msgid "Encrypted content" msgstr "Encriptar contingut" -#: src/Content/Text/BBCode.php:2208 +#: src/Content/Text/BBCode.php:2203 msgid "Invalid source protocol" msgstr "" -#: src/Content/Text/BBCode.php:2227 +#: src/Content/Text/BBCode.php:2222 msgid "Invalid link protocol" msgstr "" @@ -2356,7 +2361,7 @@ msgid "Examples: Robert Morgenstein, Fishing" msgstr "Exemples: Robert Morgenstein, Pescar" #: src/Content/Widget.php:68 src/Module/Contact.php:441 -#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 +#: src/Module/Directory.php:82 view/theme/vier/theme.php:185 msgid "Find" msgstr "Cercar" @@ -2377,7 +2382,7 @@ msgstr "Perfi Aleatori" msgid "Invite Friends" msgstr "Invita Amics" -#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: src/Content/Widget.php:73 src/Module/Directory.php:74 #: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Directori Global" @@ -2398,7 +2403,7 @@ msgstr "" msgid "Relationships" msgstr "" -#: src/Content/Widget.php:264 src/Module/Circle.php:280 +#: src/Content/Widget.php:264 src/Module/Circle.php:281 #: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Tots els Contactes" @@ -2422,27 +2427,27 @@ msgid_plural "%d contacts in common" msgstr[0] "%d contacte en comú" msgstr[1] "%d contactes en comú" -#: src/Content/Widget.php:529 +#: src/Content/Widget.php:532 msgid "On this date" msgstr "" -#: src/Content/Widget.php:549 +#: src/Content/Widget.php:552 msgid "Persons" msgstr "" -#: src/Content/Widget.php:550 +#: src/Content/Widget.php:553 msgid "Organisations" msgstr "" -#: src/Content/Widget.php:551 src/Model/Contact.php:1750 +#: src/Content/Widget.php:554 src/Model/Contact.php:1751 msgid "News" msgstr "" -#: src/Content/Widget.php:553 +#: src/Content/Widget.php:556 msgid "Relays" msgstr "" -#: src/Content/Widget.php:560 src/Module/Moderation/BaseUsers.php:58 +#: src/Content/Widget.php:563 src/Module/Moderation/BaseUsers.php:58 msgid "All" msgstr "" @@ -2488,12 +2493,12 @@ msgstr[1] "" msgid "More Trending Tags" msgstr "" -#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1207 +#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1208 #: src/Model/Profile.php:440 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1211 +#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1212 #: src/Model/Profile.php:444 src/Module/Moderation/Item/Source.php:80 msgid "Mention" msgstr "" @@ -2508,10 +2513,10 @@ msgstr "" msgid "Matrix:" msgstr "" -#: src/Content/Widget/VCard.php:112 src/Model/Event.php:68 -#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: 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:134 src/Module/Notifications/Introductions.php:180 +#: src/Module/Directory.php:133 src/Module/Notifications/Introductions.php:180 #: src/Module/Profile/Profile.php:212 msgid "Location:" msgstr "Ubicació:" @@ -2521,75 +2526,75 @@ msgstr "Ubicació:" msgid "Network:" msgstr "" -#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1239 -#: src/Model/Contact.php:1251 src/Model/Profile.php:457 +#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1252 src/Model/Profile.php:457 #: src/Module/Contact/Profile.php:476 msgid "Unfollow" msgstr "" -#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1209 +#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1210 #: src/Model/Profile.php:442 msgid "View group" msgstr "" -#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:260 +#: src/Core/ACL.php:153 src/Module/Profile/Profile.php:260 msgid "Yourself" msgstr "" -#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Core/ACL.php:189 src/Module/Privacy/PermissionTooltip.php:156 #: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "Mútues" -#: src/Core/ACL.php:280 +#: src/Core/ACL.php:281 msgid "Post to Email" msgstr "Correu per enviar" -#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Core/ACL.php:308 src/Module/Privacy/PermissionTooltip.php:103 #: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "" -#: src/Core/ACL.php:308 +#: src/Core/ACL.php:309 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:309 src/Module/Privacy/PermissionTooltip.php:105 +#: src/Core/ACL.php:310 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "" -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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:310 +#: src/Core/ACL.php:311 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:311 +#: src/Core/ACL.php:312 msgid "Show to:" msgstr "" -#: src/Core/ACL.php:312 +#: src/Core/ACL.php:313 msgid "Except to:" msgstr "" -#: src/Core/ACL.php:313 src/Module/Post/Edit.php:145 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:145 msgid "CC: email addresses" msgstr "CC: Adreça de correu" -#: src/Core/ACL.php:314 src/Module/Post/Edit.php:151 +#: src/Core/ACL.php:315 src/Module/Post/Edit.php:151 msgid "Example: bob@example.com, mary@example.com" msgstr "Exemple: bob@example.com, mary@example.com" -#: src/Core/ACL.php:315 +#: src/Core/ACL.php:316 msgid "Connectors" msgstr "" @@ -2924,176 +2929,176 @@ msgstr "" msgid "Could not connect to database." msgstr "No puc connectar a la base de dades." -#: src/Core/L10n.php:430 src/Model/Item.php:2316 +#: src/Core/L10n.php:426 src/Model/Item.php:2324 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:437 +#: src/Core/L10n.php:433 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Core/L10n.php:481 src/Model/Event.php:418 #: src/Module/Settings/Display.php:292 msgid "Monday" msgstr "Dilluns" -#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Core/L10n.php:481 src/Model/Event.php:419 #: src/Module/Settings/Display.php:293 msgid "Tuesday" msgstr "Dimarts" -#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Core/L10n.php:481 src/Model/Event.php:420 #: src/Module/Settings/Display.php:294 msgid "Wednesday" msgstr "Dimecres" -#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Core/L10n.php:481 src/Model/Event.php:421 #: src/Module/Settings/Display.php:295 msgid "Thursday" msgstr "Dijous" -#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Core/L10n.php:481 src/Model/Event.php:422 #: src/Module/Settings/Display.php:296 msgid "Friday" msgstr "Divendres" -#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Core/L10n.php:481 src/Model/Event.php:423 #: src/Module/Settings/Display.php:297 msgid "Saturday" msgstr "Dissabte" -#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Core/L10n.php:481 src/Model/Event.php:417 #: src/Module/Settings/Display.php:291 msgid "Sunday" msgstr "Diumenge" -#: src/Core/L10n.php:489 src/Model/Event.php:436 +#: src/Core/L10n.php:485 src/Model/Event.php:438 msgid "January" msgstr "Gener" -#: src/Core/L10n.php:489 src/Model/Event.php:437 +#: src/Core/L10n.php:485 src/Model/Event.php:439 msgid "February" msgstr "Febrer" -#: src/Core/L10n.php:489 src/Model/Event.php:438 +#: src/Core/L10n.php:485 src/Model/Event.php:440 msgid "March" msgstr "Març" -#: src/Core/L10n.php:489 src/Model/Event.php:439 +#: src/Core/L10n.php:485 src/Model/Event.php:441 msgid "April" msgstr "Abril" -#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 +#: src/Core/L10n.php:485 src/Core/L10n.php:504 src/Model/Event.php:429 msgid "May" msgstr "Maig" -#: src/Core/L10n.php:489 src/Model/Event.php:440 +#: src/Core/L10n.php:485 src/Model/Event.php:442 msgid "June" msgstr "Juny" -#: src/Core/L10n.php:489 src/Model/Event.php:441 +#: src/Core/L10n.php:485 src/Model/Event.php:443 msgid "July" msgstr "Juliol" -#: src/Core/L10n.php:489 src/Model/Event.php:442 +#: src/Core/L10n.php:485 src/Model/Event.php:444 msgid "August" msgstr "Agost" -#: src/Core/L10n.php:489 src/Model/Event.php:443 +#: src/Core/L10n.php:485 src/Model/Event.php:445 msgid "September" msgstr "Setembre" -#: src/Core/L10n.php:489 src/Model/Event.php:444 +#: src/Core/L10n.php:485 src/Model/Event.php:446 msgid "October" msgstr "Octubre" -#: src/Core/L10n.php:489 src/Model/Event.php:445 +#: src/Core/L10n.php:485 src/Model/Event.php:447 msgid "November" msgstr "Novembre" -#: src/Core/L10n.php:489 src/Model/Event.php:446 +#: src/Core/L10n.php:485 src/Model/Event.php:448 msgid "December" msgstr "Desembre" -#: src/Core/L10n.php:504 src/Model/Event.php:408 +#: src/Core/L10n.php:500 src/Model/Event.php:410 msgid "Mon" msgstr "Dl" -#: src/Core/L10n.php:504 src/Model/Event.php:409 +#: src/Core/L10n.php:500 src/Model/Event.php:411 msgid "Tue" msgstr "Dt" -#: src/Core/L10n.php:504 src/Model/Event.php:410 +#: src/Core/L10n.php:500 src/Model/Event.php:412 msgid "Wed" msgstr "Dc" -#: src/Core/L10n.php:504 src/Model/Event.php:411 +#: src/Core/L10n.php:500 src/Model/Event.php:413 msgid "Thu" msgstr "Dj" -#: src/Core/L10n.php:504 src/Model/Event.php:412 +#: src/Core/L10n.php:500 src/Model/Event.php:414 msgid "Fri" msgstr "Dv" -#: src/Core/L10n.php:504 src/Model/Event.php:413 +#: src/Core/L10n.php:500 src/Model/Event.php:415 msgid "Sat" msgstr "Ds" -#: src/Core/L10n.php:504 src/Model/Event.php:407 +#: src/Core/L10n.php:500 src/Model/Event.php:409 msgid "Sun" msgstr "Dg" -#: src/Core/L10n.php:508 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:425 msgid "Jan" msgstr "Gen" -#: src/Core/L10n.php:508 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:426 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:508 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:427 msgid "Mar" msgstr "Mar" -#: src/Core/L10n.php:508 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:428 msgid "Apr" msgstr "Abr" -#: src/Core/L10n.php:508 src/Model/Event.php:428 +#: src/Core/L10n.php:504 src/Model/Event.php:430 msgid "Jun" msgstr "Jun" -#: src/Core/L10n.php:508 src/Model/Event.php:429 +#: src/Core/L10n.php:504 src/Model/Event.php:431 msgid "Jul" msgstr "Jul" -#: src/Core/L10n.php:508 src/Model/Event.php:430 +#: src/Core/L10n.php:504 src/Model/Event.php:432 msgid "Aug" msgstr "Ago" -#: src/Core/L10n.php:508 +#: src/Core/L10n.php:504 msgid "Sep" msgstr "Set" -#: src/Core/L10n.php:508 src/Model/Event.php:432 +#: src/Core/L10n.php:504 src/Model/Event.php:434 msgid "Oct" msgstr "Oct" -#: src/Core/L10n.php:508 src/Model/Event.php:433 +#: src/Core/L10n.php:504 src/Model/Event.php:435 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:508 src/Model/Event.php:434 +#: src/Core/L10n.php:504 src/Model/Event.php:436 msgid "Dec" msgstr "Des" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:44 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:67 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" @@ -3285,7 +3290,7 @@ msgstr "afegir" msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:592 src/Module/Circle.php:181 +#: src/Model/Circle.php:592 src/Module/Circle.php:185 msgid "Contacts not in any circle" msgstr "" @@ -3293,8 +3298,8 @@ msgstr "" msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:595 src/Module/Circle.php:166 -#: src/Module/Circle.php:189 src/Module/Circle.php:264 +#: src/Model/Circle.php:595 src/Module/Circle.php:168 +#: src/Module/Circle.php:190 src/Module/Circle.php:265 msgid "Circle Name: " msgstr "" @@ -3302,280 +3307,280 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1258 src/Module/Moderation/Users/Pending.php:88 +#: src/Model/Contact.php:1259 src/Module/Moderation/Users/Pending.php:88 #: src/Module/Notifications/Introductions.php:124 #: src/Module/Notifications/Introductions.php:197 msgid "Approve" msgstr "Aprovar" -#: src/Model/Contact.php:1594 src/Model/Contact.php:1666 +#: src/Model/Contact.php:1595 src/Model/Contact.php:1667 #: src/Module/Contact/Profile.php:360 #, php-format msgid "%s has blocked you" msgstr "" -#: src/Model/Contact.php:1746 +#: src/Model/Contact.php:1747 msgid "Organisation" msgstr "" -#: src/Model/Contact.php:1754 +#: src/Model/Contact.php:1755 msgid "Group" msgstr "" -#: src/Model/Contact.php:1758 src/Module/Moderation/BaseUsers.php:122 +#: src/Model/Contact.php:1759 src/Module/Moderation/BaseUsers.php:122 msgid "Relay" msgstr "" -#: src/Model/Contact.php:3073 +#: src/Model/Contact.php:3085 msgid "Disallowed profile URL." msgstr "Perfil URL no permès." -#: src/Model/Contact.php:3078 src/Module/Friendica.php:88 +#: src/Model/Contact.php:3090 src/Module/Friendica.php:88 msgid "Blocked domain" msgstr "" -#: src/Model/Contact.php:3083 +#: src/Model/Contact.php:3095 msgid "Connect URL missing." msgstr "URL del connector perduda." -#: src/Model/Contact.php:3092 +#: src/Model/Contact.php:3104 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Contact.php:3110 +#: src/Model/Contact.php:3122 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3127 +#: src/Model/Contact.php:3139 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3134 +#: src/Model/Contact.php:3146 msgid "The profile address specified does not provide adequate information." msgstr "L'adreça de perfil especificada no proveeix informació adient." -#: src/Model/Contact.php:3136 +#: src/Model/Contact.php:3148 msgid "No compatible communication protocols or feeds were discovered." msgstr "Protocol de comunnicació no compatible o alimentador descobert." -#: src/Model/Contact.php:3139 +#: src/Model/Contact.php:3151 msgid "An author or name was not found." msgstr "Un autor o nom no va ser trobat" -#: src/Model/Contact.php:3142 +#: src/Model/Contact.php:3154 msgid "No browser URL could be matched to this address." msgstr "Cap direcció URL del navegador coincideix amb aquesta adreça." -#: src/Model/Contact.php:3145 +#: src/Model/Contact.php:3157 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Incapaç de trobar coincidències amb la Adreça d'Identitat estil @ amb els protocols coneguts o contactes de correu. " -#: src/Model/Contact.php:3146 +#: src/Model/Contact.php:3158 msgid "Use mailto: in front of address to force email check." msgstr "Emprar mailto: davant la adreça per a forçar la comprovació del correu." -#: src/Model/Contact.php:3152 +#: src/Model/Contact.php:3164 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Perfil limitat. Aquesta persona no podrà rebre notificacions personals/directes de tu." -#: src/Model/Contact.php:3211 +#: src/Model/Contact.php:3223 msgid "Unable to retrieve contact information." msgstr "No es pot recuperar la informació de contacte." -#: src/Model/Event.php:40 +#: src/Model/Event.php:42 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 -#: src/Model/Event.php:928 +#: src/Model/Event.php:63 src/Model/Event.php:80 src/Model/Event.php:457 +#: src/Model/Event.php:929 msgid "Starts:" msgstr "Inici:" -#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 -#: src/Model/Event.php:932 +#: src/Model/Event.php:66 src/Model/Event.php:86 src/Model/Event.php:458 +#: src/Model/Event.php:933 msgid "Finishes:" msgstr "Acaba:" -#: src/Model/Event.php:405 +#: src/Model/Event.php:407 msgid "all-day" msgstr "tot el dia" -#: src/Model/Event.php:431 +#: src/Model/Event.php:433 msgid "Sept" msgstr "Set" -#: src/Model/Event.php:448 src/Module/Calendar/Show.php:117 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:117 #: src/Util/Temporal.php:329 msgid "today" msgstr "avui" -#: src/Model/Event.php:449 src/Module/Calendar/Show.php:118 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:118 #: src/Module/Settings/Display.php:302 src/Util/Temporal.php:339 msgid "month" msgstr "mes" -#: src/Model/Event.php:450 src/Module/Calendar/Show.php:119 +#: src/Model/Event.php:452 src/Module/Calendar/Show.php:119 #: src/Module/Settings/Display.php:303 src/Util/Temporal.php:340 msgid "week" msgstr "setmana" -#: src/Model/Event.php:451 src/Module/Calendar/Show.php:120 +#: src/Model/Event.php:453 src/Module/Calendar/Show.php:120 #: src/Module/Settings/Display.php:304 src/Util/Temporal.php:341 msgid "day" msgstr "dia" -#: src/Model/Event.php:453 +#: src/Model/Event.php:455 msgid "No events to display" msgstr "No hi ha esdeveniments per mostrar" -#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Model/Event.php:504 src/Module/Feed.php:56 #: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "L'accés a aquest perfil ha estat restringit." -#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:52 +#: src/Model/Event.php:545 src/Module/Calendar/Event/Show.php:52 msgid "Event not found." msgstr "" -#: src/Model/Event.php:623 +#: src/Model/Event.php:624 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:650 +#: src/Model/Event.php:651 msgid "Edit event" msgstr "Editar esdeveniment" -#: src/Model/Event.php:651 +#: src/Model/Event.php:652 msgid "Duplicate event" msgstr "Esdeveniment duplicat" -#: src/Model/Event.php:652 +#: src/Model/Event.php:653 msgid "Delete event" msgstr "Esborrar esdeveniment" -#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 +#: src/Model/Event.php:883 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:883 +#: src/Model/Event.php:884 msgid "D g:i A" msgstr "D g:i A" -#: src/Model/Event.php:884 +#: src/Model/Event.php:885 msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:947 src/Model/Event.php:949 +#: src/Model/Event.php:948 src/Model/Event.php:950 msgid "Show map" msgstr "Mostra el mapa" -#: src/Model/Event.php:948 +#: src/Model/Event.php:949 msgid "Hide map" msgstr "Amaga el mapa" -#: src/Model/Event.php:1041 +#: src/Model/Event.php:1042 #, php-format msgid "%s's birthday" msgstr "%s aniversari" -#: src/Model/Event.php:1042 +#: src/Model/Event.php:1043 #, php-format msgid "Happy Birthday %s" msgstr "Feliç Aniversari %s" -#: src/Model/Item.php:2323 +#: src/Model/Item.php:2331 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2325 +#: src/Model/Item.php:2333 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2328 +#: src/Model/Item.php:2336 #, php-format msgid "" "Detected languages in this post:\n" "%s" msgstr "" -#: src/Model/Item.php:3277 +#: src/Model/Item.php:3285 msgid "activity" msgstr "activitat" -#: src/Model/Item.php:3279 +#: src/Model/Item.php:3287 msgid "comment" msgstr "" -#: src/Model/Item.php:3282 src/Module/Post/Tag/Add.php:109 +#: src/Model/Item.php:3290 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "missatge" -#: src/Model/Item.php:3452 +#: src/Model/Item.php:3463 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3454 +#: src/Model/Item.php:3465 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3456 +#: src/Model/Item.php:3467 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3460 +#: src/Model/Item.php:3471 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3969 +#: src/Model/Item.php:3980 msgid "bytes" msgstr "bytes" -#: src/Model/Item.php:4000 +#: src/Model/Item.php:4011 #, 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:4002 +#: src/Model/Item.php:4013 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:4007 +#: src/Model/Item.php:4018 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:4009 +#: src/Model/Item.php:4020 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:4011 +#: src/Model/Item.php:4022 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:4052 src/Model/Item.php:4053 +#: src/Model/Item.php:4063 src/Model/Item.php:4064 msgid "View on separate page" msgstr "Veure en un altre pàgina" @@ -3583,7 +3588,7 @@ msgstr "Veure en un altre pàgina" msgid "[no subject]" msgstr "[Sense assumpte]" -#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 +#: src/Model/Photo.php:1192 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Fotos del Mur" @@ -3596,7 +3601,7 @@ msgstr "Editar perfil" msgid "Change profile photo" msgstr "Canviar la foto del perfil" -#: src/Model/Profile.php:357 src/Module/Directory.php:139 +#: src/Model/Profile.php:357 src/Module/Directory.php:138 #: src/Module/Profile/Profile.php:200 msgid "Homepage:" msgstr "Pàgina web:" @@ -3686,7 +3691,7 @@ msgstr "No Agrada" msgid "Title/Description:" msgstr "Títol/Descripció:" -#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:176 +#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:174 #: src/Module/Moderation/Report/Create.php:266 #: src/Module/Moderation/Summary.php:65 msgid "Summary" @@ -3737,59 +3742,59 @@ msgstr "" msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "ERROR IMPORTANT: La generació de claus de seguretat ha fallat." -#: src/Model/User.php:740 src/Model/User.php:773 +#: src/Model/User.php:739 src/Model/User.php:772 msgid "Login failed" msgstr "" -#: src/Model/User.php:805 +#: src/Model/User.php:804 msgid "Not enough information to authenticate" msgstr "" -#: src/Model/User.php:930 +#: src/Model/User.php:929 msgid "Password can't be empty" msgstr "" -#: src/Model/User.php:972 +#: src/Model/User.php:971 msgid "Empty passwords are not allowed." msgstr "" -#: src/Model/User.php:976 +#: src/Model/User.php:975 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "" -#: src/Model/User.php:980 +#: src/Model/User.php:979 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:984 +#: src/Model/User.php:983 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1193 +#: src/Model/User.php:1192 msgid "Passwords do not match. Password unchanged." msgstr "Les contrasenyes no coincideixen. Contrasenya no canviada." -#: src/Model/User.php:1200 +#: src/Model/User.php:1199 msgid "An invitation is required." msgstr "Es requereix invitació." -#: src/Model/User.php:1204 +#: src/Model/User.php:1203 msgid "Invitation could not be verified." msgstr "La invitació no ha pogut ser verificada." -#: src/Model/User.php:1212 +#: src/Model/User.php:1211 msgid "Invalid OpenID url" msgstr "OpenID url no vàlid" -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Em trobat un problema quan accedies amb la OpenID que has proporcionat. Per favor, revisa la cadena del ID." -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "The error message was:" msgstr "El missatge d'error fou: " @@ -3980,57 +3985,57 @@ msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:51 +#: src/Module/Admin/Addons/Details.php:49 msgid "Addon not found." msgstr "" -#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 +#: src/Module/Admin/Addons/Details.php:60 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "" -#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 +#: src/Module/Admin/Addons/Details.php:63 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "" -#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Addons/Details.php:72 #: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "Deshabilitar" -#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Addons/Details.php:75 #: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351 msgid "Enable" msgstr "Habilitar" -#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Addons/Details.php:95 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:175 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Summary.php:173 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 "Administració" -#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/Admin/Addons/Details.php:96 src/Module/Admin/Addons/Index.php:60 #: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:127 msgid "Addons" msgstr "" -#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Addons/Details.php:97 #: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Canviar" -#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Addons/Details.php:104 #: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Autor:" -#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Addons/Details.php:105 #: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Responsable:" @@ -4047,9 +4052,10 @@ 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:545 src/Module/Settings/Addons.php:64 -#: src/Module/Settings/Connectors.php:149 -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Account.php:507 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/Features.php:61 msgid "Save Settings" @@ -4066,62 +4072,62 @@ msgid "" "official addon repository at %1$s." msgstr "" -#: src/Module/Admin/DBSync.php:37 +#: src/Module/Admin/DBSync.php:35 msgid "Update has been marked successful" msgstr "L'actualització ha estat marcada amb èxit" -#: src/Module/Admin/DBSync.php:45 +#: src/Module/Admin/DBSync.php:43 #, php-format msgid "Database structure update %s was successfully applied." msgstr "" -#: src/Module/Admin/DBSync.php:47 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:62 +#: src/Module/Admin/DBSync.php:60 #, php-format msgid "Executing %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:64 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Update %s was successfully applied." msgstr "L'actualització de %s es va aplicar amb èxit." -#: src/Module/Admin/DBSync.php:67 +#: src/Module/Admin/DBSync.php:65 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "L'actualització de %s no ha retornat el seu estatus. Es desconeix si ha estat amb èxit." -#: src/Module/Admin/DBSync.php:70 +#: src/Module/Admin/DBSync.php:68 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "" -#: src/Module/Admin/DBSync.php:91 +#: src/Module/Admin/DBSync.php:89 msgid "No failed updates." msgstr "No hi ha actualitzacions fallides." -#: src/Module/Admin/DBSync.php:92 +#: src/Module/Admin/DBSync.php:90 msgid "Check database structure" msgstr "" -#: src/Module/Admin/DBSync.php:96 +#: src/Module/Admin/DBSync.php:94 msgid "Failed Updates" msgstr "Actualitzacions Fallides" -#: src/Module/Admin/DBSync.php:97 +#: src/Module/Admin/DBSync.php:95 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Això no inclou actualitzacions anteriors a 1139, raó per la que no ha retornat l'estatus." -#: src/Module/Admin/DBSync.php:98 +#: src/Module/Admin/DBSync.php:96 msgid "Mark success (if update was manually applied)" msgstr "Marcat am èxit (si l'actualització es va fer manualment)" -#: src/Module/Admin/DBSync.php:99 +#: src/Module/Admin/DBSync.php:97 msgid "Attempt to execute this update step automatically" msgstr "Intentant executar aquest pas d'actualització automàticament" @@ -5686,12 +5692,12 @@ msgstr "" msgid "Database (legacy)" msgstr "" -#: src/Module/Admin/Summary.php:41 +#: src/Module/Admin/Summary.php:39 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:45 +#: src/Module/Admin/Summary.php:43 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5702,7 +5708,7 @@ msgid "" " an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:50 +#: src/Module/Admin/Summary.php:48 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5713,7 +5719,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:60 +#: src/Module/Admin/Summary.php:58 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5721,46 +5727,46 @@ msgid "" " to %d. See here for more information.
" msgstr "" -#: src/Module/Admin/Summary.php:68 +#: src/Module/Admin/Summary.php:66 #, 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:76 +#: src/Module/Admin/Summary.php:74 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:80 +#: src/Module/Admin/Summary.php:78 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:84 +#: src/Module/Admin/Summary.php:82 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:89 +#: src/Module/Admin/Summary.php:87 msgid "The worker was never executed. Please check your database structure!" msgstr "" -#: src/Module/Admin/Summary.php:91 +#: src/Module/Admin/Summary.php:89 #, 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:96 +#: src/Module/Admin/Summary.php:94 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5769,7 +5775,7 @@ msgid "" "help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:100 +#: src/Module/Admin/Summary.php:98 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5778,7 +5784,7 @@ msgid "" "page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:106 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5786,40 +5792,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "" -#: src/Module/Admin/Summary.php:130 +#: src/Module/Admin/Summary.php:128 #, 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:138 +#: src/Module/Admin/Summary.php:136 #, 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:146 +#: src/Module/Admin/Summary.php:144 #, 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:157 +#: src/Module/Admin/Summary.php:155 msgid "Message queues" msgstr "Cues de missatges" -#: src/Module/Admin/Summary.php:160 +#: src/Module/Admin/Summary.php:158 msgid "Server Settings" msgstr "" -#: src/Module/Admin/Summary.php:178 +#: src/Module/Admin/Summary.php:176 msgid "Version" msgstr "Versió" -#: src/Module/Admin/Summary.php:182 +#: src/Module/Admin/Summary.php:180 msgid "Active addons" msgstr "" @@ -6084,8 +6090,8 @@ msgstr "" msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:134 -#: src/Module/Moderation/Users/Index.php:144 +#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:137 +#: src/Module/Moderation/Users/Index.php:147 msgid "Users" msgstr "Usuaris" @@ -6121,7 +6127,7 @@ msgstr "" msgid "Only You Can See This" msgstr "Només ho pots veure tu" -#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:67 +#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:65 msgid "Scheduled Posts" msgstr "" @@ -6173,7 +6179,7 @@ msgstr "" msgid "Display" msgstr "" -#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:195 +#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:189 msgid "Social Networks" msgstr "Xarxes socials" @@ -6189,11 +6195,15 @@ msgstr "App connectada" msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:84 +#: src/Module/BaseSettings.php:155 src/Module/Settings/ContactImport.php:109 +msgid "Import Contacts" +msgstr "" + +#: src/Module/BaseSettings.php:162 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Exportar dades personals" -#: src/Module/BaseSettings.php:162 +#: src/Module/BaseSettings.php:169 msgid "Remove account" msgstr "Esborrar compte" @@ -6322,8 +6332,8 @@ msgstr "llista" msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:54 src/Module/Circle.php:202 -#: src/Module/Circle.php:226 +#: src/Module/Circle.php:54 src/Module/Circle.php:203 +#: src/Module/Circle.php:227 msgid "Circle not found." msgstr "" @@ -6331,15 +6341,15 @@ msgstr "" msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:78 +#: src/Module/Circle.php:80 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Circle.php:86 src/Module/Circle.php:95 #: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 -#: 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/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/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 @@ -6348,75 +6358,75 @@ msgstr "" msgid "Contact not found." msgstr "Contacte no trobat" -#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 +#: src/Module/Circle.php:90 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Contacte no vàlid." -#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 +#: src/Module/Circle.php:99 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "" -#: src/Module/Circle.php:103 +#: src/Module/Circle.php:105 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:106 +#: src/Module/Circle.php:108 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:110 +#: src/Module/Circle.php:112 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:113 +#: src/Module/Circle.php:115 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:119 msgid "Bad request." msgstr "" -#: src/Module/Circle.php:158 +#: src/Module/Circle.php:160 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:159 +#: src/Module/Circle.php:161 msgid "Filter" msgstr "" -#: src/Module/Circle.php:165 +#: src/Module/Circle.php:167 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:207 +#: src/Module/Circle.php:208 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:258 +#: src/Module/Circle.php:259 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:268 +#: src/Module/Circle.php:269 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:278 +#: src/Module/Circle.php:279 msgid "Members" msgstr "Membres" -#: src/Module/Circle.php:281 +#: src/Module/Circle.php:282 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:297 +#: src/Module/Circle.php:298 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:320 +#: src/Module/Circle.php:321 msgid "Click on a contact to add or remove." msgstr "Clicar sobre el contacte per afegir o esborrar." -#: src/Module/Circle.php:337 +#: src/Module/Circle.php:338 msgid "Add contact to circle" msgstr "" @@ -6450,7 +6460,7 @@ msgid "Only show blocked contacts" msgstr "Mostrar únicament els contactes blocats" #: src/Module/Contact.php:349 src/Module/Contact.php:421 -#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:386 msgid "Ignored" msgstr "Ignorat" @@ -6501,8 +6511,8 @@ msgstr "Actualitzar" #: src/Module/Contact.php:449 src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:105 -#: src/Module/Moderation/Users/Blocked.php:124 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Blocked.php:127 +#: src/Module/Moderation/Users/Index.php:143 msgid "Unblock" msgstr "Desbloquejar" @@ -6578,12 +6588,12 @@ msgstr "Tornar al editor de contactes" #: 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:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:56 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Nom" @@ -7148,11 +7158,11 @@ msgstr "" msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:190 +#: src/Module/Conversation/Timeline.php:193 msgid "Include" msgstr "" -#: src/Module/Conversation/Timeline.php:191 +#: src/Module/Conversation/Timeline.php:194 msgid "Hide" msgstr "" @@ -7421,19 +7431,19 @@ msgstr "" msgid "Lookup address:" msgstr "" -#: src/Module/Directory.php:61 +#: src/Module/Directory.php:60 msgid "No entries (some entries may be hidden)." msgstr "No hi ha entrades (algunes de les entrades poden estar amagades)." -#: src/Module/Directory.php:77 +#: src/Module/Directory.php:76 msgid "Find on this site" msgstr "Trobat en aquest lloc" -#: src/Module/Directory.php:79 +#: src/Module/Directory.php:78 msgid "Results for:" msgstr "" -#: src/Module/Directory.php:81 +#: src/Module/Directory.php:80 msgid "Site Directory" msgstr "Directori Local" @@ -7686,40 +7696,40 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "" -#: src/Module/Invite.php:43 +#: src/Module/Invite.php:42 msgid "Total invitation limit exceeded." msgstr "Limit d'invitacions excedit." -#: src/Module/Invite.php:68 +#: src/Module/Invite.php:67 #, php-format msgid "%s : Not a valid email address." msgstr "%s : No es una adreça de correu vàlida" -#: src/Module/Invite.php:94 +#: src/Module/Invite.php:93 msgid "Please join us on Friendica" msgstr "Per favor, uneixi's a nosaltres en Friendica" -#: src/Module/Invite.php:103 +#: src/Module/Invite.php:102 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Limit d'invitacions excedit. Per favor, Contacti amb l'administrador del lloc." -#: src/Module/Invite.php:107 +#: src/Module/Invite.php:106 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Ha fallat l'entrega del missatge." -#: src/Module/Invite.php:111 +#: src/Module/Invite.php:110 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%d missatge enviat" msgstr[1] "%d missatges enviats." -#: src/Module/Invite.php:129 +#: src/Module/Invite.php:127 msgid "You have no more invitations available" msgstr "No te més invitacions disponibles" -#: src/Module/Invite.php:136 +#: src/Module/Invite.php:134 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7727,14 +7737,14 @@ msgid "" " other social networks." msgstr "Visita %s per a una llista de llocs públics on unir-te. Els membres de Friendica d'altres llocs poden connectar-se de forma total, així com amb membres de moltes altres xarxes socials." -#: src/Module/Invite.php:138 +#: src/Module/Invite.php:136 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Per acceptar aquesta invitació, per favor visita i registra't a %s o en qualsevol altre pàgina web pública Friendica." -#: src/Module/Invite.php:139 +#: src/Module/Invite.php:137 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7743,48 +7753,48 @@ msgid "" "sites you can join." msgstr "Tots els llocs Friendica estàn interconnectats per crear una web social amb privacitat millorada, controlada i propietat dels seus membres. També poden connectar amb moltes xarxes socials tradicionals. Consulteu %s per a una llista de llocs de Friendica alternatius en que pot inscriure's." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:141 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Nostres disculpes. Aquest sistema no està configurat actualment per connectar amb altres llocs públics o convidar als membres." -#: src/Module/Invite.php:146 +#: src/Module/Invite.php:144 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:145 +#: src/Module/Invite.php:143 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "" -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:151 msgid "Send invitations" msgstr "Enviant Invitacions" -#: src/Module/Invite.php:154 +#: src/Module/Invite.php:152 msgid "Enter email addresses, one per line:" msgstr "Entri adreçes de correu, una per línia:" -#: src/Module/Invite.php:158 +#: src/Module/Invite.php:156 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Estàs cordialment convidat a ajuntarte a mi i altres amics propers en Friendica - i ajudar-nos a crear una millor web social." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "You will need to supply this invitation code: $invite_code" msgstr "Vostè haurà de proporcionar aquest codi d'invitació: $invite_code" -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Un cop registrat, si us plau contactar amb mi a través de la meva pàgina de perfil a:" -#: src/Module/Invite.php:162 +#: src/Module/Invite.php:160 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" @@ -7886,12 +7896,12 @@ msgid "File upload failed." msgstr "La càrrega de fitxers ha fallat." #: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 -#: src/Module/Profile/Photos.php:204 +#: src/Module/Profile/Photos.php:212 #: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Incapaç de processar la imatge." -#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:224 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:232 #: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Actualització de la imatge fracassada." @@ -7924,23 +7934,23 @@ msgstr "" msgid "List of pending user deletions" msgstr "" -#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:469 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:431 msgid "Normal Account Page" msgstr "Pàgina Normal del Compte " -#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:476 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:438 msgid "Soapbox Page" msgstr "Pàgina de Soapbox" -#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:483 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:445 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:490 +#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:452 msgid "Public Group - Restricted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:497 +#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:459 msgid "Automatic Friend Page" msgstr "Compte d'Amistat Automàtica" @@ -7949,22 +7959,22 @@ msgid "Private Group" msgstr "" #: src/Module/Moderation/BaseUsers.php:118 -#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:440 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:402 msgid "Personal Page" msgstr "" #: src/Module/Moderation/BaseUsers.php:119 -#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:447 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:409 msgid "Organisation Page" msgstr "Página de organización" #: src/Module/Moderation/BaseUsers.php:120 -#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:454 +#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:416 msgid "News Page" msgstr "Página de noticias" #: src/Module/Moderation/BaseUsers.php:121 -#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:461 +#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:423 msgid "Community Group" msgstr "" @@ -7994,9 +8004,9 @@ msgid "Block Remote Contact" msgstr "" #: src/Module/Moderation/Blocklist/Contact.php:102 -#: 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/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:138 #: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "Seleccionar tot" @@ -8337,9 +8347,9 @@ msgid "Tag" msgstr "" #: src/Module/Moderation/Item/Source.php:77 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 -#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 +#: src/Module/Moderation/Users/Index.php:129 msgid "Type" msgstr "" @@ -8604,7 +8614,7 @@ msgstr[1] "" msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:418 +#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:380 msgid "Channel Relay" msgstr "" @@ -8625,11 +8635,11 @@ msgstr[0] "" msgstr[1] "" #: src/Module/Moderation/Users/Active.php:37 -#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Active.php:74 #: src/Module/Moderation/Users/Blocked.php:37 -#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Blocked.php:74 #: src/Module/Moderation/Users/Index.php:44 -#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Index.php:81 msgid "You can't remove yourself" msgstr "" @@ -8642,81 +8652,81 @@ msgid_plural "%s users deleted" msgstr[0] "%s usuari esborrat" msgstr[1] "%s usuaris esborrats" -#: src/Module/Moderation/Users/Active.php:69 -#: src/Module/Moderation/Users/Blocked.php:69 -#: src/Module/Moderation/Users/Index.php:76 +#: src/Module/Moderation/Users/Active.php:72 +#: src/Module/Moderation/Users/Blocked.php:72 +#: src/Module/Moderation/Users/Index.php:79 #, php-format msgid "User \"%s\" deleted" msgstr "" -#: src/Module/Moderation/Users/Active.php:79 -#: src/Module/Moderation/Users/Index.php:86 +#: src/Module/Moderation/Users/Active.php:82 +#: src/Module/Moderation/Users/Index.php:89 #, php-format msgid "User \"%s\" blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Register date" msgstr "Data de registre" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last login" msgstr "Últim accés" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last public item" msgstr "" -#: src/Module/Moderation/Users/Active.php:120 +#: src/Module/Moderation/Users/Active.php:123 msgid "Active Accounts" msgstr "" -#: src/Module/Moderation/Users/Active.php:124 -#: src/Module/Moderation/Users/Blocked.php:123 -#: src/Module/Moderation/Users/Index.php:139 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "User blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:125 -#: src/Module/Moderation/Users/Blocked.php:125 -#: src/Module/Moderation/Users/Index.php:141 +#: src/Module/Moderation/Users/Active.php:128 +#: src/Module/Moderation/Users/Blocked.php:128 +#: src/Module/Moderation/Users/Index.php:144 msgid "Site admin" msgstr "Administrador del lloc" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:142 +#: src/Module/Moderation/Users/Active.php:129 +#: src/Module/Moderation/Users/Blocked.php:129 +#: src/Module/Moderation/Users/Index.php:145 msgid "Account expired" msgstr "Compte expirat" -#: src/Module/Moderation/Users/Active.php:127 -#: src/Module/Moderation/Users/Index.php:145 +#: src/Module/Moderation/Users/Active.php:130 +#: src/Module/Moderation/Users/Index.php:148 msgid "Create a new user" msgstr "" -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:132 -#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:154 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Els usuaris seleccionats seran esborrats!\\n\\nqualsevol cosa que aquests usuaris hagin publicat en aquest lloc s'esborrarà!\\n\\nEsteu segur?" -#: src/Module/Moderation/Users/Active.php:134 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:155 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" @@ -8730,13 +8740,13 @@ msgid_plural "%s users unblocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Blocked.php:78 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Blocked.php:81 +#: src/Module/Moderation/Users/Index.php:95 #, php-format msgid "User \"%s\" unblocked" msgstr "" -#: src/Module/Moderation/Users/Blocked.php:120 +#: src/Module/Moderation/Users/Blocked.php:123 msgid "Blocked Users" msgstr "" @@ -8769,11 +8779,11 @@ msgid "Users awaiting permanent deletion" msgstr "" #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:149 msgid "Permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Index.php:136 +#: src/Module/Moderation/Users/Index.php:139 msgid "User waiting for permanent deletion" msgstr "" @@ -8938,7 +8948,7 @@ msgstr "" msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:91 +#: src/Module/OAuth/Token.php:73 msgid "Unsupported or missing grant type" msgstr "" @@ -8990,7 +9000,7 @@ msgstr "ignorar" msgid "Keep this window open until done." msgstr "Manteniu aquesta finestra oberta fins que no hàgiu acabat." -#: src/Module/OpenSearch.php:57 +#: src/Module/OpenSearch.php:55 #, php-format msgid "Search in Friendica %s" msgstr "" @@ -9004,12 +9014,12 @@ msgstr "" msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:178 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:180 #, php-format msgid "Invalid photo with id %s." msgstr "" @@ -9042,15 +9052,15 @@ msgstr "Insertar enllaç de audio" msgid "audio link" msgstr "enllaç de audio" -#: src/Module/Post/Tag/Remove.php:92 +#: src/Module/Post/Tag/Remove.php:93 msgid "Remove Item Tag" msgstr "Esborrar etiqueta del element" -#: src/Module/Post/Tag/Remove.php:93 +#: src/Module/Post/Tag/Remove.php:94 msgid "Select a tag to remove: " msgstr "Selecciona etiqueta a esborrar:" -#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Post/Tag/Remove.php:95 #: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Esborrar" @@ -9129,32 +9139,32 @@ msgstr "" msgid "%s's timeline" msgstr "" -#: src/Module/Profile/Photos.php:153 src/Module/Profile/Photos.php:156 -#: src/Module/Profile/Photos.php:181 +#: src/Module/Profile/Photos.php:157 src/Module/Profile/Photos.php:160 +#: src/Module/Profile/Photos.php:189 #: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "" -#: src/Module/Profile/Photos.php:159 +#: src/Module/Profile/Photos.php:163 msgid "Image upload didn't complete, please try again" msgstr "" -#: src/Module/Profile/Photos.php:162 +#: src/Module/Profile/Photos.php:166 msgid "Image file is missing" msgstr "" -#: src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:171 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "" -#: src/Module/Profile/Photos.php:189 +#: src/Module/Profile/Photos.php:197 msgid "Image file is empty." msgstr "El fitxer de imatge és buit." -#: src/Module/Profile/Photos.php:341 +#: src/Module/Profile/Photos.php:349 msgid "View Album" msgstr "Veure Àlbum" @@ -9270,15 +9280,15 @@ msgid "" "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:69 +#: src/Module/Profile/Schedule.php:67 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:70 +#: src/Module/Profile/Schedule.php:68 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:71 +#: src/Module/Profile/Schedule.php:69 msgid "Remove post" msgstr "" @@ -9343,7 +9353,7 @@ msgid "Please repeat your e-mail address:" msgstr "" #: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:551 +#: src/Module/Settings/Account.php:513 msgid "New Password:" msgstr "Nova Contrasenya:" @@ -9352,7 +9362,7 @@ msgid "Leave empty for an auto generated password." msgstr "Deixeu-lo buit per obtenir una contrasenya generat automàticament." #: src/Module/Register.php:157 src/Module/Security/PasswordTooLong.php:87 -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Confirm:" msgstr "Confirmar:" @@ -9536,20 +9546,20 @@ msgstr "Has sortit" msgid "OpenID protocol error. No ID returned" msgstr "" -#: src/Module/Security/OpenID.php:76 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "" -#: src/Module/Security/OpenID.php:78 +#: src/Module/Security/OpenID.php:80 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:51 +#: src/Module/Settings/Account.php:49 msgid "Passwords do not match." msgstr "" @@ -9558,7 +9568,7 @@ msgid "Password does not need changing." msgstr "" #: src/Module/Security/PasswordTooLong.php:63 -#: src/Module/Settings/Account.php:65 +#: src/Module/Settings/Account.php:63 msgid "Password unchanged." msgstr "" @@ -9578,24 +9588,24 @@ msgid "Update Password" msgstr "" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Current Password:" msgstr "Contrasenya Actual:" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Your current password to confirm the changes" msgstr "La teva actual contrasenya a fi de confirmar els canvis" #: src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:537 +#: src/Module/Settings/Account.php:499 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:538 +#: src/Module/Settings/Account.php:500 msgid "Password length is limited to 72 characters." msgstr "" @@ -9699,129 +9709,121 @@ msgstr "" msgid "Verify code and complete login" msgstr "" -#: src/Module/Settings/Account.php:80 +#: src/Module/Settings/Account.php:78 msgid "Please use a shorter name." msgstr "" -#: src/Module/Settings/Account.php:83 +#: src/Module/Settings/Account.php:81 msgid "Name too short." msgstr "" -#: src/Module/Settings/Account.php:92 +#: src/Module/Settings/Account.php:90 msgid "Wrong Password." msgstr "" -#: src/Module/Settings/Account.php:97 +#: src/Module/Settings/Account.php:95 msgid "Invalid email." msgstr "" -#: src/Module/Settings/Account.php:101 +#: src/Module/Settings/Account.php:99 msgid "Cannot change to that email." msgstr "" -#: 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 +#: 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 msgid "Settings were not updated." msgstr "" -#: src/Module/Settings/Account.php:331 -msgid "Contact CSV file upload error" -msgstr "" - -#: src/Module/Settings/Account.php:350 -msgid "Importing Contacts done" -msgstr "" - -#: src/Module/Settings/Account.php:363 +#: src/Module/Settings/Account.php:325 msgid "Relocate message has been send to your contacts" msgstr "" -#: src/Module/Settings/Account.php:380 +#: src/Module/Settings/Account.php:342 msgid "Unable to find your profile. Please contact your admin." msgstr "" -#: src/Module/Settings/Account.php:420 +#: src/Module/Settings/Account.php:382 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:430 +#: src/Module/Settings/Account.php:392 msgid "Personal Page Subtypes" msgstr "" -#: src/Module/Settings/Account.php:431 +#: src/Module/Settings/Account.php:393 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:442 +#: src/Module/Settings/Account.php:404 msgid "Account for a personal profile." msgstr "" -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:411 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Compte per a una organització que aprovi automàticament les sol·licituds de contacte com a 'seguidors'." -#: src/Module/Settings/Account.php:456 +#: src/Module/Settings/Account.php:418 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:463 +#: src/Module/Settings/Account.php:425 msgid "Account for community discussions." msgstr "" -#: src/Module/Settings/Account.php:471 +#: src/Module/Settings/Account.php:433 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:478 +#: src/Module/Settings/Account.php:440 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Cuenta para un perfil público que aprueba automáticamente las solicitudes de contacto como 'Seguidores'." -#: src/Module/Settings/Account.php:485 +#: src/Module/Settings/Account.php:447 msgid "Automatically approves all contact requests." msgstr "" -#: src/Module/Settings/Account.php:492 +#: src/Module/Settings/Account.php:454 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:499 +#: src/Module/Settings/Account.php:461 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "" -#: src/Module/Settings/Account.php:504 +#: src/Module/Settings/Account.php:466 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:506 +#: src/Module/Settings/Account.php:468 msgid "Requires manual approval of contact requests." msgstr "" -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Opcional) Permetre a aquest OpenID iniciar sessió en aquest compte." -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9829,94 +9831,94 @@ msgid "" " system settings." msgstr "" -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:491 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "" -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:504 msgid "Account Settings" msgstr "Ajustos de Compte" -#: src/Module/Settings/Account.php:543 +#: src/Module/Settings/Account.php:505 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: src/Module/Settings/Account.php:550 +#: src/Module/Settings/Account.php:512 msgid "Password Settings" msgstr "Ajustos de Contrasenya" -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Leave password fields blank unless changing" msgstr "Deixi els camps de contrasenya buits per a no fer canvis" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Password:" msgstr "Contrasenya:" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:557 +#: src/Module/Settings/Account.php:519 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:559 +#: src/Module/Settings/Account.php:521 msgid "Basic Settings" msgstr "Ajustos Basics" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:522 #: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:523 msgid "Email Address:" msgstr "Adreça de Correu:" -#: src/Module/Settings/Account.php:562 +#: src/Module/Settings/Account.php:524 msgid "Your Timezone:" msgstr "La teva zona Horària:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "Your Language:" msgstr "El teu idioma:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Definiu l’idioma que utilitzem per mostrar-vos la interfície Friendica i per enviar-vos correus electrònics" -#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Account.php:526 msgid "Default Post Location:" msgstr "Localització per Defecte del Missatge:" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:527 msgid "Use Browser Location:" msgstr "Ubicar-se amb el Navegador:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:529 msgid "Security and Privacy Settings" msgstr "Ajustos de Seguretat i Privacitat" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "Maximum Friend Requests/Day:" msgstr "Nombre Màxim de Sol·licituds per Dia" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "(to prevent spam abuse)" msgstr "(per a prevenir abusos de spam)" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 msgid "Allow your profile to be searchable globally?" msgstr "" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 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 " @@ -9924,43 +9926,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 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:573 +#: src/Module/Settings/Account.php:535 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:535 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:574 +#: src/Module/Settings/Account.php:536 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:536 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:575 +#: src/Module/Settings/Account.php:537 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:537 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 " @@ -9968,227 +9970,213 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "Allow friends to post to your profile page?" msgstr "Permet als amics publicar en la seva pàgina de perfil?" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Allow friends to tag your posts?" msgstr "Permet als amics d'etiquetar els teus missatges?" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Your contacts can add additional tags to your posts." msgstr "" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:540 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:541 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:542 msgid "Default Post Permissions" msgstr "Permisos de Correu per Defecte" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:546 msgid "Expiration settings" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "Automatically expire posts after this many days:" msgstr "Després de aquests nombre de dies, els missatges caduquen automàticament:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Si està buit, els missatges no caducarà. Missatges caducats s'eliminaran" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "Expire starred posts" msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 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:592 +#: src/Module/Settings/Account.php:554 msgid "Notification Settings" msgstr "Ajustos de Notificació" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:555 msgid "Send a notification email when:" msgstr "Envia un correu notificant quan:" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:556 msgid "You receive an introduction" msgstr "Has rebut una presentació" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:557 msgid "Your introductions are confirmed" msgstr "La teva presentació està confirmada" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:558 msgid "Someone writes on your profile wall" msgstr "Algú ha escrit en el teu mur de perfil" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:559 msgid "Someone writes a followup comment" msgstr "Algú ha escrit un comentari de seguiment" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:560 msgid "You receive a private message" msgstr "Has rebut un missatge privat" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:561 msgid "You receive a friend suggestion" msgstr "Has rebut una suggerencia d'un amic" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:562 msgid "You are tagged in a post" msgstr "Estàs etiquetat en un enviament" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:564 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:565 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:566 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:567 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:605 src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:567 src/Module/Settings/Account.php:568 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:568 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:569 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:570 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:571 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Activate desktop notifications" msgstr "Activa les notificacions a l'escriptori" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Show desktop popup on new notifications" msgstr "Mostra la finestra emergent a les noves notificacions" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:577 msgid "Text-only notification emails" msgstr "Correu electrònic de notificació de només text" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:579 msgid "Send text only notification emails, without the html part" msgstr "Envieu només missatges de correu electrònic de notificació de text, sense la part html" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:583 msgid "Show detailled notifications" msgstr "Mostra les notificacions detallades" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:585 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Per defecte, les notificacions es condensen a una única notificació per element. Quan està activada, es mostra tota notificació." -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:589 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:591 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:632 +#: src/Module/Settings/Account.php:594 msgid "Advanced Account/Page Type Settings" msgstr "Ajustos Avançats de Compte/ Pàgina" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:595 msgid "Change the behaviour of this account for special situations" msgstr "Canviar el comportament d'aquest compte en situacions especials" -#: src/Module/Settings/Account.php:636 -msgid "Import Contacts" -msgstr "" - -#: src/Module/Settings/Account.php:637 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "" - -#: src/Module/Settings/Account.php:638 -msgid "Upload File" -msgstr "" - -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:598 msgid "Relocate" msgstr "traslladar-se" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:599 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 "Si heu mogut aquest perfil d'un altre servidor i alguns dels vostres contactes no reben les vostres actualitzacions, proveu de prémer aquest botó." -#: src/Module/Settings/Account.php:643 +#: src/Module/Settings/Account.php:600 msgid "Resend relocate message to contacts" msgstr "Torneu a enviar el missatge a contactes" @@ -10353,214 +10341,232 @@ msgstr "" msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:108 +#: src/Module/Settings/Connectors.php:107 msgid "Failed to connect with email account using the settings provided." msgstr "Connexió fracassada amb el compte de correu emprant la configuració proveïda." -#: src/Module/Settings/Connectors.php:155 -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:150 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "" -#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:149 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:150 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:161 msgid "Email access is disabled on this site." msgstr "L'accés al correu està deshabilitat en aquest lloc." -#: src/Module/Settings/Connectors.php:182 -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:176 +#: src/Module/Settings/Connectors.php:226 msgid "None" msgstr "Cap" -#: src/Module/Settings/Connectors.php:186 +#: src/Module/Settings/Connectors.php:180 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "" -#: src/Module/Settings/Connectors.php:187 +#: src/Module/Settings/Connectors.php:181 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "" -#: src/Module/Settings/Connectors.php:188 +#: src/Module/Settings/Connectors.php:182 msgid "Embed the title in the body" msgstr "" -#: src/Module/Settings/Connectors.php:199 +#: src/Module/Settings/Connectors.php:193 msgid "General Social Media Settings" msgstr "Configuració general de les xarxes socials" -#: src/Module/Settings/Connectors.php:202 +#: src/Module/Settings/Connectors.php:196 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:198 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:200 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:207 +#: src/Module/Settings/Connectors.php:201 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:208 +#: src/Module/Settings/Connectors.php:202 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "Attach the link title" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "Article Mode" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "" -#: src/Module/Settings/Connectors.php:218 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "" - -#: src/Module/Settings/Connectors.php:218 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "" - -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:215 msgid "Email/Mailbox Setup" msgstr "Preparació de Correu/Bústia" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:216 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Si vol comunicar-se amb els contactes de correu emprant aquest servei (opcional), Si us plau, especifiqui com connectar amb la seva bústia." -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:217 msgid "Last successful email check:" msgstr "Última comprovació de correu amb èxit:" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:219 msgid "IMAP server name:" msgstr "Nom del servidor IMAP:" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:220 msgid "IMAP port:" msgstr "Port IMAP:" -#: src/Module/Settings/Connectors.php:228 +#: src/Module/Settings/Connectors.php:221 msgid "Security:" msgstr "Seguretat:" -#: src/Module/Settings/Connectors.php:229 +#: src/Module/Settings/Connectors.php:222 msgid "Email login name:" msgstr "Nom d'usuari del correu" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:223 msgid "Email password:" msgstr "Contrasenya del correu:" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:224 msgid "Reply-to address:" msgstr "Adreça de resposta:" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:225 msgid "Send public posts to all email contacts:" msgstr "Enviar correu públic a tots els contactes del correu:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Action after import:" msgstr "Acció després d'importar:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Move to folder" msgstr "Moure a la carpeta" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:227 msgid "Move to folder:" msgstr "Moure a la carpeta:" +#: src/Module/Settings/ContactImport.php:63 +msgid "Contact CSV file upload error" +msgstr "" + +#: src/Module/Settings/ContactImport.php:82 +msgid "Importing Contacts done" +msgstr "" + +#: src/Module/Settings/ContactImport.php:112 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "" + +#: src/Module/Settings/ContactImport.php:113 +msgid "Upload File" +msgstr "" + +#: src/Module/Settings/ContactImport.php:115 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "" + +#: src/Module/Settings/ContactImport.php:115 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "" + #: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "" @@ -11011,42 +11017,42 @@ msgstr "Paraules Clau Privades:" msgid "(Used for searching profiles, never shown to others)" msgstr "(Emprat durant la cerca de perfils, mai mostrat a ningú)" -#: 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/Crop.php:90 +#: src/Module/Settings/Profile/Photo/Crop.php:108 +#: src/Module/Settings/Profile/Photo/Crop.php:126 #: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "La reducció de la imatge [%s] va fracassar." -#: src/Module/Settings/Profile/Photo/Crop.php:136 +#: src/Module/Settings/Profile/Photo/Crop.php:133 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Recarregui la pàgina o netegi la caché del navegador si la nova foto no apareix immediatament." -#: src/Module/Settings/Profile/Photo/Crop.php:141 +#: src/Module/Settings/Profile/Photo/Crop.php:138 msgid "Unable to process image" msgstr "No es pot processar la imatge" -#: src/Module/Settings/Profile/Photo/Crop.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:157 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:182 +#: src/Module/Settings/Profile/Photo/Crop.php:179 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:208 -#: src/Module/Settings/Profile/Photo/Crop.php:212 +#: src/Module/Settings/Profile/Photo/Crop.php:205 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Crop Image" msgstr "retallar imatge" -#: src/Module/Settings/Profile/Photo/Crop.php:209 +#: src/Module/Settings/Profile/Photo/Crop.php:206 msgid "Please adjust the image cropping for optimum viewing." msgstr "Per favor, ajusta la retallada d'imatge per a una optima visualització." -#: src/Module/Settings/Profile/Photo/Crop.php:211 +#: src/Module/Settings/Profile/Photo/Crop.php:208 msgid "Use Image As Is" msgstr "" @@ -11117,17 +11123,17 @@ msgstr "L’identificador d’usuari és %d" msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:116 +#: src/Module/Settings/RemoveMe.php:114 msgid "Remove My Account" msgstr "Eliminar el Meu Compte" -#: src/Module/Settings/RemoveMe.php:117 +#: src/Module/Settings/RemoveMe.php:115 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Això eliminarà per complet el seu compte. Quan s'hagi fet això, no serà recuperable." -#: src/Module/Settings/RemoveMe.php:122 +#: src/Module/Settings/RemoveMe.php:120 msgid "Please enter your password for verification:" msgstr "Si us plau, introduïu la contrasenya per a la verificació:" @@ -11522,11 +11528,11 @@ msgstr "" msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:64 +#: src/Module/Special/HTTPException.php:65 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:69 +#: src/Module/Special/HTTPException.php:70 #, php-format msgid "Exception thrown in %s:%d" msgstr "" @@ -12309,295 +12315,295 @@ msgstr "Si us plau, poseu-vos en contacte amb el remitent responent a aquest mis msgid "%s posted an update." msgstr "%s ha publicat una actualització." -#: src/Object/Post.php:124 +#: src/Object/Post.php:125 msgid "Private Message" msgstr "Missatge Privat" -#: src/Object/Post.php:128 +#: src/Object/Post.php:129 msgid "Public Message" msgstr "" -#: src/Object/Post.php:132 +#: src/Object/Post.php:133 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:168 +#: src/Object/Post.php:169 msgid "This entry was edited" msgstr "L'entrada fou editada" -#: src/Object/Post.php:196 +#: src/Object/Post.php:197 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:225 src/Object/Post.php:227 +#: src/Object/Post.php:226 src/Object/Post.php:228 msgid "Edit" msgstr "Editar" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Delete globally" msgstr "" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Remove locally" msgstr "" -#: src/Object/Post.php:268 +#: src/Object/Post.php:269 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:273 +#: src/Object/Post.php:274 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:278 +#: src/Object/Post.php:279 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:282 +#: src/Object/Post.php:283 msgid "Report post" msgstr "" -#: src/Object/Post.php:293 +#: src/Object/Post.php:294 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will attend" msgstr "" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will not attend" msgstr "" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I might attend" msgstr "" -#: src/Object/Post.php:380 +#: src/Object/Post.php:381 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:381 +#: src/Object/Post.php:382 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:382 +#: src/Object/Post.php:383 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:392 +#: src/Object/Post.php:393 msgid "Add star" msgstr "" -#: src/Object/Post.php:393 +#: src/Object/Post.php:394 msgid "Remove star" msgstr "" -#: src/Object/Post.php:394 +#: src/Object/Post.php:395 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:405 +#: src/Object/Post.php:406 msgid "Pin" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:407 msgid "Unpin" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:408 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:410 +#: src/Object/Post.php:411 msgid "Pinned" msgstr "" -#: src/Object/Post.php:415 +#: src/Object/Post.php:416 msgid "Add tag" msgstr "" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare" msgstr "" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Unshare" msgstr "" -#: src/Object/Post.php:478 +#: src/Object/Post.php:479 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:514 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:517 +#: src/Object/Post.php:518 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:519 +#: src/Object/Post.php:520 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:543 +#: src/Object/Post.php:544 msgid "to" msgstr "a" -#: src/Object/Post.php:544 +#: src/Object/Post.php:545 msgid "via" msgstr "via" -#: src/Object/Post.php:545 +#: src/Object/Post.php:546 msgid "Wall-to-Wall" msgstr "Mur-a-Mur" -#: src/Object/Post.php:546 +#: src/Object/Post.php:547 msgid "via Wall-To-Wall:" msgstr "via Mur-a-Mur" -#: src/Object/Post.php:599 +#: src/Object/Post.php:600 #, php-format msgid "Reply to %s" msgstr "" -#: src/Object/Post.php:602 +#: src/Object/Post.php:603 msgid "More" msgstr "" -#: src/Object/Post.php:621 +#: src/Object/Post.php:622 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:622 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:623 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:624 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:625 +#: src/Object/Post.php:626 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:647 +#: src/Object/Post.php:648 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d comentari" msgstr[1] "%d comentaris" -#: src/Object/Post.php:648 +#: src/Object/Post.php:649 msgid "Show more" msgstr "" -#: src/Object/Post.php:649 +#: src/Object/Post.php:650 msgid "Show fewer" msgstr "" -#: src/Object/Post.php:686 +#: src/Object/Post.php:687 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:691 +#: src/Object/Post.php:692 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:696 +#: src/Object/Post.php:697 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:701 +#: src/Object/Post.php:702 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:706 +#: src/Object/Post.php:707 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:711 +#: src/Object/Post.php:712 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:716 +#: src/Object/Post.php:717 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:721 +#: src/Object/Post.php:722 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:726 +#: src/Object/Post.php:727 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:731 +#: src/Object/Post.php:732 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:754 +#: src/Object/Post.php:755 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:557 +#: src/Protocol/ActivityPub/Receiver.php:558 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:530 +#: src/Protocol/Delivery.php:531 msgid "(no subject)" msgstr "" @@ -12610,20 +12616,20 @@ msgstr "" msgid "Login failed." msgstr "Error d'accés." -#: src/Security/Authentication.php:260 +#: src/Security/Authentication.php:261 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:374 #, php-format msgid "Welcome %s" msgstr "" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:375 msgid "Please upload a profile photo." msgstr "Per favor, carrega una foto per al perfil" -#: src/Security/OpenWebAuth.php:149 +#: src/Security/OpenWebAuth.php:150 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "" diff --git a/view/lang/cs/messages.po b/view/lang/cs/messages.po index 01e39a2441..f57c97830d 100644 --- a/view/lang/cs/messages.po +++ b/view/lang/cs/messages.po @@ -13,7 +13,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: Petr Kučera, 2023\n" "Language-Team: Czech (http://app.transifex.com/Friendica/friendica/language/cs/)\n" @@ -23,34 +23,34 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\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 "Nelze nalézt původní příspěvek." -#: 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 "Prázdný příspěvek odstraněn." -#: 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 "Položka nenalezena." -#: 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 @@ -61,7 +61,7 @@ msgstr "Položka nenalezena." #: 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 @@ -70,13 +70,15 @@ msgstr "Položka nenalezena." #: 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 @@ -85,15 +87,15 @@ msgstr "Položka nenalezena." msgid "Permission denied." msgstr "Přístup odmítnut." -#: mod/lostpass.php:28 +#: mod/lostpass.php:27 msgid "No valid account found." msgstr "Nenalezen žádný platný účet." -#: mod/lostpass.php:40 +#: mod/lostpass.php:39 msgid "Password reset request issued. Check your email." msgstr "Požadavek o obnovení hesla vyřízen. Zkontrolujte Vaši e-mailovou schránku." -#: mod/lostpass.php:46 +#: mod/lostpass.php:45 #, php-format msgid "" "\n" @@ -109,7 +111,7 @@ msgid "" "\t\tissued this request." msgstr "\n\t\tVážený/á %1$s,\n\t\t\tPřed nedávnem jsme obdrželi na „%2$s“ požadavek o obnovení\n\t\thesla k vašemu účtu. Pro potvrzení tohoto požadavku, prosím klikněte na odkaz\n\t\tpro ověření dole, nebo ho zkopírujte do adresního řádku vašeho prohlížeče.\n\n\t\tPokud jste o tuto změnu NEPOŽÁDAL/A, prosím NEKLIKEJTE na tento odkaz\n\t\ta ignorujte a/nebo smažte tento e-mail. Platnost požadavku brzy vyprší.\n\n\t\tVaše heslo nebude změněno, dokud nedokážeme ověřit, že jste tento\n\t\tpožadavek nevydal/a vy." -#: mod/lostpass.php:57 +#: mod/lostpass.php:56 #, php-format msgid "" "\n" @@ -126,70 +128,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\n\t\tKlikněte na tento odkaz brzy pro ověření vaší identity:\n\n\t\t%1$s\n\n\t\tObdržíte poté následnou zprávu obsahující nové heslo.\n\t\tPo přihlášení můžete toto heslo změnit na stránce nastavení vašeho účtu.\n\n\t\tZde jsou vaše přihlašovací detaily:\n\n\t\tAdresa stránky:\t\t%2$s\n\t\tPřihlašovací jméno:\t%3$s" -#: mod/lostpass.php:72 +#: mod/lostpass.php:71 #, php-format msgid "Password reset requested at %s" msgstr "Na %s bylo požádáno o obnovení hesla" -#: mod/lostpass.php:88 +#: mod/lostpass.php:87 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "Požadavek nemohl být ověřen. (Možná jste jej odeslal/a již dříve.) Obnovení hesla se nezdařilo." -#: mod/lostpass.php:101 +#: mod/lostpass.php:100 msgid "Request has expired, please make a new one." msgstr "Platnost požadavku vypršela, prosím vytvořte nový." -#: mod/lostpass.php:116 +#: mod/lostpass.php:115 msgid "Forgot your Password?" msgstr "Zapomněl/a jste heslo?" -#: 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 "Zadejte svůj e-mailovou adresu a odešlete pro obnovení vašeho hesla. Poté zkontrolujte svůj e-mail pro další instrukce." -#: 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 "Přezdívka nebo e-mail: " -#: mod/lostpass.php:119 +#: mod/lostpass.php:118 msgid "Reset" msgstr "Obnovit" -#: mod/lostpass.php:134 src/Module/Security/Login.php:161 +#: mod/lostpass.php:133 src/Module/Security/Login.php:161 msgid "Password Reset" msgstr "Obnovit heslo" -#: mod/lostpass.php:135 +#: mod/lostpass.php:134 msgid "Your password has been reset as requested." msgstr "Vaše heslo bylo na vaše přání obnoveno." -#: mod/lostpass.php:136 +#: mod/lostpass.php:135 msgid "Your new password is" msgstr "Někdo vám napsal na vaši profilovou stránku" -#: mod/lostpass.php:137 +#: mod/lostpass.php:136 msgid "Save or copy your new password - and then" msgstr "Uložte si nebo zkopírujte nové heslo - a pak" -#: mod/lostpass.php:138 +#: mod/lostpass.php:137 msgid "click here to login" msgstr "klikněte zde pro přihlášení" -#: mod/lostpass.php:139 +#: mod/lostpass.php:138 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Nezdá se, že by to bylo vaše celé jméno (křestní jméno a příjmení)." -#: 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" @@ -200,7 +202,7 @@ msgid "" "\t\t" msgstr "\n\t\t\tVážený/á %1$s,\n\t\t\t\tVaše heslo bylo změněno, jak jste požádal/a. Prosím uchovejte\n\t\t\ttyto informace pro vaše záznamy (nebo si ihned změňte heslo na něco,\n\t\t\tco si zapamatujete).\n\t\t" -#: mod/lostpass.php:152 +#: mod/lostpass.php:151 #, php-format msgid "" "\n" @@ -214,7 +216,7 @@ msgid "" "\t\t" msgstr "\n\t\t\tZde jsou vaše přihlašovací detaily:\n\n\t\t\tAdresa stránky:\t\t%1$s\n\t\t\tPřihlašovací jméno:\t%2$s\n\t\t\tHeslo:\t\t\t%3$s\n\n\t\t\tToto heslo si po přihlášení můžete změnit na stránce nastavení Vašeho účtu.\n\t\t" -#: mod/lostpass.php:164 +#: mod/lostpass.php:163 #, php-format msgid "Your password has been changed at %s" msgstr "Vaše heslo bylo změněno na %s" @@ -278,11 +280,11 @@ msgstr "Adresát:" msgid "Subject:" msgstr "Předmět:" -#: 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 "Vaše zpráva:" -#: 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 "Nahrát fotku" @@ -291,16 +293,16 @@ msgstr "Nahrát fotku" msgid "Insert web link" msgstr "Vložit webový odkaz" -#: 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 "Čekejte prosím" -#: 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 @@ -308,7 +310,7 @@ msgstr "Čekejte prosím" #: 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 @@ -317,7 +319,7 @@ msgstr "Čekejte prosím" #: 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" @@ -377,396 +379,396 @@ msgstr[1] "%d zprávy" msgstr[2] "%d zprávy" msgstr[3] "%d zpráv" -#: mod/notes.php:40 src/Module/BaseProfile.php:93 +#: mod/notes.php:41 src/Module/BaseProfile.php:93 msgid "Personal Notes" msgstr "Osobní poznámky" -#: 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 "Uložit" -#: 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 "Uživatel nenalezen." -#: 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 "Fotoalba" -#: 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 "Nedávné fotky" -#: 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 "Nahrát nové fotky" -#: 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 "Žádost o připojení selhala nebo byla zrušena." -#: mod/photos.php:142 +#: mod/photos.php:140 msgid "Contact information unavailable" msgstr "Kontakt byl zablokován" -#: mod/photos.php:171 +#: mod/photos.php:169 msgid "Album not found." msgstr "Album nenalezeno." -#: mod/photos.php:227 +#: mod/photos.php:225 msgid "Album successfully deleted" msgstr "Album úspěšně smazáno" -#: mod/photos.php:229 +#: mod/photos.php:227 msgid "Album was empty." msgstr "Album bylo prázdné." -#: 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 "fotce" -#: mod/photos.php:504 +#: mod/photos.php:502 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s byl označen ve %2$s uživatelem %3$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 "Veřejný přístup odepřen." -#: mod/photos.php:546 +#: mod/photos.php:544 msgid "No photos selected" msgstr "Není vybrána žádná fotka" -#: mod/photos.php:674 +#: mod/photos.php:672 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:681 +#: mod/photos.php:679 msgid "Upload Photos" msgstr "Nahrát fotky" -#: mod/photos.php:685 mod/photos.php:774 +#: mod/photos.php:683 mod/photos.php:772 msgid "New album name: " msgstr "Název nového alba: " -#: mod/photos.php:686 +#: mod/photos.php:684 msgid "or select existing album:" msgstr "nebo si vyberte existující album:" -#: mod/photos.php:687 +#: mod/photos.php:685 msgid "Do not show a status post for this upload" msgstr "Nezobrazovat pro toto nahrání stavovou zprávu" -#: 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 "Oprávnění" -#: mod/photos.php:755 +#: mod/photos.php:753 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Opravdu chcete smazat toto fotoalbum a všechny jeho fotky?" -#: mod/photos.php:756 mod/photos.php:779 +#: mod/photos.php:754 mod/photos.php:777 msgid "Delete Album" msgstr "Smazat album" -#: 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 "Zrušit" -#: mod/photos.php:783 +#: mod/photos.php:781 msgid "Edit Album" msgstr "Upravit album" -#: mod/photos.php:784 +#: mod/photos.php:782 msgid "Drop Album" msgstr "Smazat album" -#: mod/photos.php:788 +#: mod/photos.php:786 msgid "Show Newest First" msgstr "Zobrazit nejprve nejnovější" -#: mod/photos.php:790 +#: mod/photos.php:788 msgid "Show Oldest First" msgstr "Zobrazit nejprve nejstarší" -#: mod/photos.php:811 src/Module/Profile/Photos.php:335 +#: mod/photos.php:809 src/Module/Profile/Photos.php:343 msgid "View Photo" msgstr "Zobrazit fotku" -#: mod/photos.php:843 +#: mod/photos.php:841 msgid "Permission denied. Access to this item may be restricted." msgstr "Oprávnění bylo zamítnuto. Přístup k této položce může být omezen." -#: mod/photos.php:845 +#: mod/photos.php:843 msgid "Photo not available" msgstr "Fotka není k dispozici" -#: mod/photos.php:855 +#: mod/photos.php:853 msgid "Do you really want to delete this photo?" msgstr "Opravdu chcete smazat tuto fotku?" -#: mod/photos.php:856 mod/photos.php:1056 +#: mod/photos.php:854 mod/photos.php:1054 msgid "Delete Photo" msgstr "Smazat fotku" -#: mod/photos.php:954 +#: mod/photos.php:952 msgid "View photo" msgstr "Zobrazit fotku" -#: mod/photos.php:956 +#: mod/photos.php:954 msgid "Edit photo" msgstr "Upravit fotku" -#: mod/photos.php:957 +#: mod/photos.php:955 msgid "Delete photo" msgstr "Smazat fotku" -#: mod/photos.php:958 +#: mod/photos.php:956 msgid "Use as profile photo" msgstr "Použít jako profilovou fotku" -#: mod/photos.php:965 +#: mod/photos.php:963 msgid "Private Photo" msgstr "Soukromá fotka" -#: mod/photos.php:971 +#: mod/photos.php:969 msgid "View Full Size" msgstr "Zobrazit v plné velikosti" -#: mod/photos.php:1024 +#: mod/photos.php:1022 msgid "Tags: " msgstr "Štítky: " -#: mod/photos.php:1027 +#: mod/photos.php:1025 msgid "[Select tags to remove]" msgstr "[Vyberte štítky pro odstranění]" -#: mod/photos.php:1042 +#: mod/photos.php:1040 msgid "New album name" msgstr "Nové jméno alba" -#: mod/photos.php:1043 +#: mod/photos.php:1041 msgid "Caption" msgstr "Titulek" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "Add a Tag" msgstr "Přidat štítek" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Příklad: @jan, @Lucie_Nováková, @jakub@priklad.cz, #Morava, #taboreni" -#: mod/photos.php:1045 +#: mod/photos.php:1043 msgid "Do not rotate" msgstr "Neotáčet" -#: mod/photos.php:1046 +#: mod/photos.php:1044 msgid "Rotate CW (right)" msgstr "Otáčet po směru hodinových ručiček (doprava)" -#: mod/photos.php:1047 +#: mod/photos.php:1045 msgid "Rotate CCW (left)" msgstr "Otáčet proti směru hodinových ručiček (doleva)" -#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: mod/photos.php:1091 mod/photos.php:1147 mod/photos.php:1227 #: src/Module/Contact.php:600 src/Module/Item/Compose.php:184 -#: src/Object/Post.php:1142 +#: src/Object/Post.php:1143 msgid "This is you" msgstr "Tohle jste vy" -#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 -#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:598 -#: src/Object/Post.php:1144 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:599 +#: src/Object/Post.php:1145 msgid "Comment" msgstr "Okomentovat" -#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 -#: src/Content/Conversation.php:401 src/Module/Calendar/Event/Form.php:234 +#: 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 -#: src/Object/Post.php:1158 +#: src/Object/Post.php:1159 msgid "Preview" msgstr "Náhled" -#: mod/photos.php:1098 src/Content/Conversation.php:355 -#: src/Module/Post/Edit.php:121 src/Object/Post.php:1146 +#: mod/photos.php:1096 src/Content/Conversation.php:357 +#: src/Module/Post/Edit.php:121 src/Object/Post.php:1147 msgid "Loading..." msgstr "" -#: mod/photos.php:1190 src/Content/Conversation.php:1485 -#: src/Object/Post.php:260 +#: mod/photos.php:1188 src/Content/Conversation.php:1487 +#: src/Object/Post.php:261 msgid "Select" msgstr "Vybrat" -#: mod/photos.php:1191 src/Content/Conversation.php:1486 -#: 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:233 +#: 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 +#: src/Module/Settings/Connectors.php:226 #: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Odstranit" -#: mod/photos.php:1252 src/Object/Post.php:426 +#: mod/photos.php:1250 src/Object/Post.php:427 msgid "Like" msgstr "" -#: mod/photos.php:1253 src/Object/Post.php:426 +#: mod/photos.php:1251 src/Object/Post.php:427 msgid "I like this (toggle)" msgstr "To se mi líbí (přepínat)" -#: mod/photos.php:1254 src/Object/Post.php:427 +#: mod/photos.php:1252 src/Object/Post.php:428 msgid "Dislike" msgstr "" -#: mod/photos.php:1256 src/Object/Post.php:427 +#: mod/photos.php:1254 src/Object/Post.php:428 msgid "I don't like this (toggle)" msgstr "To se mi nelíbí (přepínat)" -#: mod/photos.php:1278 +#: mod/photos.php:1276 msgid "Map" msgstr "Mapa" -#: src/App.php:467 +#: src/App.php:255 msgid "Apologies but the website is unavailable at the moment." msgstr "" -#: src/App/Page.php:237 +#: src/App/Page.php:241 msgid "Delete this item?" msgstr "Odstranit tuto položku?" -#: src/App/Page.php:238 +#: src/App/Page.php:242 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:239 +#: src/App/Page.php:243 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:240 +#: src/App/Page.php:244 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:241 +#: src/App/Page.php:245 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:242 src/Module/Settings/Server/Action.php:47 +#: src/App/Page.php:246 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:244 +#: src/App/Page.php:248 msgid "Like not successful" msgstr "" -#: src/App/Page.php:245 +#: src/App/Page.php:249 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:246 +#: src/App/Page.php:250 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:247 +#: src/App/Page.php:251 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:248 +#: src/App/Page.php:252 msgid "Backend error" msgstr "" -#: src/App/Page.php:249 +#: src/App/Page.php:253 msgid "Network error" msgstr "" -#: src/App/Page.php:252 +#: src/App/Page.php:256 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:257 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:254 +#: src/App/Page.php:258 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:255 +#: src/App/Page.php:259 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:256 +#: src/App/Page.php:260 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:261 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:262 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:263 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:264 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:265 msgid "Remove file" msgstr "" -#: src/App/Page.php:262 +#: src/App/Page.php:266 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:346 +#: src/App/Page.php:350 msgid "toggle mobile" msgstr "přepínat mobilní zobrazení" @@ -799,7 +801,7 @@ msgid "All contacts" msgstr "Všechny kontakty" #: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 -#: src/Content/Widget.php:254 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Content/Widget.php:254 src/Core/ACL.php:182 src/Module/Contact.php:395 #: src/Module/Privacy/PermissionTooltip.php:150 #: src/Module/Privacy/PermissionTooltip.php:172 #: src/Module/Settings/Channels.php:146 @@ -841,7 +843,7 @@ msgstr "Nelze najít žádný nearchivovaný záznam kontaktu pro tuto URL adres msgid "The contact entries have been archived" msgstr "Záznamy kontaktů byly archivovány" -#: src/Console/ClearAvatarCache.php:73 +#: src/Console/ClearAvatarCache.php:74 msgid "" "The avatar cache needs to be disabled in local.config.php to use this " "command." @@ -927,22 +929,22 @@ msgstr "" msgid "no resource in photo %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:123 +#: src/Console/MoveToAvatarCache.php:127 #, php-format msgid "no photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:132 +#: src/Console/MoveToAvatarCache.php:136 #, php-format msgid "no image data for photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:141 +#: src/Console/MoveToAvatarCache.php:145 #, php-format msgid "invalid image for id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:154 +#: src/Console/MoveToAvatarCache.php:158 #, php-format msgid "Quit on invalid photo %s" msgstr "" @@ -972,11 +974,14 @@ msgstr "Všechny čekající aktualizace příspěvků jsou hotové." msgid "Enter user nickname: " msgstr "" -#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Console/User.php:168 src/Model/User.php:830 #: src/Module/Api/Twitter/ContactEndpoint.php:62 -#: 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/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/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "Uživatel nenalezen." @@ -986,12 +991,12 @@ msgid "Enter new password: " msgstr "Zadejte nové heslo" #: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 -#: src/Module/Settings/Account.php:59 +#: src/Module/Settings/Account.php:57 msgid "Password update failed. Please try again." msgstr "Aktualizace hesla se nezdařila. Zkuste to prosím znovu." #: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 -#: src/Module/Settings/Account.php:62 +#: src/Module/Settings/Account.php:60 msgid "Password changed." msgstr "Heslo bylo změněno." @@ -1072,86 +1077,86 @@ msgstr "Týdně" msgid "Monthly" msgstr "Měsíčně" -#: src/Content/ContactSelector.php:118 +#: src/Content/ContactSelector.php:117 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:119 +#: src/Content/ContactSelector.php:118 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:120 +#: src/Content/ContactSelector.php:119 msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:121 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Content/ContactSelector.php:120 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:58 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "E-mail" -#: src/Content/ContactSelector.php:122 src/Module/Debug/Babel.php:273 +#: src/Content/ContactSelector.php:121 src/Module/Debug/Babel.php:273 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:123 +#: src/Content/ContactSelector.php:122 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:124 +#: src/Content/ContactSelector.php:123 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:125 +#: src/Content/ContactSelector.php:124 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:125 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:126 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:127 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:129 +#: src/Content/ContactSelector.php:128 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:130 +#: src/Content/ContactSelector.php:129 msgid "Discourse" msgstr "" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:130 msgid "Diaspora Connector" msgstr "Diaspora Connector" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:131 msgid "GNU Social Connector" msgstr "GNU social Connector" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:132 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:133 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:134 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:135 msgid "Bluesky" msgstr "" @@ -1160,16 +1165,16 @@ msgstr "" msgid "%s (via %s)" msgstr "" -#: src/Content/Conversation.php:213 +#: src/Content/Conversation.php:215 msgid "and" msgstr "a" -#: src/Content/Conversation.php:216 +#: src/Content/Conversation.php:218 #, php-format msgid "and %d other people" msgstr "a dalších %d lidí" -#: src/Content/Conversation.php:222 +#: src/Content/Conversation.php:224 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." @@ -1178,7 +1183,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:224 +#: src/Content/Conversation.php:226 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." @@ -1187,7 +1192,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:228 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." @@ -1196,7 +1201,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:230 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." @@ -1205,7 +1210,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:230 +#: src/Content/Conversation.php:232 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." @@ -1214,7 +1219,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:232 +#: src/Content/Conversation.php:234 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." @@ -1223,7 +1228,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:263 +#: src/Content/Conversation.php:265 #, php-format msgid " likes this" msgid_plural " like this" @@ -1232,7 +1237,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:266 +#: src/Content/Conversation.php:268 #, php-format msgid " doesn't like this" msgid_plural " don't like this" @@ -1241,7 +1246,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:269 +#: src/Content/Conversation.php:271 #, php-format msgid " attends" msgid_plural " attend" @@ -1250,7 +1255,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:272 +#: src/Content/Conversation.php:274 #, php-format msgid " doesn't attend" msgid_plural " don't attend" @@ -1259,7 +1264,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:275 +#: src/Content/Conversation.php:277 #, php-format msgid " attends maybe" msgid_plural " attend maybe" @@ -1268,7 +1273,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:278 +#: src/Content/Conversation.php:280 #, php-format msgid " reshared this" msgid_plural " reshared this" @@ -1277,281 +1282,281 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:324 +#: src/Content/Conversation.php:326 msgid "Visible to everybody" msgstr "Viditelné pro všechny" -#: src/Content/Conversation.php:325 src/Module/Item/Compose.php:196 -#: src/Object/Post.php:1157 +#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196 +#: src/Object/Post.php:1158 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Prosím zadejte URL obrázku/videa/audia/webové stránky:" -#: src/Content/Conversation.php:326 +#: src/Content/Conversation.php:328 msgid "Tag term:" msgstr "Štítek:" -#: src/Content/Conversation.php:327 src/Module/Filer/SaveTag.php:59 +#: src/Content/Conversation.php:329 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Uložit do složky:" -#: src/Content/Conversation.php:328 +#: src/Content/Conversation.php:330 msgid "Where are you right now?" msgstr "Kde právě jste?" -#: src/Content/Conversation.php:329 +#: src/Content/Conversation.php:331 msgid "Delete item(s)?" msgstr "Smazat položku(y)?" -#: src/Content/Conversation.php:341 src/Module/Item/Compose.php:171 +#: src/Content/Conversation.php:343 src/Module/Item/Compose.php:171 msgid "Created at" msgstr "" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:353 msgid "New Post" msgstr "Nový příspěvek" -#: src/Content/Conversation.php:354 +#: src/Content/Conversation.php:356 msgid "Share" msgstr "Sdílet" -#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:123 +#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:123 msgid "upload photo" msgstr "nahrát fotku" -#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:124 +#: src/Content/Conversation.php:360 src/Module/Post/Edit.php:124 msgid "Attach file" msgstr "Přiložit soubor" -#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:125 +#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:125 msgid "attach file" msgstr "přiložit soubor" -#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:186 -#: src/Module/Post/Edit.php:162 src/Object/Post.php:1147 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1148 msgid "Bold" msgstr "Tučné" -#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:187 -#: src/Module/Post/Edit.php:163 src/Object/Post.php:1148 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1149 msgid "Italic" msgstr "Kurziva" -#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:188 -#: src/Module/Post/Edit.php:164 src/Object/Post.php:1149 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1150 msgid "Underline" msgstr "Podtržené" -#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:189 -#: src/Module/Post/Edit.php:165 src/Object/Post.php:1151 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:165 src/Object/Post.php:1152 msgid "Quote" msgstr "Citace" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:166 src/Object/Post.php:1152 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:166 src/Object/Post.php:1153 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:191 -#: src/Object/Post.php:1150 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Object/Post.php:1151 msgid "Content Warning" msgstr "" -#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:167 src/Object/Post.php:1153 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:167 src/Object/Post.php:1154 msgid "Code" msgstr "Kód" -#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:193 -#: src/Object/Post.php:1154 +#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1155 msgid "Image" msgstr "Obrázek" -#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:168 src/Object/Post.php:1155 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:168 src/Object/Post.php:1156 msgid "Link" msgstr "Odkaz" -#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:195 -#: src/Module/Post/Edit.php:169 src/Object/Post.php:1156 +#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:169 src/Object/Post.php:1157 msgid "Link or Media" msgstr "Odkaz nebo média" -#: src/Content/Conversation.php:370 +#: src/Content/Conversation.php:372 msgid "Video" msgstr "" -#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:198 +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:198 #: src/Module/Post/Edit.php:132 msgid "Set your location" msgstr "Nastavit vaši polohu" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:133 msgid "set location" msgstr "nastavit polohu" -#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:134 msgid "Clear browser location" msgstr "Vymazat polohu v prohlížeči" -#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:135 +#: src/Content/Conversation.php:376 src/Module/Post/Edit.php:135 msgid "clear location" msgstr "vymazat polohu" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:203 +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:203 #: src/Module/Post/Edit.php:148 msgid "Set title" msgstr "Nastavit nadpis" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:204 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 #: src/Module/Post/Edit.php:150 msgid "Categories (comma-separated list)" msgstr "Kategorie (seznam, oddělujte čárkou)" -#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:220 +#: src/Content/Conversation.php:385 src/Module/Item/Compose.php:220 msgid "Scheduled at" msgstr "" -#: src/Content/Conversation.php:388 src/Module/Post/Edit.php:137 +#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:137 msgid "Permission settings" msgstr "Nastavení oprávnění" -#: src/Content/Conversation.php:397 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:399 src/Module/Post/Edit.php:146 msgid "Public post" msgstr "Veřejný příspěvek" -#: src/Content/Conversation.php:411 src/Content/Widget/VCard.php:121 +#: 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 msgid "Message" msgstr "Zpráva" -#: src/Content/Conversation.php:412 src/Module/Post/Edit.php:173 +#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:173 #: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Prohlížeč" -#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:176 +#: src/Content/Conversation.php:416 src/Module/Post/Edit.php:176 msgid "Open Compose page" msgstr "" -#: src/Content/Conversation.php:581 +#: src/Content/Conversation.php:583 msgid "remove" msgstr "odstranit" -#: src/Content/Conversation.php:585 +#: src/Content/Conversation.php:587 msgid "Delete Selected Items" msgstr "Smazat vybrané položky" -#: src/Content/Conversation.php:713 src/Content/Conversation.php:716 -#: src/Content/Conversation.php:719 src/Content/Conversation.php:722 -#: src/Content/Conversation.php:725 +#: 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 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: src/Content/Conversation.php:728 +#: src/Content/Conversation.php:730 #, php-format msgid "You are following %s." msgstr "" -#: src/Content/Conversation.php:733 +#: src/Content/Conversation.php:735 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:735 +#: src/Content/Conversation.php:737 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:755 +#: src/Content/Conversation.php:757 #, php-format msgid "%s reshared this." msgstr "%s tohle znovusdílel/a." -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 msgid "Reshared" msgstr "" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 #, php-format msgid "Reshared by %s <%s>" msgstr "" -#: src/Content/Conversation.php:760 +#: src/Content/Conversation.php:762 #, php-format msgid "%s is participating in this thread." msgstr "" -#: src/Content/Conversation.php:763 +#: src/Content/Conversation.php:765 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:766 +#: src/Content/Conversation.php:768 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 msgid "Fetched" msgstr "" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 #, php-format msgid "Fetched because of %s <%s>" msgstr "" -#: src/Content/Conversation.php:775 +#: src/Content/Conversation.php:777 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:778 +#: src/Content/Conversation.php:780 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:781 +#: src/Content/Conversation.php:783 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:784 +#: src/Content/Conversation.php:786 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:787 +#: src/Content/Conversation.php:789 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1505 src/Object/Post.php:247 +#: src/Content/Conversation.php:1507 src/Object/Post.php:248 msgid "Pinned item" msgstr "" -#: src/Content/Conversation.php:1522 src/Object/Post.php:541 -#: src/Object/Post.php:542 +#: src/Content/Conversation.php:1524 src/Object/Post.php:542 +#: src/Object/Post.php:543 #, php-format msgid "View %s's profile @ %s" msgstr "Zobrazit profil uživatele %s na %s" -#: src/Content/Conversation.php:1536 src/Object/Post.php:529 +#: src/Content/Conversation.php:1538 src/Object/Post.php:530 msgid "Categories:" msgstr "Kategorie:" -#: src/Content/Conversation.php:1537 src/Object/Post.php:530 +#: src/Content/Conversation.php:1539 src/Object/Post.php:531 msgid "Filed under:" msgstr "Vyplněn pod:" -#: src/Content/Conversation.php:1545 src/Object/Post.php:556 +#: src/Content/Conversation.php:1547 src/Object/Post.php:557 #, php-format msgid "%s from %s" msgstr "%s z %s" -#: src/Content/Conversation.php:1561 +#: src/Content/Conversation.php:1563 msgid "View in context" msgstr "Zobrazit v kontextu" @@ -1684,7 +1689,7 @@ msgstr "Osobní" msgid "Posts that mention or involve you" msgstr "Příspěvky, které vás zmiňují nebo zahrnují" -#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:398 msgid "Starred" msgstr "S hvězdou" @@ -1771,7 +1776,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:552 src/Model/User.php:1390 +#: src/Content/Widget.php:555 src/Model/User.php:1390 msgid "Groups" msgstr "" @@ -1779,7 +1784,7 @@ msgstr "" msgid "Display posts that have been distributed by the selected group." msgstr "" -#: src/Content/Feature.php:117 src/Content/Widget.php:521 +#: src/Content/Feature.php:117 src/Content/Widget.php:524 msgid "Archives" msgstr "Archivy" @@ -1795,8 +1800,8 @@ msgstr "Protokoly" msgid "Display posts with the selected protocols." msgstr "" -#: src/Content/Feature.php:119 src/Content/Widget.php:558 -#: src/Module/Settings/Account.php:429 +#: src/Content/Feature.php:119 src/Content/Widget.php:561 +#: src/Module/Settings/Account.php:391 msgid "Account Types" msgstr "Typy účtů" @@ -1804,7 +1809,7 @@ msgstr "Typy účtů" msgid "Display posts done by accounts with the selected account type." msgstr "" -#: src/Content/Feature.php:120 src/Content/Widget.php:607 +#: 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 msgid "Channels" @@ -1830,7 +1835,7 @@ msgstr "Uložené složky" msgid "Display a list of folders in which posts are stored." msgstr "" -#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:189 msgid "Own Contacts" msgstr "" @@ -1886,12 +1891,12 @@ msgstr "" msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:139 src/Content/Widget.php:527 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:530 msgid "show less" msgstr "" #: src/Content/GroupManager.php:140 src/Content/Widget.php:425 -#: src/Content/Widget.php:528 +#: src/Content/Widget.php:531 msgid "show more" msgstr "zobrazit více" @@ -1899,66 +1904,66 @@ msgstr "zobrazit více" msgid "Create new group" msgstr "" -#: src/Content/Item.php:317 src/Model/Item.php:3273 +#: src/Content/Item.php:322 src/Model/Item.php:3281 msgid "event" msgstr "událost" -#: src/Content/Item.php:320 src/Content/Item.php:330 +#: src/Content/Item.php:325 src/Content/Item.php:335 msgid "status" msgstr "stav" -#: src/Content/Item.php:326 src/Model/Item.php:3275 +#: src/Content/Item.php:331 src/Model/Item.php:3283 #: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "fotka" -#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 +#: src/Content/Item.php:345 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s označil/a %3$s uživatele %2$s štítkem %4$s" -#: src/Content/Item.php:414 view/theme/frio/theme.php:253 +#: src/Content/Item.php:419 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Sledovat vlákno" -#: src/Content/Item.php:415 src/Model/Contact.php:1244 +#: src/Content/Item.php:420 src/Model/Contact.php:1245 msgid "View Status" msgstr "Zobrazit stav" -#: 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/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 msgid "View Profile" msgstr "Zobrazit profil" -#: src/Content/Item.php:417 src/Model/Contact.php:1246 +#: src/Content/Item.php:422 src/Model/Contact.php:1247 msgid "View Photos" msgstr "Zobrazit fotky" -#: src/Content/Item.php:418 src/Model/Contact.php:1213 +#: src/Content/Item.php:423 src/Model/Contact.php:1214 #: src/Model/Profile.php:446 msgid "Network Posts" msgstr "Síťové příspěvky" -#: src/Content/Item.php:419 src/Model/Contact.php:1237 -#: src/Model/Contact.php:1248 +#: src/Content/Item.php:424 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1249 msgid "View Contact" msgstr "Zobrazit kontakt" -#: src/Content/Item.php:420 src/Model/Contact.php:1249 +#: src/Content/Item.php:425 src/Model/Contact.php:1250 msgid "Send PM" msgstr "Poslat soukromou zprávu" -#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Content/Item.php:426 src/Module/Contact.php:449 #: src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:104 -#: src/Module/Moderation/Users/Active.php:123 -#: src/Module/Moderation/Users/Index.php:138 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Index.php:141 msgid "Block" msgstr "Blokovat" -#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Content/Item.php:427 src/Module/Contact.php:450 #: src/Module/Contact/Profile.php:532 #: src/Module/Notifications/Introductions.php:126 #: src/Module/Notifications/Introductions.php:199 @@ -1966,27 +1971,27 @@ msgstr "Blokovat" msgid "Ignore" msgstr "Ignorovat" -#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Content/Item.php:428 src/Module/Contact.php:451 #: src/Module/Contact/Profile.php:540 msgid "Collapse" msgstr "" -#: src/Content/Item.php:424 src/Object/Post.php:288 +#: src/Content/Item.php:429 src/Object/Post.php:289 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 -#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 +#: src/Content/Item.php:433 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:503 msgid "Languages" msgstr "" -#: src/Content/Item.php:431 src/Object/Post.php:582 +#: src/Content/Item.php:436 src/Object/Post.php:583 msgid "Search Text" msgstr "" -#: src/Content/Item.php:436 src/Content/Widget.php:66 -#: src/Model/Contact.php:1238 src/Model/Contact.php:1250 +#: src/Content/Item.php:441 src/Content/Widget.php:66 +#: src/Model/Contact.php:1239 src/Model/Contact.php:1251 #: src/Module/Contact/Follow.php:152 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Spojit se/sledovat" @@ -1999,7 +2004,7 @@ msgstr "" msgid "Nothing new here" msgstr "Zde není nic nového" -#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:64 msgid "Go back" msgstr "Přejít zpět" @@ -2213,7 +2218,7 @@ msgstr "Oznámení" msgid "See all notifications" msgstr "Zobrazit všechna oznámení" -#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:226 msgid "Mark as seen" msgstr "Označit jako přečtené" @@ -2241,8 +2246,8 @@ msgstr "" msgid "Manage other pages" msgstr "Spravovat jiné stránky" -#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 -#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:170 +#: 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/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Nastavení" @@ -2270,10 +2275,10 @@ msgstr "Nastavení webu a konfigurace" #: src/Module/Moderation/Blocklist/Server/Index.php:84 #: 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:119 -#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 #: src/Module/Moderation/Users/Deleted.php:66 -#: src/Module/Moderation/Users/Index.php:133 +#: src/Module/Moderation/Users/Index.php:136 msgid "Moderation" msgstr "" @@ -2305,33 +2310,33 @@ msgstr "další" msgid "last" msgstr "poslední" -#: src/Content/Text/BBCode.php:908 +#: src/Content/Text/BBCode.php:903 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:931 src/Model/Item.php:4069 -#: src/Model/Item.php:4075 src/Model/Item.php:4076 +#: src/Content/Text/BBCode.php:926 src/Model/Item.php:4080 +#: src/Model/Item.php:4086 src/Model/Item.php:4087 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1745 src/Content/Text/HTML.php:892 +#: src/Content/Text/BBCode.php:1740 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Kliknutím otevřete/zavřete" -#: src/Content/Text/BBCode.php:1800 +#: src/Content/Text/BBCode.php:1795 msgid "$1 wrote:" msgstr "$1 napsal/a:" -#: src/Content/Text/BBCode.php:1874 src/Content/Text/BBCode.php:1875 +#: src/Content/Text/BBCode.php:1869 src/Content/Text/BBCode.php:1870 msgid "Encrypted content" msgstr "Šifrovaný obsah" -#: src/Content/Text/BBCode.php:2208 +#: src/Content/Text/BBCode.php:2203 msgid "Invalid source protocol" msgstr "Neplatný protokol zdroje" -#: src/Content/Text/BBCode.php:2227 +#: src/Content/Text/BBCode.php:2222 msgid "Invalid link protocol" msgstr "Neplatný protokol odkazu" @@ -2386,7 +2391,7 @@ msgid "Examples: Robert Morgenstein, Fishing" msgstr "Příklady: Josef Dvořák, rybaření" #: src/Content/Widget.php:68 src/Module/Contact.php:441 -#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 +#: src/Module/Directory.php:82 view/theme/vier/theme.php:185 msgid "Find" msgstr "Najít" @@ -2407,7 +2412,7 @@ msgstr "Náhodný profil" msgid "Invite Friends" msgstr "Pozvat přátele" -#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: src/Content/Widget.php:73 src/Module/Directory.php:74 #: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Globální adresář" @@ -2428,7 +2433,7 @@ msgstr "" msgid "Relationships" msgstr "Vztahy" -#: src/Content/Widget.php:264 src/Module/Circle.php:280 +#: src/Content/Widget.php:264 src/Module/Circle.php:281 #: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Všechny kontakty" @@ -2454,27 +2459,27 @@ msgstr[1] "%d společné kontakty" msgstr[2] "%d společného kontaktu" msgstr[3] "%d společných kontaktů" -#: src/Content/Widget.php:529 +#: src/Content/Widget.php:532 msgid "On this date" msgstr "" -#: src/Content/Widget.php:549 +#: src/Content/Widget.php:552 msgid "Persons" msgstr "" -#: src/Content/Widget.php:550 +#: src/Content/Widget.php:553 msgid "Organisations" msgstr "" -#: src/Content/Widget.php:551 src/Model/Contact.php:1750 +#: src/Content/Widget.php:554 src/Model/Contact.php:1751 msgid "News" msgstr "Zprávy" -#: src/Content/Widget.php:553 +#: src/Content/Widget.php:556 msgid "Relays" msgstr "" -#: src/Content/Widget.php:560 src/Module/Moderation/BaseUsers.php:58 +#: src/Content/Widget.php:563 src/Module/Moderation/BaseUsers.php:58 msgid "All" msgstr "" @@ -2524,12 +2529,12 @@ msgstr[3] "Populární štítky (posledních %d hodin)" msgid "More Trending Tags" msgstr "Další populární štítky" -#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1207 +#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1208 #: src/Model/Profile.php:440 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1211 +#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1212 #: src/Model/Profile.php:444 src/Module/Moderation/Item/Source.php:80 msgid "Mention" msgstr "" @@ -2544,10 +2549,10 @@ msgstr "XMPP:" msgid "Matrix:" msgstr "" -#: src/Content/Widget/VCard.php:112 src/Model/Event.php:68 -#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: 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:134 src/Module/Notifications/Introductions.php:180 +#: src/Module/Directory.php:133 src/Module/Notifications/Introductions.php:180 #: src/Module/Profile/Profile.php:212 msgid "Location:" msgstr "Poloha:" @@ -2557,75 +2562,75 @@ msgstr "Poloha:" msgid "Network:" msgstr "Síť:" -#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1239 -#: src/Model/Contact.php:1251 src/Model/Profile.php:457 +#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1252 src/Model/Profile.php:457 #: src/Module/Contact/Profile.php:476 msgid "Unfollow" msgstr "Přestat sledovat" -#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1209 +#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1210 #: src/Model/Profile.php:442 msgid "View group" msgstr "" -#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:260 +#: src/Core/ACL.php:153 src/Module/Profile/Profile.php:260 msgid "Yourself" msgstr "" -#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Core/ACL.php:189 src/Module/Privacy/PermissionTooltip.php:156 #: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "Vzájemní" -#: src/Core/ACL.php:280 +#: src/Core/ACL.php:281 msgid "Post to Email" msgstr "Poslat příspěvek na e-mail" -#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Core/ACL.php:308 src/Module/Privacy/PermissionTooltip.php:103 #: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "" -#: src/Core/ACL.php:308 +#: src/Core/ACL.php:309 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:309 src/Module/Privacy/PermissionTooltip.php:105 +#: src/Core/ACL.php:310 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "" -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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:310 +#: src/Core/ACL.php:311 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:311 +#: src/Core/ACL.php:312 msgid "Show to:" msgstr "" -#: src/Core/ACL.php:312 +#: src/Core/ACL.php:313 msgid "Except to:" msgstr "" -#: src/Core/ACL.php:313 src/Module/Post/Edit.php:145 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:145 msgid "CC: email addresses" msgstr "Kopie: e-mailové adresy" -#: src/Core/ACL.php:314 src/Module/Post/Edit.php:151 +#: src/Core/ACL.php:315 src/Module/Post/Edit.php:151 msgid "Example: bob@example.com, mary@example.com" msgstr "Příklad: jan@priklad.cz, lucie@priklad.cz" -#: src/Core/ACL.php:315 +#: src/Core/ACL.php:316 msgid "Connectors" msgstr "Konektory" @@ -2960,176 +2965,176 @@ msgstr "Databáze se již používá." msgid "Could not connect to database." msgstr "Nelze se připojit k databázi." -#: src/Core/L10n.php:430 src/Model/Item.php:2316 +#: src/Core/L10n.php:426 src/Model/Item.php:2324 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:437 +#: src/Core/L10n.php:433 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Core/L10n.php:481 src/Model/Event.php:418 #: src/Module/Settings/Display.php:292 msgid "Monday" msgstr "pondělí" -#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Core/L10n.php:481 src/Model/Event.php:419 #: src/Module/Settings/Display.php:293 msgid "Tuesday" msgstr "úterý" -#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Core/L10n.php:481 src/Model/Event.php:420 #: src/Module/Settings/Display.php:294 msgid "Wednesday" msgstr "středa" -#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Core/L10n.php:481 src/Model/Event.php:421 #: src/Module/Settings/Display.php:295 msgid "Thursday" msgstr "čtvrtek" -#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Core/L10n.php:481 src/Model/Event.php:422 #: src/Module/Settings/Display.php:296 msgid "Friday" msgstr "pátek" -#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Core/L10n.php:481 src/Model/Event.php:423 #: src/Module/Settings/Display.php:297 msgid "Saturday" msgstr "sobota" -#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Core/L10n.php:481 src/Model/Event.php:417 #: src/Module/Settings/Display.php:291 msgid "Sunday" msgstr "neděle" -#: src/Core/L10n.php:489 src/Model/Event.php:436 +#: src/Core/L10n.php:485 src/Model/Event.php:438 msgid "January" msgstr "leden" -#: src/Core/L10n.php:489 src/Model/Event.php:437 +#: src/Core/L10n.php:485 src/Model/Event.php:439 msgid "February" msgstr "únor" -#: src/Core/L10n.php:489 src/Model/Event.php:438 +#: src/Core/L10n.php:485 src/Model/Event.php:440 msgid "March" msgstr "březen" -#: src/Core/L10n.php:489 src/Model/Event.php:439 +#: src/Core/L10n.php:485 src/Model/Event.php:441 msgid "April" msgstr "duben" -#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 +#: src/Core/L10n.php:485 src/Core/L10n.php:504 src/Model/Event.php:429 msgid "May" msgstr "květen" -#: src/Core/L10n.php:489 src/Model/Event.php:440 +#: src/Core/L10n.php:485 src/Model/Event.php:442 msgid "June" msgstr "červen" -#: src/Core/L10n.php:489 src/Model/Event.php:441 +#: src/Core/L10n.php:485 src/Model/Event.php:443 msgid "July" msgstr "červenec" -#: src/Core/L10n.php:489 src/Model/Event.php:442 +#: src/Core/L10n.php:485 src/Model/Event.php:444 msgid "August" msgstr "srpen" -#: src/Core/L10n.php:489 src/Model/Event.php:443 +#: src/Core/L10n.php:485 src/Model/Event.php:445 msgid "September" msgstr "září" -#: src/Core/L10n.php:489 src/Model/Event.php:444 +#: src/Core/L10n.php:485 src/Model/Event.php:446 msgid "October" msgstr "říjen" -#: src/Core/L10n.php:489 src/Model/Event.php:445 +#: src/Core/L10n.php:485 src/Model/Event.php:447 msgid "November" msgstr "listopad" -#: src/Core/L10n.php:489 src/Model/Event.php:446 +#: src/Core/L10n.php:485 src/Model/Event.php:448 msgid "December" msgstr "prosinec" -#: src/Core/L10n.php:504 src/Model/Event.php:408 +#: src/Core/L10n.php:500 src/Model/Event.php:410 msgid "Mon" msgstr "pon" -#: src/Core/L10n.php:504 src/Model/Event.php:409 +#: src/Core/L10n.php:500 src/Model/Event.php:411 msgid "Tue" msgstr "úte" -#: src/Core/L10n.php:504 src/Model/Event.php:410 +#: src/Core/L10n.php:500 src/Model/Event.php:412 msgid "Wed" msgstr "stř" -#: src/Core/L10n.php:504 src/Model/Event.php:411 +#: src/Core/L10n.php:500 src/Model/Event.php:413 msgid "Thu" msgstr "čtv" -#: src/Core/L10n.php:504 src/Model/Event.php:412 +#: src/Core/L10n.php:500 src/Model/Event.php:414 msgid "Fri" msgstr "pát" -#: src/Core/L10n.php:504 src/Model/Event.php:413 +#: src/Core/L10n.php:500 src/Model/Event.php:415 msgid "Sat" msgstr "sob" -#: src/Core/L10n.php:504 src/Model/Event.php:407 +#: src/Core/L10n.php:500 src/Model/Event.php:409 msgid "Sun" msgstr "ned" -#: src/Core/L10n.php:508 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:425 msgid "Jan" msgstr "led" -#: src/Core/L10n.php:508 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:426 msgid "Feb" msgstr "úno" -#: src/Core/L10n.php:508 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:427 msgid "Mar" msgstr "bře" -#: src/Core/L10n.php:508 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:428 msgid "Apr" msgstr "dub" -#: src/Core/L10n.php:508 src/Model/Event.php:428 +#: src/Core/L10n.php:504 src/Model/Event.php:430 msgid "Jun" msgstr "čvn" -#: src/Core/L10n.php:508 src/Model/Event.php:429 +#: src/Core/L10n.php:504 src/Model/Event.php:431 msgid "Jul" msgstr "čvc" -#: src/Core/L10n.php:508 src/Model/Event.php:430 +#: src/Core/L10n.php:504 src/Model/Event.php:432 msgid "Aug" msgstr "srp" -#: src/Core/L10n.php:508 +#: src/Core/L10n.php:504 msgid "Sep" msgstr "zář" -#: src/Core/L10n.php:508 src/Model/Event.php:432 +#: src/Core/L10n.php:504 src/Model/Event.php:434 msgid "Oct" msgstr "říj" -#: src/Core/L10n.php:508 src/Model/Event.php:433 +#: src/Core/L10n.php:504 src/Model/Event.php:435 msgid "Nov" msgstr "lis" -#: src/Core/L10n.php:508 src/Model/Event.php:434 +#: src/Core/L10n.php:504 src/Model/Event.php:436 msgid "Dec" msgstr "pro" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:44 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:67 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" @@ -3321,7 +3326,7 @@ msgstr "přidat" msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:592 src/Module/Circle.php:181 +#: src/Model/Circle.php:592 src/Module/Circle.php:185 msgid "Contacts not in any circle" msgstr "" @@ -3329,8 +3334,8 @@ msgstr "" msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:595 src/Module/Circle.php:166 -#: src/Module/Circle.php:189 src/Module/Circle.php:264 +#: src/Model/Circle.php:595 src/Module/Circle.php:168 +#: src/Module/Circle.php:190 src/Module/Circle.php:265 msgid "Circle Name: " msgstr "" @@ -3338,247 +3343,247 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1258 src/Module/Moderation/Users/Pending.php:88 +#: src/Model/Contact.php:1259 src/Module/Moderation/Users/Pending.php:88 #: src/Module/Notifications/Introductions.php:124 #: src/Module/Notifications/Introductions.php:197 msgid "Approve" msgstr "Schválit" -#: src/Model/Contact.php:1594 src/Model/Contact.php:1666 +#: src/Model/Contact.php:1595 src/Model/Contact.php:1667 #: src/Module/Contact/Profile.php:360 #, php-format msgid "%s has blocked you" msgstr "" -#: src/Model/Contact.php:1746 +#: src/Model/Contact.php:1747 msgid "Organisation" msgstr "Organizace" -#: src/Model/Contact.php:1754 +#: src/Model/Contact.php:1755 msgid "Group" msgstr "" -#: src/Model/Contact.php:1758 src/Module/Moderation/BaseUsers.php:122 +#: src/Model/Contact.php:1759 src/Module/Moderation/BaseUsers.php:122 msgid "Relay" msgstr "Přeposílací server" -#: src/Model/Contact.php:3073 +#: src/Model/Contact.php:3085 msgid "Disallowed profile URL." msgstr "Nepovolené URL profilu." -#: src/Model/Contact.php:3078 src/Module/Friendica.php:88 +#: src/Model/Contact.php:3090 src/Module/Friendica.php:88 msgid "Blocked domain" msgstr "Zablokovaná doména" -#: src/Model/Contact.php:3083 +#: src/Model/Contact.php:3095 msgid "Connect URL missing." msgstr "Chybí URL adresa pro připojení." -#: src/Model/Contact.php:3092 +#: src/Model/Contact.php:3104 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Kontakt nemohl být přidán. Prosím zkontrolujte relevantní přihlašovací údaje sítě na stránce Nastavení -> Sociální sítě." -#: src/Model/Contact.php:3110 +#: src/Model/Contact.php:3122 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3127 +#: src/Model/Contact.php:3139 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3134 +#: src/Model/Contact.php:3146 msgid "The profile address specified does not provide adequate information." msgstr "Uvedená adresa profilu neposkytuje dostatečné informace." -#: src/Model/Contact.php:3136 +#: src/Model/Contact.php:3148 msgid "No compatible communication protocols or feeds were discovered." msgstr "Nenalezen žádný kompatibilní komunikační protokol nebo kanál." -#: src/Model/Contact.php:3139 +#: src/Model/Contact.php:3151 msgid "An author or name was not found." msgstr "Autor nebo jméno nenalezeno" -#: src/Model/Contact.php:3142 +#: src/Model/Contact.php:3154 msgid "No browser URL could be matched to this address." msgstr "Této adrese neodpovídá žádné URL prohlížeče." -#: src/Model/Contact.php:3145 +#: src/Model/Contact.php:3157 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Není možné namapovat adresu identity ve stylu @ s žádným možným protokolem ani emailovým kontaktem." -#: src/Model/Contact.php:3146 +#: src/Model/Contact.php:3158 msgid "Use mailto: in front of address to force email check." msgstr "Použite mailo: před adresou k vynucení emailové kontroly." -#: src/Model/Contact.php:3152 +#: src/Model/Contact.php:3164 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Omezený profil. Tato osoba nebude schopna od vás přijímat přímá/osobní oznámení." -#: src/Model/Contact.php:3211 +#: src/Model/Contact.php:3223 msgid "Unable to retrieve contact information." msgstr "Nepodařilo se získat kontaktní informace." -#: src/Model/Event.php:40 +#: src/Model/Event.php:42 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 -#: src/Model/Event.php:928 +#: src/Model/Event.php:63 src/Model/Event.php:80 src/Model/Event.php:457 +#: src/Model/Event.php:929 msgid "Starts:" msgstr "Začíná:" -#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 -#: src/Model/Event.php:932 +#: src/Model/Event.php:66 src/Model/Event.php:86 src/Model/Event.php:458 +#: src/Model/Event.php:933 msgid "Finishes:" msgstr "Končí:" -#: src/Model/Event.php:405 +#: src/Model/Event.php:407 msgid "all-day" msgstr "celodenní" -#: src/Model/Event.php:431 +#: src/Model/Event.php:433 msgid "Sept" msgstr "září" -#: src/Model/Event.php:448 src/Module/Calendar/Show.php:117 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:117 #: src/Util/Temporal.php:329 msgid "today" msgstr "dnes" -#: src/Model/Event.php:449 src/Module/Calendar/Show.php:118 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:118 #: src/Module/Settings/Display.php:302 src/Util/Temporal.php:339 msgid "month" msgstr "měsíc" -#: src/Model/Event.php:450 src/Module/Calendar/Show.php:119 +#: src/Model/Event.php:452 src/Module/Calendar/Show.php:119 #: src/Module/Settings/Display.php:303 src/Util/Temporal.php:340 msgid "week" msgstr "týden" -#: src/Model/Event.php:451 src/Module/Calendar/Show.php:120 +#: src/Model/Event.php:453 src/Module/Calendar/Show.php:120 #: src/Module/Settings/Display.php:304 src/Util/Temporal.php:341 msgid "day" msgstr "den" -#: src/Model/Event.php:453 +#: src/Model/Event.php:455 msgid "No events to display" msgstr "Žádné události k zobrazení" -#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Model/Event.php:504 src/Module/Feed.php:56 #: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "Přístup na tento profil byl omezen." -#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:52 +#: src/Model/Event.php:545 src/Module/Calendar/Event/Show.php:52 msgid "Event not found." msgstr "" -#: src/Model/Event.php:623 +#: src/Model/Event.php:624 msgid "l, F j" msgstr "l, j. F" -#: src/Model/Event.php:650 +#: src/Model/Event.php:651 msgid "Edit event" msgstr "Upravit událost" -#: src/Model/Event.php:651 +#: src/Model/Event.php:652 msgid "Duplicate event" msgstr "Duplikovat událost" -#: src/Model/Event.php:652 +#: src/Model/Event.php:653 msgid "Delete event" msgstr "Smazat událost" -#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 +#: src/Model/Event.php:883 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l d. F, Y v g:i A" -#: src/Model/Event.php:883 +#: src/Model/Event.php:884 msgid "D g:i A" msgstr "D g:i A" -#: src/Model/Event.php:884 +#: src/Model/Event.php:885 msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:947 src/Model/Event.php:949 +#: src/Model/Event.php:948 src/Model/Event.php:950 msgid "Show map" msgstr "Zobrazit mapu" -#: src/Model/Event.php:948 +#: src/Model/Event.php:949 msgid "Hide map" msgstr "Skrýt mapu" -#: src/Model/Event.php:1041 +#: src/Model/Event.php:1042 #, php-format msgid "%s's birthday" msgstr "%s má narozeniny" -#: src/Model/Event.php:1042 +#: src/Model/Event.php:1043 #, php-format msgid "Happy Birthday %s" msgstr "Veselé narozeniny, %s" -#: src/Model/Item.php:2323 +#: src/Model/Item.php:2331 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2325 +#: src/Model/Item.php:2333 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2328 +#: src/Model/Item.php:2336 #, php-format msgid "" "Detected languages in this post:\n" "%s" msgstr "" -#: src/Model/Item.php:3277 +#: src/Model/Item.php:3285 msgid "activity" msgstr "aktivita" -#: src/Model/Item.php:3279 +#: src/Model/Item.php:3287 msgid "comment" msgstr "" -#: src/Model/Item.php:3282 src/Module/Post/Tag/Add.php:109 +#: src/Model/Item.php:3290 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "příspěvek" -#: src/Model/Item.php:3452 +#: src/Model/Item.php:3463 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3454 +#: src/Model/Item.php:3465 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3456 +#: src/Model/Item.php:3467 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3460 +#: src/Model/Item.php:3471 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3969 +#: src/Model/Item.php:3980 msgid "bytes" msgstr "bytů" -#: src/Model/Item.php:4000 +#: src/Model/Item.php:4011 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3587,7 +3592,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Model/Item.php:4002 +#: src/Model/Item.php:4013 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3596,7 +3601,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Model/Item.php:4007 +#: src/Model/Item.php:4018 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3605,7 +3610,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Model/Item.php:4009 +#: src/Model/Item.php:4020 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3614,12 +3619,12 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Model/Item.php:4011 +#: src/Model/Item.php:4022 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:4052 src/Model/Item.php:4053 +#: src/Model/Item.php:4063 src/Model/Item.php:4064 msgid "View on separate page" msgstr "Zobrazit na separátní stránce" @@ -3627,7 +3632,7 @@ msgstr "Zobrazit na separátní stránce" msgid "[no subject]" msgstr "[bez předmětu]" -#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 +#: src/Model/Photo.php:1192 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Fotky na zdi" @@ -3640,7 +3645,7 @@ msgstr "Upravit profil" msgid "Change profile photo" msgstr "Změnit profilovou fotku" -#: src/Model/Profile.php:357 src/Module/Directory.php:139 +#: src/Model/Profile.php:357 src/Module/Directory.php:138 #: src/Module/Profile/Profile.php:200 msgid "Homepage:" msgstr "Domovská stránka:" @@ -3730,7 +3735,7 @@ msgstr "Nelibí se:" msgid "Title/Description:" msgstr "Název / Popis:" -#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:176 +#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:174 #: src/Module/Moderation/Report/Create.php:266 #: src/Module/Moderation/Summary.php:65 msgid "Summary" @@ -3781,59 +3786,59 @@ msgstr "" msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "ZÁVAŽNÁ CHYBA: Generování bezpečnostních klíčů se nezdařilo." -#: src/Model/User.php:740 src/Model/User.php:773 +#: src/Model/User.php:739 src/Model/User.php:772 msgid "Login failed" msgstr "Přihlášení selhalo" -#: src/Model/User.php:805 +#: src/Model/User.php:804 msgid "Not enough information to authenticate" msgstr "Není dost informací pro autentikaci" -#: src/Model/User.php:930 +#: src/Model/User.php:929 msgid "Password can't be empty" msgstr "Heslo nemůže být prázdné" -#: src/Model/User.php:972 +#: src/Model/User.php:971 msgid "Empty passwords are not allowed." msgstr "Prázdná hesla nejsou povolena." -#: src/Model/User.php:976 +#: src/Model/User.php:975 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Nové heslo bylo zveřejněno ve veřejném výpisu dat, prosím zvolte si jiné." -#: src/Model/User.php:980 +#: src/Model/User.php:979 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:984 +#: src/Model/User.php:983 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1193 +#: src/Model/User.php:1192 msgid "Passwords do not match. Password unchanged." msgstr "Hesla se neshodují. Heslo nebylo změněno." -#: src/Model/User.php:1200 +#: src/Model/User.php:1199 msgid "An invitation is required." msgstr "Je vyžadována pozvánka." -#: src/Model/User.php:1204 +#: src/Model/User.php:1203 msgid "Invitation could not be verified." msgstr "Pozvánka nemohla být ověřena." -#: src/Model/User.php:1212 +#: src/Model/User.php:1211 msgid "Invalid OpenID url" msgstr "Neplatný odkaz OpenID" -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Zaznamenali jsme problém s vaším přihlášením prostřednictvím Vámi zadaným OpenID. Prosím ověřte si, že jste ID zadali správně. " -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "The error message was:" msgstr "Chybová zpráva byla:" @@ -4028,57 +4033,57 @@ msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:51 +#: src/Module/Admin/Addons/Details.php:49 msgid "Addon not found." msgstr "Doplněk nenalezen." -#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 +#: src/Module/Admin/Addons/Details.php:60 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "Doplněk %s zakázán." -#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 +#: src/Module/Admin/Addons/Details.php:63 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "Doplněk %s povolen." -#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Addons/Details.php:72 #: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "Zakázat" -#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Addons/Details.php:75 #: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351 msgid "Enable" msgstr "Povolit" -#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Addons/Details.php:95 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:175 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Summary.php:173 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 "Administrace" -#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/Admin/Addons/Details.php:96 src/Module/Admin/Addons/Index.php:60 #: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:127 msgid "Addons" msgstr "Doplňky" -#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Addons/Details.php:97 #: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Přepnout" -#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Addons/Details.php:104 #: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Autor: " -#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Addons/Details.php:105 #: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Správce: " @@ -4095,9 +4100,10 @@ msgstr "Instalace doplňku %s selhala." #: 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:545 src/Module/Settings/Addons.php:64 -#: src/Module/Settings/Connectors.php:149 -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Account.php:507 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/Features.php:61 msgid "Save Settings" @@ -4114,62 +4120,62 @@ msgid "" "official addon repository at %1$s." msgstr "" -#: src/Module/Admin/DBSync.php:37 +#: src/Module/Admin/DBSync.php:35 msgid "Update has been marked successful" msgstr "Aktualizace byla označena jako úspěšná." -#: src/Module/Admin/DBSync.php:45 +#: src/Module/Admin/DBSync.php:43 #, php-format msgid "Database structure update %s was successfully applied." msgstr "Aktualizace struktury databáze %s byla úspěšně aplikována." -#: src/Module/Admin/DBSync.php:47 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "Provádění aktualizace databáze %s selhalo s chybou: %s" -#: src/Module/Admin/DBSync.php:62 +#: src/Module/Admin/DBSync.php:60 #, php-format msgid "Executing %s failed with error: %s" msgstr "Vykonávání %s selhalo s chybou: %s" -#: src/Module/Admin/DBSync.php:64 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Update %s was successfully applied." msgstr "Aktualizace %s byla úspěšně aplikována." -#: src/Module/Admin/DBSync.php:67 +#: src/Module/Admin/DBSync.php:65 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Aktualizace %s nevrátila žádný stav. Není zřejmé, jestli byla úspěšná." -#: src/Module/Admin/DBSync.php:70 +#: src/Module/Admin/DBSync.php:68 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "Nebyla nalezena žádná další aktualizační funkce %s která by měla být volána." -#: src/Module/Admin/DBSync.php:91 +#: src/Module/Admin/DBSync.php:89 msgid "No failed updates." msgstr "Žádné neúspěšné aktualizace." -#: src/Module/Admin/DBSync.php:92 +#: src/Module/Admin/DBSync.php:90 msgid "Check database structure" msgstr "Ověřit strukturu databáze" -#: src/Module/Admin/DBSync.php:96 +#: src/Module/Admin/DBSync.php:94 msgid "Failed Updates" msgstr "Neúspěšné aktualizace" -#: src/Module/Admin/DBSync.php:97 +#: src/Module/Admin/DBSync.php:95 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "To nezahrnuje aktualizace do verze 1139, které nevracejí žádný status." -#: src/Module/Admin/DBSync.php:98 +#: src/Module/Admin/DBSync.php:96 msgid "Mark success (if update was manually applied)" msgstr "Označit za úspěšné (pokud byla aktualizace aplikována manuálně)" -#: src/Module/Admin/DBSync.php:99 +#: src/Module/Admin/DBSync.php:97 msgid "Attempt to execute this update step automatically" msgstr "Pokusit se provést tuto aktualizaci automaticky." @@ -5750,12 +5756,12 @@ msgstr "" msgid "Database (legacy)" msgstr "Databáze (legacy)" -#: src/Module/Admin/Summary.php:41 +#: src/Module/Admin/Summary.php:39 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:45 +#: src/Module/Admin/Summary.php:43 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5766,7 +5772,7 @@ msgid "" " an automatic conversion.
" msgstr "Vaše databáze stále běží s tabulkami MyISAM. Měl/a byste změnit typ datového úložiště na InnoDB. Protože Friendica bude v budoucnu používat pouze funkce pro InnoDB, měl/a byste to změnit! Zde naleznete návod, který by pro vás mohl být užitečný při konverzi úložišť. Můžete také použít příkaz php bin/console.php dbstructure toinnodb na Vaší instalaci Friendica pro automatickou konverzi.
" -#: src/Module/Admin/Summary.php:50 +#: src/Module/Admin/Summary.php:48 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5777,7 +5783,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:60 +#: src/Module/Admin/Summary.php:58 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5785,46 +5791,46 @@ msgid "" " to %d. See here for more information.
" msgstr "" -#: src/Module/Admin/Summary.php:68 +#: src/Module/Admin/Summary.php:66 #, 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 "Je dostupná ke stažení nová verze Friendica. Vaše aktuální verze je %1$s, upstreamová verze je %2$s" -#: src/Module/Admin/Summary.php:76 +#: src/Module/Admin/Summary.php:74 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 "Aktualizace databáze selhala. Prosím, spusťte příkaz „php bin/console.php dbstructure update“ z příkazového řádku a podívejte se na chyby, které by se mohly vyskytnout." -#: src/Module/Admin/Summary.php:80 +#: src/Module/Admin/Summary.php:78 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 "Polslední aktualizace selhala. Prosím spusťte příkaz „php bin/console.php dbstructure update“ z příkazového řádku a podívejte se na chyby, které se mohou stát. (Některé chyby mohou být v záznamvém souboru)" -#: src/Module/Admin/Summary.php:84 +#: src/Module/Admin/Summary.php:82 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:89 +#: src/Module/Admin/Summary.php:87 msgid "The worker was never executed. Please check your database structure!" msgstr "Pracovník nebyl nikdy spuštěn. Prosím zkontrolujte strukturu Vaší databáze!" -#: src/Module/Admin/Summary.php:91 +#: src/Module/Admin/Summary.php:89 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "Pracovník byl naposledy spuštěn v %s UTC. Toto je více než jedna hodina. Prosím zkontrolujte si nastavení crontab." -#: src/Module/Admin/Summary.php:96 +#: src/Module/Admin/Summary.php:94 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5833,7 +5839,7 @@ msgid "" "help with the transition." msgstr "Konfigurace Friendica je nyní uložena v souboru config/local.config.php, prosím zkopírujte soubor config/local-sample.config.php a přesuňte svou konfiguraci ze souboru .htconfig.php. Pro pomoc při přechodu navštivte stránku Config v sekci nápovědy." -#: src/Module/Admin/Summary.php:100 +#: src/Module/Admin/Summary.php:98 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5842,7 +5848,7 @@ msgid "" "page for help with the transition." msgstr "Konfigurace Friendica je nyní uložena v souboru config/local.config.php, prosím zkopírujte soubor config/local-sample.config.php a přesuňte svou konfiguraci ze souboru local.config.php. Pro pomoc při přechodu navštivte stránku Config v sekci nápovědy." -#: src/Module/Admin/Summary.php:106 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5850,40 +5856,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "%s není na Vašem systému dosažitelné. Tohle je závažná chyba konfigurace, která brání komunikaci mezi servery. Pro pomoc navštivte stránku instalace." -#: src/Module/Admin/Summary.php:130 +#: src/Module/Admin/Summary.php:128 #, 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 "system.basepath Friendica bylo aktualizováno z „%s“ na „%s“. Pro vyhnutí se rozdílům prosím odstraňte z vaší databáze system.basepath." -#: src/Module/Admin/Summary.php:138 +#: src/Module/Admin/Summary.php:136 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "Aktuální system.basepath Friendica „%s“ je špatné a konfigurační soubor „%s“ se nepoužívá." -#: src/Module/Admin/Summary.php:146 +#: src/Module/Admin/Summary.php:144 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "Aktuální system.basepath „%s“ není rovno konfguračnímu souboru „%s“. Prosím opravte si svou konfiguraci." -#: src/Module/Admin/Summary.php:157 +#: src/Module/Admin/Summary.php:155 msgid "Message queues" msgstr "Fronty zpráv" -#: src/Module/Admin/Summary.php:160 +#: src/Module/Admin/Summary.php:158 msgid "Server Settings" msgstr "Nastavení serveru" -#: src/Module/Admin/Summary.php:178 +#: src/Module/Admin/Summary.php:176 msgid "Version" msgstr "Verze" -#: src/Module/Admin/Summary.php:182 +#: src/Module/Admin/Summary.php:180 msgid "Active addons" msgstr "Aktivní doplňky" @@ -6154,8 +6160,8 @@ msgstr "" msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:134 -#: src/Module/Moderation/Users/Index.php:144 +#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:137 +#: src/Module/Moderation/Users/Index.php:147 msgid "Users" msgstr "Uživatelé" @@ -6191,7 +6197,7 @@ msgstr "" msgid "Only You Can See This" msgstr "Toto můžete vidět jen vy" -#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:67 +#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:65 msgid "Scheduled Posts" msgstr "" @@ -6245,7 +6251,7 @@ msgstr "Dvoufázové ověřování" msgid "Display" msgstr "Zobrazení" -#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:195 +#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:189 msgid "Social Networks" msgstr "Sociální sítě" @@ -6261,11 +6267,15 @@ msgstr "Připojené aplikace" msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:84 +#: src/Module/BaseSettings.php:155 src/Module/Settings/ContactImport.php:109 +msgid "Import Contacts" +msgstr "" + +#: src/Module/BaseSettings.php:162 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Exportovat osobní údaje" -#: src/Module/BaseSettings.php:162 +#: src/Module/BaseSettings.php:169 msgid "Remove account" msgstr "Odstranit účet" @@ -6394,8 +6404,8 @@ msgstr "seznam" msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:54 src/Module/Circle.php:202 -#: src/Module/Circle.php:226 +#: src/Module/Circle.php:54 src/Module/Circle.php:203 +#: src/Module/Circle.php:227 msgid "Circle not found." msgstr "" @@ -6403,15 +6413,15 @@ msgstr "" msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:78 +#: src/Module/Circle.php:80 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Circle.php:86 src/Module/Circle.php:95 #: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 -#: 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/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/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 @@ -6420,75 +6430,75 @@ msgstr "" msgid "Contact not found." msgstr "Kontakt nenalezen." -#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 +#: src/Module/Circle.php:90 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Neplatný kontakt." -#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 +#: src/Module/Circle.php:99 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "Knotakt je smazán." -#: src/Module/Circle.php:103 +#: src/Module/Circle.php:105 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:106 +#: src/Module/Circle.php:108 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:110 +#: src/Module/Circle.php:112 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:113 +#: src/Module/Circle.php:115 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:119 msgid "Bad request." msgstr "Špatný požadavek." -#: src/Module/Circle.php:158 +#: src/Module/Circle.php:160 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:159 +#: src/Module/Circle.php:161 msgid "Filter" msgstr "Filtr" -#: src/Module/Circle.php:165 +#: src/Module/Circle.php:167 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:207 +#: src/Module/Circle.php:208 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:258 +#: src/Module/Circle.php:259 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:268 +#: src/Module/Circle.php:269 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:278 +#: src/Module/Circle.php:279 msgid "Members" msgstr "Členové" -#: src/Module/Circle.php:281 +#: src/Module/Circle.php:282 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:297 +#: src/Module/Circle.php:298 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:320 +#: src/Module/Circle.php:321 msgid "Click on a contact to add or remove." msgstr "Klikněte na kontakt pro přidání nebo odebrání" -#: src/Module/Circle.php:337 +#: src/Module/Circle.php:338 msgid "Add contact to circle" msgstr "" @@ -6524,7 +6534,7 @@ msgid "Only show blocked contacts" msgstr "Zobrazit pouze blokované kontakty" #: src/Module/Contact.php:349 src/Module/Contact.php:421 -#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:386 msgid "Ignored" msgstr "Ignorované" @@ -6575,8 +6585,8 @@ msgstr "Aktualizace" #: src/Module/Contact.php:449 src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:105 -#: src/Module/Moderation/Users/Blocked.php:124 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Blocked.php:127 +#: src/Module/Moderation/Users/Index.php:143 msgid "Unblock" msgstr "Odblokovat" @@ -6652,12 +6662,12 @@ msgstr "Zpět k editoru kontaktu" #: 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:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:56 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Jméno" @@ -7232,11 +7242,11 @@ msgstr "" msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:190 +#: src/Module/Conversation/Timeline.php:193 msgid "Include" msgstr "" -#: src/Module/Conversation/Timeline.php:191 +#: src/Module/Conversation/Timeline.php:194 msgid "Hide" msgstr "" @@ -7507,19 +7517,19 @@ msgstr "" msgid "Lookup address:" msgstr "" -#: src/Module/Directory.php:61 +#: src/Module/Directory.php:60 msgid "No entries (some entries may be hidden)." msgstr "Žádné záznamy (některé položky mohou být skryty)." -#: src/Module/Directory.php:77 +#: src/Module/Directory.php:76 msgid "Find on this site" msgstr "Najít na tomto webu" -#: src/Module/Directory.php:79 +#: src/Module/Directory.php:78 msgid "Results for:" msgstr "Výsledky pro:" -#: src/Module/Directory.php:81 +#: src/Module/Directory.php:80 msgid "Site Directory" msgstr "Adresář serveru" @@ -7772,29 +7782,29 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Přejděte k registrační stránce vašeho nového serveru Friendica a zaregistrujte se jako nový uživatel. Nezapomeňte použít stejný e-mail, který jste zadal/a jako administrátorský e-mail. To vám umožní navštívit panel pro administraci stránky." -#: src/Module/Invite.php:43 +#: src/Module/Invite.php:42 msgid "Total invitation limit exceeded." msgstr "Celkový limit pozvánek byl překročen" -#: src/Module/Invite.php:68 +#: src/Module/Invite.php:67 #, php-format msgid "%s : Not a valid email address." msgstr "%s : není platná e-mailová adresa." -#: src/Module/Invite.php:94 +#: src/Module/Invite.php:93 msgid "Please join us on Friendica" msgstr "Prosím přidejte se k nám na Friendica" -#: src/Module/Invite.php:103 +#: src/Module/Invite.php:102 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Limit pozvánek byl překročen. Prosím kontaktujte administrátora vaší stránky." -#: src/Module/Invite.php:107 +#: src/Module/Invite.php:106 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Doručení zprávy se nezdařilo." -#: src/Module/Invite.php:111 +#: src/Module/Invite.php:110 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." @@ -7803,11 +7813,11 @@ msgstr[1] "%d zprávy odeslány." msgstr[2] "%d zprávy odesláno." msgstr[3] "%d zpráv odesláno." -#: src/Module/Invite.php:129 +#: src/Module/Invite.php:127 msgid "You have no more invitations available" msgstr "Nemáte k dispozici žádné další pozvánky" -#: src/Module/Invite.php:136 +#: src/Module/Invite.php:134 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7815,14 +7825,14 @@ msgid "" " other social networks." msgstr "Navštiv %s pro seznam veřejných serverů, na kterých se můžeš přidat. Členové Friendica na jiných serverech se mohou spojit mezi sebou, jakožto i se členy mnoha dalších sociálních sítí." -#: src/Module/Invite.php:138 +#: src/Module/Invite.php:136 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "K přijetí této pozvánky prosím navštivte a registrujte se na %s nebo na kterémkoliv jiném veřejném serveru Friendica." -#: src/Module/Invite.php:139 +#: src/Module/Invite.php:137 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7831,48 +7841,48 @@ msgid "" "sites you can join." msgstr "Stránky Friendica jsou navzájem propojené a vytváří tak obrovský sociální web s dúrazem na soukromí, kterou vlastní a kontrojují její členové, Mohou se také připojit k mnoha tradičním socilním sítím. Navštivte %s pro seznam alternativních serverů Friendica, ke kterým se můžete přidat." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:141 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Omlouváme se. Systém nyní není nastaven tak, aby se připojil k ostatním veřejným serverům nebo umožnil pozvat nové členy." -#: src/Module/Invite.php:146 +#: src/Module/Invite.php:144 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 "Stránky Friendica jsou navzájem propojené a vytváří tak obrovský sociální web s dúrazem na soukromí, kterou vlastní a kontrolují její členové. Mohou se také připojit k mnoha tradičním sociálním sítím." -#: src/Module/Invite.php:145 +#: src/Module/Invite.php:143 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "Pokud chcete tuto pozvánku přijmout, prosím navštivte %s a registrujte se tam." -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:151 msgid "Send invitations" msgstr "Poslat pozvánky" -#: src/Module/Invite.php:154 +#: src/Module/Invite.php:152 msgid "Enter email addresses, one per line:" msgstr "Zadejte e-mailové adresy, jednu na řádek:" -#: src/Module/Invite.php:158 +#: src/Module/Invite.php:156 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Jsi srdečně pozván/a se připojit ke mně a k mým blízkým přátelům na Friendica - a pomoci nám vytvořit lepší sociální web." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "You will need to supply this invitation code: $invite_code" msgstr "Budeš muset zadat tento pozvánkový kód: $invite_code" -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Jakmile se zaregistruješ, prosím spoj se se mnou přes mou profilovu stránku na:" -#: src/Module/Invite.php:162 +#: src/Module/Invite.php:160 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" @@ -7974,12 +7984,12 @@ msgid "File upload failed." msgstr "Nahrání souboru se nezdařilo." #: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 -#: src/Module/Profile/Photos.php:204 +#: src/Module/Profile/Photos.php:212 #: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Obrázek není možné zprocesovat" -#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:224 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:232 #: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Nahrání obrázku selhalo." @@ -8012,23 +8022,23 @@ msgstr "" msgid "List of pending user deletions" msgstr "" -#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:469 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:431 msgid "Normal Account Page" msgstr "Normální stránka účtu" -#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:476 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:438 msgid "Soapbox Page" msgstr "Propagační stránka" -#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:483 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:445 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:490 +#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:452 msgid "Public Group - Restricted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:497 +#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:459 msgid "Automatic Friend Page" msgstr "Stránka s automatickými přátely" @@ -8037,22 +8047,22 @@ msgid "Private Group" msgstr "" #: src/Module/Moderation/BaseUsers.php:118 -#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:440 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:402 msgid "Personal Page" msgstr "Osobní stránka" #: src/Module/Moderation/BaseUsers.php:119 -#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:447 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:409 msgid "Organisation Page" msgstr "Stránka organizace" #: src/Module/Moderation/BaseUsers.php:120 -#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:454 +#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:416 msgid "News Page" msgstr "Zpravodajská stránka" #: src/Module/Moderation/BaseUsers.php:121 -#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:461 +#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:423 msgid "Community Group" msgstr "" @@ -8084,9 +8094,9 @@ msgid "Block Remote Contact" msgstr "Zablokovat vzdálený kontakt" #: src/Module/Moderation/Blocklist/Contact.php:102 -#: 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/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:138 #: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "Vybrat vše" @@ -8439,9 +8449,9 @@ msgid "Tag" msgstr "" #: src/Module/Moderation/Item/Source.php:77 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 -#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 +#: src/Module/Moderation/Users/Index.php:129 msgid "Type" msgstr "Typ" @@ -8708,7 +8718,7 @@ msgstr[3] "" msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:418 +#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:380 msgid "Channel Relay" msgstr "" @@ -8731,11 +8741,11 @@ msgstr[2] "%s uživatele blokováno" msgstr[3] "%s uživatelů blokováno" #: src/Module/Moderation/Users/Active.php:37 -#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Active.php:74 #: src/Module/Moderation/Users/Blocked.php:37 -#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Blocked.php:74 #: src/Module/Moderation/Users/Index.php:44 -#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Index.php:81 msgid "You can't remove yourself" msgstr "Nemůžete odstranit sebe sama" @@ -8750,81 +8760,81 @@ msgstr[1] "%s uživatelů smazáno" msgstr[2] "%s uživatele smazáno" msgstr[3] "%s uživatelů smazáno" -#: src/Module/Moderation/Users/Active.php:69 -#: src/Module/Moderation/Users/Blocked.php:69 -#: src/Module/Moderation/Users/Index.php:76 +#: src/Module/Moderation/Users/Active.php:72 +#: src/Module/Moderation/Users/Blocked.php:72 +#: src/Module/Moderation/Users/Index.php:79 #, php-format msgid "User \"%s\" deleted" msgstr "Uživatel „%s“ smazán" -#: src/Module/Moderation/Users/Active.php:79 -#: src/Module/Moderation/Users/Index.php:86 +#: src/Module/Moderation/Users/Active.php:82 +#: src/Module/Moderation/Users/Index.php:89 #, php-format msgid "User \"%s\" blocked" msgstr "Uživatel „%s“ zablokován" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Register date" msgstr "Datum registrace" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last login" msgstr "Datum posledního přihlášení" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last public item" msgstr "" -#: src/Module/Moderation/Users/Active.php:120 +#: src/Module/Moderation/Users/Active.php:123 msgid "Active Accounts" msgstr "" -#: src/Module/Moderation/Users/Active.php:124 -#: src/Module/Moderation/Users/Blocked.php:123 -#: src/Module/Moderation/Users/Index.php:139 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "User blocked" msgstr "Uživatel zablokován" -#: src/Module/Moderation/Users/Active.php:125 -#: src/Module/Moderation/Users/Blocked.php:125 -#: src/Module/Moderation/Users/Index.php:141 +#: src/Module/Moderation/Users/Active.php:128 +#: src/Module/Moderation/Users/Blocked.php:128 +#: src/Module/Moderation/Users/Index.php:144 msgid "Site admin" msgstr "Administrátor webu" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:142 +#: src/Module/Moderation/Users/Active.php:129 +#: src/Module/Moderation/Users/Blocked.php:129 +#: src/Module/Moderation/Users/Index.php:145 msgid "Account expired" msgstr "Účtu vypršela platnost" -#: src/Module/Moderation/Users/Active.php:127 -#: src/Module/Moderation/Users/Index.php:145 +#: src/Module/Moderation/Users/Active.php:130 +#: src/Module/Moderation/Users/Index.php:148 msgid "Create a new user" msgstr "" -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:132 -#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:154 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Vybraní uživatelé budou smazáni!\\n\\n Vše, co tito uživatelé na těchto stránkách vytvořili, bude trvale odstraněno!\\n\\nOpravdu chcete pokračovat?" -#: src/Module/Moderation/Users/Active.php:134 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:155 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" @@ -8840,13 +8850,13 @@ msgstr[1] "%s uživatelé odblokováni" msgstr[2] "%s uživatele odblokováno" msgstr[3] "%s uživatelů odblokováno" -#: src/Module/Moderation/Users/Blocked.php:78 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Blocked.php:81 +#: src/Module/Moderation/Users/Index.php:95 #, php-format msgid "User \"%s\" unblocked" msgstr "Uživatel „%s“ odblokován" -#: src/Module/Moderation/Users/Blocked.php:120 +#: src/Module/Moderation/Users/Blocked.php:123 msgid "Blocked Users" msgstr "" @@ -8879,11 +8889,11 @@ msgid "Users awaiting permanent deletion" msgstr "" #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:149 msgid "Permanent deletion" msgstr "Trvalé smazání" -#: src/Module/Moderation/Users/Index.php:136 +#: src/Module/Moderation/Users/Index.php:139 msgid "User waiting for permanent deletion" msgstr "Uživatel čekající na trvalé smazání" @@ -9052,7 +9062,7 @@ msgstr "" msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:91 +#: src/Module/OAuth/Token.php:73 msgid "Unsupported or missing grant type" msgstr "" @@ -9104,7 +9114,7 @@ msgstr "ignorován" msgid "Keep this window open until done." msgstr "Toto okno nechte otevřené až do konce." -#: src/Module/OpenSearch.php:57 +#: src/Module/OpenSearch.php:55 #, php-format msgid "Search in Friendica %s" msgstr "" @@ -9118,12 +9128,12 @@ msgstr "" msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:178 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:180 #, php-format msgid "Invalid photo with id %s." msgstr "Neplatná fotka s ID %s." @@ -9156,15 +9166,15 @@ msgstr "Vložit odkaz na audio" msgid "audio link" msgstr "odkaz na audio" -#: src/Module/Post/Tag/Remove.php:92 +#: src/Module/Post/Tag/Remove.php:93 msgid "Remove Item Tag" msgstr "Odebrat štítek položky" -#: src/Module/Post/Tag/Remove.php:93 +#: src/Module/Post/Tag/Remove.php:94 msgid "Select a tag to remove: " msgstr "Vyberte štítek k odebrání: " -#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Post/Tag/Remove.php:95 #: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Odstranit" @@ -9243,32 +9253,32 @@ msgstr "Komentáře uživatele %s" msgid "%s's timeline" msgstr "Časová osa uživatele %s" -#: src/Module/Profile/Photos.php:153 src/Module/Profile/Photos.php:156 -#: src/Module/Profile/Photos.php:181 +#: src/Module/Profile/Photos.php:157 src/Module/Profile/Photos.php:160 +#: src/Module/Profile/Photos.php:189 #: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "Velikost obrázku překročila limit %s" -#: src/Module/Profile/Photos.php:159 +#: src/Module/Profile/Photos.php:163 msgid "Image upload didn't complete, please try again" msgstr "Nahrávání obrázku nebylo dokončeno, zkuste to prosím znovu" -#: src/Module/Profile/Photos.php:162 +#: src/Module/Profile/Photos.php:166 msgid "Image file is missing" msgstr "Chybí soubor obrázku" -#: src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:171 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "Server v tuto chvíli nemůže akceptovat nové nahrané soubory, prosím kontaktujte vašeho administrátora" -#: src/Module/Profile/Photos.php:189 +#: src/Module/Profile/Photos.php:197 msgid "Image file is empty." msgstr "Soubor obrázku je prázdný." -#: src/Module/Profile/Photos.php:341 +#: src/Module/Profile/Photos.php:349 msgid "View Album" msgstr "Zobrazit album" @@ -9386,15 +9396,15 @@ msgid "" "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:69 +#: src/Module/Profile/Schedule.php:67 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:70 +#: src/Module/Profile/Schedule.php:68 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:71 +#: src/Module/Profile/Schedule.php:69 msgid "Remove post" msgstr "" @@ -9459,7 +9469,7 @@ msgid "Please repeat your e-mail address:" msgstr "" #: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:551 +#: src/Module/Settings/Account.php:513 msgid "New Password:" msgstr "Nové heslo:" @@ -9468,7 +9478,7 @@ msgid "Leave empty for an auto generated password." msgstr "Ponechte prázdné pro automatické vygenerovaní hesla." #: src/Module/Register.php:157 src/Module/Security/PasswordTooLong.php:87 -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Confirm:" msgstr "Potvrďte:" @@ -9652,20 +9662,20 @@ msgstr "Odhlášen." msgid "OpenID protocol error. No ID returned" msgstr "" -#: src/Module/Security/OpenID.php:76 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "" -#: src/Module/Security/OpenID.php:78 +#: src/Module/Security/OpenID.php:80 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:51 +#: src/Module/Settings/Account.php:49 msgid "Passwords do not match." msgstr "Hasla se neshodují." @@ -9674,7 +9684,7 @@ msgid "Password does not need changing." msgstr "" #: src/Module/Security/PasswordTooLong.php:63 -#: src/Module/Settings/Account.php:65 +#: src/Module/Settings/Account.php:63 msgid "Password unchanged." msgstr "Heslo nezměněno." @@ -9694,24 +9704,24 @@ msgid "Update Password" msgstr "" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Current Password:" msgstr "Stávající heslo:" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Your current password to confirm the changes" msgstr "Vaše stávající heslo k potvrzení změn" #: src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:537 +#: src/Module/Settings/Account.php:499 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:538 +#: src/Module/Settings/Account.php:500 msgid "Password length is limited to 72 characters." msgstr "" @@ -9815,129 +9825,121 @@ msgstr "Prosím zadejte kód z vaší autentizační aplikace" msgid "Verify code and complete login" msgstr "Ověřit kód a dokončit přihlášení" -#: src/Module/Settings/Account.php:80 +#: src/Module/Settings/Account.php:78 msgid "Please use a shorter name." msgstr "" -#: src/Module/Settings/Account.php:83 +#: src/Module/Settings/Account.php:81 msgid "Name too short." msgstr "" -#: src/Module/Settings/Account.php:92 +#: src/Module/Settings/Account.php:90 msgid "Wrong Password." msgstr "" -#: src/Module/Settings/Account.php:97 +#: src/Module/Settings/Account.php:95 msgid "Invalid email." msgstr "Neplatný e-mail." -#: src/Module/Settings/Account.php:101 +#: src/Module/Settings/Account.php:99 msgid "Cannot change to that email." msgstr "Nelze změnit na tento e-mail." -#: 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 +#: 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 msgid "Settings were not updated." msgstr "" -#: src/Module/Settings/Account.php:331 -msgid "Contact CSV file upload error" -msgstr "" - -#: src/Module/Settings/Account.php:350 -msgid "Importing Contacts done" -msgstr "" - -#: src/Module/Settings/Account.php:363 +#: src/Module/Settings/Account.php:325 msgid "Relocate message has been send to your contacts" msgstr "Správa o změně umístění byla odeslána vašim kontaktům" -#: src/Module/Settings/Account.php:380 +#: src/Module/Settings/Account.php:342 msgid "Unable to find your profile. Please contact your admin." msgstr "Nelze najít Váš účet. Prosím kontaktujte vašeho administrátora." -#: src/Module/Settings/Account.php:420 +#: src/Module/Settings/Account.php:382 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:430 +#: src/Module/Settings/Account.php:392 msgid "Personal Page Subtypes" msgstr "Podtypy osobních stránek" -#: src/Module/Settings/Account.php:431 +#: src/Module/Settings/Account.php:393 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:442 +#: src/Module/Settings/Account.php:404 msgid "Account for a personal profile." msgstr "Účet pro osobní profil." -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:411 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Účet pro organizaci, který automaticky potvrzuje požadavky o přidání kontaktu jako „Sledující“." -#: src/Module/Settings/Account.php:456 +#: src/Module/Settings/Account.php:418 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Účet pro zpravodaje, který automaticky potvrzuje požadavky o přidání kontaktu jako „Sledující“." -#: src/Module/Settings/Account.php:463 +#: src/Module/Settings/Account.php:425 msgid "Account for community discussions." msgstr "Účet pro komunitní diskuze." -#: src/Module/Settings/Account.php:471 +#: src/Module/Settings/Account.php:433 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Účet pro běžný osobní profil, který vyžaduje manuální potvrzení „Přátel“ a „Sledujících“." -#: src/Module/Settings/Account.php:478 +#: src/Module/Settings/Account.php:440 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Účet pro veřejný profil, který automaticky potvrzuje požadavky o přidání kontaktu jako „Sledující“." -#: src/Module/Settings/Account.php:485 +#: src/Module/Settings/Account.php:447 msgid "Automatically approves all contact requests." msgstr "Automaticky potvrzuje všechny žádosti o přidání kontaktu." -#: src/Module/Settings/Account.php:492 +#: src/Module/Settings/Account.php:454 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:499 +#: src/Module/Settings/Account.php:461 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Účet pro populární profil, který automaticky potvrzuje požadavky o přidání kontaktu jako „Přátele“." -#: src/Module/Settings/Account.php:504 +#: src/Module/Settings/Account.php:466 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:506 +#: src/Module/Settings/Account.php:468 msgid "Requires manual approval of contact requests." msgstr "Vyžaduje manuální potvrzení požadavků o přidání kontaktu." -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Volitelné) Povolit tomuto OpenID přihlášení k tomuto účtu." -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9945,94 +9947,94 @@ msgid "" " system settings." msgstr "Váš profil bude publikován v místním adresáři tohoto serveru. Vaše detaily o profilu mohou být veřejně viditelné v závislosti na systémových nastaveních." -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:491 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "" -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:504 msgid "Account Settings" msgstr "Nastavení účtu" -#: src/Module/Settings/Account.php:543 +#: src/Module/Settings/Account.php:505 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Vaše adresa identity je „%s“ nebo „%s“." -#: src/Module/Settings/Account.php:550 +#: src/Module/Settings/Account.php:512 msgid "Password Settings" msgstr "Nastavení hesla" -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Leave password fields blank unless changing" msgstr "Pokud nechcete změnit heslo, položku hesla nevyplňujte" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Password:" msgstr "Heslo: " -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:557 +#: src/Module/Settings/Account.php:519 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:559 +#: src/Module/Settings/Account.php:521 msgid "Basic Settings" msgstr "Základní nastavení" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:522 #: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:523 msgid "Email Address:" msgstr "E-mailová adresa:" -#: src/Module/Settings/Account.php:562 +#: src/Module/Settings/Account.php:524 msgid "Your Timezone:" msgstr "Vaše časové pásmo:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "Your Language:" msgstr "Váš jazyk:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Nastavte jazyk, který máme používat pro rozhraní Friendica a pro posílání e-mailů" -#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Account.php:526 msgid "Default Post Location:" msgstr "Výchozí poloha příspěvků:" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:527 msgid "Use Browser Location:" msgstr "Používat polohu dle prohlížeče:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:529 msgid "Security and Privacy Settings" msgstr "Nastavení zabezpečení a soukromí" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "Maximum Friend Requests/Day:" msgstr "Maximální počet požadavků o přátelství za den:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "(to prevent spam abuse)" msgstr "(ay se zabránilo spamu)" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 msgid "Allow your profile to be searchable globally?" msgstr "" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 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 " @@ -10040,43 +10042,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 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:573 +#: src/Module/Settings/Account.php:535 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:535 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:574 +#: src/Module/Settings/Account.php:536 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:536 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:575 +#: src/Module/Settings/Account.php:537 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:537 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 " @@ -10084,227 +10086,213 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "Allow friends to post to your profile page?" msgstr "Povolit přátelům umisťování příspěvků na vaši profilovou stránku?" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Vaše kontakty mohou psát příspěvky na vaši profilovou zeď. Tyto příspěvky budou přeposílány vašim kontaktům." -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Allow friends to tag your posts?" msgstr "Povolit přátelům označovat vaše příspěvky?" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Your contacts can add additional tags to your posts." msgstr "Vaše kontakty mohou přidávat k vašim příspěvkům dodatečné štítky." -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:540 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:541 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:542 msgid "Default Post Permissions" msgstr "Výchozí oprávnění pro příspěvek" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:546 msgid "Expiration settings" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "Automatically expire posts after this many days:" msgstr "Automaticky expirovat příspěvky po zadaném počtu dní:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Pokud je prázdné, příspěvky nebudou nikdy expirovat. Expirované příspěvky budou vymazány" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "Expire starred posts" msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 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:592 +#: src/Module/Settings/Account.php:554 msgid "Notification Settings" msgstr "Nastavení oznámení" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:555 msgid "Send a notification email when:" msgstr "Poslat oznámení e-mailem, když:" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:556 msgid "You receive an introduction" msgstr "obdržíte představení" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:557 msgid "Your introductions are confirmed" msgstr "jsou vaše představení potvrzena" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:558 msgid "Someone writes on your profile wall" msgstr "vám někdo napíše na vaši profilovou stránku" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:559 msgid "Someone writes a followup comment" msgstr "Vám někdo napíše následný komentář" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:560 msgid "You receive a private message" msgstr "obdržíte soukromou zprávu" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:561 msgid "You receive a friend suggestion" msgstr "obdržíte návrh přátelství" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:562 msgid "You are tagged in a post" msgstr "jste označen v příspěvku" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:564 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:565 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:566 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:567 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:605 src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:567 src/Module/Settings/Account.php:568 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:568 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:569 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:570 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:571 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Activate desktop notifications" msgstr "Aktivovat desktopová oznámení" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Show desktop popup on new notifications" msgstr "Zobrazit desktopové zprávy při nových oznámeních." -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:577 msgid "Text-only notification emails" msgstr "Pouze textové oznamovací e-maily" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:579 msgid "Send text only notification emails, without the html part" msgstr "Posílat pouze textové oznamovací e-maily, bez HTML části." -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:583 msgid "Show detailled notifications" msgstr "Zobrazit detailní oznámení" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:585 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Ve výchozím nastavení jsou oznámení zhuštěné na jediné oznámení pro každou položku. Pokud je toto povolené, budou zobrazována všechna oznámení." -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:589 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:591 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:632 +#: src/Module/Settings/Account.php:594 msgid "Advanced Account/Page Type Settings" msgstr "Pokročilé nastavení účtu/stránky" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:595 msgid "Change the behaviour of this account for special situations" msgstr "Změnit chování tohoto účtu ve speciálních situacích" -#: src/Module/Settings/Account.php:636 -msgid "Import Contacts" -msgstr "" - -#: src/Module/Settings/Account.php:637 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "" - -#: src/Module/Settings/Account.php:638 -msgid "Upload File" -msgstr "" - -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:598 msgid "Relocate" msgstr "Přemístit" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:599 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 "Pokud jste přemístil/a tento profil z jiného serveru a nějaký z vašich kontaktů nedostává vaše aktualizace, zkuste stisknout toto tlačítko." -#: src/Module/Settings/Account.php:643 +#: src/Module/Settings/Account.php:600 msgid "Resend relocate message to contacts" msgstr "Znovu odeslat správu o přemístění Vašim kontaktům" @@ -10469,214 +10457,232 @@ msgstr "" msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:108 +#: src/Module/Settings/Connectors.php:107 msgid "Failed to connect with email account using the settings provided." msgstr "Nepodařilo se připojit k e-mailovému účtu pomocí dodaného nastavení." -#: src/Module/Settings/Connectors.php:155 -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:150 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:149 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:150 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:161 msgid "Email access is disabled on this site." msgstr "Přístup k e-mailu je na tomto serveru zakázán." -#: src/Module/Settings/Connectors.php:182 -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:176 +#: src/Module/Settings/Connectors.php:226 msgid "None" msgstr "Žádné" -#: src/Module/Settings/Connectors.php:186 +#: src/Module/Settings/Connectors.php:180 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "" -#: src/Module/Settings/Connectors.php:187 +#: src/Module/Settings/Connectors.php:181 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "" -#: src/Module/Settings/Connectors.php:188 +#: src/Module/Settings/Connectors.php:182 msgid "Embed the title in the body" msgstr "" -#: src/Module/Settings/Connectors.php:199 +#: src/Module/Settings/Connectors.php:193 msgid "General Social Media Settings" msgstr "Obecná nastavení sociálních sítí" -#: src/Module/Settings/Connectors.php:202 +#: src/Module/Settings/Connectors.php:196 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:198 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:200 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:207 +#: src/Module/Settings/Connectors.php:201 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:208 +#: src/Module/Settings/Connectors.php:202 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "Attach the link title" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "Article Mode" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "" -#: src/Module/Settings/Connectors.php:218 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "" - -#: src/Module/Settings/Connectors.php:218 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "" - -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:215 msgid "Email/Mailbox Setup" msgstr "Nastavení e-mailu" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:216 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Pokud chcete komunikovat pomocí této služby s vašimi kontakty z e-mailu (volitelné), uveďte, jak se připojit k Vaší e-mailové schránce." -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:217 msgid "Last successful email check:" msgstr "Poslední úspěšná kontrola e-mailu:" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:219 msgid "IMAP server name:" msgstr "Jméno IMAP serveru:" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:220 msgid "IMAP port:" msgstr "IMAP port:" -#: src/Module/Settings/Connectors.php:228 +#: src/Module/Settings/Connectors.php:221 msgid "Security:" msgstr "Zabezpečení:" -#: src/Module/Settings/Connectors.php:229 +#: src/Module/Settings/Connectors.php:222 msgid "Email login name:" msgstr "Přihlašovací jméno k e-mailu:" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:223 msgid "Email password:" msgstr "Heslo k e-mailu:" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:224 msgid "Reply-to address:" msgstr "Odpovědět na adresu:" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:225 msgid "Send public posts to all email contacts:" msgstr "Poslat veřejné příspěvky na všechny e-mailové kontakty:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Action after import:" msgstr "Akce po importu:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Move to folder" msgstr "Přesunout do složky" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:227 msgid "Move to folder:" msgstr "Přesunout do složky:" +#: src/Module/Settings/ContactImport.php:63 +msgid "Contact CSV file upload error" +msgstr "" + +#: src/Module/Settings/ContactImport.php:82 +msgid "Importing Contacts done" +msgstr "" + +#: src/Module/Settings/ContactImport.php:112 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "" + +#: src/Module/Settings/ContactImport.php:113 +msgid "Upload File" +msgstr "" + +#: src/Module/Settings/ContactImport.php:115 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "" + +#: src/Module/Settings/ContactImport.php:115 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "" + #: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "" @@ -11127,42 +11133,42 @@ msgstr "Soukromá klíčová slova:" msgid "(Used for searching profiles, never shown to others)" msgstr "(Používá se pro vyhledávání profilů, není nikdy zobrazeno ostatním)" -#: 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/Crop.php:90 +#: src/Module/Settings/Profile/Photo/Crop.php:108 +#: src/Module/Settings/Profile/Photo/Crop.php:126 #: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Nepodařilo se snížit velikost obrázku [%s]." -#: src/Module/Settings/Profile/Photo/Crop.php:136 +#: src/Module/Settings/Profile/Photo/Crop.php:133 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Znovu načtěte stránku (Shift+F5) nebo vymažte cache prohlížeče, pokud se nová fotka nezobrazí okamžitě." -#: src/Module/Settings/Profile/Photo/Crop.php:141 +#: src/Module/Settings/Profile/Photo/Crop.php:138 msgid "Unable to process image" msgstr "Obrázek nelze zpracovat " -#: src/Module/Settings/Profile/Photo/Crop.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:157 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:182 +#: src/Module/Settings/Profile/Photo/Crop.php:179 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:208 -#: src/Module/Settings/Profile/Photo/Crop.php:212 +#: src/Module/Settings/Profile/Photo/Crop.php:205 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Crop Image" msgstr "Oříznout obrázek" -#: src/Module/Settings/Profile/Photo/Crop.php:209 +#: src/Module/Settings/Profile/Photo/Crop.php:206 msgid "Please adjust the image cropping for optimum viewing." msgstr "Prosím, ořízněte tento obrázek pro optimální zobrazení." -#: src/Module/Settings/Profile/Photo/Crop.php:211 +#: src/Module/Settings/Profile/Photo/Crop.php:208 msgid "Use Image As Is" msgstr "" @@ -11233,17 +11239,17 @@ msgstr "Uživatelské ID je %d" msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:116 +#: src/Module/Settings/RemoveMe.php:114 msgid "Remove My Account" msgstr "Odstranit můj účet" -#: src/Module/Settings/RemoveMe.php:117 +#: src/Module/Settings/RemoveMe.php:115 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odstraněn, nebude už možné ho obnovit." -#: src/Module/Settings/RemoveMe.php:122 +#: src/Module/Settings/RemoveMe.php:120 msgid "Please enter your password for verification:" msgstr "Prosím, zadejte své heslo pro ověření:" @@ -11638,11 +11644,11 @@ msgstr "" msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:64 +#: src/Module/Special/HTTPException.php:65 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:69 +#: src/Module/Special/HTTPException.php:70 #, php-format msgid "Exception thrown in %s:%d" msgstr "" @@ -12427,221 +12433,221 @@ msgstr "Pokud nechcete dostávat tyto zprávy, kontaktujte prosím odesílatele msgid "%s posted an update." msgstr "%s poslal/a aktualizaci." -#: src/Object/Post.php:124 +#: src/Object/Post.php:125 msgid "Private Message" msgstr "Soukromá zpráva" -#: src/Object/Post.php:128 +#: src/Object/Post.php:129 msgid "Public Message" msgstr "" -#: src/Object/Post.php:132 +#: src/Object/Post.php:133 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:168 +#: src/Object/Post.php:169 msgid "This entry was edited" msgstr "Tato položka byla upravena" -#: src/Object/Post.php:196 +#: src/Object/Post.php:197 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:225 src/Object/Post.php:227 +#: src/Object/Post.php:226 src/Object/Post.php:228 msgid "Edit" msgstr "Upravit" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Delete globally" msgstr "Smazat globálně" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Remove locally" msgstr "Odstranit lokálně" -#: src/Object/Post.php:268 +#: src/Object/Post.php:269 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:273 +#: src/Object/Post.php:274 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:278 +#: src/Object/Post.php:279 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:282 +#: src/Object/Post.php:283 msgid "Report post" msgstr "" -#: src/Object/Post.php:293 +#: src/Object/Post.php:294 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will attend" msgstr "zúčastním se" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will not attend" msgstr "nezúčastním se" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I might attend" msgstr "mohl bych se zúčastnit" -#: src/Object/Post.php:380 +#: src/Object/Post.php:381 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:381 +#: src/Object/Post.php:382 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:382 +#: src/Object/Post.php:383 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:392 +#: src/Object/Post.php:393 msgid "Add star" msgstr "" -#: src/Object/Post.php:393 +#: src/Object/Post.php:394 msgid "Remove star" msgstr "" -#: src/Object/Post.php:394 +#: src/Object/Post.php:395 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:405 +#: src/Object/Post.php:406 msgid "Pin" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:407 msgid "Unpin" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:408 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:410 +#: src/Object/Post.php:411 msgid "Pinned" msgstr "" -#: src/Object/Post.php:415 +#: src/Object/Post.php:416 msgid "Add tag" msgstr "" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare" msgstr "" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Unshare" msgstr "" -#: src/Object/Post.php:478 +#: src/Object/Post.php:479 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:514 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:517 +#: src/Object/Post.php:518 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:519 +#: src/Object/Post.php:520 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:543 +#: src/Object/Post.php:544 msgid "to" msgstr "na" -#: src/Object/Post.php:544 +#: src/Object/Post.php:545 msgid "via" msgstr "přes" -#: src/Object/Post.php:545 +#: src/Object/Post.php:546 msgid "Wall-to-Wall" msgstr "Ze zdi na zeď" -#: src/Object/Post.php:546 +#: src/Object/Post.php:547 msgid "via Wall-To-Wall:" msgstr "ze zdi na zeď" -#: src/Object/Post.php:599 +#: src/Object/Post.php:600 #, php-format msgid "Reply to %s" msgstr "Odpovědět uživateli %s" -#: src/Object/Post.php:602 +#: src/Object/Post.php:603 msgid "More" msgstr "" -#: src/Object/Post.php:621 +#: src/Object/Post.php:622 msgid "Notifier task is pending" msgstr "Úloha pro notifiera čeká" -#: src/Object/Post.php:622 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is pending" msgstr "Doručení vzdáleným serverům čeká" -#: src/Object/Post.php:623 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is underway" msgstr "Doručení vzdáleným serverům je v plném proudu" -#: src/Object/Post.php:624 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is mostly done" msgstr "Doručení vzdáleným serverům je téměř hotovo" -#: src/Object/Post.php:625 +#: src/Object/Post.php:626 msgid "Delivery to remote servers is done" msgstr "Doručení vzdáleným serverům je hotovo" -#: src/Object/Post.php:647 +#: src/Object/Post.php:648 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -12650,74 +12656,74 @@ msgstr[1] "%d komentáře" msgstr[2] "%d komentáře" msgstr[3] "%d komentářů" -#: src/Object/Post.php:648 +#: src/Object/Post.php:649 msgid "Show more" msgstr "Zobrazit více" -#: src/Object/Post.php:649 +#: src/Object/Post.php:650 msgid "Show fewer" msgstr "Zobrazit méně" -#: src/Object/Post.php:686 +#: src/Object/Post.php:687 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:691 +#: src/Object/Post.php:692 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:696 +#: src/Object/Post.php:697 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:701 +#: src/Object/Post.php:702 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:706 +#: src/Object/Post.php:707 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:711 +#: src/Object/Post.php:712 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:716 +#: src/Object/Post.php:717 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:721 +#: src/Object/Post.php:722 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:726 +#: src/Object/Post.php:727 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:731 +#: src/Object/Post.php:732 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:754 +#: src/Object/Post.php:755 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:557 +#: src/Protocol/ActivityPub/Receiver.php:558 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:530 +#: src/Protocol/Delivery.php:531 msgid "(no subject)" msgstr "" @@ -12730,20 +12736,20 @@ msgstr "" msgid "Login failed." msgstr "Přihlášení se nezdařilo." -#: src/Security/Authentication.php:260 +#: src/Security/Authentication.php:261 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:374 #, php-format msgid "Welcome %s" msgstr "Vítejte, %s" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:375 msgid "Please upload a profile photo." msgstr "Prosím nahrajte profilovou fotku." -#: src/Security/OpenWebAuth.php:149 +#: src/Security/OpenWebAuth.php:150 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s vítá uživatele %2$s" diff --git a/view/lang/de/messages.po b/view/lang/de/messages.po index cb7bf4e42f..b2c84a3ee1 100644 --- a/view/lang/de/messages.po +++ b/view/lang/de/messages.po @@ -58,9 +58,9 @@ 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: Tobias Diekershoff , 2016-2024\n" +"Last-Translator: haheute , 2023-2024\n" "Language-Team: German (http://app.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,34 +68,34 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\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 "Konnte den Originalbeitrag nicht finden." -#: mod/item.php:127 +#: mod/item.php:126 msgid "Post updated." msgstr "Beitrag aktualisiert." -#: mod/item.php:192 mod/item.php:196 +#: mod/item.php:191 mod/item.php:195 msgid "Item wasn't stored." msgstr "Eintrag wurde nicht gespeichert" -#: mod/item.php:206 +#: mod/item.php:205 msgid "Item couldn't be fetched." msgstr "Eintrag konnte nicht geholt werden." -#: mod/item.php:250 mod/item.php:254 +#: mod/item.php:249 mod/item.php:253 msgid "Empty post discarded." msgstr "Leerer Beitrag wurde verworfen." -#: 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 "Beitrag nicht gefunden." -#: 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 @@ -106,7 +106,7 @@ msgstr "Beitrag nicht gefunden." #: 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 @@ -115,13 +115,15 @@ msgstr "Beitrag nicht gefunden." #: 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 @@ -130,15 +132,15 @@ msgstr "Beitrag nicht gefunden." msgid "Permission denied." msgstr "Zugriff verweigert." -#: mod/lostpass.php:28 +#: mod/lostpass.php:27 msgid "No valid account found." msgstr "Kein gültiges Konto gefunden." -#: mod/lostpass.php:40 +#: mod/lostpass.php:39 msgid "Password reset request issued. Check your email." msgstr "Zurücksetzen des Passworts eingeleitet. Bitte überprüfe Deine E-Mail." -#: mod/lostpass.php:46 +#: mod/lostpass.php:45 #, php-format msgid "" "\n" @@ -154,7 +156,7 @@ msgid "" "\t\tissued this request." msgstr "\nHallo %1$s,\n\nAuf \"%2$s\" ist eine Anfrage auf das Zurücksetzen deines Passworts gestellt\nworden. Um diese Anfrage zu verifizieren, folge bitte dem unten stehenden\nLink oder kopiere und füge ihn in die Adressleiste deines Browsers ein.\n\nSolltest du die Anfrage NICHT gestellt haben, ignoriere und/oder lösche diese\nE-Mail bitte.\n\nDein Passwort wird nicht geändert, solange wir nicht verifiziert haben, dass\ndu diese Änderung angefragt hast." -#: mod/lostpass.php:57 +#: mod/lostpass.php:56 #, php-format msgid "" "\n" @@ -171,70 +173,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\nUm deine Identität zu verifizieren, folge bitte diesem Link:\n\n%1$s\n\nDu wirst eine weitere E-Mail mit deinem neuen Passwort erhalten. Sobald du dich\nangemeldet hast, kannst du dein Passwort in den Einstellungen ändern.\n\nDie Anmeldedetails sind die folgenden:\n\nAdresse der Seite:\t%2$s\nBenutzername:\t%3$s" -#: mod/lostpass.php:72 +#: mod/lostpass.php:71 #, php-format msgid "Password reset requested at %s" msgstr "Anfrage zum Zurücksetzen des Passworts auf %s erhalten" -#: mod/lostpass.php:88 +#: mod/lostpass.php:87 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "Anfrage konnte nicht verifiziert werden. (Eventuell hast du bereits eine ähnliche Anfrage gestellt.) Zurücksetzen des Passworts gescheitert." -#: mod/lostpass.php:101 +#: mod/lostpass.php:100 msgid "Request has expired, please make a new one." msgstr "Die Anfrage ist abgelaufen. Bitte stelle eine erneute." -#: mod/lostpass.php:116 +#: mod/lostpass.php:115 msgid "Forgot your Password?" msgstr "Hast du dein Passwort vergessen?" -#: 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 "Gib Deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet." -#: 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 "Spitzname oder E-Mail:" -#: mod/lostpass.php:119 +#: mod/lostpass.php:118 msgid "Reset" msgstr "Zurücksetzen" -#: mod/lostpass.php:134 src/Module/Security/Login.php:161 +#: mod/lostpass.php:133 src/Module/Security/Login.php:161 msgid "Password Reset" msgstr "Passwort zurücksetzen" -#: mod/lostpass.php:135 +#: mod/lostpass.php:134 msgid "Your password has been reset as requested." msgstr "Dein Passwort wurde wie gewünscht zurückgesetzt." -#: mod/lostpass.php:136 +#: mod/lostpass.php:135 msgid "Your new password is" msgstr "Dein neues Passwort lautet" -#: mod/lostpass.php:137 +#: mod/lostpass.php:136 msgid "Save or copy your new password - and then" msgstr "Speichere oder kopiere dein neues Passwort - und dann" -#: mod/lostpass.php:138 +#: mod/lostpass.php:137 msgid "click here to login" msgstr "hier klicken, um dich anzumelden" -#: mod/lostpass.php:139 +#: mod/lostpass.php:138 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Du kannst das Passwort in den Einstellungen ändern, sobald du dich erfolgreich angemeldet hast." -#: mod/lostpass.php:143 +#: mod/lostpass.php:142 msgid "Your password has been reset." msgstr "Dein Passwort wurde zurückgesetzt." -#: mod/lostpass.php:146 +#: mod/lostpass.php:145 #, php-format msgid "" "\n" @@ -245,7 +247,7 @@ msgid "" "\t\t" msgstr "\nHallo %1$s,\n\nDein Passwort wurde wie gewünscht geändert. Bitte bewahre diese Informationen gut auf (oder ändere dein Passwort in eines, das du dir leicht merken kannst)." -#: mod/lostpass.php:152 +#: mod/lostpass.php:151 #, php-format msgid "" "\n" @@ -259,7 +261,7 @@ msgid "" "\t\t" msgstr "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1$s\nLogin Name: %2$s\nPasswort: %3$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden." -#: mod/lostpass.php:164 +#: mod/lostpass.php:163 #, php-format msgid "Your password has been changed at %s" msgstr "Auf %s wurde dein Passwort geändert" @@ -323,11 +325,11 @@ msgstr "An:" msgid "Subject:" msgstr "Betreff:" -#: 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 "Deine Nachricht:" -#: 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 "Foto hochladen" @@ -336,16 +338,16 @@ msgstr "Foto hochladen" msgid "Insert web link" msgstr "Einen Link einfügen" -#: 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 "Bitte warten" -#: 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 @@ -353,7 +355,7 @@ msgstr "Bitte warten" #: 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 @@ -362,7 +364,7 @@ msgstr "Bitte warten" #: 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" @@ -420,396 +422,396 @@ msgid_plural "%d messages" msgstr[0] "%d Nachricht" msgstr[1] "%d Nachrichten" -#: mod/notes.php:40 src/Module/BaseProfile.php:93 +#: mod/notes.php:41 src/Module/BaseProfile.php:93 msgid "Personal Notes" msgstr "Persönliche Notizen" -#: mod/notes.php:44 +#: mod/notes.php:45 msgid "Personal notes are visible only by yourself." msgstr "Persönliche Notizen sind nur für dich sichtbar." -#: 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 "Speichern" -#: 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 "Benutzer nicht gefunden." -#: 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 "Fotoalben" -#: 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 "Neueste Fotos" -#: 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 "Neue Fotos hochladen" -#: 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 "jeder" -#: mod/photos.php:142 +#: mod/photos.php:140 msgid "Contact information unavailable" msgstr "Kontaktinformationen nicht verfügbar" -#: mod/photos.php:171 +#: mod/photos.php:169 msgid "Album not found." msgstr "Album nicht gefunden." -#: mod/photos.php:227 +#: mod/photos.php:225 msgid "Album successfully deleted" msgstr "Album wurde erfolgreich gelöscht." -#: mod/photos.php:229 +#: mod/photos.php:227 msgid "Album was empty." msgstr "Album ist leer." -#: mod/photos.php:260 +#: mod/photos.php:258 msgid "Failed to delete the photo." msgstr "Das Foto konnte nicht gelöscht werden." -#: mod/photos.php:504 +#: mod/photos.php:502 msgid "a photo" msgstr "einem Foto" -#: mod/photos.php:504 +#: mod/photos.php:502 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s wurde von %3$s in %2$s getaggt" -#: 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 "Öffentlicher Zugriff verweigert." -#: mod/photos.php:546 +#: mod/photos.php:544 msgid "No photos selected" msgstr "Keine Bilder ausgewählt" -#: mod/photos.php:674 +#: mod/photos.php:672 #, php-format msgid "The maximum accepted image size is %s" msgstr "Die maximale erlaubte Größe von Bildern beträgt %s" -#: mod/photos.php:681 +#: mod/photos.php:679 msgid "Upload Photos" msgstr "Bilder hochladen" -#: mod/photos.php:685 mod/photos.php:774 +#: mod/photos.php:683 mod/photos.php:772 msgid "New album name: " msgstr "Name des neuen Albums: " -#: mod/photos.php:686 +#: mod/photos.php:684 msgid "or select existing album:" msgstr "oder wähle ein bestehendes Album:" -#: mod/photos.php:687 +#: mod/photos.php:685 msgid "Do not show a status post for this upload" msgstr "Keine Status-Mitteilung für diesen Beitrag anzeigen" -#: 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 "Berechtigungen" -#: mod/photos.php:755 +#: mod/photos.php:753 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Möchtest du wirklich dieses Foto-Album und all seine Foto löschen?" -#: mod/photos.php:756 mod/photos.php:779 +#: mod/photos.php:754 mod/photos.php:777 msgid "Delete Album" msgstr "Album löschen" -#: 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 "Abbrechen" -#: mod/photos.php:783 +#: mod/photos.php:781 msgid "Edit Album" msgstr "Album bearbeiten" -#: mod/photos.php:784 +#: mod/photos.php:782 msgid "Drop Album" msgstr "Album löschen" -#: mod/photos.php:788 +#: mod/photos.php:786 msgid "Show Newest First" msgstr "Zeige neueste zuerst" -#: mod/photos.php:790 +#: mod/photos.php:788 msgid "Show Oldest First" msgstr "Zeige älteste zuerst" -#: mod/photos.php:811 src/Module/Profile/Photos.php:335 +#: mod/photos.php:809 src/Module/Profile/Photos.php:343 msgid "View Photo" msgstr "Foto betrachten" -#: mod/photos.php:843 +#: mod/photos.php:841 msgid "Permission denied. Access to this item may be restricted." msgstr "Zugriff verweigert. Zugriff zu diesem Eintrag könnte eingeschränkt sein." -#: mod/photos.php:845 +#: mod/photos.php:843 msgid "Photo not available" msgstr "Foto nicht verfügbar" -#: mod/photos.php:855 +#: mod/photos.php:853 msgid "Do you really want to delete this photo?" msgstr "Möchtest du wirklich dieses Foto löschen?" -#: mod/photos.php:856 mod/photos.php:1056 +#: mod/photos.php:854 mod/photos.php:1054 msgid "Delete Photo" msgstr "Foto löschen" -#: mod/photos.php:954 +#: mod/photos.php:952 msgid "View photo" msgstr "Fotos ansehen" -#: mod/photos.php:956 +#: mod/photos.php:954 msgid "Edit photo" msgstr "Foto bearbeiten" -#: mod/photos.php:957 +#: mod/photos.php:955 msgid "Delete photo" msgstr "Foto löschen" -#: mod/photos.php:958 +#: mod/photos.php:956 msgid "Use as profile photo" msgstr "Als Profilbild verwenden" -#: mod/photos.php:965 +#: mod/photos.php:963 msgid "Private Photo" msgstr "Privates Foto" -#: mod/photos.php:971 +#: mod/photos.php:969 msgid "View Full Size" msgstr "Betrachte Originalgröße" -#: mod/photos.php:1024 +#: mod/photos.php:1022 msgid "Tags: " msgstr "Tags: " -#: mod/photos.php:1027 +#: mod/photos.php:1025 msgid "[Select tags to remove]" msgstr "[Zu entfernende Tags auswählen]" -#: mod/photos.php:1042 +#: mod/photos.php:1040 msgid "New album name" msgstr "Name des neuen Albums" -#: mod/photos.php:1043 +#: mod/photos.php:1041 msgid "Caption" msgstr "Bildunterschrift" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "Add a Tag" msgstr "Tag hinzufügen" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Beispiel: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1045 +#: mod/photos.php:1043 msgid "Do not rotate" msgstr "Nicht rotieren" -#: mod/photos.php:1046 +#: mod/photos.php:1044 msgid "Rotate CW (right)" msgstr "Drehen US (rechts)" -#: mod/photos.php:1047 +#: mod/photos.php:1045 msgid "Rotate CCW (left)" msgstr "Drehen EUS (links)" -#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: mod/photos.php:1091 mod/photos.php:1147 mod/photos.php:1227 #: src/Module/Contact.php:600 src/Module/Item/Compose.php:184 -#: src/Object/Post.php:1142 +#: src/Object/Post.php:1143 msgid "This is you" msgstr "Das bist du" -#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 -#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:598 -#: src/Object/Post.php:1144 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:599 +#: src/Object/Post.php:1145 msgid "Comment" msgstr "Kommentar" -#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 -#: src/Content/Conversation.php:401 src/Module/Calendar/Event/Form.php:234 +#: 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 -#: src/Object/Post.php:1158 +#: src/Object/Post.php:1159 msgid "Preview" msgstr "Vorschau" -#: mod/photos.php:1098 src/Content/Conversation.php:355 -#: src/Module/Post/Edit.php:121 src/Object/Post.php:1146 +#: mod/photos.php:1096 src/Content/Conversation.php:357 +#: src/Module/Post/Edit.php:121 src/Object/Post.php:1147 msgid "Loading..." msgstr "lädt..." -#: mod/photos.php:1190 src/Content/Conversation.php:1485 -#: src/Object/Post.php:260 +#: mod/photos.php:1188 src/Content/Conversation.php:1487 +#: src/Object/Post.php:261 msgid "Select" msgstr "Auswählen" -#: mod/photos.php:1191 src/Content/Conversation.php:1486 -#: 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:233 +#: 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 +#: src/Module/Settings/Connectors.php:226 #: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Löschen" -#: mod/photos.php:1252 src/Object/Post.php:426 +#: mod/photos.php:1250 src/Object/Post.php:427 msgid "Like" msgstr "Mag ich" -#: mod/photos.php:1253 src/Object/Post.php:426 +#: mod/photos.php:1251 src/Object/Post.php:427 msgid "I like this (toggle)" msgstr "Ich mag das (toggle)" -#: mod/photos.php:1254 src/Object/Post.php:427 +#: mod/photos.php:1252 src/Object/Post.php:428 msgid "Dislike" msgstr "Mag ich nicht" -#: mod/photos.php:1256 src/Object/Post.php:427 +#: mod/photos.php:1254 src/Object/Post.php:428 msgid "I don't like this (toggle)" msgstr "Ich mag das nicht (toggle)" -#: mod/photos.php:1278 +#: mod/photos.php:1276 msgid "Map" msgstr "Karte" -#: src/App.php:467 +#: src/App.php:255 msgid "Apologies but the website is unavailable at the moment." msgstr "Entschuldigung, aber die Webseite ist derzeit nicht erreichbar." -#: src/App/Page.php:237 +#: src/App/Page.php:241 msgid "Delete this item?" msgstr "Diesen Beitrag löschen?" -#: src/App/Page.php:238 +#: src/App/Page.php:242 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 "Soll dieser Autor geblockt werden? Sie werden nicht in der Lage sein, dir zu folgen oder deine öffentlichen Beiträge zu sehen. Außerdem wirst du nicht in der Lage sein ihre Beiträge und Benachrichtigungen zu lesen." -#: src/App/Page.php:239 +#: src/App/Page.php:243 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "Diesen Autor ignorieren? Du wirst seine Beiträge und Benachrichtigungen nicht mehr sehen können." -#: src/App/Page.php:240 +#: src/App/Page.php:244 msgid "Collapse this author's posts?" msgstr "Beiträge dieses Autors zusammenklappen?" -#: src/App/Page.php:241 +#: src/App/Page.php:245 msgid "Ignore this author's server?" msgstr "Den Server dieses Autors ignorieren?" -#: src/App/Page.php:242 src/Module/Settings/Server/Action.php:47 +#: src/App/Page.php:246 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 "Du wirst keine Inhalte von dieser Instanz sehen, auch nicht das erneute Teilen auf Ihrer Netzwerkseite, den Gemeinschaftsseiten und einzelnen Unterhaltungen." -#: src/App/Page.php:244 +#: src/App/Page.php:248 msgid "Like not successful" msgstr "Das \"Mag ich\" war nicht erfolgreich" -#: src/App/Page.php:245 +#: src/App/Page.php:249 msgid "Dislike not successful" msgstr "Das \"Mag ich nicht\" war nicht erfolgreich" -#: src/App/Page.php:246 +#: src/App/Page.php:250 msgid "Sharing not successful" msgstr "Das Teilen war nicht erfolgreich" -#: src/App/Page.php:247 +#: src/App/Page.php:251 msgid "Attendance unsuccessful" msgstr "Die Teilnahme war nicht erfolgreich" -#: src/App/Page.php:248 +#: src/App/Page.php:252 msgid "Backend error" msgstr "Fehler im Backend" -#: src/App/Page.php:249 +#: src/App/Page.php:253 msgid "Network error" msgstr "Netzwerkfehler" -#: src/App/Page.php:252 +#: src/App/Page.php:256 msgid "Drop files here to upload" msgstr "Ziehe Dateien hierher, um sie hochzuladen" -#: src/App/Page.php:253 +#: src/App/Page.php:257 msgid "Your browser does not support drag and drop file uploads." msgstr "Dein Browser unterstützt das Hochladen von Dateien per Drag & Drop nicht." -#: src/App/Page.php:254 +#: src/App/Page.php:258 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "Bitte verwende das unten stehende Formular, um Ihre Dateien wie früher hochzuladen." -#: src/App/Page.php:255 +#: src/App/Page.php:259 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "Datei ist zu groß ({{filesize}}MiB). Maximale Dateigröße: {{maxFilesize}}MiB." -#: src/App/Page.php:256 +#: src/App/Page.php:260 msgid "You can't upload files of this type." msgstr "Du kannst keine Dateien dieses Typs hochladen." -#: src/App/Page.php:257 +#: src/App/Page.php:261 msgid "Server responded with {{statusCode}} code." msgstr "Der Server antwortete mit Status-Code {{statusCode}} " -#: src/App/Page.php:258 +#: src/App/Page.php:262 msgid "Cancel upload" msgstr "Hochladen abbrechen" -#: src/App/Page.php:259 +#: src/App/Page.php:263 msgid "Upload canceled." msgstr "Hochladen abgebrochen" -#: src/App/Page.php:260 +#: src/App/Page.php:264 msgid "Are you sure you want to cancel this upload?" msgstr "Bist du sicher, dass du diesen Upload abbrechen möchten?" -#: src/App/Page.php:261 +#: src/App/Page.php:265 msgid "Remove file" msgstr "Datei entfernen" -#: src/App/Page.php:262 +#: src/App/Page.php:266 msgid "You can't upload any more files." msgstr "Du kannst keine weiteren Dateien hochladen." -#: src/App/Page.php:346 +#: src/App/Page.php:350 msgid "toggle mobile" msgstr "mobile Ansicht umschalten" @@ -842,7 +844,7 @@ msgid "All contacts" msgstr "Alle Kontakte" #: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 -#: src/Content/Widget.php:254 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Content/Widget.php:254 src/Core/ACL.php:182 src/Module/Contact.php:395 #: src/Module/Privacy/PermissionTooltip.php:150 #: src/Module/Privacy/PermissionTooltip.php:172 #: src/Module/Settings/Channels.php:146 @@ -884,7 +886,7 @@ msgstr "Für die URL (%s) konnte kein nicht-archivierter Kontakt gefunden werden msgid "The contact entries have been archived" msgstr "Die Kontakteinträge wurden archiviert." -#: src/Console/ClearAvatarCache.php:73 +#: src/Console/ClearAvatarCache.php:74 msgid "" "The avatar cache needs to be disabled in local.config.php to use this " "command." @@ -970,22 +972,22 @@ msgstr "Der Zwischenspeicher für Kontaktprofilbilder muss aktiviert sein, um di msgid "no resource in photo %s" msgstr "keine Ressource im Foto %s" -#: src/Console/MoveToAvatarCache.php:123 +#: src/Console/MoveToAvatarCache.php:127 #, php-format msgid "no photo with id %s" msgstr "es existiert kein Foto mit der ID %s" -#: src/Console/MoveToAvatarCache.php:132 +#: src/Console/MoveToAvatarCache.php:136 #, php-format msgid "no image data for photo with id %s" msgstr "es gibt eine Bilddaten für das Foto mit der ID %s" -#: src/Console/MoveToAvatarCache.php:141 +#: src/Console/MoveToAvatarCache.php:145 #, php-format msgid "invalid image for id %s" msgstr "ungültiges Bild für die ID %s" -#: src/Console/MoveToAvatarCache.php:154 +#: src/Console/MoveToAvatarCache.php:158 #, php-format msgid "Quit on invalid photo %s" msgstr "Abbruch bei ungültigem Foto %s" @@ -1015,11 +1017,14 @@ msgstr "Alle ausstehenden Post-Updates wurden ausgeführt." msgid "Enter user nickname: " msgstr "Spitzname angeben:" -#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Console/User.php:168 src/Model/User.php:830 #: src/Module/Api/Twitter/ContactEndpoint.php:62 -#: 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/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/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "Nutzer nicht gefunden" @@ -1029,12 +1034,12 @@ msgid "Enter new password: " msgstr "Neues Passwort eingeben:" #: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 -#: src/Module/Settings/Account.php:59 +#: src/Module/Settings/Account.php:57 msgid "Password update failed. Please try again." msgstr "Aktualisierung des Passworts gescheitert, bitte versuche es noch einmal." #: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 -#: src/Module/Settings/Account.php:62 +#: src/Module/Settings/Account.php:60 msgid "Password changed." msgstr "Passwort geändert." @@ -1115,86 +1120,86 @@ msgstr "Wöchentlich" msgid "Monthly" msgstr "Monatlich" -#: src/Content/ContactSelector.php:118 +#: src/Content/ContactSelector.php:117 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:119 +#: src/Content/ContactSelector.php:118 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:120 +#: src/Content/ContactSelector.php:119 msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:121 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Content/ContactSelector.php:120 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:58 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "E-Mail" -#: src/Content/ContactSelector.php:122 src/Module/Debug/Babel.php:273 +#: src/Content/ContactSelector.php:121 src/Module/Debug/Babel.php:273 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:123 +#: src/Content/ContactSelector.php:122 msgid "Zot!" msgstr "Zott" -#: src/Content/ContactSelector.php:124 +#: src/Content/ContactSelector.php:123 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:125 +#: src/Content/ContactSelector.php:124 msgid "XMPP/IM" msgstr "XMPP/Chat" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:125 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:126 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:127 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:129 +#: src/Content/ContactSelector.php:128 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:130 +#: src/Content/ContactSelector.php:129 msgid "Discourse" msgstr "Discourse" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:130 msgid "Diaspora Connector" msgstr "Diaspora Connector" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:131 msgid "GNU Social Connector" msgstr "GNU Social Connector" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:132 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:133 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:134 msgid "Tumblr" msgstr "Tumblr" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:135 msgid "Bluesky" msgstr "Bluesky" @@ -1203,374 +1208,374 @@ msgstr "Bluesky" msgid "%s (via %s)" msgstr "%s (via %s)" -#: src/Content/Conversation.php:213 +#: src/Content/Conversation.php:215 msgid "and" msgstr "und" -#: src/Content/Conversation.php:216 +#: src/Content/Conversation.php:218 #, php-format msgid "and %d other people" msgstr "und %dandere" -#: src/Content/Conversation.php:222 +#: src/Content/Conversation.php:224 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." msgstr[0] "%2$s mag das." msgstr[1] "%2$s mögen das." -#: src/Content/Conversation.php:224 +#: src/Content/Conversation.php:226 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." msgstr[0] "%2$s mag das nicht." msgstr[1] "%2$s mögen das nicht." -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:228 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." msgstr[0] "%2$s nimmt teil." msgstr[1] "%2$s nehmen teil." -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:230 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." msgstr[0] "%2$s nimmt nicht teil." msgstr[1] "%2$s nehmen nicht teil." -#: src/Content/Conversation.php:230 +#: src/Content/Conversation.php:232 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." msgstr[0] "%2$s nimmt eventuell teil." msgstr[1] "%2$s nehmen eventuell teil." -#: src/Content/Conversation.php:232 +#: src/Content/Conversation.php:234 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." msgstr[0] "%2$s hat dies geteilt." msgstr[1] "%2$s haben dies geteilt." -#: src/Content/Conversation.php:263 +#: src/Content/Conversation.php:265 #, php-format msgid " likes this" msgid_plural " like this" msgstr[0] " mag das" msgstr[1] " mögen das" -#: src/Content/Conversation.php:266 +#: src/Content/Conversation.php:268 #, php-format msgid " doesn't like this" msgid_plural " don't like this" msgstr[0] " mag das nicht" msgstr[1] " mögen das nicht" -#: src/Content/Conversation.php:269 +#: src/Content/Conversation.php:271 #, php-format msgid " attends" msgid_plural " attend" msgstr[0] " besucht" msgstr[1] " besuchen" -#: src/Content/Conversation.php:272 +#: src/Content/Conversation.php:274 #, php-format msgid " doesn't attend" msgid_plural " don't attend" msgstr[0] " besucht nicht" msgstr[1] " besuchen nicht" -#: src/Content/Conversation.php:275 +#: src/Content/Conversation.php:277 #, php-format msgid " attends maybe" msgid_plural " attend maybe" msgstr[0] " besucht vielleicht" msgstr[1] " besuchen vielleicht" -#: src/Content/Conversation.php:278 +#: src/Content/Conversation.php:280 #, php-format msgid " reshared this" msgid_plural " reshared this" msgstr[0] " teilte dies erneut" msgstr[1] " teilten dies erneut" -#: src/Content/Conversation.php:324 +#: src/Content/Conversation.php:326 msgid "Visible to everybody" msgstr "Für jedermann sichtbar" -#: src/Content/Conversation.php:325 src/Module/Item/Compose.php:196 -#: src/Object/Post.php:1157 +#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196 +#: src/Object/Post.php:1158 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Bitte gib eine Bild/Video/Audio/Webseiten-URL ein:" -#: src/Content/Conversation.php:326 +#: src/Content/Conversation.php:328 msgid "Tag term:" msgstr "Tag:" -#: src/Content/Conversation.php:327 src/Module/Filer/SaveTag.php:59 +#: src/Content/Conversation.php:329 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "In diesem Ordner speichern:" -#: src/Content/Conversation.php:328 +#: src/Content/Conversation.php:330 msgid "Where are you right now?" msgstr "Wo hältst du dich jetzt gerade auf?" -#: src/Content/Conversation.php:329 +#: src/Content/Conversation.php:331 msgid "Delete item(s)?" msgstr "Einträge löschen?" -#: src/Content/Conversation.php:341 src/Module/Item/Compose.php:171 +#: src/Content/Conversation.php:343 src/Module/Item/Compose.php:171 msgid "Created at" msgstr "Erstellt am" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:353 msgid "New Post" msgstr "Neuer Beitrag" -#: src/Content/Conversation.php:354 +#: src/Content/Conversation.php:356 msgid "Share" msgstr "Teilen" -#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:123 +#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:123 msgid "upload photo" msgstr "Bild hochladen" -#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:124 +#: src/Content/Conversation.php:360 src/Module/Post/Edit.php:124 msgid "Attach file" msgstr "Datei anhängen" -#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:125 +#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:125 msgid "attach file" msgstr "Datei anhängen" -#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:186 -#: src/Module/Post/Edit.php:162 src/Object/Post.php:1147 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1148 msgid "Bold" msgstr "Fett" -#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:187 -#: src/Module/Post/Edit.php:163 src/Object/Post.php:1148 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1149 msgid "Italic" msgstr "Kursiv" -#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:188 -#: src/Module/Post/Edit.php:164 src/Object/Post.php:1149 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1150 msgid "Underline" msgstr "Unterstrichen" -#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:189 -#: src/Module/Post/Edit.php:165 src/Object/Post.php:1151 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:165 src/Object/Post.php:1152 msgid "Quote" msgstr "Zitat" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:166 src/Object/Post.php:1152 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:166 src/Object/Post.php:1153 msgid "Add emojis" msgstr "Emojis hinzufügen" -#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:191 -#: src/Object/Post.php:1150 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Object/Post.php:1151 msgid "Content Warning" msgstr "Inhaltswarnung" -#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:167 src/Object/Post.php:1153 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:167 src/Object/Post.php:1154 msgid "Code" msgstr "Code" -#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:193 -#: src/Object/Post.php:1154 +#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1155 msgid "Image" msgstr "Bild" -#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:168 src/Object/Post.php:1155 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:168 src/Object/Post.php:1156 msgid "Link" msgstr "Link" -#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:195 -#: src/Module/Post/Edit.php:169 src/Object/Post.php:1156 +#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:169 src/Object/Post.php:1157 msgid "Link or Media" msgstr "Link oder Mediendatei" -#: src/Content/Conversation.php:370 +#: src/Content/Conversation.php:372 msgid "Video" msgstr "Video" -#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:198 +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:198 #: src/Module/Post/Edit.php:132 msgid "Set your location" msgstr "Deinen Standort festlegen" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:133 msgid "set location" msgstr "Ort setzen" -#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:134 msgid "Clear browser location" msgstr "Browser-Standort leeren" -#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:135 +#: src/Content/Conversation.php:376 src/Module/Post/Edit.php:135 msgid "clear location" msgstr "Ort löschen" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:203 +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:203 #: src/Module/Post/Edit.php:148 msgid "Set title" msgstr "Titel setzen" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:204 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 #: src/Module/Post/Edit.php:150 msgid "Categories (comma-separated list)" msgstr "Kategorien (kommasepariert)" -#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:220 +#: src/Content/Conversation.php:385 src/Module/Item/Compose.php:220 msgid "Scheduled at" msgstr "Geplant für" -#: src/Content/Conversation.php:388 src/Module/Post/Edit.php:137 +#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:137 msgid "Permission settings" msgstr "Berechtigungseinstellungen" -#: src/Content/Conversation.php:397 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:399 src/Module/Post/Edit.php:146 msgid "Public post" msgstr "Öffentlicher Beitrag" -#: src/Content/Conversation.php:411 src/Content/Widget/VCard.php:121 +#: 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 msgid "Message" msgstr "Nachricht" -#: src/Content/Conversation.php:412 src/Module/Post/Edit.php:173 +#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:173 #: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Browser" -#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:176 +#: src/Content/Conversation.php:416 src/Module/Post/Edit.php:176 msgid "Open Compose page" msgstr "Composer Seite öffnen" -#: src/Content/Conversation.php:581 +#: src/Content/Conversation.php:583 msgid "remove" msgstr "löschen" -#: src/Content/Conversation.php:585 +#: src/Content/Conversation.php:587 msgid "Delete Selected Items" msgstr "Lösche die markierten Beiträge" -#: src/Content/Conversation.php:713 src/Content/Conversation.php:716 -#: src/Content/Conversation.php:719 src/Content/Conversation.php:722 -#: src/Content/Conversation.php:725 +#: 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 #, php-format msgid "You had been addressed (%s)." msgstr "Du wurdest angeschrieben (%s)." -#: src/Content/Conversation.php:728 +#: src/Content/Conversation.php:730 #, php-format msgid "You are following %s." msgstr "Du folgst %s." -#: src/Content/Conversation.php:733 +#: src/Content/Conversation.php:735 #, php-format msgid "You subscribed to %s." msgstr "Du hast %s abonniert." -#: src/Content/Conversation.php:735 +#: src/Content/Conversation.php:737 msgid "You subscribed to one or more tags in this post." msgstr "Du folgst einem oder mehreren Hashtags dieses Beitrags." -#: src/Content/Conversation.php:755 +#: src/Content/Conversation.php:757 #, php-format msgid "%s reshared this." msgstr "%s hat dies geteilt" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 msgid "Reshared" msgstr "Geteilt" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 #, php-format msgid "Reshared by %s <%s>" msgstr "Geteilt von %s <%s>" -#: src/Content/Conversation.php:760 +#: src/Content/Conversation.php:762 #, php-format msgid "%s is participating in this thread." msgstr "%s ist an der Unterhaltung beteiligt." -#: src/Content/Conversation.php:763 +#: src/Content/Conversation.php:765 msgid "Stored for general reasons" msgstr "Aus allgemeinen Gründen aufbewahrt" -#: src/Content/Conversation.php:766 +#: src/Content/Conversation.php:768 msgid "Global post" msgstr "Globaler Beitrag" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 msgid "Sent via an relay server" msgstr "Über einen Relay-Server gesendet" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "Über den Relay-Server %s <%s> gesendet" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 msgid "Fetched" msgstr "Abgerufen" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 #, php-format msgid "Fetched because of %s <%s>" msgstr "Wegen %s <%s> abgerufen" -#: src/Content/Conversation.php:775 +#: src/Content/Conversation.php:777 msgid "Stored because of a child post to complete this thread." msgstr "Gespeichert wegen eines untergeordneten Beitrags zur Vervollständigung dieses Themas." -#: src/Content/Conversation.php:778 +#: src/Content/Conversation.php:780 msgid "Local delivery" msgstr "Lokale Zustellung" -#: src/Content/Conversation.php:781 +#: src/Content/Conversation.php:783 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "Gespeichert aufgrund Ihrer Aktivität (Like, Kommentar, Stern, ...)" -#: src/Content/Conversation.php:784 +#: src/Content/Conversation.php:786 msgid "Distributed" msgstr "Verteilt" -#: src/Content/Conversation.php:787 +#: src/Content/Conversation.php:789 msgid "Pushed to us" msgstr "Zu uns gepusht" -#: src/Content/Conversation.php:1505 src/Object/Post.php:247 +#: src/Content/Conversation.php:1507 src/Object/Post.php:248 msgid "Pinned item" msgstr "Angehefteter Beitrag" -#: src/Content/Conversation.php:1522 src/Object/Post.php:541 -#: src/Object/Post.php:542 +#: src/Content/Conversation.php:1524 src/Object/Post.php:542 +#: src/Object/Post.php:543 #, php-format msgid "View %s's profile @ %s" msgstr "Das Profil von %s auf %s betrachten." -#: src/Content/Conversation.php:1536 src/Object/Post.php:529 +#: src/Content/Conversation.php:1538 src/Object/Post.php:530 msgid "Categories:" msgstr "Kategorien:" -#: src/Content/Conversation.php:1537 src/Object/Post.php:530 +#: src/Content/Conversation.php:1539 src/Object/Post.php:531 msgid "Filed under:" msgstr "Abgelegt unter:" -#: src/Content/Conversation.php:1545 src/Object/Post.php:556 +#: src/Content/Conversation.php:1547 src/Object/Post.php:557 #, php-format msgid "%s from %s" msgstr "%s von %s" -#: src/Content/Conversation.php:1561 +#: src/Content/Conversation.php:1563 msgid "View in context" msgstr "Im Zusammenhang betrachten" @@ -1703,7 +1708,7 @@ msgstr "Persönlich" msgid "Posts that mention or involve you" msgstr "Beiträge, in denen es um dich geht" -#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:398 msgid "Starred" msgstr "Markierte" @@ -1790,7 +1795,7 @@ msgstr "Beiträge anzeigen, die von Konten des ausgewählten Circles erstellt wu #: 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:552 src/Model/User.php:1390 +#: src/Content/Widget.php:555 src/Model/User.php:1390 msgid "Groups" msgstr "Gruppen" @@ -1798,7 +1803,7 @@ msgstr "Gruppen" msgid "Display posts that have been distributed by the selected group." msgstr "Anzeige der Beiträge, die von der ausgewählten Gruppe verteilt wurden." -#: src/Content/Feature.php:117 src/Content/Widget.php:521 +#: src/Content/Feature.php:117 src/Content/Widget.php:524 msgid "Archives" msgstr "Archiv" @@ -1814,8 +1819,8 @@ msgstr "Protokolle" msgid "Display posts with the selected protocols." msgstr "Beiträge mit den ausgewählten Protokollen anzeigen." -#: src/Content/Feature.php:119 src/Content/Widget.php:558 -#: src/Module/Settings/Account.php:429 +#: src/Content/Feature.php:119 src/Content/Widget.php:561 +#: src/Module/Settings/Account.php:391 msgid "Account Types" msgstr "Kontenarten" @@ -1823,7 +1828,7 @@ msgstr "Kontenarten" msgid "Display posts done by accounts with the selected account type." msgstr "Anzeige der Beiträge, die von Konten mit dem ausgewählten Kontotyp erstellt wurden." -#: src/Content/Feature.php:120 src/Content/Widget.php:607 +#: 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 msgid "Channels" @@ -1849,7 +1854,7 @@ msgstr "Gespeicherte Ordner" msgid "Display a list of folders in which posts are stored." msgstr "Ordnerliste anzeigen in denen Beiträge gespeichert sind." -#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:189 msgid "Own Contacts" msgstr "Eigene Kontakte" @@ -1905,12 +1910,12 @@ msgstr "Anonyme Besucher können deinen Kalender öffnen und dort deine öffentl msgid "External link to group" msgstr "Externer Link zur Gruppe" -#: src/Content/GroupManager.php:139 src/Content/Widget.php:527 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:530 msgid "show less" msgstr "weniger anzeigen" #: src/Content/GroupManager.php:140 src/Content/Widget.php:425 -#: src/Content/Widget.php:528 +#: src/Content/Widget.php:531 msgid "show more" msgstr "mehr anzeigen" @@ -1918,66 +1923,66 @@ msgstr "mehr anzeigen" msgid "Create new group" msgstr "Neue Gruppe erstellen" -#: src/Content/Item.php:317 src/Model/Item.php:3273 +#: src/Content/Item.php:322 src/Model/Item.php:3281 msgid "event" msgstr "Veranstaltung" -#: src/Content/Item.php:320 src/Content/Item.php:330 +#: src/Content/Item.php:325 src/Content/Item.php:335 msgid "status" msgstr "Status" -#: src/Content/Item.php:326 src/Model/Item.php:3275 +#: src/Content/Item.php:331 src/Model/Item.php:3283 #: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "Foto" -#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 +#: src/Content/Item.php:345 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s hat %2$ss %3$s mit %4$s getaggt" -#: src/Content/Item.php:414 view/theme/frio/theme.php:253 +#: src/Content/Item.php:419 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Folge der Unterhaltung" -#: src/Content/Item.php:415 src/Model/Contact.php:1244 +#: src/Content/Item.php:420 src/Model/Contact.php:1245 msgid "View Status" msgstr "Status anschauen" -#: 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/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 msgid "View Profile" msgstr "Profil anschauen" -#: src/Content/Item.php:417 src/Model/Contact.php:1246 +#: src/Content/Item.php:422 src/Model/Contact.php:1247 msgid "View Photos" msgstr "Bilder anschauen" -#: src/Content/Item.php:418 src/Model/Contact.php:1213 +#: src/Content/Item.php:423 src/Model/Contact.php:1214 #: src/Model/Profile.php:446 msgid "Network Posts" msgstr "Netzwerkbeiträge" -#: src/Content/Item.php:419 src/Model/Contact.php:1237 -#: src/Model/Contact.php:1248 +#: src/Content/Item.php:424 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1249 msgid "View Contact" msgstr "Kontakt anzeigen" -#: src/Content/Item.php:420 src/Model/Contact.php:1249 +#: src/Content/Item.php:425 src/Model/Contact.php:1250 msgid "Send PM" msgstr "Private Nachricht senden" -#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Content/Item.php:426 src/Module/Contact.php:449 #: src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:104 -#: src/Module/Moderation/Users/Active.php:123 -#: src/Module/Moderation/Users/Index.php:138 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Index.php:141 msgid "Block" msgstr "Sperren" -#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Content/Item.php:427 src/Module/Contact.php:450 #: src/Module/Contact/Profile.php:532 #: src/Module/Notifications/Introductions.php:126 #: src/Module/Notifications/Introductions.php:199 @@ -1985,27 +1990,27 @@ msgstr "Sperren" msgid "Ignore" msgstr "Ignorieren" -#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Content/Item.php:428 src/Module/Contact.php:451 #: src/Module/Contact/Profile.php:540 msgid "Collapse" msgstr "Zuklappen" -#: src/Content/Item.php:424 src/Object/Post.php:288 +#: src/Content/Item.php:429 src/Object/Post.php:289 #, php-format msgid "Ignore %s server" msgstr "Ignoriere %s Server" -#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 -#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 +#: src/Content/Item.php:433 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:503 msgid "Languages" msgstr "Sprachen" -#: src/Content/Item.php:431 src/Object/Post.php:582 +#: src/Content/Item.php:436 src/Object/Post.php:583 msgid "Search Text" msgstr "Suchtext" -#: src/Content/Item.php:436 src/Content/Widget.php:66 -#: src/Model/Contact.php:1238 src/Model/Contact.php:1250 +#: src/Content/Item.php:441 src/Content/Widget.php:66 +#: src/Model/Contact.php:1239 src/Model/Contact.php:1251 #: src/Module/Contact/Follow.php:152 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Verbinden/Folgen" @@ -2018,7 +2023,7 @@ msgstr "Benutzer kann nicht abgerufen werden." msgid "Nothing new here" msgstr "Keine Neuigkeiten" -#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:64 msgid "Go back" msgstr "Geh zurück" @@ -2232,7 +2237,7 @@ msgstr "Benachrichtigungen" msgid "See all notifications" msgstr "Alle Benachrichtigungen anzeigen" -#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:226 msgid "Mark as seen" msgstr "Als gelesen markieren" @@ -2260,8 +2265,8 @@ msgstr "Nutzerkonten" msgid "Manage other pages" msgstr "Andere Seiten verwalten" -#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 -#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:170 +#: 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/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Einstellungen" @@ -2289,10 +2294,10 @@ msgstr "Einstellungen der Seite und Konfiguration" #: src/Module/Moderation/Blocklist/Server/Index.php:84 #: 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:119 -#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 #: src/Module/Moderation/Users/Deleted.php:66 -#: src/Module/Moderation/Users/Index.php:133 +#: src/Module/Moderation/Users/Index.php:136 msgid "Moderation" msgstr "Moderation" @@ -2324,33 +2329,33 @@ msgstr "nächste" msgid "last" msgstr "letzte" -#: src/Content/Text/BBCode.php:908 +#: src/Content/Text/BBCode.php:903 #, php-format msgid "%2$s %3$s" msgstr "%2$s%3$s" -#: src/Content/Text/BBCode.php:931 src/Model/Item.php:4069 -#: src/Model/Item.php:4075 src/Model/Item.php:4076 +#: src/Content/Text/BBCode.php:926 src/Model/Item.php:4080 +#: src/Model/Item.php:4086 src/Model/Item.php:4087 msgid "Link to source" msgstr "Link zum Originalbeitrag" -#: src/Content/Text/BBCode.php:1745 src/Content/Text/HTML.php:892 +#: src/Content/Text/BBCode.php:1740 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Zum Öffnen/Schließen klicken" -#: src/Content/Text/BBCode.php:1800 +#: src/Content/Text/BBCode.php:1795 msgid "$1 wrote:" msgstr "$1 hat geschrieben:" -#: src/Content/Text/BBCode.php:1874 src/Content/Text/BBCode.php:1875 +#: src/Content/Text/BBCode.php:1869 src/Content/Text/BBCode.php:1870 msgid "Encrypted content" msgstr "Verschlüsselter Inhalt" -#: src/Content/Text/BBCode.php:2208 +#: src/Content/Text/BBCode.php:2203 msgid "Invalid source protocol" msgstr "Ungültiges Quell-Protokoll" -#: src/Content/Text/BBCode.php:2227 +#: src/Content/Text/BBCode.php:2222 msgid "Invalid link protocol" msgstr "Ungültiges Link-Protokoll" @@ -2403,7 +2408,7 @@ msgid "Examples: Robert Morgenstein, Fishing" msgstr "Beispiel: Robert Morgenstein, Angeln" #: src/Content/Widget.php:68 src/Module/Contact.php:441 -#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 +#: src/Module/Directory.php:82 view/theme/vier/theme.php:185 msgid "Find" msgstr "Finde" @@ -2424,7 +2429,7 @@ msgstr "Zufälliges Profil" msgid "Invite Friends" msgstr "Freunde einladen" -#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: src/Content/Widget.php:73 src/Module/Directory.php:74 #: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Weltweites Verzeichnis" @@ -2445,7 +2450,7 @@ msgstr "Keine Beziehung" msgid "Relationships" msgstr "Beziehungen" -#: src/Content/Widget.php:264 src/Module/Circle.php:280 +#: src/Content/Widget.php:264 src/Module/Circle.php:281 #: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Alle Kontakte" @@ -2469,27 +2474,27 @@ msgid_plural "%d contacts in common" msgstr[0] "%d gemeinsamer Kontakt" msgstr[1] "%d gemeinsame Kontakte" -#: src/Content/Widget.php:529 +#: src/Content/Widget.php:532 msgid "On this date" msgstr "An diesem Datum" -#: src/Content/Widget.php:549 +#: src/Content/Widget.php:552 msgid "Persons" msgstr "Personen" -#: src/Content/Widget.php:550 +#: src/Content/Widget.php:553 msgid "Organisations" msgstr "Organisationen" -#: src/Content/Widget.php:551 src/Model/Contact.php:1750 +#: src/Content/Widget.php:554 src/Model/Contact.php:1751 msgid "News" msgstr "Nachrichten" -#: src/Content/Widget.php:553 +#: src/Content/Widget.php:556 msgid "Relays" msgstr "Relais" -#: src/Content/Widget.php:560 src/Module/Moderation/BaseUsers.php:58 +#: src/Content/Widget.php:563 src/Module/Moderation/BaseUsers.php:58 msgid "All" msgstr "Alle" @@ -2535,12 +2540,12 @@ msgstr[1] "Trending Tags (%d Stunden)" msgid "More Trending Tags" msgstr "mehr Trending Tags" -#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1207 +#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1208 #: src/Model/Profile.php:440 msgid "Post to group" msgstr "Beitrag an Gruppe" -#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1211 +#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1212 #: src/Model/Profile.php:444 src/Module/Moderation/Item/Source.php:80 msgid "Mention" msgstr "Mention" @@ -2555,10 +2560,10 @@ msgstr "XMPP:" msgid "Matrix:" msgstr "Matrix:" -#: src/Content/Widget/VCard.php:112 src/Model/Event.php:68 -#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: 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:134 src/Module/Notifications/Introductions.php:180 +#: src/Module/Directory.php:133 src/Module/Notifications/Introductions.php:180 #: src/Module/Profile/Profile.php:212 msgid "Location:" msgstr "Ort:" @@ -2568,75 +2573,75 @@ msgstr "Ort:" msgid "Network:" msgstr "Netzwerk:" -#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1239 -#: src/Model/Contact.php:1251 src/Model/Profile.php:457 +#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1252 src/Model/Profile.php:457 #: src/Module/Contact/Profile.php:476 msgid "Unfollow" msgstr "Entfolgen" -#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1209 +#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1210 #: src/Model/Profile.php:442 msgid "View group" msgstr "Gruppe betrachten" -#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:260 +#: src/Core/ACL.php:153 src/Module/Profile/Profile.php:260 msgid "Yourself" msgstr "Du selbst" -#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Core/ACL.php:189 src/Module/Privacy/PermissionTooltip.php:156 #: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "Beidseitige Freundschaft" -#: src/Core/ACL.php:280 +#: src/Core/ACL.php:281 msgid "Post to Email" msgstr "An E-Mail senden" -#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Core/ACL.php:308 src/Module/Privacy/PermissionTooltip.php:103 #: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "Öffentlich" -#: src/Core/ACL.php:308 +#: src/Core/ACL.php:309 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 "Dieser Inhalt wird all deine Abonenten sowie auf der Gemeinschaftsseite angezeigt. Außerdem kann ihn jeder sehen, der den Link kennt." -#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 +#: src/Core/ACL.php:310 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "Begrenzt/Privat" -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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 "Dieser Inhalt wird außschließlich den Kontakten gezeigt, die du in der ersten Box ausgewählt hast, mit den Ausnahmen derer die du in der zweiten Box auflistest. Er wird nicht öffentlich zugänglich sein." -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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 "Gebe den Namen eines Kontakts oder eines Circles ein, um eine gefilterte Liste anzuzeigen. Du kannst auch die speziellen Kreise \"Folgende\" und \"beidseitige Freundschaft\" erwähnen." -#: src/Core/ACL.php:311 +#: src/Core/ACL.php:312 msgid "Show to:" msgstr "Sichtbar für:" -#: src/Core/ACL.php:312 +#: src/Core/ACL.php:313 msgid "Except to:" msgstr "Ausgenommen:" -#: src/Core/ACL.php:313 src/Module/Post/Edit.php:145 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:145 msgid "CC: email addresses" msgstr "Cc: E-Mail-Addressen" -#: src/Core/ACL.php:314 src/Module/Post/Edit.php:151 +#: src/Core/ACL.php:315 src/Module/Post/Edit.php:151 msgid "Example: bob@example.com, mary@example.com" msgstr "Z.B.: bob@example.com, mary@example.com" -#: src/Core/ACL.php:315 +#: src/Core/ACL.php:316 msgid "Connectors" msgstr "Connectoren" @@ -2971,176 +2976,176 @@ msgstr "Die Datenbank wird bereits verwendet." msgid "Could not connect to database." msgstr "Verbindung zur Datenbank gescheitert." -#: src/Core/L10n.php:430 src/Model/Item.php:2316 +#: src/Core/L10n.php:426 src/Model/Item.php:2324 msgid "Undetermined" msgstr "Unspezifiziert" -#: src/Core/L10n.php:437 +#: src/Core/L10n.php:433 #, php-format msgid "%s (%s)" msgstr "%s (%s)" -#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Core/L10n.php:481 src/Model/Event.php:418 #: src/Module/Settings/Display.php:292 msgid "Monday" msgstr "Montag" -#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Core/L10n.php:481 src/Model/Event.php:419 #: src/Module/Settings/Display.php:293 msgid "Tuesday" msgstr "Dienstag" -#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Core/L10n.php:481 src/Model/Event.php:420 #: src/Module/Settings/Display.php:294 msgid "Wednesday" msgstr "Mittwoch" -#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Core/L10n.php:481 src/Model/Event.php:421 #: src/Module/Settings/Display.php:295 msgid "Thursday" msgstr "Donnerstag" -#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Core/L10n.php:481 src/Model/Event.php:422 #: src/Module/Settings/Display.php:296 msgid "Friday" msgstr "Freitag" -#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Core/L10n.php:481 src/Model/Event.php:423 #: src/Module/Settings/Display.php:297 msgid "Saturday" msgstr "Samstag" -#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Core/L10n.php:481 src/Model/Event.php:417 #: src/Module/Settings/Display.php:291 msgid "Sunday" msgstr "Sonntag" -#: src/Core/L10n.php:489 src/Model/Event.php:436 +#: src/Core/L10n.php:485 src/Model/Event.php:438 msgid "January" msgstr "Januar" -#: src/Core/L10n.php:489 src/Model/Event.php:437 +#: src/Core/L10n.php:485 src/Model/Event.php:439 msgid "February" msgstr "Februar" -#: src/Core/L10n.php:489 src/Model/Event.php:438 +#: src/Core/L10n.php:485 src/Model/Event.php:440 msgid "March" msgstr "März" -#: src/Core/L10n.php:489 src/Model/Event.php:439 +#: src/Core/L10n.php:485 src/Model/Event.php:441 msgid "April" msgstr "April" -#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 +#: src/Core/L10n.php:485 src/Core/L10n.php:504 src/Model/Event.php:429 msgid "May" msgstr "Mai" -#: src/Core/L10n.php:489 src/Model/Event.php:440 +#: src/Core/L10n.php:485 src/Model/Event.php:442 msgid "June" msgstr "Juni" -#: src/Core/L10n.php:489 src/Model/Event.php:441 +#: src/Core/L10n.php:485 src/Model/Event.php:443 msgid "July" msgstr "Juli" -#: src/Core/L10n.php:489 src/Model/Event.php:442 +#: src/Core/L10n.php:485 src/Model/Event.php:444 msgid "August" msgstr "August" -#: src/Core/L10n.php:489 src/Model/Event.php:443 +#: src/Core/L10n.php:485 src/Model/Event.php:445 msgid "September" msgstr "September" -#: src/Core/L10n.php:489 src/Model/Event.php:444 +#: src/Core/L10n.php:485 src/Model/Event.php:446 msgid "October" msgstr "Oktober" -#: src/Core/L10n.php:489 src/Model/Event.php:445 +#: src/Core/L10n.php:485 src/Model/Event.php:447 msgid "November" msgstr "November" -#: src/Core/L10n.php:489 src/Model/Event.php:446 +#: src/Core/L10n.php:485 src/Model/Event.php:448 msgid "December" msgstr "Dezember" -#: src/Core/L10n.php:504 src/Model/Event.php:408 +#: src/Core/L10n.php:500 src/Model/Event.php:410 msgid "Mon" msgstr "Mo" -#: src/Core/L10n.php:504 src/Model/Event.php:409 +#: src/Core/L10n.php:500 src/Model/Event.php:411 msgid "Tue" msgstr "Di" -#: src/Core/L10n.php:504 src/Model/Event.php:410 +#: src/Core/L10n.php:500 src/Model/Event.php:412 msgid "Wed" msgstr "Mi" -#: src/Core/L10n.php:504 src/Model/Event.php:411 +#: src/Core/L10n.php:500 src/Model/Event.php:413 msgid "Thu" msgstr "Do" -#: src/Core/L10n.php:504 src/Model/Event.php:412 +#: src/Core/L10n.php:500 src/Model/Event.php:414 msgid "Fri" msgstr "Fr" -#: src/Core/L10n.php:504 src/Model/Event.php:413 +#: src/Core/L10n.php:500 src/Model/Event.php:415 msgid "Sat" msgstr "Sa" -#: src/Core/L10n.php:504 src/Model/Event.php:407 +#: src/Core/L10n.php:500 src/Model/Event.php:409 msgid "Sun" msgstr "So" -#: src/Core/L10n.php:508 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:425 msgid "Jan" msgstr "Jan" -#: src/Core/L10n.php:508 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:426 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:508 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:427 msgid "Mar" msgstr "März" -#: src/Core/L10n.php:508 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:428 msgid "Apr" msgstr "Apr" -#: src/Core/L10n.php:508 src/Model/Event.php:428 +#: src/Core/L10n.php:504 src/Model/Event.php:430 msgid "Jun" msgstr "Jun" -#: src/Core/L10n.php:508 src/Model/Event.php:429 +#: src/Core/L10n.php:504 src/Model/Event.php:431 msgid "Jul" msgstr "Juli" -#: src/Core/L10n.php:508 src/Model/Event.php:430 +#: src/Core/L10n.php:504 src/Model/Event.php:432 msgid "Aug" msgstr "Aug" -#: src/Core/L10n.php:508 +#: src/Core/L10n.php:504 msgid "Sep" msgstr "Sep" -#: src/Core/L10n.php:508 src/Model/Event.php:432 +#: src/Core/L10n.php:504 src/Model/Event.php:434 msgid "Oct" msgstr "Okt" -#: src/Core/L10n.php:508 src/Model/Event.php:433 +#: src/Core/L10n.php:504 src/Model/Event.php:435 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:508 src/Model/Event.php:434 +#: src/Core/L10n.php:504 src/Model/Event.php:436 msgid "Dec" msgstr "Dez" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:44 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "Die Logdatei '%s' ist nicht beschreibbar. Derzeit ist keine Aufzeichnung möglich (Fehler: '%s')" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:67 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" @@ -3332,7 +3337,7 @@ msgstr "hinzufügen" msgid "Edit circle" msgstr "Circle ändern" -#: src/Model/Circle.php:592 src/Module/Circle.php:181 +#: src/Model/Circle.php:592 src/Module/Circle.php:185 msgid "Contacts not in any circle" msgstr "Kontakte, die keinem Circle zugeordnet sind" @@ -3340,8 +3345,8 @@ msgstr "Kontakte, die keinem Circle zugeordnet sind" msgid "Create a new circle" msgstr "Erstelle neuen Circle" -#: src/Model/Circle.php:595 src/Module/Circle.php:166 -#: src/Module/Circle.php:189 src/Module/Circle.php:264 +#: src/Model/Circle.php:595 src/Module/Circle.php:168 +#: src/Module/Circle.php:190 src/Module/Circle.php:265 msgid "Circle Name: " msgstr "Circle Name: " @@ -3349,280 +3354,280 @@ msgstr "Circle Name: " msgid "Edit circles" msgstr "Circles bearbeiten" -#: src/Model/Contact.php:1258 src/Module/Moderation/Users/Pending.php:88 +#: src/Model/Contact.php:1259 src/Module/Moderation/Users/Pending.php:88 #: src/Module/Notifications/Introductions.php:124 #: src/Module/Notifications/Introductions.php:197 msgid "Approve" msgstr "Genehmigen" -#: src/Model/Contact.php:1594 src/Model/Contact.php:1666 +#: src/Model/Contact.php:1595 src/Model/Contact.php:1667 #: src/Module/Contact/Profile.php:360 #, php-format msgid "%s has blocked you" msgstr "%s hat dich blockiert" -#: src/Model/Contact.php:1746 +#: src/Model/Contact.php:1747 msgid "Organisation" msgstr "Organisation" -#: src/Model/Contact.php:1754 +#: src/Model/Contact.php:1755 msgid "Group" msgstr "Gruppe" -#: src/Model/Contact.php:1758 src/Module/Moderation/BaseUsers.php:122 +#: src/Model/Contact.php:1759 src/Module/Moderation/BaseUsers.php:122 msgid "Relay" msgstr "Relais" -#: src/Model/Contact.php:3073 +#: src/Model/Contact.php:3085 msgid "Disallowed profile URL." msgstr "Nicht erlaubte Profil-URL." -#: src/Model/Contact.php:3078 src/Module/Friendica.php:88 +#: src/Model/Contact.php:3090 src/Module/Friendica.php:88 msgid "Blocked domain" msgstr "Blockierte Domain" -#: src/Model/Contact.php:3083 +#: src/Model/Contact.php:3095 msgid "Connect URL missing." msgstr "Connect-URL fehlt" -#: src/Model/Contact.php:3092 +#: src/Model/Contact.php:3104 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Der Kontakt konnte nicht hinzugefügt werden. Bitte überprüfe die Einstellungen unter Einstellungen -> Soziale Netzwerke" -#: src/Model/Contact.php:3110 +#: src/Model/Contact.php:3122 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "Erwartetes Netzwerk %s stimmt nicht mit dem tatsächlichen Netzwerk überein %s" -#: src/Model/Contact.php:3127 +#: src/Model/Contact.php:3139 msgid "This seems to be a relay account. They can't be followed by users." msgstr "Dies scheint ein Relais-Konto zu sein. Diese können nicht von Nutzern gefolgt werden." -#: src/Model/Contact.php:3134 +#: src/Model/Contact.php:3146 msgid "The profile address specified does not provide adequate information." msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." -#: src/Model/Contact.php:3136 +#: src/Model/Contact.php:3148 msgid "No compatible communication protocols or feeds were discovered." msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." -#: src/Model/Contact.php:3139 +#: src/Model/Contact.php:3151 msgid "An author or name was not found." msgstr "Es wurde kein Autor oder Name gefunden." -#: src/Model/Contact.php:3142 +#: src/Model/Contact.php:3154 msgid "No browser URL could be matched to this address." msgstr "Zu dieser Adresse konnte keine passende Browser-URL gefunden werden." -#: src/Model/Contact.php:3145 +#: src/Model/Contact.php:3157 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen." -#: src/Model/Contact.php:3146 +#: src/Model/Contact.php:3158 msgid "Use mailto: in front of address to force email check." msgstr "Verwende mailto: vor der E-Mail-Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen." -#: src/Model/Contact.php:3152 +#: src/Model/Contact.php:3164 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können." -#: src/Model/Contact.php:3211 +#: src/Model/Contact.php:3223 msgid "Unable to retrieve contact information." msgstr "Konnte die Kontaktinformationen nicht empfangen." -#: src/Model/Event.php:40 +#: src/Model/Event.php:42 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "l F d, Y \\@ g:i A \\G\\M\\TP (e)" -#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 -#: src/Model/Event.php:928 +#: src/Model/Event.php:63 src/Model/Event.php:80 src/Model/Event.php:457 +#: src/Model/Event.php:929 msgid "Starts:" msgstr "Beginnt:" -#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 -#: src/Model/Event.php:932 +#: src/Model/Event.php:66 src/Model/Event.php:86 src/Model/Event.php:458 +#: src/Model/Event.php:933 msgid "Finishes:" msgstr "Endet:" -#: src/Model/Event.php:405 +#: src/Model/Event.php:407 msgid "all-day" msgstr "ganztägig" -#: src/Model/Event.php:431 +#: src/Model/Event.php:433 msgid "Sept" msgstr "Sep" -#: src/Model/Event.php:448 src/Module/Calendar/Show.php:117 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:117 #: src/Util/Temporal.php:329 msgid "today" msgstr "Heute" -#: src/Model/Event.php:449 src/Module/Calendar/Show.php:118 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:118 #: src/Module/Settings/Display.php:302 src/Util/Temporal.php:339 msgid "month" msgstr "Monat" -#: src/Model/Event.php:450 src/Module/Calendar/Show.php:119 +#: src/Model/Event.php:452 src/Module/Calendar/Show.php:119 #: src/Module/Settings/Display.php:303 src/Util/Temporal.php:340 msgid "week" msgstr "Woche" -#: src/Model/Event.php:451 src/Module/Calendar/Show.php:120 +#: src/Model/Event.php:453 src/Module/Calendar/Show.php:120 #: src/Module/Settings/Display.php:304 src/Util/Temporal.php:341 msgid "day" msgstr "Tag" -#: src/Model/Event.php:453 +#: src/Model/Event.php:455 msgid "No events to display" msgstr "Keine Veranstaltung zum Anzeigen" -#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Model/Event.php:504 src/Module/Feed.php:56 #: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "Der Zugriff zu diesem Profil wurde eingeschränkt." -#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:52 +#: src/Model/Event.php:545 src/Module/Calendar/Event/Show.php:52 msgid "Event not found." msgstr "Veranstaltung nicht gefunden." -#: src/Model/Event.php:623 +#: src/Model/Event.php:624 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:650 +#: src/Model/Event.php:651 msgid "Edit event" msgstr "Veranstaltung bearbeiten" -#: src/Model/Event.php:651 +#: src/Model/Event.php:652 msgid "Duplicate event" msgstr "Veranstaltung kopieren" -#: src/Model/Event.php:652 +#: src/Model/Event.php:653 msgid "Delete event" msgstr "Veranstaltung löschen" -#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 +#: src/Model/Event.php:883 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l, d. F Y\\, H:i" -#: src/Model/Event.php:883 +#: src/Model/Event.php:884 msgid "D g:i A" msgstr "D H:i" -#: src/Model/Event.php:884 +#: src/Model/Event.php:885 msgid "g:i A" msgstr "H:i" -#: src/Model/Event.php:947 src/Model/Event.php:949 +#: src/Model/Event.php:948 src/Model/Event.php:950 msgid "Show map" msgstr "Karte anzeigen" -#: src/Model/Event.php:948 +#: src/Model/Event.php:949 msgid "Hide map" msgstr "Karte verbergen" -#: src/Model/Event.php:1041 +#: src/Model/Event.php:1042 #, php-format msgid "%s's birthday" msgstr "%ss Geburtstag" -#: src/Model/Event.php:1042 +#: src/Model/Event.php:1043 #, php-format msgid "Happy Birthday %s" msgstr "Herzlichen Glückwunsch, %s" -#: src/Model/Item.php:2323 +#: src/Model/Item.php:2331 #, php-format msgid "%s (%s - %s): %s" msgstr "%s (%s - %s): %s" -#: src/Model/Item.php:2325 +#: src/Model/Item.php:2333 #, php-format msgid "%s (%s): %s" msgstr "%s (%s): %s" -#: src/Model/Item.php:2328 +#: src/Model/Item.php:2336 #, php-format msgid "" "Detected languages in this post:\n" "%s" msgstr "Erkannte Sprachen in diesem Beitrag:\n%s" -#: src/Model/Item.php:3277 +#: src/Model/Item.php:3285 msgid "activity" msgstr "Aktivität" -#: src/Model/Item.php:3279 +#: src/Model/Item.php:3287 msgid "comment" msgstr "Kommentar" -#: src/Model/Item.php:3282 src/Module/Post/Tag/Add.php:109 +#: src/Model/Item.php:3290 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "Beitrag" -#: src/Model/Item.php:3452 +#: src/Model/Item.php:3463 #, php-format msgid "%s is blocked" msgstr "%s ist blockiert" -#: src/Model/Item.php:3454 +#: src/Model/Item.php:3465 #, php-format msgid "%s is ignored" msgstr "%s ist ignoriert" -#: src/Model/Item.php:3456 +#: src/Model/Item.php:3467 #, php-format msgid "Content from %s is collapsed" msgstr "Inhalt vom %s ist zugeklappt" -#: src/Model/Item.php:3460 +#: src/Model/Item.php:3471 msgid "Sensitive content" msgstr "Sensitiver Inhalt" -#: src/Model/Item.php:3969 +#: src/Model/Item.php:3980 msgid "bytes" msgstr "Byte" -#: src/Model/Item.php:4000 +#: src/Model/Item.php:4011 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" msgstr[0] "%2$s (%3$d%%, %1$d Stimme)" msgstr[1] "%2$s (%3$d%%, %1$d Stimmen)" -#: src/Model/Item.php:4002 +#: src/Model/Item.php:4013 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "%2$s (%1$d Stimme)" msgstr[1] "%2$s (%1$d Stimmen)" -#: src/Model/Item.php:4007 +#: src/Model/Item.php:4018 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "%d Stimme, Abstimmung endet: %s" msgstr[1] "%d Stimmen, Abstimmung endet: %s" -#: src/Model/Item.php:4009 +#: src/Model/Item.php:4020 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "%d Stimme." msgstr[1] "%d Stimmen." -#: src/Model/Item.php:4011 +#: src/Model/Item.php:4022 #, php-format msgid "Poll end: %s" msgstr "Abstimmung endet: %s" -#: src/Model/Item.php:4052 src/Model/Item.php:4053 +#: src/Model/Item.php:4063 src/Model/Item.php:4064 msgid "View on separate page" msgstr "Auf separater Seite ansehen" @@ -3630,7 +3635,7 @@ msgstr "Auf separater Seite ansehen" msgid "[no subject]" msgstr "[kein Betreff]" -#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 +#: src/Model/Photo.php:1192 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Pinnwand-Bilder" @@ -3643,7 +3648,7 @@ msgstr "Profil bearbeiten" msgid "Change profile photo" msgstr "Profilbild ändern" -#: src/Model/Profile.php:357 src/Module/Directory.php:139 +#: src/Model/Profile.php:357 src/Module/Directory.php:138 #: src/Module/Profile/Profile.php:200 msgid "Homepage:" msgstr "Homepage:" @@ -3733,7 +3738,7 @@ msgstr "Dislikes:" msgid "Title/Description:" msgstr "Titel/Beschreibung:" -#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:176 +#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:174 #: src/Module/Moderation/Report/Create.php:266 #: src/Module/Moderation/Summary.php:65 msgid "Summary" @@ -3784,59 +3789,59 @@ msgstr "Verantwortlicher Account: %s" msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." -#: src/Model/User.php:740 src/Model/User.php:773 +#: src/Model/User.php:739 src/Model/User.php:772 msgid "Login failed" msgstr "Anmeldung fehlgeschlagen" -#: src/Model/User.php:805 +#: src/Model/User.php:804 msgid "Not enough information to authenticate" msgstr "Nicht genügend Informationen für die Authentifizierung" -#: src/Model/User.php:930 +#: src/Model/User.php:929 msgid "Password can't be empty" msgstr "Das Passwort kann nicht leer sein" -#: src/Model/User.php:972 +#: src/Model/User.php:971 msgid "Empty passwords are not allowed." msgstr "Leere Passwörter sind nicht erlaubt." -#: src/Model/User.php:976 +#: src/Model/User.php:975 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Das neue Passwort wurde in einem öffentlichen Daten-Dump veröffentlicht. Bitte verwende ein anderes Passwort." -#: src/Model/User.php:980 +#: src/Model/User.php:979 msgid "The password length is limited to 72 characters." msgstr "Die Länge des Passworts ist auf 72 Zeichen begrenzt." -#: src/Model/User.php:984 +#: src/Model/User.php:983 msgid "The password can't contain white spaces nor accentuated letters" msgstr "Das Passwort kann weder Leerzeichen noch akzentuierte Zeichen beinhalten." -#: src/Model/User.php:1193 +#: src/Model/User.php:1192 msgid "Passwords do not match. Password unchanged." msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." -#: src/Model/User.php:1200 +#: src/Model/User.php:1199 msgid "An invitation is required." msgstr "Du benötigst eine Einladung." -#: src/Model/User.php:1204 +#: src/Model/User.php:1203 msgid "Invitation could not be verified." msgstr "Die Einladung konnte nicht überprüft werden." -#: src/Model/User.php:1212 +#: src/Model/User.php:1211 msgid "Invalid OpenID url" msgstr "Ungültige OpenID URL" -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Beim Versuch, dich mit der von dir angegebenen OpenID anzumelden, trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast." -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "The error message was:" msgstr "Die Fehlermeldung lautete:" @@ -4027,57 +4032,57 @@ msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "Benutzer mit Delegaten können nicht entfernt werden, bitte entferne zuerst die delegierten Benutzer" -#: src/Module/Admin/Addons/Details.php:51 +#: src/Module/Admin/Addons/Details.php:49 msgid "Addon not found." msgstr "Addon nicht gefunden." -#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 +#: src/Module/Admin/Addons/Details.php:60 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "Addon %s ausgeschaltet." -#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 +#: src/Module/Admin/Addons/Details.php:63 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "Addon %s aktiviert." -#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Addons/Details.php:72 #: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "Ausschalten" -#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Addons/Details.php:75 #: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351 msgid "Enable" msgstr "Einschalten" -#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Addons/Details.php:95 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:175 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Summary.php:173 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 "Administration" -#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/Admin/Addons/Details.php:96 src/Module/Admin/Addons/Index.php:60 #: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:127 msgid "Addons" msgstr "Addons" -#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Addons/Details.php:97 #: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Umschalten" -#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Addons/Details.php:104 #: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Autor:" -#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Addons/Details.php:105 #: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Betreuer:" @@ -4094,9 +4099,10 @@ msgstr "Addon %s konnte nicht installiert werden" #: 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:545 src/Module/Settings/Addons.php:64 -#: src/Module/Settings/Connectors.php:149 -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Account.php:507 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/Features.php:61 msgid "Save Settings" @@ -4113,62 +4119,62 @@ msgid "" "official addon repository at %1$s." msgstr "Es sind derzeit keine Addons auf diesem Knoten verfügbar. Du findest das offizielle Addon-Repository unter %1$s." -#: src/Module/Admin/DBSync.php:37 +#: src/Module/Admin/DBSync.php:35 msgid "Update has been marked successful" msgstr "Update wurde als erfolgreich markiert" -#: src/Module/Admin/DBSync.php:45 +#: src/Module/Admin/DBSync.php:43 #, php-format msgid "Database structure update %s was successfully applied." msgstr "Das Update %s der Struktur der Datenbank wurde erfolgreich angewandt." -#: src/Module/Admin/DBSync.php:47 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "Das Update %s der Struktur der Datenbank schlug mit folgender Fehlermeldung fehl: %s" -#: src/Module/Admin/DBSync.php:62 +#: src/Module/Admin/DBSync.php:60 #, php-format msgid "Executing %s failed with error: %s" msgstr "Die Ausführung von %s schlug fehl. Fehlermeldung: %s" -#: src/Module/Admin/DBSync.php:64 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Update %s was successfully applied." msgstr "Update %s war erfolgreich." -#: src/Module/Admin/DBSync.php:67 +#: src/Module/Admin/DBSync.php:65 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Update %s hat keinen Status zurückgegeben. Unbekannter Status." -#: src/Module/Admin/DBSync.php:70 +#: src/Module/Admin/DBSync.php:68 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "Es gab keine weitere Update-Funktion, die von %s ausgeführt werden musste." -#: src/Module/Admin/DBSync.php:91 +#: src/Module/Admin/DBSync.php:89 msgid "No failed updates." msgstr "Keine fehlgeschlagenen Updates." -#: src/Module/Admin/DBSync.php:92 +#: src/Module/Admin/DBSync.php:90 msgid "Check database structure" msgstr "Datenbankstruktur überprüfen" -#: src/Module/Admin/DBSync.php:96 +#: src/Module/Admin/DBSync.php:94 msgid "Failed Updates" msgstr "Fehlgeschlagene Updates" -#: src/Module/Admin/DBSync.php:97 +#: src/Module/Admin/DBSync.php:95 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Ohne Updates vor 1139, da diese keinen Status zurückgegeben haben." -#: src/Module/Admin/DBSync.php:98 +#: src/Module/Admin/DBSync.php:96 msgid "Mark success (if update was manually applied)" msgstr "Als erfolgreich markieren (falls das Update manuell installiert wurde)" -#: src/Module/Admin/DBSync.php:99 +#: src/Module/Admin/DBSync.php:97 msgid "Attempt to execute this update step automatically" msgstr "Versuchen, diesen Schritt automatisch auszuführen" @@ -5733,12 +5739,12 @@ msgstr "Das Ändern des aktuellen Backends ist nicht möglich, da es durch eine msgid "Database (legacy)" msgstr "Datenbank (legacy)" -#: src/Module/Admin/Summary.php:41 +#: src/Module/Admin/Summary.php:39 #, php-format msgid "Template engine (%s) error: %s" msgstr "Template engine (%s) Fehler: %s" -#: src/Module/Admin/Summary.php:45 +#: src/Module/Admin/Summary.php:43 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5749,7 +5755,7 @@ msgid "" " an automatic conversion.
" msgstr "Deine DB verwendet derzeit noch MyISAM Tabellen. Du solltest die Datenbank Engine auf InnoDB umstellen, da Friendica in Zukunft InnoDB-Features verwenden wird. Eine Anleitung zur Umstellung der Datenbank kannst du hier finden. Du kannst außerdem mit dem Befehl php bin/console.php dbstructure toinnodb auf der Kommandozeile die Umstellung automatisch vornehmen lassen." -#: src/Module/Admin/Summary.php:50 +#: src/Module/Admin/Summary.php:48 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5760,7 +5766,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "Deine DB verwendet derzeit noch InnoDB Tabellen im Antelope Dateiformat. Du solltest diese auf das Barracuda Format ändern. Friendica verwendet einige Features, die nicht vom Antelope Format unterstützt werden. Hier findest du eine Anleitung für die Umstellung. Alternativ kannst du auch den Befehl php bin/console.php dbstructure toinnodb In der Kommandozeile deiner Friendica Instanz verwenden um die Formate automatisch anzupassen.
" -#: src/Module/Admin/Summary.php:60 +#: src/Module/Admin/Summary.php:58 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5768,46 +5774,46 @@ msgid "" " to %d. See here for more information.
" msgstr "Der Wert table_definition_cache ist zu niedrig (%d). Dadurch können Datenbank Fehler \"Prepared statement needs to be re-prepared\" hervor gerufen werden. Bitte setze den Wert auf mindestens %d. Weiterführende Informationen findest du hier." -#: src/Module/Admin/Summary.php:68 +#: src/Module/Admin/Summary.php:66 #, 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 "Es gibt eine neue Version von Friendica. Du verwendest derzeit die Version %1$s, die aktuelle Version ist %2$s." -#: src/Module/Admin/Summary.php:76 +#: src/Module/Admin/Summary.php:74 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 "Das Update der Datenbank ist fehlgeschlagen. Bitte führe 'php bin/console.php dbstructure update' in der Kommandozeile aus und achte auf eventuell auftretende Fehlermeldungen." -#: src/Module/Admin/Summary.php:80 +#: src/Module/Admin/Summary.php:78 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 "Das letzte Update ist fehlgeschlagen. Bitte führe \"php bin/console.php dbstructure update\" auf der Kommandozeile aus und werfe einen Blick auf eventuell auftretende Fehler. (Zusätzliche Informationen zu Fehlern könnten in den Logdateien stehen.)" -#: src/Module/Admin/Summary.php:84 +#: src/Module/Admin/Summary.php:82 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 "Der Eintrag system.url fehlt. Dies ist eine Einstellung auf niedriger Ebene und kann zu unerwartetem Verhalten führen. Bitt füge so bald wie möglich einen gültigen Eintrag in der Konfigurationsdatei oder per Konsolenbefehl hinzu!" -#: src/Module/Admin/Summary.php:89 +#: src/Module/Admin/Summary.php:87 msgid "The worker was never executed. Please check your database structure!" msgstr "Der Hintergrundprozess (worker) wurde noch nie gestartet. Bitte überprüfe deine Datenbankstruktur." -#: src/Module/Admin/Summary.php:91 +#: src/Module/Admin/Summary.php:89 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "Der Hintergrundprozess (worker) wurde zuletzt um %s UTC ausgeführt. Das war vor mehr als einer Stunde. Bitte überprüfe deine crontab-Einstellungen." -#: src/Module/Admin/Summary.php:96 +#: src/Module/Admin/Summary.php:94 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5816,7 +5822,7 @@ msgid "" "help with the transition." msgstr "Die Konfiguration von Friendica befindet sich ab jetzt in der 'config/local.config.php' Datei. Kopiere bitte die Datei 'config/local-sample.config.php' nach 'config/local.config.php' und setze die Konfigurationvariablen so wie in der alten .htconfig.php. Wie die Übertragung der Werte aussehen muss, kannst du der Konfiguration Hilfeseite entnehmen." -#: src/Module/Admin/Summary.php:100 +#: src/Module/Admin/Summary.php:98 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5825,7 +5831,7 @@ msgid "" "page for help with the transition." msgstr "Die Konfiguration von Friendica befindet sich ab jetzt in der 'config/local.config.php' Datei. Kopiere bitte die Datei 'config/local-sample.config.php' nach 'config/local.config.php' und setze die Konfigurationvariablen so wie in der alten config/local.ini.php. Wie die Übertragung der Werte aussehen muss, kannst du der Konfiguration Hilfeseite entnehmen." -#: src/Module/Admin/Summary.php:106 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5833,40 +5839,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "%s konnte von deinem System nicht aufgerufen werden. Dies deutet auf ein schwerwiegendes Problem deiner Konfiguration hin. Bitte konsultiere die Installations-Dokumentation zum Beheben des Problems." -#: src/Module/Admin/Summary.php:130 +#: src/Module/Admin/Summary.php:128 #, 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 "Friendica's system.basepath wurde aktualisiert '%s' von '%s'. Bitte entferne system.basepath aus der Datenbank um Unterschiede zu vermeiden." -#: src/Module/Admin/Summary.php:138 +#: src/Module/Admin/Summary.php:136 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "Friendica's aktueller system.basepath '%s' ist verkehrt und die config file '%s' wird nicht benutzt." -#: src/Module/Admin/Summary.php:146 +#: src/Module/Admin/Summary.php:144 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "Friendica's aktueller system.basepath '%s' ist nicht gleich wie die config file '%s'. Bitte korrigiere deine Konfiguration." -#: src/Module/Admin/Summary.php:157 +#: src/Module/Admin/Summary.php:155 msgid "Message queues" msgstr "Nachrichten-Warteschlangen" -#: src/Module/Admin/Summary.php:160 +#: src/Module/Admin/Summary.php:158 msgid "Server Settings" msgstr "Servereinstellungen" -#: src/Module/Admin/Summary.php:178 +#: src/Module/Admin/Summary.php:176 msgid "Version" msgstr "Version" -#: src/Module/Admin/Summary.php:182 +#: src/Module/Admin/Summary.php:180 msgid "Active addons" msgstr "Aktivierte Addons" @@ -6131,8 +6137,8 @@ msgstr "Das verwaltete Konto kann nicht auf die Moderationsseiten zugreifen. Bit msgid "Reports" msgstr "Reports" -#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:134 -#: src/Module/Moderation/Users/Index.php:144 +#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:137 +#: src/Module/Moderation/Users/Index.php:147 msgid "Users" msgstr "Nutzer" @@ -6168,7 +6174,7 @@ msgstr "Begonnene Unterhaltungen" msgid "Only You Can See This" msgstr "Nur du kannst das sehen" -#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:67 +#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:65 msgid "Scheduled Posts" msgstr "Geplante Beiträge" @@ -6220,7 +6226,7 @@ msgstr "Zwei-Faktor Authentifizierung" msgid "Display" msgstr "Anzeige" -#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:195 +#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:189 msgid "Social Networks" msgstr "Soziale Netzwerke" @@ -6236,11 +6242,15 @@ msgstr "Verbundene Programme" msgid "Remote servers" msgstr "Remote Instanzen" -#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:84 +#: src/Module/BaseSettings.php:155 src/Module/Settings/ContactImport.php:109 +msgid "Import Contacts" +msgstr "Kontakte Importieren" + +#: src/Module/BaseSettings.php:162 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Persönliche Daten exportieren" -#: src/Module/BaseSettings.php:162 +#: src/Module/BaseSettings.php:169 msgid "Remove account" msgstr "Konto löschen" @@ -6369,8 +6379,8 @@ msgstr "Liste" msgid "Could not create circle." msgstr "Der Circle konnte nicht erstellt werden." -#: src/Module/Circle.php:54 src/Module/Circle.php:202 -#: src/Module/Circle.php:226 +#: src/Module/Circle.php:54 src/Module/Circle.php:203 +#: src/Module/Circle.php:227 msgid "Circle not found." msgstr "Circle nicht gefunden." @@ -6378,15 +6388,15 @@ msgstr "Circle nicht gefunden." msgid "Circle name was not changed." msgstr "Der Name des Circles wurde nicht geändert." -#: src/Module/Circle.php:78 +#: src/Module/Circle.php:80 msgid "Unknown circle." msgstr "Unbekannter Circle." -#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Circle.php:86 src/Module/Circle.php:95 #: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 -#: 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/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/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 @@ -6395,75 +6405,75 @@ msgstr "Unbekannter Circle." msgid "Contact not found." msgstr "Kontakt nicht gefunden." -#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 +#: src/Module/Circle.php:90 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Ungültiger Kontakt." -#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 +#: src/Module/Circle.php:99 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "Kontakt wurde gelöscht" -#: src/Module/Circle.php:103 +#: src/Module/Circle.php:105 msgid "Unable to add the contact to the circle." msgstr "Es ist nicht möglich, den Kontakt zum Circle hinzuzufügen." -#: src/Module/Circle.php:106 +#: src/Module/Circle.php:108 msgid "Contact successfully added to circle." msgstr "Der Kontakt wurde erfolgreich dem Circle hinzugefügt." -#: src/Module/Circle.php:110 +#: src/Module/Circle.php:112 msgid "Unable to remove the contact from the circle." msgstr "Es ist nicht möglich, den Kontakt aus dem Circle zu entfernen." -#: src/Module/Circle.php:113 +#: src/Module/Circle.php:115 msgid "Contact successfully removed from circle." msgstr "Kontakt erfolgreich aus dem Circle entfernt." -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:119 msgid "Bad request." msgstr "Ungültige Anfrage." -#: src/Module/Circle.php:158 +#: src/Module/Circle.php:160 msgid "Save Circle" msgstr "Circle speichern" -#: src/Module/Circle.php:159 +#: src/Module/Circle.php:161 msgid "Filter" msgstr "Filter" -#: src/Module/Circle.php:165 +#: src/Module/Circle.php:167 msgid "Create a circle of contacts/friends." msgstr "Erstelle einen Circle aus Kontakten/Freunden" -#: src/Module/Circle.php:207 +#: src/Module/Circle.php:208 msgid "Unable to remove circle." msgstr "Der Circle kann nicht entfernt werden." -#: src/Module/Circle.php:258 +#: src/Module/Circle.php:259 msgid "Delete Circle" msgstr "Circle löschen" -#: src/Module/Circle.php:268 +#: src/Module/Circle.php:269 msgid "Edit Circle Name" msgstr "Name des Circles ändern" -#: src/Module/Circle.php:278 +#: src/Module/Circle.php:279 msgid "Members" msgstr "Mitglieder" -#: src/Module/Circle.php:281 +#: src/Module/Circle.php:282 msgid "Circle is empty" msgstr "Dieser Circle ist leer" -#: src/Module/Circle.php:297 +#: src/Module/Circle.php:298 msgid "Remove contact from circle" msgstr "Kontakt aus Circle entfernen" -#: src/Module/Circle.php:320 +#: src/Module/Circle.php:321 msgid "Click on a contact to add or remove." msgstr "Klicke einen Kontakt an, um ihn hinzuzufügen oder zu entfernen" -#: src/Module/Circle.php:337 +#: src/Module/Circle.php:338 msgid "Add contact to circle" msgstr "Kontakt zu Circle hinzufügen" @@ -6497,7 +6507,7 @@ msgid "Only show blocked contacts" msgstr "Nur blockierte Kontakte anzeigen" #: src/Module/Contact.php:349 src/Module/Contact.php:421 -#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:386 msgid "Ignored" msgstr "Ignoriert" @@ -6548,8 +6558,8 @@ msgstr "Aktualisierungen" #: src/Module/Contact.php:449 src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:105 -#: src/Module/Moderation/Users/Blocked.php:124 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Blocked.php:127 +#: src/Module/Moderation/Users/Index.php:143 msgid "Unblock" msgstr "Entsperren" @@ -6625,12 +6635,12 @@ msgstr "Zurück zum Kontakteditor" #: 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:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:56 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Name" @@ -7195,11 +7205,11 @@ msgstr "Fehler %d (%s) beim Abruf der Timeline." msgid "Network feed not available." msgstr "Netzwerkfeed nicht verfügbar." -#: src/Module/Conversation/Timeline.php:190 +#: src/Module/Conversation/Timeline.php:193 msgid "Include" msgstr "Einschließen" -#: src/Module/Conversation/Timeline.php:191 +#: src/Module/Conversation/Timeline.php:194 msgid "Hide" msgstr "Verbergen" @@ -7468,19 +7478,19 @@ msgstr "Webfinger Diagnostik" msgid "Lookup address:" msgstr "Adresse nachschlagen:" -#: src/Module/Directory.php:61 +#: src/Module/Directory.php:60 msgid "No entries (some entries may be hidden)." msgstr "Keine Einträge (einige Einträge könnten versteckt sein)." -#: src/Module/Directory.php:77 +#: src/Module/Directory.php:76 msgid "Find on this site" msgstr "Auf diesem Server suchen" -#: src/Module/Directory.php:79 +#: src/Module/Directory.php:78 msgid "Results for:" msgstr "Ergebnisse für:" -#: src/Module/Directory.php:81 +#: src/Module/Directory.php:80 msgid "Site Directory" msgstr "Verzeichnis" @@ -7733,40 +7743,40 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Du solltest nun die Seite zur Nutzerregistrierung deiner neuen Friendica Instanz besuchen und einen neuen Nutzer einrichten. Bitte denke daran, dieselbe E-Mail Adresse anzugeben, die du auch als Administrator-E-Mail angegeben hast, damit du das Admin-Panel verwenden kannst." -#: src/Module/Invite.php:43 +#: src/Module/Invite.php:42 msgid "Total invitation limit exceeded." msgstr "Limit für Einladungen erreicht." -#: src/Module/Invite.php:68 +#: src/Module/Invite.php:67 #, php-format msgid "%s : Not a valid email address." msgstr "%s: Keine gültige Email Adresse." -#: src/Module/Invite.php:94 +#: src/Module/Invite.php:93 msgid "Please join us on Friendica" msgstr "Ich lade dich zu unserem sozialen Netzwerk Friendica ein" -#: src/Module/Invite.php:103 +#: src/Module/Invite.php:102 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Limit für Einladungen erreicht. Bitte kontaktiere des Administrator der Seite." -#: src/Module/Invite.php:107 +#: src/Module/Invite.php:106 #, php-format msgid "%s : Message delivery failed." msgstr "%s: Zustellung der Nachricht fehlgeschlagen." -#: src/Module/Invite.php:111 +#: src/Module/Invite.php:110 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%d Nachricht gesendet." msgstr[1] "%d Nachrichten gesendet." -#: src/Module/Invite.php:129 +#: src/Module/Invite.php:127 msgid "You have no more invitations available" msgstr "Du hast keine weiteren Einladungen" -#: src/Module/Invite.php:136 +#: src/Module/Invite.php:134 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7774,14 +7784,14 @@ msgid "" " other social networks." msgstr "Besuche %s für eine Liste der öffentlichen Server, denen du beitreten kannst. Friendica-Mitglieder unterschiedlicher Server können sich sowohl alle miteinander verbinden, als auch mit Mitgliedern anderer sozialer Netzwerke." -#: src/Module/Invite.php:138 +#: src/Module/Invite.php:136 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s oder einer anderen öffentlichen Friendica-Website." -#: src/Module/Invite.php:139 +#: src/Module/Invite.php:137 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7790,48 +7800,48 @@ msgid "" "sites you can join." msgstr "Friendica Server verbinden sich alle untereinander, um ein großes, datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Du kannst dich auch mit vielen üblichen Sozialen Netzwerken verbinden. Besuche %s für eine Liste alternativer Friendica-Server, denen du beitreten kannst." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:141 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Es tut uns leid. Dieses System ist zurzeit nicht dafür konfiguriert, sich mit anderen öffentlichen Seiten zu verbinden oder Mitglieder einzuladen." -#: src/Module/Invite.php:146 +#: src/Module/Invite.php:144 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 "Friendica Server verbinden sich alle untereinander, um ein großes, datenschutzorientiertes Soziales Netzwerk zu bilden, das von seinen Mitgliedern betrieben und kontrolliert wird. Du kannst dich auch mit vielen üblichen Sozialen Netzwerken verbinden." -#: src/Module/Invite.php:145 +#: src/Module/Invite.php:143 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "Um diese Kontaktanfrage zu akzeptieren, besuche und registriere dich bitte bei %s." -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:151 msgid "Send invitations" msgstr "Einladungen senden" -#: src/Module/Invite.php:154 +#: src/Module/Invite.php:152 msgid "Enter email addresses, one per line:" msgstr "E-Mail-Adressen eingeben, eine pro Zeile:" -#: src/Module/Invite.php:158 +#: src/Module/Invite.php:156 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Du bist herzlich dazu eingeladen, dich mir und anderen guten Freunden auf Friendica anzuschließen - und ein besseres, soziales Netz aufzubauen." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "You will need to supply this invitation code: $invite_code" msgstr "Du benötigst den folgenden Einladungscode: $invite_code" -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Sobald du registriert bist, kontaktiere mich bitte auf meiner Profilseite:" -#: src/Module/Invite.php:162 +#: src/Module/Invite.php:160 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" @@ -7933,12 +7943,12 @@ msgid "File upload failed." msgstr "Hochladen der Datei fehlgeschlagen." #: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 -#: src/Module/Profile/Photos.php:204 +#: src/Module/Profile/Photos.php:212 #: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Konnte das Bild nicht bearbeiten." -#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:224 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:232 #: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Hochladen des Bildes gescheitert." @@ -7971,23 +7981,23 @@ msgstr "Gelöscht" msgid "List of pending user deletions" msgstr "Liste der auf Löschung wartenden Benutzer" -#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:469 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:431 msgid "Normal Account Page" msgstr "Normales Konto" -#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:476 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:438 msgid "Soapbox Page" msgstr "Marktschreier-Konto" -#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:483 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:445 msgid "Public Group" msgstr "Öffentliche Gruppe" -#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:490 +#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:452 msgid "Public Group - Restricted" msgstr "Öffentliche Gruppe - Beschränkt" -#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:497 +#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:459 msgid "Automatic Friend Page" msgstr "Automatische Freunde-Seite" @@ -7996,22 +8006,22 @@ msgid "Private Group" msgstr "Private Gruppe" #: src/Module/Moderation/BaseUsers.php:118 -#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:440 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:402 msgid "Personal Page" msgstr "Persönliche Seite" #: src/Module/Moderation/BaseUsers.php:119 -#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:447 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:409 msgid "Organisation Page" msgstr "Organisationsseite" #: src/Module/Moderation/BaseUsers.php:120 -#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:454 +#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:416 msgid "News Page" msgstr "Nachrichtenseite" #: src/Module/Moderation/BaseUsers.php:121 -#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:461 +#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:423 msgid "Community Group" msgstr "Gemeinschaftsgruppe" @@ -8041,9 +8051,9 @@ msgid "Block Remote Contact" msgstr "Blockiere entfernten Kontakt" #: src/Module/Moderation/Blocklist/Contact.php:102 -#: 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/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:138 #: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "Alle auswählen" @@ -8384,9 +8394,9 @@ msgid "Tag" msgstr "Tag" #: src/Module/Moderation/Item/Source.php:77 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 -#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 +#: src/Module/Moderation/Users/Index.php:129 msgid "Type" msgstr "Typ" @@ -8651,7 +8661,7 @@ msgstr[1] "%s Reports insgesamt" msgid "URL of the reported contact." msgstr "URL des gemeldeten Kontakts." -#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:418 +#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:380 msgid "Channel Relay" msgstr "Kanalrelais" @@ -8672,11 +8682,11 @@ msgstr[0] "%s Nutzer blockiert" msgstr[1] "%s Nutzer blockiert" #: src/Module/Moderation/Users/Active.php:37 -#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Active.php:74 #: src/Module/Moderation/Users/Blocked.php:37 -#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Blocked.php:74 #: src/Module/Moderation/Users/Index.php:44 -#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Index.php:81 msgid "You can't remove yourself" msgstr "Du kannst dich nicht selbst löschen!" @@ -8689,81 +8699,81 @@ msgid_plural "%s users deleted" msgstr[0] "%s Nutzer gelöscht" msgstr[1] "%s Nutzer gelöscht" -#: src/Module/Moderation/Users/Active.php:69 -#: src/Module/Moderation/Users/Blocked.php:69 -#: src/Module/Moderation/Users/Index.php:76 +#: src/Module/Moderation/Users/Active.php:72 +#: src/Module/Moderation/Users/Blocked.php:72 +#: src/Module/Moderation/Users/Index.php:79 #, php-format msgid "User \"%s\" deleted" msgstr "Nutzer \"%s\" gelöscht" -#: src/Module/Moderation/Users/Active.php:79 -#: src/Module/Moderation/Users/Index.php:86 +#: src/Module/Moderation/Users/Active.php:82 +#: src/Module/Moderation/Users/Index.php:89 #, php-format msgid "User \"%s\" blocked" msgstr "Nutzer \"%s\" blockiert" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Register date" msgstr "Anmeldedatum" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last login" msgstr "Letzte Anmeldung" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last public item" msgstr "Letzter öffentliche Beitrag" -#: src/Module/Moderation/Users/Active.php:120 +#: src/Module/Moderation/Users/Active.php:123 msgid "Active Accounts" msgstr "Aktive Benutzerkonten" -#: src/Module/Moderation/Users/Active.php:124 -#: src/Module/Moderation/Users/Blocked.php:123 -#: src/Module/Moderation/Users/Index.php:139 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "User blocked" msgstr "Nutzer blockiert." -#: src/Module/Moderation/Users/Active.php:125 -#: src/Module/Moderation/Users/Blocked.php:125 -#: src/Module/Moderation/Users/Index.php:141 +#: src/Module/Moderation/Users/Active.php:128 +#: src/Module/Moderation/Users/Blocked.php:128 +#: src/Module/Moderation/Users/Index.php:144 msgid "Site admin" msgstr "Seitenadministrator" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:142 +#: src/Module/Moderation/Users/Active.php:129 +#: src/Module/Moderation/Users/Blocked.php:129 +#: src/Module/Moderation/Users/Index.php:145 msgid "Account expired" msgstr "Account ist abgelaufen" -#: src/Module/Moderation/Users/Active.php:127 -#: src/Module/Moderation/Users/Index.php:145 +#: src/Module/Moderation/Users/Active.php:130 +#: src/Module/Moderation/Users/Index.php:148 msgid "Create a new user" msgstr "Neues Benutzerkonto anlegen" -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:132 -#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:154 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Die markierten Nutzer werden gelöscht!\\n\\nAlle Beiträge, die diese Nutzer auf dieser Seite veröffentlicht haben, werden permanent gelöscht!\\n\\nBist du sicher?" -#: src/Module/Moderation/Users/Active.php:134 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:155 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" @@ -8777,13 +8787,13 @@ msgid_plural "%s users unblocked" msgstr[0] "%s Nutzer freigeschaltet" msgstr[1] "%s Nutzer freigeschaltet" -#: src/Module/Moderation/Users/Blocked.php:78 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Blocked.php:81 +#: src/Module/Moderation/Users/Index.php:95 #, php-format msgid "User \"%s\" unblocked" msgstr "Nutzer \"%s\" frei geschaltet" -#: src/Module/Moderation/Users/Blocked.php:120 +#: src/Module/Moderation/Users/Blocked.php:123 msgid "Blocked Users" msgstr "Blockierte Benutzer" @@ -8816,11 +8826,11 @@ msgid "Users awaiting permanent deletion" msgstr "Nutzer wartet auf permanente Löschung" #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:149 msgid "Permanent deletion" msgstr "Permanent löschen" -#: src/Module/Moderation/Users/Index.php:136 +#: src/Module/Moderation/Users/Index.php:139 msgid "User waiting for permanent deletion" msgstr "Nutzer wartet auf permanente Löschung" @@ -8985,7 +8995,7 @@ msgstr "Bitte kopiere den folgenden Authentifizierungscode in deine App und schl msgid "Invalid data or unknown client" msgstr "Ungültige Daten oder unbekannter Client" -#: src/Module/OAuth/Token.php:91 +#: src/Module/OAuth/Token.php:73 msgid "Unsupported or missing grant type" msgstr "Der Grant-Typ fehlt oder wird nicht unterstützt" @@ -9037,7 +9047,7 @@ msgstr "Ignoriert" msgid "Keep this window open until done." msgstr "Lasse dieses Fenster offen, bis der Vorgang abgeschlossen ist." -#: src/Module/OpenSearch.php:57 +#: src/Module/OpenSearch.php:55 #, php-format msgid "Search in Friendica %s" msgstr "Friendica durchsuchen %s" @@ -9051,12 +9061,12 @@ msgstr "Das Foto ist nicht verfügbar." msgid "The Photo with id %s is not available." msgstr "Das Bild mit ID %s ist nicht verfügbar." -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:178 #, php-format msgid "Invalid external resource with url %s." msgstr "Ungültige externe Ressource mit der URL %s" -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:180 #, php-format msgid "Invalid photo with id %s." msgstr "Fehlerhaftes Foto mit der ID %s." @@ -9089,15 +9099,15 @@ msgstr "Audio-Adresse einfügen" msgid "audio link" msgstr "Audio-Link" -#: src/Module/Post/Tag/Remove.php:92 +#: src/Module/Post/Tag/Remove.php:93 msgid "Remove Item Tag" msgstr "Gegenstands-Tag entfernen" -#: src/Module/Post/Tag/Remove.php:93 +#: src/Module/Post/Tag/Remove.php:94 msgid "Select a tag to remove: " msgstr "Wähle ein Tag zum Entfernen aus: " -#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Post/Tag/Remove.php:95 #: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Entfernen" @@ -9176,32 +9186,32 @@ msgstr "Kommentare von %s" msgid "%s's timeline" msgstr "Timeline von %s" -#: src/Module/Profile/Photos.php:153 src/Module/Profile/Photos.php:156 -#: src/Module/Profile/Photos.php:181 +#: src/Module/Profile/Photos.php:157 src/Module/Profile/Photos.php:160 +#: src/Module/Profile/Photos.php:189 #: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "Bildgröße überschreitet das Limit von %s" -#: src/Module/Profile/Photos.php:159 +#: src/Module/Profile/Photos.php:163 msgid "Image upload didn't complete, please try again" msgstr "Der Upload des Bildes war nicht vollständig. Bitte versuche es erneut." -#: src/Module/Profile/Photos.php:162 +#: src/Module/Profile/Photos.php:166 msgid "Image file is missing" msgstr "Bilddatei konnte nicht gefunden werden." -#: src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:171 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "Der Server kann derzeit keine neuen Datei-Uploads akzeptieren. Bitte kontaktiere deinen Administrator." -#: src/Module/Profile/Photos.php:189 +#: src/Module/Profile/Photos.php:197 msgid "Image file is empty." msgstr "Bilddatei ist leer." -#: src/Module/Profile/Photos.php:341 +#: src/Module/Profile/Photos.php:349 msgid "View Album" msgstr "Album betrachten" @@ -9317,15 +9327,15 @@ msgid "" "content from anonymous visitors." msgstr "Das Profil wurde eingeschränkt, dies verhindert den Zugriff auf öffentliche Beiträge durch anonyme Besucher des Profils." -#: src/Module/Profile/Schedule.php:69 +#: src/Module/Profile/Schedule.php:67 msgid "Scheduled" msgstr "Zeitplan" -#: src/Module/Profile/Schedule.php:70 +#: src/Module/Profile/Schedule.php:68 msgid "Content" msgstr "Inhalt" -#: src/Module/Profile/Schedule.php:71 +#: src/Module/Profile/Schedule.php:69 msgid "Remove post" msgstr "Beitrag entfernen" @@ -9390,7 +9400,7 @@ msgid "Please repeat your e-mail address:" msgstr "Bitte wiederhole deine E-Mail Adresse" #: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:551 +#: src/Module/Settings/Account.php:513 msgid "New Password:" msgstr "Neues Passwort:" @@ -9399,7 +9409,7 @@ msgid "Leave empty for an auto generated password." msgstr "Leer lassen, um das Passwort automatisch zu generieren." #: src/Module/Register.php:157 src/Module/Security/PasswordTooLong.php:87 -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Confirm:" msgstr "Bestätigen:" @@ -9583,20 +9593,20 @@ msgstr "Abgemeldet." msgid "OpenID protocol error. No ID returned" msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." -#: src/Module/Security/OpenID.php:76 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "Nutzerkonto nicht gefunden. Bitte melde dich an und füge die OpenID zu deinem Konto hinzu." -#: src/Module/Security/OpenID.php:78 +#: src/Module/Security/OpenID.php:80 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "Nutzerkonto nicht gefunden. Bitte registriere ein neues Konto oder melde dich mit einem existierendem Konto an um diene OpenID hinzuzufügen." #: src/Module/Security/PasswordTooLong.php:43 -#: src/Module/Settings/Account.php:51 +#: src/Module/Settings/Account.php:49 msgid "Passwords do not match." msgstr "Die Passwörter stimmen nicht überein." @@ -9605,7 +9615,7 @@ msgid "Password does not need changing." msgstr "Passwort muss nicht geändert werden." #: src/Module/Security/PasswordTooLong.php:63 -#: src/Module/Settings/Account.php:65 +#: src/Module/Settings/Account.php:63 msgid "Password unchanged." msgstr "Passwort unverändert." @@ -9625,24 +9635,24 @@ msgid "Update Password" msgstr "Passwort aktualisieren" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Current Password:" msgstr "Aktuelles Passwort:" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Your current password to confirm the changes" msgstr "Dein aktuelles Passwort um die Änderungen zu bestätigen" #: src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:537 +#: src/Module/Settings/Account.php:499 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " "spaces and accentuated letters." msgstr "Erlaube Zeichen sind a-z, A-Z, 0-9 und Sonderzeichen, abgesehen von Leerzeichen und akzentuierten Buchstaben." #: src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:538 +#: src/Module/Settings/Account.php:500 msgid "Password length is limited to 72 characters." msgstr "Die Länge des Passworts ist auf 72 Zeichen begrenzt." @@ -9746,129 +9756,121 @@ msgstr "Bitte gebe einen Code aus Ihrer Authentifizierungs-App ein" msgid "Verify code and complete login" msgstr "Code überprüfen und Anmeldung abschließen" -#: src/Module/Settings/Account.php:80 +#: src/Module/Settings/Account.php:78 msgid "Please use a shorter name." msgstr "Bitte verwende einen kürzeren Namen." -#: src/Module/Settings/Account.php:83 +#: src/Module/Settings/Account.php:81 msgid "Name too short." msgstr "Der Name ist zu kurz." -#: src/Module/Settings/Account.php:92 +#: src/Module/Settings/Account.php:90 msgid "Wrong Password." msgstr "Falsches Passwort" -#: src/Module/Settings/Account.php:97 +#: src/Module/Settings/Account.php:95 msgid "Invalid email." msgstr "Ungültige E-Mail-Adresse." -#: src/Module/Settings/Account.php:101 +#: src/Module/Settings/Account.php:99 msgid "Cannot change to that email." msgstr "Ändern der E-Mail nicht möglich. " -#: 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 +#: 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 msgid "Settings were not updated." msgstr "Einstellungen nicht aktualisiert" -#: src/Module/Settings/Account.php:331 -msgid "Contact CSV file upload error" -msgstr "Fehler beim Hochladen der Kontakt CSV Datei" - -#: src/Module/Settings/Account.php:350 -msgid "Importing Contacts done" -msgstr "Kontakte wurden importiert." - -#: src/Module/Settings/Account.php:363 +#: src/Module/Settings/Account.php:325 msgid "Relocate message has been send to your contacts" msgstr "Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet." -#: src/Module/Settings/Account.php:380 +#: src/Module/Settings/Account.php:342 msgid "Unable to find your profile. Please contact your admin." msgstr "Konnte dein Profil nicht finden. Bitte kontaktiere den Admin." -#: src/Module/Settings/Account.php:420 +#: src/Module/Settings/Account.php:382 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "Konto für einen Dienst, der automatisch Inhalte basierend auf vom Benutzer definierten Kanälen teilt." -#: src/Module/Settings/Account.php:430 +#: src/Module/Settings/Account.php:392 msgid "Personal Page Subtypes" msgstr "Unterarten der persönlichen Seite" -#: src/Module/Settings/Account.php:431 +#: src/Module/Settings/Account.php:393 msgid "Community Group Subtypes" msgstr "Unterarten der Gemeinschaftsgruppen" -#: src/Module/Settings/Account.php:442 +#: src/Module/Settings/Account.php:404 msgid "Account for a personal profile." msgstr "Konto für ein persönliches Profil." -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:411 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Konto für eine Organisation, das Kontaktanfragen automatisch als \"Follower\" annimmt." -#: src/Module/Settings/Account.php:456 +#: src/Module/Settings/Account.php:418 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Konto für einen Feedspiegel, das Kontaktanfragen automatisch als \"Follower\" annimmt." -#: src/Module/Settings/Account.php:463 +#: src/Module/Settings/Account.php:425 msgid "Account for community discussions." msgstr "Konto für Diskussionsforen. " -#: src/Module/Settings/Account.php:471 +#: src/Module/Settings/Account.php:433 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Konto für ein normales, persönliches Profil. Kontaktanfragen müssen manuell als \"Friend\" oder \"Follower\" bestätigt werden." -#: src/Module/Settings/Account.php:478 +#: src/Module/Settings/Account.php:440 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Konto für ein öffentliches Profil, das Kontaktanfragen automatisch als \"Follower\" annimmt." -#: src/Module/Settings/Account.php:485 +#: src/Module/Settings/Account.php:447 msgid "Automatically approves all contact requests." msgstr "Bestätigt alle Kontaktanfragen automatisch." -#: src/Module/Settings/Account.php:492 +#: src/Module/Settings/Account.php:454 msgid "Contact requests have to be manually approved." msgstr "Kontaktanfragen müssen manuell akzeptiert werden." -#: src/Module/Settings/Account.php:499 +#: src/Module/Settings/Account.php:461 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Konto für ein gefragtes Profil, das Kontaktanfragen automatisch als \"Friend\" annimmt." -#: src/Module/Settings/Account.php:504 +#: src/Module/Settings/Account.php:466 msgid "Private Group [Experimental]" msgstr "Private Gruppe [experimentell]" -#: src/Module/Settings/Account.php:506 +#: src/Module/Settings/Account.php:468 msgid "Requires manual approval of contact requests." msgstr "Kontaktanfragen müssen manuell bestätigt werden." -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Optional) Erlaube die Anmeldung für dieses Konto mit dieser OpenID." -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 msgid "Publish your profile in your local site directory?" msgstr "Darf dein Profil im lokalen Verzeichnis dieses Servers veröffentlicht werden?" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9876,94 +9878,94 @@ msgid "" " system settings." msgstr "Dein Profil wird im lokalen Verzeichnis dieses Knotens veröffentlicht. Je nach Systemeinstellungen kann es öffentlich auffindbar sein." -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:491 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Dein Profil wird auch in den globalen Friendica Verzeichnissen (z.B. %s) veröffentlicht werden." -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:504 msgid "Account Settings" msgstr "Kontoeinstellungen" -#: src/Module/Settings/Account.php:543 +#: src/Module/Settings/Account.php:505 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Die Adresse deines Profils lautet '%s' oder '%s'." -#: src/Module/Settings/Account.php:550 +#: src/Module/Settings/Account.php:512 msgid "Password Settings" msgstr "Passwort-Einstellungen" -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Leave password fields blank unless changing" msgstr "Lass die Passwort-Felder leer, außer du willst das Passwort ändern" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Password:" msgstr "Passwort:" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Your current password to confirm the changes of the email address" msgstr "Dein aktuelles Passwort um die Änderungen deiner E-Mail Adresse zu bestätigen" -#: src/Module/Settings/Account.php:557 +#: src/Module/Settings/Account.php:519 msgid "Delete OpenID URL" msgstr "OpenID URL löschen" -#: src/Module/Settings/Account.php:559 +#: src/Module/Settings/Account.php:521 msgid "Basic Settings" msgstr "Grundeinstellungen" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:522 #: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "Anzeigename:" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:523 msgid "Email Address:" msgstr "E-Mail-Adresse:" -#: src/Module/Settings/Account.php:562 +#: src/Module/Settings/Account.php:524 msgid "Your Timezone:" msgstr "Deine Zeitzone:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "Your Language:" msgstr "Deine Sprache:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Wähle die Sprache, in der wir dir die Friendica-Oberfläche präsentieren sollen und dir E-Mail schicken" -#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Account.php:526 msgid "Default Post Location:" msgstr "Standardstandort:" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:527 msgid "Use Browser Location:" msgstr "Standort des Browsers verwenden:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:529 msgid "Security and Privacy Settings" msgstr "Sicherheits- und Privatsphäre-Einstellungen" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "Maximum Friend Requests/Day:" msgstr "Maximale Anzahl von Kontaktanfragen/Tag:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "(to prevent spam abuse)" msgstr "(um SPAM zu vermeiden)" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 msgid "Allow your profile to be searchable globally?" msgstr "Darf dein Profil bei Suchanfragen gefunden werden?" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 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 " @@ -9971,43 +9973,43 @@ msgid "" "indexed or not." msgstr "Aktiviere diese Einstellung, wenn du von anderen einfach gefunden und gefolgt werden möchtest. Dein Profil wird dann auf anderen Systemen leicht durchsuchbar. Außerdem regelt diese Einstellung ob Friendica Suchmaschinen mitteilen soll, ob dein Profil indiziert werden soll oder nicht." -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Liste der Kontakte vor Betrachtern des Profil verbergen?" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "Auf deiner Profilseite wird eine Liste deiner Kontakte angezeigt. Aktiviere diese Option wenn du das nicht möchtest." -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:535 msgid "Hide your public content from anonymous viewers" msgstr "Verbirg die öffentliche Inhalte vor anonymen Besuchern" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:535 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 "Anonyme Besucher deines Profils werden nur grundlegende Informationen angezeigt bekommen. Deine öffentlichen Beiträge und Kommentare werden weiterhin frei zugänglich auf den Servern deiner Kontakte und über Relays sein." -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:536 msgid "Make public posts unlisted" msgstr "Öffentliche Beiträge nicht listen" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:536 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 "Deine öffentlichen Beiträge werden nicht auf der Gemeinschaftsseite oder in den Suchergebnissen erscheinen, außerdem werden sie nicht an Relay-Server geschickt. Sie werden aber weiterhin in allen öffentlichen Feeds, auch auf entfernten Servern, erscheinen." -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:537 msgid "Make all posted pictures accessible" msgstr "Alle geposteten Bilder zugreifbar machen" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:537 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 " @@ -10015,227 +10017,213 @@ msgid "" "public on your photo albums though." msgstr "Diese Option macht jedes veröffentlichte Bild über den direkten Link zugänglich. Dies ist eine Problemumgehung für das Problem, dass die meisten anderen Netzwerke keine Berechtigungen für Bilder verarbeiten können. Nicht öffentliche Bilder sind in Ihren Fotoalben jedoch immer noch nicht für die Öffentlichkeit sichtbar." -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "Allow friends to post to your profile page?" msgstr "Dürfen deine Kontakte auf deine Pinnwand schreiben?" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Deine Kontakte können Beiträge auf deiner Pinnwand hinterlassen. Diese werden an deine Kontakte verteilt." -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Allow friends to tag your posts?" msgstr "Dürfen deine Kontakte deine Beiträge mit Schlagwörtern versehen?" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Your contacts can add additional tags to your posts." msgstr "Deine Kontakte dürfen deine Beiträge mit zusätzlichen Schlagworten versehen." -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:540 msgid "Default privacy circle for new contacts" msgstr "Voreingestellter Circle für neue Kontakte" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:541 msgid "Default privacy circle for new group contacts" msgstr "Voreingestellter Circle für neue Gruppenkontakte" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:542 msgid "Default Post Permissions" msgstr "Standard-Zugriffsrechte für Beiträge" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:546 msgid "Expiration settings" msgstr "Verfalls-Einstellungen" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "Automatically expire posts after this many days:" msgstr "Beiträge verfallen automatisch nach dieser Anzahl von Tagen:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Wenn leer, verfallen Beiträge nie automatisch. Verfallene Beiträge werden gelöscht." -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "Expire posts" msgstr "Beiträge verfallen lassen" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "When activated, posts and comments will be expired." msgstr "Ist dies aktiviert, werden Beiträge und Kommentare verfallen." -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "Expire personal notes" msgstr "Persönliche Notizen verfallen lassen" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Ist dies aktiviert, werden persönliche Notizen auf deiner Pinnwand verfallen." -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "Expire starred posts" msgstr "Markierte Beiträge verfallen lassen" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Markierte Beiträge verfallen eigentlich nicht. Mit dieser Option kannst du sie verfallen lassen." -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 msgid "Only expire posts by others" msgstr "Nur Beiträge anderer verfallen lassen." -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Wenn aktiviert werden deine eigenen Beiträge niemals verfallen. Die obigen Einstellungen betreffen dann ausschließlich die Beiträge von anderen Accounts." -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:554 msgid "Notification Settings" msgstr "Benachrichtigungseinstellungen" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:555 msgid "Send a notification email when:" msgstr "Benachrichtigungs-E-Mail senden, wenn:" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:556 msgid "You receive an introduction" msgstr "– du eine Kontaktanfrage erhältst" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:557 msgid "Your introductions are confirmed" msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:558 msgid "Someone writes on your profile wall" msgstr "– jemand etwas auf Deine Pinnwand schreibt" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:559 msgid "Someone writes a followup comment" msgstr "– jemand auch einen Kommentar verfasst" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:560 msgid "You receive a private message" msgstr "– du eine private Nachricht erhältst" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:561 msgid "You receive a friend suggestion" msgstr "– du eine Empfehlung erhältst" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:562 msgid "You are tagged in a post" msgstr "– du in einem Beitrag erwähnt wirst" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:564 msgid "Create a desktop notification when:" msgstr "Benachrichtigungen anzeigen wenn:" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:565 msgid "Someone tagged you" msgstr "Dich jemand erwähnt" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:566 msgid "Someone directly commented on your post" msgstr "Jemand einen Beitrag von dir kommentiert hat" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:567 msgid "Someone liked your content" msgstr "Einer deiner Beiträge gemocht wurde" -#: src/Module/Settings/Account.php:605 src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:567 src/Module/Settings/Account.php:568 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "Kann nur aktiviert werden, wenn die \"Jemand einen Beitrag von dir kommentiert hat  \" Option eingeschaltet ist." -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:568 msgid "Someone shared your content" msgstr "Einer deiner Beiträge geteilt wurde" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:569 msgid "Someone commented in your thread" msgstr "Jemand hat in deiner Unterhaltung kommentiert" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:570 msgid "Someone commented in a thread where you commented" msgstr "Jemand in einer Unterhaltung kommentiert hat, in der du auch kommentiert hast" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:571 msgid "Someone commented in a thread where you interacted" msgstr "Jemand kommentierte in einer Unterhaltung mit der du interagiert hast" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Activate desktop notifications" msgstr "Desktop-Benachrichtigungen einschalten" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Show desktop popup on new notifications" msgstr "Desktop-Benachrichtigungen einschalten" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:577 msgid "Text-only notification emails" msgstr "Benachrichtigungs-E-Mail als Rein-Text." -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:579 msgid "Send text only notification emails, without the html part" msgstr "Sende Benachrichtigungs-E-Mail als Rein-Text - ohne HTML-Teil" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:583 msgid "Show detailled notifications" msgstr "Detaillierte Benachrichtigungen anzeigen" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:585 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Normalerweise werden alle Benachrichtigungen zu einem Thema in einer einzigen Benachrichtigung zusammengefasst. Wenn diese Option aktiviert ist, wird jede Benachrichtigung einzeln angezeigt." -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:589 msgid "Show notifications of ignored contacts" msgstr "Zeige Benachrichtigungen von ignorierten Kontakten" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:591 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 "Beiträge von ignorierten Kontakten werden dir nicht angezeigt. Aber du siehst immer noch ihre Kommentare. Diese Einstellung legt fest, ob du dazu weiterhin Benachrichtigungen erhalten willst oder ob diese einfach verworfen werden sollen." -#: src/Module/Settings/Account.php:632 +#: src/Module/Settings/Account.php:594 msgid "Advanced Account/Page Type Settings" msgstr "Erweiterte Konto-/Seitentyp-Einstellungen" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:595 msgid "Change the behaviour of this account for special situations" msgstr "Verhalten dieses Kontos in bestimmten Situationen:" -#: src/Module/Settings/Account.php:636 -msgid "Import Contacts" -msgstr "Kontakte Importieren" - -#: src/Module/Settings/Account.php:637 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "Lade eine CSV Datei hoch, die das Handle der Kontakte deines alten Nutzerkontos in der ersten Spalte enthält." - -#: src/Module/Settings/Account.php:638 -msgid "Upload File" -msgstr "Datei hochladen" - -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:598 msgid "Relocate" msgstr "Umziehen" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:599 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 "Wenn du dein Profil von einem anderen Server umgezogen hast und einige deiner Kontakte deine Beiträge nicht erhalten, verwende diesen Button." -#: src/Module/Settings/Account.php:643 +#: src/Module/Settings/Account.php:600 msgid "Resend relocate message to contacts" msgstr "Umzugsbenachrichtigung erneut an Kontakte senden" @@ -10400,214 +10388,232 @@ msgstr "Eintrag aus der Kanalliste löschen" msgid "Delete entry from the channel list?" msgstr "Eintrag aus der Kanalliste löschen?" -#: src/Module/Settings/Connectors.php:108 +#: src/Module/Settings/Connectors.php:107 msgid "Failed to connect with email account using the settings provided." msgstr "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich." -#: src/Module/Settings/Connectors.php:155 -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:150 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:149 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "Eingebaute Unterstützung für die Verbindung zu %s ist aktiviert." -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:150 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "Eingebaute Unterstützung für die Verbindung zu %s ist nicht aktiviert." -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:161 msgid "Email access is disabled on this site." msgstr "Zugriff auf E-Mails für diese Seite deaktiviert." -#: src/Module/Settings/Connectors.php:182 -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:176 +#: src/Module/Settings/Connectors.php:226 msgid "None" msgstr "Keine" -#: src/Module/Settings/Connectors.php:186 +#: src/Module/Settings/Connectors.php:180 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "Grundeinstellung (Mastodon zweigt den Titel und einen Link auf den Beitrag)" -#: src/Module/Settings/Connectors.php:187 +#: src/Module/Settings/Connectors.php:181 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "Verwende die Zusammenfassung (sie wird auf Mastodon und anderen als Inhaltswarnung behandelt)" -#: src/Module/Settings/Connectors.php:188 +#: src/Module/Settings/Connectors.php:182 msgid "Embed the title in the body" msgstr "Titel in Nachrichtenkörper einbetten" -#: src/Module/Settings/Connectors.php:199 +#: src/Module/Settings/Connectors.php:193 msgid "General Social Media Settings" msgstr "Allgemeine Einstellungen zu Sozialen Medien" -#: src/Module/Settings/Connectors.php:202 +#: src/Module/Settings/Connectors.php:196 msgid "Followed content scope" msgstr "Umfang zu folgender Inhalte" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:198 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "Normalerweise werden Unterhaltungen an denen deine Kontakte beteiligt sind, sie aber nicht begonnen haben, in deiner Timeline angezeigt. Mit dieser Einstellung kann dieses Vorgehen kontrolliert werden. Es kann entweder dahin erweitert werden, dass auch Unterhaltungen angezeigt werden in denen deine Kontakte einen Kommentar mögen, oder komplett ausgeschaltet werden, so dass nur noch die Unterhaltungen angezeigt werden, die von deinen Kontakten gestartet wurden." -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:200 msgid "Only conversations my follows started" msgstr "Nur Unterhaltungen, die meine Kontakte gestartet haben" -#: src/Module/Settings/Connectors.php:207 +#: src/Module/Settings/Connectors.php:201 msgid "Conversations my follows started or commented on (default)" msgstr "Unterhaltungen an denen meine Kontakte beteiligt sind (Grundeinstellung)" -#: src/Module/Settings/Connectors.php:208 +#: src/Module/Settings/Connectors.php:202 msgid "Any conversation my follows interacted with, including likes" msgstr "Unterhaltungen mit denen meine Kontakte interagiert haben, inklusive likes" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "Collapse sensitive posts" msgstr "\"Sensible\" Inhalte einklappen" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "Wenn ein Beitrag als \"sensibel\" gekennzeichnet ist, wird er eingeklappt angezeigt, wenn diese Option aktiviert ist." -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "Enable intelligent shortening" msgstr "Intelligentes kürzen einschalten" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "Normalerweise versucht das System, den besten Link zu finden, um ihn zum gekürzten Postings hinzuzufügen. Wird diese Option ausgewählt, wird stets ein Link auf die originale Friendica-Nachricht beigefügt." -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "Enable simple text shortening" msgstr "Einfache Textkürzung aktivieren" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "Normalerweise kürzt das System Beiträge bei Zeilenumbrüchen. Ist diese Option aktiv, wird das System die Kürzung beim Erreichen der maximalen Zeichenzahl vornehmen." -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "Attach the link title" msgstr "Link Titel hinzufügen" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Ist dies aktiviert, wird der Titel von angehangenen Links bei Beiträgen nach Diaspora* angefügt. Dies ist vorallem bei Entfernten Konten nützlich die Beiträge von Feeds weiterleiten." -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "API: Use spoiler field as title" msgstr "API: Verwende den Spoiler Text als Titel" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "Ist dies aktiviert, wird das \"spoiler_text\" der API als Titel von neuen Beiträgen verwendet. Ist es deaktiviert wird der Text als Spoiler-Text verwendet. Bei Kommentaren wird der Inhalt immer als Spoiler-Text verwendet." -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "API: Automatically links at the end of the post as attached posts" msgstr "API: Automatische Links am Ende des Beitrags als angehängte Beiträge" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "Wenn dies aktiviert ist, reagieren hinzugefügte Links am Ende des Beitrags genauso wie hinzugefügte Links in der Weboberfläche." -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "Article Mode" msgstr "Artikel Modus" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "Kontrolliert wie Beiträge mit Titeln übermittel werden. Mastodon und dessen Forks stellen den Inhalt dieser Beiträge nicht dar, wenn sie an sich korrekt in den Grundeinstellungen übertragen werden." -#: src/Module/Settings/Connectors.php:218 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "Dein alter ActivityPub/GNU Social-Account" - -#: src/Module/Settings/Connectors.php:218 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "Wenn du deinen alten ActivityPub oder GNU Social/Statusnet-Account-Namen hier angibst (Format name@domain.tld), werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden." - -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:215 msgid "Email/Mailbox Setup" msgstr "E-Mail/Postfach-Einstellungen" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:216 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an." -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:217 msgid "Last successful email check:" msgstr "Letzter erfolgreicher E-Mail-Check" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:219 msgid "IMAP server name:" msgstr "IMAP-Server-Name:" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:220 msgid "IMAP port:" msgstr "IMAP-Port:" -#: src/Module/Settings/Connectors.php:228 +#: src/Module/Settings/Connectors.php:221 msgid "Security:" msgstr "Sicherheit:" -#: src/Module/Settings/Connectors.php:229 +#: src/Module/Settings/Connectors.php:222 msgid "Email login name:" msgstr "E-Mail-Login-Name:" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:223 msgid "Email password:" msgstr "E-Mail-Passwort:" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:224 msgid "Reply-to address:" msgstr "Reply-to Adresse:" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:225 msgid "Send public posts to all email contacts:" msgstr "Sende öffentliche Beiträge an alle E-Mail-Kontakte:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Action after import:" msgstr "Aktion nach Import:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Move to folder" msgstr "In einen Ordner verschieben" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:227 msgid "Move to folder:" msgstr "In diesen Ordner verschieben:" +#: src/Module/Settings/ContactImport.php:63 +msgid "Contact CSV file upload error" +msgstr "Fehler beim Hochladen der Kontakt CSV Datei" + +#: src/Module/Settings/ContactImport.php:82 +msgid "Importing Contacts done" +msgstr "Kontakte wurden importiert." + +#: src/Module/Settings/ContactImport.php:112 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "Lade eine CSV Datei hoch, die das Handle der Kontakte deines alten Nutzerkontos in der ersten Spalte enthält." + +#: src/Module/Settings/ContactImport.php:113 +msgid "Upload File" +msgstr "Datei hochladen" + +#: src/Module/Settings/ContactImport.php:115 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "Dein alter ActivityPub/GNU Social-Account" + +#: src/Module/Settings/ContactImport.php:115 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "Wenn du deinen alten ActivityPub oder GNU Social/Statusnet-Account-Namen hier angibst (Format name@domain.tld), werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden." + #: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "Delegierung erfolgreich eingerichtet." @@ -11058,42 +11064,42 @@ msgstr "Private Schlüsselwörter:" msgid "(Used for searching profiles, never shown to others)" msgstr "(Wird für die Suche nach Profilen verwendet und niemals veröffentlicht)" -#: 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/Crop.php:90 +#: src/Module/Settings/Profile/Photo/Crop.php:108 +#: src/Module/Settings/Profile/Photo/Crop.php:126 #: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Verkleinern der Bildgröße von [%s] scheiterte." -#: src/Module/Settings/Profile/Photo/Crop.php:136 +#: src/Module/Settings/Profile/Photo/Crop.php:133 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Drücke Umschalt+Neu Laden oder leere den Browser-Cache, falls das neue Foto nicht gleich angezeigt wird." -#: src/Module/Settings/Profile/Photo/Crop.php:141 +#: src/Module/Settings/Profile/Photo/Crop.php:138 msgid "Unable to process image" msgstr "Bild konnte nicht verarbeitet werden" -#: src/Module/Settings/Profile/Photo/Crop.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:157 msgid "Photo not found." msgstr "Foto nicht gefunden" -#: src/Module/Settings/Profile/Photo/Crop.php:182 +#: src/Module/Settings/Profile/Photo/Crop.php:179 msgid "Profile picture successfully updated." msgstr "Profilbild erfolgreich aktualisiert." -#: src/Module/Settings/Profile/Photo/Crop.php:208 -#: src/Module/Settings/Profile/Photo/Crop.php:212 +#: src/Module/Settings/Profile/Photo/Crop.php:205 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Crop Image" msgstr "Bild zurechtschneiden" -#: src/Module/Settings/Profile/Photo/Crop.php:209 +#: src/Module/Settings/Profile/Photo/Crop.php:206 msgid "Please adjust the image cropping for optimum viewing." msgstr "Passe bitte den Bildausschnitt an, damit das Bild optimal dargestellt werden kann." -#: src/Module/Settings/Profile/Photo/Crop.php:211 +#: src/Module/Settings/Profile/Photo/Crop.php:208 msgid "Use Image As Is" msgstr "Bild wie es ist verwenden" @@ -11164,17 +11170,17 @@ msgstr "Die ID des Users lautet %d" msgid "Your account has been successfully removed. Bye bye!" msgstr "Ihr Konto wurde erfolgreich gelöscht. Auf Wiedersehen!" -#: src/Module/Settings/RemoveMe.php:116 +#: src/Module/Settings/RemoveMe.php:114 msgid "Remove My Account" msgstr "Konto löschen" -#: src/Module/Settings/RemoveMe.php:117 +#: src/Module/Settings/RemoveMe.php:115 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wiederherzustellen." -#: src/Module/Settings/RemoveMe.php:122 +#: src/Module/Settings/RemoveMe.php:120 msgid "Please enter your password for verification:" msgstr "Bitte gib dein Passwort zur Verifikation ein:" @@ -11569,11 +11575,11 @@ msgstr "Leider ist die gewünschte Konversation für dich nicht verfügbar." msgid "Possible reasons include:" msgstr "Mögliche Gründe sind:" -#: src/Module/Special/HTTPException.php:64 +#: src/Module/Special/HTTPException.php:65 msgid "Stack trace:" msgstr "Stack trace:" -#: src/Module/Special/HTTPException.php:69 +#: src/Module/Special/HTTPException.php:70 #, php-format msgid "Exception thrown in %s:%d" msgstr "Exception thrown in %s:%d" @@ -12356,295 +12362,295 @@ msgstr "Falls du diese Beiträge nicht erhalten möchtest, kontaktiere bitte den msgid "%s posted an update." msgstr "%s hat ein Update veröffentlicht." -#: src/Object/Post.php:124 +#: src/Object/Post.php:125 msgid "Private Message" msgstr "Private Nachricht" -#: src/Object/Post.php:128 +#: src/Object/Post.php:129 msgid "Public Message" msgstr "Öffentlicher Beitrag" -#: src/Object/Post.php:132 +#: src/Object/Post.php:133 msgid "Unlisted Message" msgstr "Nicht gelisteter Beitrag" -#: src/Object/Post.php:168 +#: src/Object/Post.php:169 msgid "This entry was edited" msgstr "Dieser Beitrag wurde bearbeitet." -#: src/Object/Post.php:196 +#: src/Object/Post.php:197 msgid "Connector Message" msgstr "Connector Nachricht" -#: src/Object/Post.php:225 src/Object/Post.php:227 +#: src/Object/Post.php:226 src/Object/Post.php:228 msgid "Edit" msgstr "Bearbeiten" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Delete globally" msgstr "Global löschen" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Remove locally" msgstr "Lokal entfernen" -#: src/Object/Post.php:268 +#: src/Object/Post.php:269 #, php-format msgid "Block %s" msgstr "Blockiere %s" -#: src/Object/Post.php:273 +#: src/Object/Post.php:274 #, php-format msgid "Ignore %s" msgstr "Ignoriere %s" -#: src/Object/Post.php:278 +#: src/Object/Post.php:279 #, php-format msgid "Collapse %s" -msgstr "Verberge %s" +msgstr "Klappe %s zu" -#: src/Object/Post.php:282 +#: src/Object/Post.php:283 msgid "Report post" msgstr "Beitrag melden" -#: src/Object/Post.php:293 +#: src/Object/Post.php:294 msgid "Save to folder" msgstr "In Ordner speichern" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will attend" msgstr "Ich werde teilnehmen" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will not attend" msgstr "Ich werde nicht teilnehmen" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I might attend" msgstr "Ich werde eventuell teilnehmen" -#: src/Object/Post.php:380 +#: src/Object/Post.php:381 msgid "Ignore thread" msgstr "Thread ignorieren" -#: src/Object/Post.php:381 +#: src/Object/Post.php:382 msgid "Unignore thread" msgstr "Thread nicht mehr ignorieren" -#: src/Object/Post.php:382 +#: src/Object/Post.php:383 msgid "Toggle ignore status" msgstr "Ignoriert-Status ein-/ausschalten" -#: src/Object/Post.php:392 +#: src/Object/Post.php:393 msgid "Add star" msgstr "Markieren" -#: src/Object/Post.php:393 +#: src/Object/Post.php:394 msgid "Remove star" msgstr "Markierung entfernen" -#: src/Object/Post.php:394 +#: src/Object/Post.php:395 msgid "Toggle star status" msgstr "Markierung umschalten" -#: src/Object/Post.php:405 +#: src/Object/Post.php:406 msgid "Pin" msgstr "Anheften" -#: src/Object/Post.php:406 +#: src/Object/Post.php:407 msgid "Unpin" msgstr "Losmachen" -#: src/Object/Post.php:407 +#: src/Object/Post.php:408 msgid "Toggle pin status" msgstr "Angeheftet Status ändern" -#: src/Object/Post.php:410 +#: src/Object/Post.php:411 msgid "Pinned" msgstr "Angeheftet" -#: src/Object/Post.php:415 +#: src/Object/Post.php:416 msgid "Add tag" msgstr "Tag hinzufügen" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote share this" msgstr "Teile und zitiere dies" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote Share" msgstr "Zitat teilen" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare this" msgstr "Teile dies" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare" msgstr "Teilen" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Cancel your Reshare" msgstr "Teilen aufheben" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Unshare" msgstr "Nicht mehr teilen" -#: src/Object/Post.php:478 +#: src/Object/Post.php:479 #, php-format msgid "%s (Received %s)" msgstr "%s (Empfangen %s)" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Comment this item on your system" msgstr "Kommentiere diesen Beitrag von deinem System aus" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Remote comment" msgstr "Entfernter Kommentar" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via ..." msgstr "Teile mit..." -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via external services" msgstr "Teile mit einem externen Dienst" -#: src/Object/Post.php:513 +#: src/Object/Post.php:514 msgid "Unknown parent" msgstr "Unbekannter Ursprungsbeitrag" -#: src/Object/Post.php:517 +#: src/Object/Post.php:518 #, php-format msgid "in reply to %s" msgstr "Als Antwort auf %s" -#: src/Object/Post.php:519 +#: src/Object/Post.php:520 msgid "Parent is probably private or not federated." msgstr "Der Urspungsbeitrag ist wahrscheinlich privat oder nicht föderiert." -#: src/Object/Post.php:543 +#: src/Object/Post.php:544 msgid "to" msgstr "zu" -#: src/Object/Post.php:544 +#: src/Object/Post.php:545 msgid "via" msgstr "via" -#: src/Object/Post.php:545 +#: src/Object/Post.php:546 msgid "Wall-to-Wall" msgstr "Wall-to-Wall" -#: src/Object/Post.php:546 +#: src/Object/Post.php:547 msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" -#: src/Object/Post.php:599 +#: src/Object/Post.php:600 #, php-format msgid "Reply to %s" msgstr "Antworte %s" -#: src/Object/Post.php:602 +#: src/Object/Post.php:603 msgid "More" msgstr "Mehr" -#: src/Object/Post.php:621 +#: src/Object/Post.php:622 msgid "Notifier task is pending" msgstr "Die Benachrichtigungsaufgabe ist ausstehend" -#: src/Object/Post.php:622 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is pending" msgstr "Die Auslieferung an Remote-Server steht noch aus" -#: src/Object/Post.php:623 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is underway" msgstr "Die Auslieferung an Remote-Server ist unterwegs" -#: src/Object/Post.php:624 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is mostly done" msgstr "Die Zustellung an Remote-Server ist fast erledigt" -#: src/Object/Post.php:625 +#: src/Object/Post.php:626 msgid "Delivery to remote servers is done" msgstr "Die Zustellung an die Remote-Server ist erledigt" -#: src/Object/Post.php:647 +#: src/Object/Post.php:648 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d Kommentar" msgstr[1] "%d Kommentare" -#: src/Object/Post.php:648 +#: src/Object/Post.php:649 msgid "Show more" msgstr "Zeige mehr" -#: src/Object/Post.php:649 +#: src/Object/Post.php:650 msgid "Show fewer" msgstr "Zeige weniger" -#: src/Object/Post.php:686 +#: src/Object/Post.php:687 #, php-format msgid "Reshared by: %s" msgstr "Geteilt von: %s" -#: src/Object/Post.php:691 +#: src/Object/Post.php:692 #, php-format msgid "Viewed by: %s" msgstr "Gesehen von: %s" -#: src/Object/Post.php:696 +#: src/Object/Post.php:697 #, php-format msgid "Read by: %s" msgstr "Gelesen von: %s" -#: src/Object/Post.php:701 +#: src/Object/Post.php:702 #, php-format msgid "Liked by: %s" msgstr "Diese Menschen mögen das: %s" -#: src/Object/Post.php:706 +#: src/Object/Post.php:707 #, php-format msgid "Disliked by: %s" msgstr "Unbeliebt bei: %s" -#: src/Object/Post.php:711 +#: src/Object/Post.php:712 #, php-format msgid "Attended by: %s" msgstr "Besucht von: %s" -#: src/Object/Post.php:716 +#: src/Object/Post.php:717 #, php-format msgid "Maybe attended by: %s" msgstr "Vielleicht besucht von: %s" -#: src/Object/Post.php:721 +#: src/Object/Post.php:722 #, php-format msgid "Not attended by: %s" msgstr "Nicht besucht von: %s" -#: src/Object/Post.php:726 +#: src/Object/Post.php:727 #, php-format msgid "Commented by: %s" msgstr "Kommentiert von: %s" -#: src/Object/Post.php:731 +#: src/Object/Post.php:732 #, php-format msgid "Reacted with %s by: %s" msgstr "Reagierte mit %s von: %s" -#: src/Object/Post.php:754 +#: src/Object/Post.php:755 #, php-format msgid "Quote shared by: %s" msgstr "Zitat geteilt von: %s" -#: src/Protocol/ActivityPub/Receiver.php:557 +#: src/Protocol/ActivityPub/Receiver.php:558 msgid "Chat" msgstr "Chat" -#: src/Protocol/Delivery.php:530 +#: src/Protocol/Delivery.php:531 msgid "(no subject)" msgstr "(kein Betreff)" @@ -12657,20 +12663,20 @@ msgstr "Das Verzeichnis %s muss für den Web-Server beschreibbar sein." msgid "Login failed." msgstr "Anmeldung fehlgeschlagen." -#: src/Security/Authentication.php:260 +#: src/Security/Authentication.php:261 msgid "Login failed. Please check your credentials." msgstr "Anmeldung fehlgeschlagen. Bitte überprüfe deine Angaben." -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:374 #, php-format msgid "Welcome %s" msgstr "Willkommen %s" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:375 msgid "Please upload a profile photo." msgstr "Bitte lade ein Profilbild hoch." -#: src/Security/OpenWebAuth.php:149 +#: src/Security/OpenWebAuth.php:150 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s heißt %2$s herzlich willkommen" diff --git a/view/lang/de/strings.php b/view/lang/de/strings.php index d19fd0b280..a11b2a15df 100644 --- a/view/lang/de/strings.php +++ b/view/lang/de/strings.php @@ -1606,6 +1606,7 @@ $a->strings['Social Networks'] = 'Soziale Netzwerke'; $a->strings['Manage Accounts'] = 'Accounts Verwalten'; $a->strings['Connected apps'] = 'Verbundene Programme'; $a->strings['Remote servers'] = 'Remote Instanzen'; +$a->strings['Import Contacts'] = 'Kontakte Importieren'; $a->strings['Export personal data'] = 'Persönliche Daten exportieren'; $a->strings['Remove account'] = 'Konto löschen'; $a->strings['This page is missing a url parameter.'] = 'Der Seite fehlt ein URL Parameter.'; @@ -2439,8 +2440,6 @@ $a->strings['Wrong Password.'] = 'Falsches Passwort'; $a->strings['Invalid email.'] = 'Ungültige E-Mail-Adresse.'; $a->strings['Cannot change to that email.'] = 'Ändern der E-Mail nicht möglich. '; $a->strings['Settings were not updated.'] = 'Einstellungen nicht aktualisiert'; -$a->strings['Contact CSV file upload error'] = 'Fehler beim Hochladen der Kontakt CSV Datei'; -$a->strings['Importing Contacts done'] = 'Kontakte wurden importiert.'; $a->strings['Relocate message has been send to your contacts'] = 'Die Umzugsbenachrichtigung wurde an Deine Kontakte versendet.'; $a->strings['Unable to find your profile. Please contact your admin.'] = 'Konnte dein Profil nicht finden. Bitte kontaktiere den Admin.'; $a->strings['Account for a service that automatically shares content based on user defined channels.'] = 'Konto für einen Dienst, der automatisch Inhalte basierend auf vom Benutzer definierten Kanälen teilt.'; @@ -2536,9 +2535,6 @@ $a->strings['Show notifications of ignored contacts'] = 'Zeige Benachrichtigunge $a->strings['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.'] = 'Beiträge von ignorierten Kontakten werden dir nicht angezeigt. Aber du siehst immer noch ihre Kommentare. Diese Einstellung legt fest, ob du dazu weiterhin Benachrichtigungen erhalten willst oder ob diese einfach verworfen werden sollen.'; $a->strings['Advanced Account/Page Type Settings'] = 'Erweiterte Konto-/Seitentyp-Einstellungen'; $a->strings['Change the behaviour of this account for special situations'] = 'Verhalten dieses Kontos in bestimmten Situationen:'; -$a->strings['Import Contacts'] = 'Kontakte Importieren'; -$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Lade eine CSV Datei hoch, die das Handle der Kontakte deines alten Nutzerkontos in der ersten Spalte enthält.'; -$a->strings['Upload File'] = 'Datei hochladen'; $a->strings['Relocate'] = 'Umziehen'; $a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'Wenn du dein Profil von einem anderen Server umgezogen hast und einige deiner Kontakte deine Beiträge nicht erhalten, verwende diesen Button.'; $a->strings['Resend relocate message to contacts'] = 'Umzugsbenachrichtigung erneut an Kontakte senden'; @@ -2606,8 +2602,6 @@ $a->strings['API: Automatically links at the end of the post as attached posts'] $a->strings['When activated, added links at the end of the post react the same way as added links in the web interface.'] = 'Wenn dies aktiviert ist, reagieren hinzugefügte Links am Ende des Beitrags genauso wie hinzugefügte Links in der Weboberfläche.'; $a->strings['Article Mode'] = 'Artikel Modus'; $a->strings['Controls how posts with titles are transmitted. Mastodon and its forks don\'t display the content of these posts if the post is created in the correct (default) way.'] = 'Kontrolliert wie Beiträge mit Titeln übermittel werden. Mastodon und dessen Forks stellen den Inhalt dieser Beiträge nicht dar, wenn sie an sich korrekt in den Grundeinstellungen übertragen werden.'; -$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Dein alter ActivityPub/GNU Social-Account'; -$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Wenn du deinen alten ActivityPub oder GNU Social/Statusnet-Account-Namen hier angibst (Format name@domain.tld), werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden.'; $a->strings['Email/Mailbox Setup'] = 'E-Mail/Postfach-Einstellungen'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Wenn du mit E-Mail-Kontakten über diesen Service kommunizieren möchtest (optional), gib bitte die Einstellungen für dein Postfach an.'; $a->strings['Last successful email check:'] = 'Letzter erfolgreicher E-Mail-Check'; @@ -2621,6 +2615,12 @@ $a->strings['Send public posts to all email contacts:'] = 'Sende öffentliche Be $a->strings['Action after import:'] = 'Aktion nach Import:'; $a->strings['Move to folder'] = 'In einen Ordner verschieben'; $a->strings['Move to folder:'] = 'In diesen Ordner verschieben:'; +$a->strings['Contact CSV file upload error'] = 'Fehler beim Hochladen der Kontakt CSV Datei'; +$a->strings['Importing Contacts done'] = 'Kontakte wurden importiert.'; +$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Lade eine CSV Datei hoch, die das Handle der Kontakte deines alten Nutzerkontos in der ersten Spalte enthält.'; +$a->strings['Upload File'] = 'Datei hochladen'; +$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Dein alter ActivityPub/GNU Social-Account'; +$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Wenn du deinen alten ActivityPub oder GNU Social/Statusnet-Account-Namen hier angibst (Format name@domain.tld), werden deine Kontakte automatisch hinzugefügt. Dieses Feld wird geleert, wenn die Kontakte hinzugefügt wurden.'; $a->strings['Delegation successfully granted.'] = 'Delegierung erfolgreich eingerichtet.'; $a->strings['Parent user not found, unavailable or password doesn\'t match.'] = 'Der angegebene Nutzer konnte nicht gefunden werden, ist nicht verfügbar oder das angegebene Passwort ist nicht richtig.'; $a->strings['Delegation successfully revoked.'] = 'Delegation erfolgreich aufgehoben.'; @@ -3037,7 +3037,7 @@ $a->strings['Delete globally'] = 'Global löschen'; $a->strings['Remove locally'] = 'Lokal entfernen'; $a->strings['Block %s'] = 'Blockiere %s'; $a->strings['Ignore %s'] = 'Ignoriere %s'; -$a->strings['Collapse %s'] = 'Verberge %s'; +$a->strings['Collapse %s'] = 'Klappe %s zu'; $a->strings['Report post'] = 'Beitrag melden'; $a->strings['Save to folder'] = 'In Ordner speichern'; $a->strings['I will attend'] = 'Ich werde teilnehmen'; diff --git a/view/lang/eo/messages.po b/view/lang/eo/messages.po index ed02b26b17..08ffa978eb 100644 --- a/view/lang/eo/messages.po +++ b/view/lang/eo/messages.po @@ -11,7 +11,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: St John Karp , 2017\n" "Language-Team: Esperanto (http://app.transifex.com/Friendica/friendica/language/eo/)\n" @@ -21,34 +21,34 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\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 "Ne eblas trovi originalan afiŝon." -#: 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 "Forviŝis malplenan afiŝon." -#: 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 "Elemento ne estas trovita." -#: 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 @@ -59,7 +59,7 @@ msgstr "Elemento ne estas trovita." #: 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 @@ -68,13 +68,15 @@ msgstr "Elemento ne estas trovita." #: 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 @@ -83,15 +85,15 @@ msgstr "Elemento ne estas trovita." msgid "Permission denied." msgstr "Malpermesita." -#: mod/lostpass.php:28 +#: mod/lostpass.php:27 msgid "No valid account found." msgstr "Ne trovis validan konton." -#: mod/lostpass.php:40 +#: mod/lostpass.php:39 msgid "Password reset request issued. Check your email." msgstr "Eldonis riparadon de pasvorto. Legu vian retpoŝton." -#: mod/lostpass.php:46 +#: mod/lostpass.php:45 #, php-format msgid "" "\n" @@ -107,7 +109,7 @@ msgid "" "\t\tissued this request." msgstr "" -#: mod/lostpass.php:57 +#: mod/lostpass.php:56 #, php-format msgid "" "\n" @@ -124,70 +126,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "" -#: mod/lostpass.php:72 +#: mod/lostpass.php:71 #, php-format msgid "Password reset requested at %s" msgstr "Pasvorta riparado petita je %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 "Ne povis konfirmi la peton. (Eble vi sendis ĝin antaŭ.) Pasvorta riparado malsukcesis." -#: 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 "Ĉu vi forgesis vian pasvorton?" -#: 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 "Entajpu vian retpoŝtadreson kaj sendu por pasvorta riparado. Poste, bonvolu legi vian retpoŝton por trovi pliajn instrukciojn." -#: 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 "Salutnomo aŭ retpoŝtadreso: " -#: mod/lostpass.php:119 +#: mod/lostpass.php:118 msgid "Reset" msgstr "Repari" -#: mod/lostpass.php:134 src/Module/Security/Login.php:161 +#: mod/lostpass.php:133 src/Module/Security/Login.php:161 msgid "Password Reset" msgstr "Pasvorta riparado" -#: mod/lostpass.php:135 +#: mod/lostpass.php:134 msgid "Your password has been reset as requested." msgstr "Via pasvorto estis riparita laŭ via peto." -#: mod/lostpass.php:136 +#: mod/lostpass.php:135 msgid "Your new password is" msgstr "Via nova pasvorto estas" -#: mod/lostpass.php:137 +#: mod/lostpass.php:136 msgid "Save or copy your new password - and then" msgstr "Memorigi vian novan pasvorton - kaj poste" -#: mod/lostpass.php:138 +#: mod/lostpass.php:137 msgid "click here to login" msgstr "klaku ĉi tie por ensaluti" -#: mod/lostpass.php:139 +#: mod/lostpass.php:138 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Vi povas ŝangi vian pasvorton sur la paĝo agordoj kiam vi sukcese ensalutis." -#: 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" @@ -198,7 +200,7 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:152 +#: mod/lostpass.php:151 #, php-format msgid "" "\n" @@ -212,7 +214,7 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:164 +#: mod/lostpass.php:163 #, php-format msgid "Your password has been changed at %s" msgstr "" @@ -276,11 +278,11 @@ msgstr "Al:" msgid "Subject:" msgstr "Temo:" -#: 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 "Via mesaĝo:" -#: 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 "Alŝuti bildon" @@ -289,16 +291,16 @@ msgstr "Alŝuti bildon" msgid "Insert web link" msgstr "Enmeti retan adreson" -#: 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 "Bonvolu atendi" -#: 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 @@ -306,7 +308,7 @@ msgstr "Bonvolu atendi" #: 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 @@ -315,7 +317,7 @@ msgstr "Bonvolu atendi" #: 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" @@ -373,396 +375,396 @@ msgid_plural "%d messages" msgstr[0] "%d mesaĝo" msgstr[1] "%d mesaĝoj" -#: mod/notes.php:40 src/Module/BaseProfile.php:93 +#: mod/notes.php:41 src/Module/BaseProfile.php:93 msgid "Personal Notes" msgstr "Personaj Notoj" -#: 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 "Konservi" -#: 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 "Bildalbumoj" -#: 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 "̂Ĵusaj bildoj" -#: 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 "Alŝuti novajn bildojn" -#: 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 "ĉiuj" -#: mod/photos.php:142 +#: mod/photos.php:140 msgid "Contact information unavailable" msgstr "Kontaktoj informoj ne disponeblas" -#: mod/photos.php:171 +#: mod/photos.php:169 msgid "Album not found." msgstr "Albumo ne trovita." -#: 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 "" -#: 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 "Publika atingo ne permesita." -#: mod/photos.php:546 +#: mod/photos.php:544 msgid "No photos selected" msgstr "Neniu bildoj elektita" -#: mod/photos.php:674 +#: mod/photos.php:672 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:681 +#: mod/photos.php:679 msgid "Upload Photos" msgstr "Alŝuti bildojn" -#: mod/photos.php:685 mod/photos.php:774 +#: mod/photos.php:683 mod/photos.php:772 msgid "New album name: " msgstr "Nomo por nova albumo:" -#: 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 "Ne kreu statan afiŝon por tio alŝuto." -#: 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 "Permesoj" -#: 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 "Forviŝi albumon" -#: 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 "Nuligi" -#: mod/photos.php:783 +#: mod/photos.php:781 msgid "Edit Album" msgstr "Redakti albumon" -#: 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 "Vidi bildon" -#: mod/photos.php:843 +#: mod/photos.php:841 msgid "Permission denied. Access to this item may be restricted." msgstr "Malpermesita. Atingo al tio elemento eble estas limigita." -#: mod/photos.php:845 +#: mod/photos.php:843 msgid "Photo not available" msgstr "La bildo ne disponeblas" -#: 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 "Forviŝi bildon" -#: mod/photos.php:954 +#: mod/photos.php:952 msgid "View photo" msgstr "Vidi bildon" -#: mod/photos.php:956 +#: mod/photos.php:954 msgid "Edit photo" msgstr "Redakti bildon" -#: mod/photos.php:957 +#: mod/photos.php:955 msgid "Delete photo" msgstr "" -#: mod/photos.php:958 +#: mod/photos.php:956 msgid "Use as profile photo" msgstr "Uzi kiel profilbildo" -#: mod/photos.php:965 +#: mod/photos.php:963 msgid "Private Photo" msgstr "" -#: mod/photos.php:971 +#: mod/photos.php:969 msgid "View Full Size" msgstr "Vidi plengrande " -#: mod/photos.php:1024 +#: mod/photos.php:1022 msgid "Tags: " msgstr "Markoj:" -#: mod/photos.php:1027 +#: mod/photos.php:1025 msgid "[Select tags to remove]" msgstr "" -#: mod/photos.php:1042 +#: mod/photos.php:1040 msgid "New album name" msgstr "Nova nomo de albumo" -#: mod/photos.php:1043 +#: mod/photos.php:1041 msgid "Caption" msgstr "Apudskribo" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "Add a Tag" msgstr "Aldoni markon" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Ekzemple: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1045 +#: mod/photos.php:1043 msgid "Do not rotate" msgstr "" -#: mod/photos.php:1046 +#: mod/photos.php:1044 msgid "Rotate CW (right)" msgstr "Turni horloĝdirekte (dekstren)" -#: mod/photos.php:1047 +#: mod/photos.php:1045 msgid "Rotate CCW (left)" msgstr "Turni kontraŭhorloĝdirekte (maldekstren)" -#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: mod/photos.php:1091 mod/photos.php:1147 mod/photos.php:1227 #: src/Module/Contact.php:600 src/Module/Item/Compose.php:184 -#: src/Object/Post.php:1142 +#: src/Object/Post.php:1143 msgid "This is you" msgstr "Tiu estas vi" -#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 -#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:598 -#: src/Object/Post.php:1144 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:599 +#: src/Object/Post.php:1145 msgid "Comment" msgstr "Komenti" -#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 -#: src/Content/Conversation.php:401 src/Module/Calendar/Event/Form.php:234 +#: 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 -#: src/Object/Post.php:1158 +#: src/Object/Post.php:1159 msgid "Preview" msgstr "Antaŭrigardi" -#: mod/photos.php:1098 src/Content/Conversation.php:355 -#: src/Module/Post/Edit.php:121 src/Object/Post.php:1146 +#: mod/photos.php:1096 src/Content/Conversation.php:357 +#: src/Module/Post/Edit.php:121 src/Object/Post.php:1147 msgid "Loading..." msgstr "" -#: mod/photos.php:1190 src/Content/Conversation.php:1485 -#: src/Object/Post.php:260 +#: mod/photos.php:1188 src/Content/Conversation.php:1487 +#: src/Object/Post.php:261 msgid "Select" msgstr "Elekti" -#: mod/photos.php:1191 src/Content/Conversation.php:1486 -#: 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:233 +#: 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 +#: src/Module/Settings/Connectors.php:226 #: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Forviŝi" -#: mod/photos.php:1252 src/Object/Post.php:426 +#: mod/photos.php:1250 src/Object/Post.php:427 msgid "Like" msgstr "" -#: mod/photos.php:1253 src/Object/Post.php:426 +#: mod/photos.php:1251 src/Object/Post.php:427 msgid "I like this (toggle)" msgstr "Mi ŝatas tion (ŝalti)" -#: mod/photos.php:1254 src/Object/Post.php:427 +#: mod/photos.php:1252 src/Object/Post.php:428 msgid "Dislike" msgstr "" -#: mod/photos.php:1256 src/Object/Post.php:427 +#: mod/photos.php:1254 src/Object/Post.php:428 msgid "I don't like this (toggle)" msgstr "Mi malŝatas tion(ŝalti)" -#: mod/photos.php:1278 +#: mod/photos.php:1276 msgid "Map" msgstr "" -#: src/App.php:467 +#: src/App.php:255 msgid "Apologies but the website is unavailable at the moment." msgstr "" -#: src/App/Page.php:237 +#: src/App/Page.php:241 msgid "Delete this item?" msgstr "Forviŝi ĉi tiun elementon?" -#: src/App/Page.php:238 +#: src/App/Page.php:242 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:239 +#: src/App/Page.php:243 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:240 +#: src/App/Page.php:244 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:241 +#: src/App/Page.php:245 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:242 src/Module/Settings/Server/Action.php:47 +#: src/App/Page.php:246 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:244 +#: src/App/Page.php:248 msgid "Like not successful" msgstr "" -#: src/App/Page.php:245 +#: src/App/Page.php:249 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:246 +#: src/App/Page.php:250 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:247 +#: src/App/Page.php:251 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:248 +#: src/App/Page.php:252 msgid "Backend error" msgstr "" -#: src/App/Page.php:249 +#: src/App/Page.php:253 msgid "Network error" msgstr "" -#: src/App/Page.php:252 +#: src/App/Page.php:256 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:257 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:254 +#: src/App/Page.php:258 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:255 +#: src/App/Page.php:259 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:256 +#: src/App/Page.php:260 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:261 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:262 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:263 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:264 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:265 msgid "Remove file" msgstr "" -#: src/App/Page.php:262 +#: src/App/Page.php:266 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:346 +#: src/App/Page.php:350 msgid "toggle mobile" msgstr "" @@ -795,7 +797,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:181 src/Module/Contact.php:395 +#: src/Content/Widget.php:254 src/Core/ACL.php:182 src/Module/Contact.php:395 #: src/Module/Privacy/PermissionTooltip.php:150 #: src/Module/Privacy/PermissionTooltip.php:172 #: src/Module/Settings/Channels.php:146 @@ -837,7 +839,7 @@ msgstr "" msgid "The contact entries have been archived" msgstr "" -#: src/Console/ClearAvatarCache.php:73 +#: src/Console/ClearAvatarCache.php:74 msgid "" "The avatar cache needs to be disabled in local.config.php to use this " "command." @@ -923,22 +925,22 @@ msgstr "" msgid "no resource in photo %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:123 +#: src/Console/MoveToAvatarCache.php:127 #, php-format msgid "no photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:132 +#: src/Console/MoveToAvatarCache.php:136 #, php-format msgid "no image data for photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:141 +#: src/Console/MoveToAvatarCache.php:145 #, php-format msgid "invalid image for id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:154 +#: src/Console/MoveToAvatarCache.php:158 #, php-format msgid "Quit on invalid photo %s" msgstr "" @@ -968,11 +970,14 @@ msgstr "" msgid "Enter user nickname: " msgstr "" -#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Console/User.php:168 src/Model/User.php:830 #: src/Module/Api/Twitter/ContactEndpoint.php:62 -#: 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/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/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "" @@ -982,12 +987,12 @@ msgid "Enter new password: " msgstr "" #: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 -#: src/Module/Settings/Account.php:59 +#: src/Module/Settings/Account.php:57 msgid "Password update failed. Please try again." msgstr "Ĝisdatigo de pasvorto malsukcesis. Bonvolu provi refoje." #: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 -#: src/Module/Settings/Account.php:62 +#: src/Module/Settings/Account.php:60 msgid "Password changed." msgstr "Pasvorto ŝanĝita." @@ -1068,86 +1073,86 @@ msgstr "" msgid "Monthly" msgstr "" -#: src/Content/ContactSelector.php:118 +#: src/Content/ContactSelector.php:117 msgid "DFRN" msgstr "" -#: src/Content/ContactSelector.php:119 +#: src/Content/ContactSelector.php:118 msgid "OStatus" msgstr "" -#: src/Content/ContactSelector.php:120 +#: src/Content/ContactSelector.php:119 msgid "RSS/Atom" msgstr "" -#: src/Content/ContactSelector.php:121 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Content/ContactSelector.php:120 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:58 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "Retpoŝto" -#: src/Content/ContactSelector.php:122 src/Module/Debug/Babel.php:273 +#: src/Content/ContactSelector.php:121 src/Module/Debug/Babel.php:273 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:123 +#: src/Content/ContactSelector.php:122 msgid "Zot!" msgstr "" -#: src/Content/ContactSelector.php:124 +#: src/Content/ContactSelector.php:123 msgid "LinkedIn" msgstr "" -#: src/Content/ContactSelector.php:125 +#: src/Content/ContactSelector.php:124 msgid "XMPP/IM" msgstr "" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:125 msgid "MySpace" msgstr "" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:126 msgid "Google+" msgstr "" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:127 msgid "pump.io" msgstr "" -#: src/Content/ContactSelector.php:129 +#: src/Content/ContactSelector.php:128 msgid "Twitter" msgstr "" -#: src/Content/ContactSelector.php:130 +#: src/Content/ContactSelector.php:129 msgid "Discourse" msgstr "" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:130 msgid "Diaspora Connector" msgstr "" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:131 msgid "GNU Social Connector" msgstr "" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:132 msgid "ActivityPub" msgstr "" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:133 msgid "pnut" msgstr "" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:134 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:135 msgid "Bluesky" msgstr "" @@ -1156,374 +1161,374 @@ msgstr "" msgid "%s (via %s)" msgstr "" -#: src/Content/Conversation.php:213 +#: src/Content/Conversation.php:215 msgid "and" msgstr "kaj" -#: src/Content/Conversation.php:216 +#: src/Content/Conversation.php:218 #, php-format msgid "and %d other people" msgstr "" -#: src/Content/Conversation.php:222 +#: src/Content/Conversation.php:224 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:224 +#: src/Content/Conversation.php:226 #, 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:226 +#: src/Content/Conversation.php:228 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:230 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:230 +#: src/Content/Conversation.php:232 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:232 +#: src/Content/Conversation.php:234 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:263 +#: src/Content/Conversation.php:265 #, php-format msgid " likes this" msgid_plural " like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:266 +#: src/Content/Conversation.php:268 #, php-format msgid " doesn't like this" msgid_plural " don't like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:269 +#: src/Content/Conversation.php:271 #, php-format msgid " attends" msgid_plural " attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:272 +#: src/Content/Conversation.php:274 #, php-format msgid " doesn't attend" msgid_plural " don't attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:275 +#: src/Content/Conversation.php:277 #, php-format msgid " attends maybe" msgid_plural " attend maybe" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:278 +#: src/Content/Conversation.php:280 #, php-format msgid " reshared this" msgid_plural " reshared this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:324 +#: src/Content/Conversation.php:326 msgid "Visible to everybody" msgstr "Videbla al ĉiuj" -#: src/Content/Conversation.php:325 src/Module/Item/Compose.php:196 -#: src/Object/Post.php:1157 +#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196 +#: src/Object/Post.php:1158 msgid "Please enter a image/video/audio/webpage URL:" msgstr "" -#: src/Content/Conversation.php:326 +#: src/Content/Conversation.php:328 msgid "Tag term:" msgstr "Markfrazo:" -#: src/Content/Conversation.php:327 src/Module/Filer/SaveTag.php:59 +#: src/Content/Conversation.php:329 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Konservi en Dosierujo:" -#: src/Content/Conversation.php:328 +#: src/Content/Conversation.php:330 msgid "Where are you right now?" msgstr "Kie vi estas nun?" -#: src/Content/Conversation.php:329 +#: src/Content/Conversation.php:331 msgid "Delete item(s)?" msgstr "" -#: src/Content/Conversation.php:341 src/Module/Item/Compose.php:171 +#: src/Content/Conversation.php:343 src/Module/Item/Compose.php:171 msgid "Created at" msgstr "" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:353 msgid "New Post" msgstr "" -#: src/Content/Conversation.php:354 +#: src/Content/Conversation.php:356 msgid "Share" msgstr "Kunhavigi" -#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:123 +#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:123 msgid "upload photo" msgstr "alŝuti bildon" -#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:124 +#: src/Content/Conversation.php:360 src/Module/Post/Edit.php:124 msgid "Attach file" msgstr "Kunligi dosieron" -#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:125 +#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:125 msgid "attach file" msgstr "kunsendi dosieron" -#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:186 -#: src/Module/Post/Edit.php:162 src/Object/Post.php:1147 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1148 msgid "Bold" msgstr "Grasa" -#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:187 -#: src/Module/Post/Edit.php:163 src/Object/Post.php:1148 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1149 msgid "Italic" msgstr "Kursiva" -#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:188 -#: src/Module/Post/Edit.php:164 src/Object/Post.php:1149 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1150 msgid "Underline" msgstr "Substreki" -#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:189 -#: src/Module/Post/Edit.php:165 src/Object/Post.php:1151 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:165 src/Object/Post.php:1152 msgid "Quote" msgstr "Citaĵo" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:166 src/Object/Post.php:1152 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:166 src/Object/Post.php:1153 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:191 -#: src/Object/Post.php:1150 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Object/Post.php:1151 msgid "Content Warning" msgstr "" -#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:167 src/Object/Post.php:1153 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:167 src/Object/Post.php:1154 msgid "Code" msgstr "Kodo" -#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:193 -#: src/Object/Post.php:1154 +#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1155 msgid "Image" msgstr "Bildo" -#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:168 src/Object/Post.php:1155 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:168 src/Object/Post.php:1156 msgid "Link" msgstr "Ligilo" -#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:195 -#: src/Module/Post/Edit.php:169 src/Object/Post.php:1156 +#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:169 src/Object/Post.php:1157 msgid "Link or Media" msgstr "" -#: src/Content/Conversation.php:370 +#: src/Content/Conversation.php:372 msgid "Video" msgstr "" -#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:198 +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:198 #: src/Module/Post/Edit.php:132 msgid "Set your location" msgstr "Agordi vian lokon" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:133 msgid "set location" msgstr "agordi lokon" -#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:134 msgid "Clear browser location" msgstr "Forviŝu retesplorilan lokon" -#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:135 +#: src/Content/Conversation.php:376 src/Module/Post/Edit.php:135 msgid "clear location" msgstr "forviŝi lokon" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:203 +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:203 #: src/Module/Post/Edit.php:148 msgid "Set title" msgstr "Redakti titolon" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:204 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 #: src/Module/Post/Edit.php:150 msgid "Categories (comma-separated list)" msgstr "Kategorioj (disigita per komo)" -#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:220 +#: src/Content/Conversation.php:385 src/Module/Item/Compose.php:220 msgid "Scheduled at" msgstr "" -#: src/Content/Conversation.php:388 src/Module/Post/Edit.php:137 +#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:137 msgid "Permission settings" msgstr "Permesagordoj" -#: src/Content/Conversation.php:397 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:399 src/Module/Post/Edit.php:146 msgid "Public post" msgstr "Publika afiŝo" -#: src/Content/Conversation.php:411 src/Content/Widget/VCard.php:121 +#: 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 msgid "Message" msgstr "Mesaĝo" -#: src/Content/Conversation.php:412 src/Module/Post/Edit.php:173 +#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:173 #: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "" -#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:176 +#: src/Content/Conversation.php:416 src/Module/Post/Edit.php:176 msgid "Open Compose page" msgstr "" -#: src/Content/Conversation.php:581 +#: src/Content/Conversation.php:583 msgid "remove" msgstr "forviŝi" -#: src/Content/Conversation.php:585 +#: src/Content/Conversation.php:587 msgid "Delete Selected Items" msgstr "Forviŝi Elektitajn Elementojn" -#: src/Content/Conversation.php:713 src/Content/Conversation.php:716 -#: src/Content/Conversation.php:719 src/Content/Conversation.php:722 -#: src/Content/Conversation.php:725 +#: 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 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: src/Content/Conversation.php:728 +#: src/Content/Conversation.php:730 #, php-format msgid "You are following %s." msgstr "" -#: src/Content/Conversation.php:733 +#: src/Content/Conversation.php:735 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:735 +#: src/Content/Conversation.php:737 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:755 +#: src/Content/Conversation.php:757 #, php-format msgid "%s reshared this." msgstr "" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 msgid "Reshared" msgstr "" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 #, php-format msgid "Reshared by %s <%s>" msgstr "" -#: src/Content/Conversation.php:760 +#: src/Content/Conversation.php:762 #, php-format msgid "%s is participating in this thread." msgstr "" -#: src/Content/Conversation.php:763 +#: src/Content/Conversation.php:765 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:766 +#: src/Content/Conversation.php:768 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 msgid "Fetched" msgstr "" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 #, php-format msgid "Fetched because of %s <%s>" msgstr "" -#: src/Content/Conversation.php:775 +#: src/Content/Conversation.php:777 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:778 +#: src/Content/Conversation.php:780 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:781 +#: src/Content/Conversation.php:783 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:784 +#: src/Content/Conversation.php:786 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:787 +#: src/Content/Conversation.php:789 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1505 src/Object/Post.php:247 +#: src/Content/Conversation.php:1507 src/Object/Post.php:248 msgid "Pinned item" msgstr "" -#: src/Content/Conversation.php:1522 src/Object/Post.php:541 -#: src/Object/Post.php:542 +#: src/Content/Conversation.php:1524 src/Object/Post.php:542 +#: src/Object/Post.php:543 #, php-format msgid "View %s's profile @ %s" msgstr "Vidi la profilon de %s ĉe %s" -#: src/Content/Conversation.php:1536 src/Object/Post.php:529 +#: src/Content/Conversation.php:1538 src/Object/Post.php:530 msgid "Categories:" msgstr "" -#: src/Content/Conversation.php:1537 src/Object/Post.php:530 +#: src/Content/Conversation.php:1539 src/Object/Post.php:531 msgid "Filed under:" msgstr "" -#: src/Content/Conversation.php:1545 src/Object/Post.php:556 +#: src/Content/Conversation.php:1547 src/Object/Post.php:557 #, php-format msgid "%s from %s" msgstr "%s de %s" -#: src/Content/Conversation.php:1561 +#: src/Content/Conversation.php:1563 msgid "View in context" msgstr "Vidi kun kunteksto" @@ -1656,7 +1661,7 @@ msgstr "Propra" msgid "Posts that mention or involve you" msgstr "Afiŝoj menciantaj vin aŭ pri vi" -#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:398 msgid "Starred" msgstr "Steligita" @@ -1743,7 +1748,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:552 src/Model/User.php:1390 +#: src/Content/Widget.php:555 src/Model/User.php:1390 msgid "Groups" msgstr "" @@ -1751,7 +1756,7 @@ msgstr "" msgid "Display posts that have been distributed by the selected group." msgstr "" -#: src/Content/Feature.php:117 src/Content/Widget.php:521 +#: src/Content/Feature.php:117 src/Content/Widget.php:524 msgid "Archives" msgstr "Arkivoj" @@ -1767,8 +1772,8 @@ msgstr "" msgid "Display posts with the selected protocols." msgstr "" -#: src/Content/Feature.php:119 src/Content/Widget.php:558 -#: src/Module/Settings/Account.php:429 +#: src/Content/Feature.php:119 src/Content/Widget.php:561 +#: src/Module/Settings/Account.php:391 msgid "Account Types" msgstr "" @@ -1776,7 +1781,7 @@ msgstr "" msgid "Display posts done by accounts with the selected account type." msgstr "" -#: src/Content/Feature.php:120 src/Content/Widget.php:607 +#: 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 msgid "Channels" @@ -1802,7 +1807,7 @@ msgstr "Konservitaj Dosierujoj" msgid "Display a list of folders in which posts are stored." msgstr "" -#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:189 msgid "Own Contacts" msgstr "" @@ -1858,12 +1863,12 @@ msgstr "" msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:139 src/Content/Widget.php:527 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:530 msgid "show less" msgstr "" #: src/Content/GroupManager.php:140 src/Content/Widget.php:425 -#: src/Content/Widget.php:528 +#: src/Content/Widget.php:531 msgid "show more" msgstr "montri pli" @@ -1871,66 +1876,66 @@ msgstr "montri pli" msgid "Create new group" msgstr "" -#: src/Content/Item.php:317 src/Model/Item.php:3273 +#: src/Content/Item.php:322 src/Model/Item.php:3281 msgid "event" msgstr "okazo" -#: src/Content/Item.php:320 src/Content/Item.php:330 +#: src/Content/Item.php:325 src/Content/Item.php:335 msgid "status" msgstr "staton" -#: src/Content/Item.php:326 src/Model/Item.php:3275 +#: src/Content/Item.php:331 src/Model/Item.php:3283 #: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "bildo" -#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 +#: src/Content/Item.php:345 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s markis la %3$s de %2$s kun %4$s" -#: src/Content/Item.php:414 view/theme/frio/theme.php:253 +#: src/Content/Item.php:419 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "" -#: src/Content/Item.php:415 src/Model/Contact.php:1244 +#: src/Content/Item.php:420 src/Model/Contact.php:1245 msgid "View Status" msgstr "Vidi Staton" -#: 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/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 msgid "View Profile" msgstr "Vidi Profilon" -#: src/Content/Item.php:417 src/Model/Contact.php:1246 +#: src/Content/Item.php:422 src/Model/Contact.php:1247 msgid "View Photos" msgstr "Vidi Bildojn" -#: src/Content/Item.php:418 src/Model/Contact.php:1213 +#: src/Content/Item.php:423 src/Model/Contact.php:1214 #: src/Model/Profile.php:446 msgid "Network Posts" msgstr "Enretaj Afiŝoj" -#: src/Content/Item.php:419 src/Model/Contact.php:1237 -#: src/Model/Contact.php:1248 +#: src/Content/Item.php:424 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1249 msgid "View Contact" msgstr "" -#: src/Content/Item.php:420 src/Model/Contact.php:1249 +#: src/Content/Item.php:425 src/Model/Contact.php:1250 msgid "Send PM" msgstr "Sendi PM" -#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Content/Item.php:426 src/Module/Contact.php:449 #: src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:104 -#: src/Module/Moderation/Users/Active.php:123 -#: src/Module/Moderation/Users/Index.php:138 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Index.php:141 msgid "Block" msgstr "Bloki" -#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Content/Item.php:427 src/Module/Contact.php:450 #: src/Module/Contact/Profile.php:532 #: src/Module/Notifications/Introductions.php:126 #: src/Module/Notifications/Introductions.php:199 @@ -1938,27 +1943,27 @@ msgstr "Bloki" msgid "Ignore" msgstr "Ignori" -#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Content/Item.php:428 src/Module/Contact.php:451 #: src/Module/Contact/Profile.php:540 msgid "Collapse" msgstr "" -#: src/Content/Item.php:424 src/Object/Post.php:288 +#: src/Content/Item.php:429 src/Object/Post.php:289 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 -#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 +#: src/Content/Item.php:433 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:503 msgid "Languages" msgstr "" -#: src/Content/Item.php:431 src/Object/Post.php:582 +#: src/Content/Item.php:436 src/Object/Post.php:583 msgid "Search Text" msgstr "" -#: src/Content/Item.php:436 src/Content/Widget.php:66 -#: src/Model/Contact.php:1238 src/Model/Contact.php:1250 +#: src/Content/Item.php:441 src/Content/Widget.php:66 +#: src/Model/Contact.php:1239 src/Model/Contact.php:1251 #: src/Module/Contact/Follow.php:152 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Konekti/Aboni" @@ -1971,7 +1976,7 @@ msgstr "" msgid "Nothing new here" msgstr "Estas neniu nova ĉi tie" -#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:64 msgid "Go back" msgstr "" @@ -2185,7 +2190,7 @@ msgstr "Atentigoj" msgid "See all notifications" msgstr "Vidu ĉiujn atentigojn" -#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:226 msgid "Mark as seen" msgstr "Marki kiel legita" @@ -2213,8 +2218,8 @@ msgstr "" msgid "Manage other pages" msgstr "Administri aliajn paĝojn" -#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 -#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:170 +#: 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/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Agordoj" @@ -2242,10 +2247,10 @@ msgstr "Agordoj pri la retejo" #: src/Module/Moderation/Blocklist/Server/Index.php:84 #: 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:119 -#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 #: src/Module/Moderation/Users/Deleted.php:66 -#: src/Module/Moderation/Users/Index.php:133 +#: src/Module/Moderation/Users/Index.php:136 msgid "Moderation" msgstr "" @@ -2277,33 +2282,33 @@ msgstr "sekvanta" msgid "last" msgstr "lasta" -#: src/Content/Text/BBCode.php:908 +#: src/Content/Text/BBCode.php:903 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:931 src/Model/Item.php:4069 -#: src/Model/Item.php:4075 src/Model/Item.php:4076 +#: src/Content/Text/BBCode.php:926 src/Model/Item.php:4080 +#: src/Model/Item.php:4086 src/Model/Item.php:4087 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1745 src/Content/Text/HTML.php:892 +#: src/Content/Text/BBCode.php:1740 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Klaku por malfermi/fermi" -#: src/Content/Text/BBCode.php:1800 +#: src/Content/Text/BBCode.php:1795 msgid "$1 wrote:" msgstr "$1 skribis:" -#: src/Content/Text/BBCode.php:1874 src/Content/Text/BBCode.php:1875 +#: src/Content/Text/BBCode.php:1869 src/Content/Text/BBCode.php:1870 msgid "Encrypted content" msgstr "" -#: src/Content/Text/BBCode.php:2208 +#: src/Content/Text/BBCode.php:2203 msgid "Invalid source protocol" msgstr "" -#: src/Content/Text/BBCode.php:2227 +#: src/Content/Text/BBCode.php:2222 msgid "Invalid link protocol" msgstr "" @@ -2356,7 +2361,7 @@ msgid "Examples: Robert Morgenstein, Fishing" msgstr "Ekzemple: Robert Morgenstein, Fishing" #: src/Content/Widget.php:68 src/Module/Contact.php:441 -#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 +#: src/Module/Directory.php:82 view/theme/vier/theme.php:185 msgid "Find" msgstr "Trovi" @@ -2377,7 +2382,7 @@ msgstr "Hazarda Profilo" msgid "Invite Friends" msgstr "Inviti amikojn" -#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: src/Content/Widget.php:73 src/Module/Directory.php:74 #: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Tutmonda Katalogo" @@ -2398,7 +2403,7 @@ msgstr "" msgid "Relationships" msgstr "" -#: src/Content/Widget.php:264 src/Module/Circle.php:280 +#: src/Content/Widget.php:264 src/Module/Circle.php:281 #: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Ĉiuj Kontaktoj" @@ -2422,27 +2427,27 @@ msgid_plural "%d contacts in common" msgstr[0] "%d komuna kontakto" msgstr[1] "%d komunaj kontaktoj" -#: src/Content/Widget.php:529 +#: src/Content/Widget.php:532 msgid "On this date" msgstr "" -#: src/Content/Widget.php:549 +#: src/Content/Widget.php:552 msgid "Persons" msgstr "" -#: src/Content/Widget.php:550 +#: src/Content/Widget.php:553 msgid "Organisations" msgstr "" -#: src/Content/Widget.php:551 src/Model/Contact.php:1750 +#: src/Content/Widget.php:554 src/Model/Contact.php:1751 msgid "News" msgstr "" -#: src/Content/Widget.php:553 +#: src/Content/Widget.php:556 msgid "Relays" msgstr "" -#: src/Content/Widget.php:560 src/Module/Moderation/BaseUsers.php:58 +#: src/Content/Widget.php:563 src/Module/Moderation/BaseUsers.php:58 msgid "All" msgstr "" @@ -2488,12 +2493,12 @@ msgstr[1] "" msgid "More Trending Tags" msgstr "" -#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1207 +#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1208 #: src/Model/Profile.php:440 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1211 +#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1212 #: src/Model/Profile.php:444 src/Module/Moderation/Item/Source.php:80 msgid "Mention" msgstr "" @@ -2508,10 +2513,10 @@ msgstr "" msgid "Matrix:" msgstr "" -#: src/Content/Widget/VCard.php:112 src/Model/Event.php:68 -#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: 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:134 src/Module/Notifications/Introductions.php:180 +#: src/Module/Directory.php:133 src/Module/Notifications/Introductions.php:180 #: src/Module/Profile/Profile.php:212 msgid "Location:" msgstr "Loko:" @@ -2521,75 +2526,75 @@ msgstr "Loko:" msgid "Network:" msgstr "" -#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1239 -#: src/Model/Contact.php:1251 src/Model/Profile.php:457 +#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1252 src/Model/Profile.php:457 #: src/Module/Contact/Profile.php:476 msgid "Unfollow" msgstr "" -#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1209 +#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1210 #: src/Model/Profile.php:442 msgid "View group" msgstr "" -#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:260 +#: src/Core/ACL.php:153 src/Module/Profile/Profile.php:260 msgid "Yourself" msgstr "" -#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Core/ACL.php:189 src/Module/Privacy/PermissionTooltip.php:156 #: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "" -#: src/Core/ACL.php:280 +#: src/Core/ACL.php:281 msgid "Post to Email" msgstr "Sendi per retpoŝto" -#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Core/ACL.php:308 src/Module/Privacy/PermissionTooltip.php:103 #: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "" -#: src/Core/ACL.php:308 +#: src/Core/ACL.php:309 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:309 src/Module/Privacy/PermissionTooltip.php:105 +#: src/Core/ACL.php:310 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "" -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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:310 +#: src/Core/ACL.php:311 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:311 +#: src/Core/ACL.php:312 msgid "Show to:" msgstr "" -#: src/Core/ACL.php:312 +#: src/Core/ACL.php:313 msgid "Except to:" msgstr "" -#: src/Core/ACL.php:313 src/Module/Post/Edit.php:145 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:145 msgid "CC: email addresses" msgstr "CC: retpoŝtadresojn" -#: src/Core/ACL.php:314 src/Module/Post/Edit.php:151 +#: src/Core/ACL.php:315 src/Module/Post/Edit.php:151 msgid "Example: bob@example.com, mary@example.com" msgstr "Ekzemple: bob@example.com, mary@example.com" -#: src/Core/ACL.php:315 +#: src/Core/ACL.php:316 msgid "Connectors" msgstr "" @@ -2924,176 +2929,176 @@ msgstr "" msgid "Could not connect to database." msgstr "Ne eblas konekti la datumbazon." -#: src/Core/L10n.php:430 src/Model/Item.php:2316 +#: src/Core/L10n.php:426 src/Model/Item.php:2324 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:437 +#: src/Core/L10n.php:433 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Core/L10n.php:481 src/Model/Event.php:418 #: src/Module/Settings/Display.php:292 msgid "Monday" msgstr "Lundo" -#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Core/L10n.php:481 src/Model/Event.php:419 #: src/Module/Settings/Display.php:293 msgid "Tuesday" msgstr "Mardo" -#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Core/L10n.php:481 src/Model/Event.php:420 #: src/Module/Settings/Display.php:294 msgid "Wednesday" msgstr "Merkredo" -#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Core/L10n.php:481 src/Model/Event.php:421 #: src/Module/Settings/Display.php:295 msgid "Thursday" msgstr "Ĵaŭdo" -#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Core/L10n.php:481 src/Model/Event.php:422 #: src/Module/Settings/Display.php:296 msgid "Friday" msgstr "Vendredo" -#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Core/L10n.php:481 src/Model/Event.php:423 #: src/Module/Settings/Display.php:297 msgid "Saturday" msgstr "Sabato" -#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Core/L10n.php:481 src/Model/Event.php:417 #: src/Module/Settings/Display.php:291 msgid "Sunday" msgstr "Dimanĉo" -#: src/Core/L10n.php:489 src/Model/Event.php:436 +#: src/Core/L10n.php:485 src/Model/Event.php:438 msgid "January" msgstr "Januaro" -#: src/Core/L10n.php:489 src/Model/Event.php:437 +#: src/Core/L10n.php:485 src/Model/Event.php:439 msgid "February" msgstr "Februaro" -#: src/Core/L10n.php:489 src/Model/Event.php:438 +#: src/Core/L10n.php:485 src/Model/Event.php:440 msgid "March" msgstr "Marto" -#: src/Core/L10n.php:489 src/Model/Event.php:439 +#: src/Core/L10n.php:485 src/Model/Event.php:441 msgid "April" msgstr "Aprilo" -#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 +#: src/Core/L10n.php:485 src/Core/L10n.php:504 src/Model/Event.php:429 msgid "May" msgstr "Majo" -#: src/Core/L10n.php:489 src/Model/Event.php:440 +#: src/Core/L10n.php:485 src/Model/Event.php:442 msgid "June" msgstr "Junio" -#: src/Core/L10n.php:489 src/Model/Event.php:441 +#: src/Core/L10n.php:485 src/Model/Event.php:443 msgid "July" msgstr "Julio" -#: src/Core/L10n.php:489 src/Model/Event.php:442 +#: src/Core/L10n.php:485 src/Model/Event.php:444 msgid "August" msgstr "Aŭgusto" -#: src/Core/L10n.php:489 src/Model/Event.php:443 +#: src/Core/L10n.php:485 src/Model/Event.php:445 msgid "September" msgstr "Septembro" -#: src/Core/L10n.php:489 src/Model/Event.php:444 +#: src/Core/L10n.php:485 src/Model/Event.php:446 msgid "October" msgstr "Oktobro" -#: src/Core/L10n.php:489 src/Model/Event.php:445 +#: src/Core/L10n.php:485 src/Model/Event.php:447 msgid "November" msgstr "Novembro" -#: src/Core/L10n.php:489 src/Model/Event.php:446 +#: src/Core/L10n.php:485 src/Model/Event.php:448 msgid "December" msgstr "Decembro" -#: src/Core/L10n.php:504 src/Model/Event.php:408 +#: src/Core/L10n.php:500 src/Model/Event.php:410 msgid "Mon" msgstr "" -#: src/Core/L10n.php:504 src/Model/Event.php:409 +#: src/Core/L10n.php:500 src/Model/Event.php:411 msgid "Tue" msgstr "" -#: src/Core/L10n.php:504 src/Model/Event.php:410 +#: src/Core/L10n.php:500 src/Model/Event.php:412 msgid "Wed" msgstr "" -#: src/Core/L10n.php:504 src/Model/Event.php:411 +#: src/Core/L10n.php:500 src/Model/Event.php:413 msgid "Thu" msgstr "" -#: src/Core/L10n.php:504 src/Model/Event.php:412 +#: src/Core/L10n.php:500 src/Model/Event.php:414 msgid "Fri" msgstr "" -#: src/Core/L10n.php:504 src/Model/Event.php:413 +#: src/Core/L10n.php:500 src/Model/Event.php:415 msgid "Sat" msgstr "" -#: src/Core/L10n.php:504 src/Model/Event.php:407 +#: src/Core/L10n.php:500 src/Model/Event.php:409 msgid "Sun" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:425 msgid "Jan" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:426 msgid "Feb" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:427 msgid "Mar" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:428 msgid "Apr" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:428 +#: src/Core/L10n.php:504 src/Model/Event.php:430 msgid "Jun" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:429 +#: src/Core/L10n.php:504 src/Model/Event.php:431 msgid "Jul" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:430 +#: src/Core/L10n.php:504 src/Model/Event.php:432 msgid "Aug" msgstr "" -#: src/Core/L10n.php:508 +#: src/Core/L10n.php:504 msgid "Sep" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:432 +#: src/Core/L10n.php:504 src/Model/Event.php:434 msgid "Oct" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:433 +#: src/Core/L10n.php:504 src/Model/Event.php:435 msgid "Nov" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:434 +#: src/Core/L10n.php:504 src/Model/Event.php:436 msgid "Dec" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:44 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:67 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" @@ -3285,7 +3290,7 @@ msgstr "aldoni" msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:592 src/Module/Circle.php:181 +#: src/Model/Circle.php:592 src/Module/Circle.php:185 msgid "Contacts not in any circle" msgstr "" @@ -3293,8 +3298,8 @@ msgstr "" msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:595 src/Module/Circle.php:166 -#: src/Module/Circle.php:189 src/Module/Circle.php:264 +#: src/Model/Circle.php:595 src/Module/Circle.php:168 +#: src/Module/Circle.php:190 src/Module/Circle.php:265 msgid "Circle Name: " msgstr "" @@ -3302,280 +3307,280 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1258 src/Module/Moderation/Users/Pending.php:88 +#: src/Model/Contact.php:1259 src/Module/Moderation/Users/Pending.php:88 #: src/Module/Notifications/Introductions.php:124 #: src/Module/Notifications/Introductions.php:197 msgid "Approve" msgstr "Aprobi" -#: src/Model/Contact.php:1594 src/Model/Contact.php:1666 +#: src/Model/Contact.php:1595 src/Model/Contact.php:1667 #: src/Module/Contact/Profile.php:360 #, php-format msgid "%s has blocked you" msgstr "" -#: src/Model/Contact.php:1746 +#: src/Model/Contact.php:1747 msgid "Organisation" msgstr "" -#: src/Model/Contact.php:1754 +#: src/Model/Contact.php:1755 msgid "Group" msgstr "" -#: src/Model/Contact.php:1758 src/Module/Moderation/BaseUsers.php:122 +#: src/Model/Contact.php:1759 src/Module/Moderation/BaseUsers.php:122 msgid "Relay" msgstr "" -#: src/Model/Contact.php:3073 +#: src/Model/Contact.php:3085 msgid "Disallowed profile URL." msgstr "Malpermesita adreso de profilo." -#: src/Model/Contact.php:3078 src/Module/Friendica.php:88 +#: src/Model/Contact.php:3090 src/Module/Friendica.php:88 msgid "Blocked domain" msgstr "" -#: src/Model/Contact.php:3083 +#: src/Model/Contact.php:3095 msgid "Connect URL missing." msgstr "Ne ekzistas URL adreso por konekti." -#: src/Model/Contact.php:3092 +#: src/Model/Contact.php:3104 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Contact.php:3110 +#: src/Model/Contact.php:3122 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3127 +#: src/Model/Contact.php:3139 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3134 +#: src/Model/Contact.php:3146 msgid "The profile address specified does not provide adequate information." msgstr "La specifita profiladreso ne enhavas sufiĉe da informoj." -#: src/Model/Contact.php:3136 +#: src/Model/Contact.php:3148 msgid "No compatible communication protocols or feeds were discovered." msgstr "Ne malkovris kongruajn protokolojn por komunikado aŭ fluojn." -#: src/Model/Contact.php:3139 +#: src/Model/Contact.php:3151 msgid "An author or name was not found." msgstr "Ne trovis aŭtoron aŭ nomon." -#: src/Model/Contact.php:3142 +#: src/Model/Contact.php:3154 msgid "No browser URL could be matched to this address." msgstr "Neniu retuma URL adreso kongruas al la adreso." -#: src/Model/Contact.php:3145 +#: src/Model/Contact.php:3157 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Ne eblas kongrui @-stilan identecon adreson al iu konata protokolo au retpoŝtadreso." -#: src/Model/Contact.php:3146 +#: src/Model/Contact.php:3158 msgid "Use mailto: in front of address to force email check." msgstr "Uzu mailto: antaŭ la adreso por devigi la testadon per retpoŝto." -#: src/Model/Contact.php:3152 +#: src/Model/Contact.php:3164 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Profilo limigata. Ĉi persono ne eblos ricevi rektajn/personajn atentigojn de vi. " -#: src/Model/Contact.php:3211 +#: src/Model/Contact.php:3223 msgid "Unable to retrieve contact information." msgstr "Ne eblas ricevi kontaktinformojn." -#: src/Model/Event.php:40 +#: src/Model/Event.php:42 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 -#: src/Model/Event.php:928 +#: src/Model/Event.php:63 src/Model/Event.php:80 src/Model/Event.php:457 +#: src/Model/Event.php:929 msgid "Starts:" msgstr "Ekas:" -#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 -#: src/Model/Event.php:932 +#: src/Model/Event.php:66 src/Model/Event.php:86 src/Model/Event.php:458 +#: src/Model/Event.php:933 msgid "Finishes:" msgstr "Finas:" -#: src/Model/Event.php:405 +#: src/Model/Event.php:407 msgid "all-day" msgstr "" -#: src/Model/Event.php:431 +#: src/Model/Event.php:433 msgid "Sept" msgstr "" -#: src/Model/Event.php:448 src/Module/Calendar/Show.php:117 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:117 #: src/Util/Temporal.php:329 msgid "today" msgstr "" -#: src/Model/Event.php:449 src/Module/Calendar/Show.php:118 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:118 #: src/Module/Settings/Display.php:302 src/Util/Temporal.php:339 msgid "month" msgstr "monato" -#: src/Model/Event.php:450 src/Module/Calendar/Show.php:119 +#: src/Model/Event.php:452 src/Module/Calendar/Show.php:119 #: src/Module/Settings/Display.php:303 src/Util/Temporal.php:340 msgid "week" msgstr "semajno" -#: src/Model/Event.php:451 src/Module/Calendar/Show.php:120 +#: src/Model/Event.php:453 src/Module/Calendar/Show.php:120 #: src/Module/Settings/Display.php:304 src/Util/Temporal.php:341 msgid "day" msgstr "tago" -#: src/Model/Event.php:453 +#: src/Model/Event.php:455 msgid "No events to display" msgstr "" -#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Model/Event.php:504 src/Module/Feed.php:56 #: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "Atingo al ĉi tio profilo estas limitigita" -#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:52 +#: src/Model/Event.php:545 src/Module/Calendar/Event/Show.php:52 msgid "Event not found." msgstr "" -#: src/Model/Event.php:623 +#: src/Model/Event.php:624 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:650 +#: src/Model/Event.php:651 msgid "Edit event" msgstr "Redakti okazon" -#: src/Model/Event.php:651 +#: src/Model/Event.php:652 msgid "Duplicate event" msgstr "" -#: src/Model/Event.php:652 +#: src/Model/Event.php:653 msgid "Delete event" msgstr "" -#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 +#: src/Model/Event.php:883 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:883 +#: src/Model/Event.php:884 msgid "D g:i A" msgstr "" -#: src/Model/Event.php:884 +#: src/Model/Event.php:885 msgid "g:i A" msgstr "" -#: src/Model/Event.php:947 src/Model/Event.php:949 +#: src/Model/Event.php:948 src/Model/Event.php:950 msgid "Show map" msgstr "" -#: src/Model/Event.php:948 +#: src/Model/Event.php:949 msgid "Hide map" msgstr "" -#: src/Model/Event.php:1041 +#: src/Model/Event.php:1042 #, php-format msgid "%s's birthday" msgstr "Naskiĝtago de %s" -#: src/Model/Event.php:1042 +#: src/Model/Event.php:1043 #, php-format msgid "Happy Birthday %s" msgstr "Feliĉan Naskiĝtagon al %s" -#: src/Model/Item.php:2323 +#: src/Model/Item.php:2331 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2325 +#: src/Model/Item.php:2333 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2328 +#: src/Model/Item.php:2336 #, php-format msgid "" "Detected languages in this post:\n" "%s" msgstr "" -#: src/Model/Item.php:3277 +#: src/Model/Item.php:3285 msgid "activity" msgstr "aktiveco" -#: src/Model/Item.php:3279 +#: src/Model/Item.php:3287 msgid "comment" msgstr "" -#: src/Model/Item.php:3282 src/Module/Post/Tag/Add.php:109 +#: src/Model/Item.php:3290 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "afiŝo" -#: src/Model/Item.php:3452 +#: src/Model/Item.php:3463 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3454 +#: src/Model/Item.php:3465 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3456 +#: src/Model/Item.php:3467 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3460 +#: src/Model/Item.php:3471 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3969 +#: src/Model/Item.php:3980 msgid "bytes" msgstr "bajtoj" -#: src/Model/Item.php:4000 +#: src/Model/Item.php:4011 #, 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:4002 +#: src/Model/Item.php:4013 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:4007 +#: src/Model/Item.php:4018 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:4009 +#: src/Model/Item.php:4020 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:4011 +#: src/Model/Item.php:4022 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:4052 src/Model/Item.php:4053 +#: src/Model/Item.php:4063 src/Model/Item.php:4064 msgid "View on separate page" msgstr "" @@ -3583,7 +3588,7 @@ msgstr "" msgid "[no subject]" msgstr "[neniu temo]" -#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 +#: src/Model/Photo.php:1192 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Muraj Bildoj" @@ -3596,7 +3601,7 @@ msgstr "Redakti profilon" msgid "Change profile photo" msgstr "Ŝanĝi profilbildon" -#: src/Model/Profile.php:357 src/Module/Directory.php:139 +#: src/Model/Profile.php:357 src/Module/Directory.php:138 #: src/Module/Profile/Profile.php:200 msgid "Homepage:" msgstr "Hejmpaĝo:" @@ -3686,7 +3691,7 @@ msgstr "Malŝatoj:" msgid "Title/Description:" msgstr "Titolo/Priskribo:" -#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:176 +#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:174 #: src/Module/Moderation/Report/Create.php:266 #: src/Module/Moderation/Summary.php:65 msgid "Summary" @@ -3737,59 +3742,59 @@ msgstr "" msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "GRAVA ERARO: La generacio de sekurecaj ĉifroŝlosiloj malsukcesis." -#: src/Model/User.php:740 src/Model/User.php:773 +#: src/Model/User.php:739 src/Model/User.php:772 msgid "Login failed" msgstr "" -#: src/Model/User.php:805 +#: src/Model/User.php:804 msgid "Not enough information to authenticate" msgstr "" -#: src/Model/User.php:930 +#: src/Model/User.php:929 msgid "Password can't be empty" msgstr "" -#: src/Model/User.php:972 +#: src/Model/User.php:971 msgid "Empty passwords are not allowed." msgstr "" -#: src/Model/User.php:976 +#: src/Model/User.php:975 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "" -#: src/Model/User.php:980 +#: src/Model/User.php:979 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:984 +#: src/Model/User.php:983 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1193 +#: src/Model/User.php:1192 msgid "Passwords do not match. Password unchanged." msgstr "La pasvortoj ne estas egala. Pasvorto ne ŝanĝita." -#: src/Model/User.php:1200 +#: src/Model/User.php:1199 msgid "An invitation is required." msgstr "Invio bezonata." -#: src/Model/User.php:1204 +#: src/Model/User.php:1203 msgid "Invitation could not be verified." msgstr "Ne povis kontroli la inviton." -#: src/Model/User.php:1212 +#: src/Model/User.php:1211 msgid "Invalid OpenID url" msgstr "Nevalida OpenID adreso" -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Okazis problemo ensalutinta kun via OpenID. Bonvolu kontroli la ID." -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "The error message was:" msgstr "La erarmesaĝo estis:" @@ -3980,57 +3985,57 @@ msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:51 +#: src/Module/Admin/Addons/Details.php:49 msgid "Addon not found." msgstr "" -#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 +#: src/Module/Admin/Addons/Details.php:60 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "" -#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 +#: src/Module/Admin/Addons/Details.php:63 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "" -#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Addons/Details.php:72 #: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "Malŝalti" -#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Addons/Details.php:75 #: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351 msgid "Enable" msgstr "Ŝalti" -#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Addons/Details.php:95 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:175 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Summary.php:173 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 "Administrado" -#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/Admin/Addons/Details.php:96 src/Module/Admin/Addons/Index.php:60 #: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:127 msgid "Addons" msgstr "" -#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Addons/Details.php:97 #: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Ŝalti/Malŝalti" -#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Addons/Details.php:104 #: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Aŭtoro: " -#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Addons/Details.php:105 #: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Prizorganto: " @@ -4047,9 +4052,10 @@ 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:545 src/Module/Settings/Addons.php:64 -#: src/Module/Settings/Connectors.php:149 -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Account.php:507 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/Features.php:61 msgid "Save Settings" @@ -4066,62 +4072,62 @@ msgid "" "official addon repository at %1$s." msgstr "" -#: src/Module/Admin/DBSync.php:37 +#: src/Module/Admin/DBSync.php:35 msgid "Update has been marked successful" msgstr "Ĝisdatigo estas markita sukcesa" -#: src/Module/Admin/DBSync.php:45 +#: src/Module/Admin/DBSync.php:43 #, php-format msgid "Database structure update %s was successfully applied." msgstr "" -#: src/Module/Admin/DBSync.php:47 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:62 +#: src/Module/Admin/DBSync.php:60 #, php-format msgid "Executing %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:64 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Update %s was successfully applied." msgstr "Sukcese aplikis la ĝisdatigo %s." -#: src/Module/Admin/DBSync.php:67 +#: src/Module/Admin/DBSync.php:65 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Ĝisdatigo %s ne liveris elirstaton. " -#: src/Module/Admin/DBSync.php:70 +#: src/Module/Admin/DBSync.php:68 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "" -#: src/Module/Admin/DBSync.php:91 +#: src/Module/Admin/DBSync.php:89 msgid "No failed updates." msgstr "Neniom da malsukcesaj ĝisdatigoj." -#: src/Module/Admin/DBSync.php:92 +#: src/Module/Admin/DBSync.php:90 msgid "Check database structure" msgstr "" -#: src/Module/Admin/DBSync.php:96 +#: src/Module/Admin/DBSync.php:94 msgid "Failed Updates" msgstr "Malsukcesaj Ĝisdatigoj" -#: src/Module/Admin/DBSync.php:97 +#: src/Module/Admin/DBSync.php:95 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Ne inkluzivas ĝisdatigojn antaŭ 1139, kiuj ne liveris elirstaton." -#: src/Module/Admin/DBSync.php:98 +#: src/Module/Admin/DBSync.php:96 msgid "Mark success (if update was manually applied)" msgstr "Marki sukcesa (se la ĝisdatigo estas instalita mane)" -#: src/Module/Admin/DBSync.php:99 +#: src/Module/Admin/DBSync.php:97 msgid "Attempt to execute this update step automatically" msgstr "Provi automate plenumi ĉi tian paŝon de la ĝisdatigo." @@ -5686,12 +5692,12 @@ msgstr "" msgid "Database (legacy)" msgstr "" -#: src/Module/Admin/Summary.php:41 +#: src/Module/Admin/Summary.php:39 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:45 +#: src/Module/Admin/Summary.php:43 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5702,7 +5708,7 @@ msgid "" " an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:50 +#: src/Module/Admin/Summary.php:48 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5713,7 +5719,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:60 +#: src/Module/Admin/Summary.php:58 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5721,46 +5727,46 @@ msgid "" " to %d. See here for more information.
" msgstr "" -#: src/Module/Admin/Summary.php:68 +#: src/Module/Admin/Summary.php:66 #, 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:76 +#: src/Module/Admin/Summary.php:74 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:80 +#: src/Module/Admin/Summary.php:78 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:84 +#: src/Module/Admin/Summary.php:82 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:89 +#: src/Module/Admin/Summary.php:87 msgid "The worker was never executed. Please check your database structure!" msgstr "" -#: src/Module/Admin/Summary.php:91 +#: src/Module/Admin/Summary.php:89 #, 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:96 +#: src/Module/Admin/Summary.php:94 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5769,7 +5775,7 @@ msgid "" "help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:100 +#: src/Module/Admin/Summary.php:98 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5778,7 +5784,7 @@ msgid "" "page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:106 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5786,40 +5792,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "" -#: src/Module/Admin/Summary.php:130 +#: src/Module/Admin/Summary.php:128 #, 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:138 +#: src/Module/Admin/Summary.php:136 #, 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:146 +#: src/Module/Admin/Summary.php:144 #, 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:157 +#: src/Module/Admin/Summary.php:155 msgid "Message queues" msgstr "Mesaĝvicoj" -#: src/Module/Admin/Summary.php:160 +#: src/Module/Admin/Summary.php:158 msgid "Server Settings" msgstr "" -#: src/Module/Admin/Summary.php:178 +#: src/Module/Admin/Summary.php:176 msgid "Version" msgstr "Versio" -#: src/Module/Admin/Summary.php:182 +#: src/Module/Admin/Summary.php:180 msgid "Active addons" msgstr "" @@ -6084,8 +6090,8 @@ msgstr "" msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:134 -#: src/Module/Moderation/Users/Index.php:144 +#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:137 +#: src/Module/Moderation/Users/Index.php:147 msgid "Users" msgstr "Uzantoj" @@ -6121,7 +6127,7 @@ msgstr "" msgid "Only You Can See This" msgstr "Nur Vi Povas Vidi Tiun" -#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:67 +#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:65 msgid "Scheduled Posts" msgstr "" @@ -6173,7 +6179,7 @@ msgstr "" msgid "Display" msgstr "" -#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:195 +#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:189 msgid "Social Networks" msgstr "" @@ -6189,11 +6195,15 @@ msgstr "Konektitaj programoj" msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:84 +#: src/Module/BaseSettings.php:155 src/Module/Settings/ContactImport.php:109 +msgid "Import Contacts" +msgstr "" + +#: src/Module/BaseSettings.php:162 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Eksporto" -#: src/Module/BaseSettings.php:162 +#: src/Module/BaseSettings.php:169 msgid "Remove account" msgstr "Forigi konton" @@ -6322,8 +6332,8 @@ msgstr "" msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:54 src/Module/Circle.php:202 -#: src/Module/Circle.php:226 +#: src/Module/Circle.php:54 src/Module/Circle.php:203 +#: src/Module/Circle.php:227 msgid "Circle not found." msgstr "" @@ -6331,15 +6341,15 @@ msgstr "" msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:78 +#: src/Module/Circle.php:80 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Circle.php:86 src/Module/Circle.php:95 #: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 -#: 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/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/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 @@ -6348,75 +6358,75 @@ msgstr "" msgid "Contact not found." msgstr "Kontakto ne trovita." -#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 +#: src/Module/Circle.php:90 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Nevalida kontakto." -#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 +#: src/Module/Circle.php:99 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "" -#: src/Module/Circle.php:103 +#: src/Module/Circle.php:105 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:106 +#: src/Module/Circle.php:108 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:110 +#: src/Module/Circle.php:112 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:113 +#: src/Module/Circle.php:115 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:119 msgid "Bad request." msgstr "" -#: src/Module/Circle.php:158 +#: src/Module/Circle.php:160 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:159 +#: src/Module/Circle.php:161 msgid "Filter" msgstr "" -#: src/Module/Circle.php:165 +#: src/Module/Circle.php:167 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:207 +#: src/Module/Circle.php:208 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:258 +#: src/Module/Circle.php:259 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:268 +#: src/Module/Circle.php:269 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:278 +#: src/Module/Circle.php:279 msgid "Members" msgstr "Anoj" -#: src/Module/Circle.php:281 +#: src/Module/Circle.php:282 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:297 +#: src/Module/Circle.php:298 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:320 +#: src/Module/Circle.php:321 msgid "Click on a contact to add or remove." msgstr "Klaku kontakton por aldoni aŭ forviŝi." -#: src/Module/Circle.php:337 +#: src/Module/Circle.php:338 msgid "Add contact to circle" msgstr "" @@ -6450,7 +6460,7 @@ msgid "Only show blocked contacts" msgstr "Nur montri blokitajn kontaktojn" #: src/Module/Contact.php:349 src/Module/Contact.php:421 -#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:386 msgid "Ignored" msgstr "Ignorita" @@ -6501,8 +6511,8 @@ msgstr "Ĝisdatigi" #: src/Module/Contact.php:449 src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:105 -#: src/Module/Moderation/Users/Blocked.php:124 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Blocked.php:127 +#: src/Module/Moderation/Users/Index.php:143 msgid "Unblock" msgstr "Malbloki" @@ -6578,12 +6588,12 @@ msgstr "Reen al kontakta redaktilo" #: 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:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:56 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Nomo" @@ -7148,11 +7158,11 @@ msgstr "" msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:190 +#: src/Module/Conversation/Timeline.php:193 msgid "Include" msgstr "" -#: src/Module/Conversation/Timeline.php:191 +#: src/Module/Conversation/Timeline.php:194 msgid "Hide" msgstr "" @@ -7421,19 +7431,19 @@ msgstr "" msgid "Lookup address:" msgstr "" -#: src/Module/Directory.php:61 +#: src/Module/Directory.php:60 msgid "No entries (some entries may be hidden)." msgstr "Neniom da afiŝoj (kelkaj afiŝoj eble ne estas videbla)." -#: src/Module/Directory.php:77 +#: src/Module/Directory.php:76 msgid "Find on this site" msgstr "Trovi en ĉi retejo" -#: src/Module/Directory.php:79 +#: src/Module/Directory.php:78 msgid "Results for:" msgstr "" -#: src/Module/Directory.php:81 +#: src/Module/Directory.php:80 msgid "Site Directory" msgstr "Reteja Katalogo" @@ -7686,40 +7696,40 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "" -#: src/Module/Invite.php:43 +#: src/Module/Invite.php:42 msgid "Total invitation limit exceeded." msgstr "" -#: src/Module/Invite.php:68 +#: src/Module/Invite.php:67 #, php-format msgid "%s : Not a valid email address." msgstr "%s: Ne estas valida retpoŝtadreso." -#: src/Module/Invite.php:94 +#: src/Module/Invite.php:93 msgid "Please join us on Friendica" msgstr "Bonvolu aliĝi kun ni ĉe Friendica" -#: src/Module/Invite.php:103 +#: src/Module/Invite.php:102 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: src/Module/Invite.php:107 +#: src/Module/Invite.php:106 #, php-format msgid "%s : Message delivery failed." msgstr "%s: La livero de la mesaĝo malsukcesis." -#: src/Module/Invite.php:111 +#: src/Module/Invite.php:110 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "Sendis %d mesaĝon." msgstr[1] "Sendis %d mesaĝojn." -#: src/Module/Invite.php:129 +#: src/Module/Invite.php:127 msgid "You have no more invitations available" msgstr "Vi ne plu disponeblas invitaĵojn" -#: src/Module/Invite.php:136 +#: src/Module/Invite.php:134 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7727,14 +7737,14 @@ msgid "" " other social networks." msgstr "Vizitu %s por listo de publikaj retejoj kie vi povas aliĝi. Anoj de Friendica ĉe aliaj retejoj povas konekti unu kun la alian, kaj ankaŭ kun membroj de multaj aliaj retejoj." -#: src/Module/Invite.php:138 +#: src/Module/Invite.php:136 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Por akcepti ĉi tiu invito, bonvolu viziti kaj registriĝi ĉe %s au alia publika Friendica retejo." -#: src/Module/Invite.php:139 +#: src/Module/Invite.php:137 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7743,48 +7753,48 @@ msgid "" "sites you can join." msgstr "Ĉiuj Friendica retejoj interkonektiĝas kaj kune faras grandan altprivatecan interkonan reton, kiun posedas kaj kontrolas ĝiaj membroj. Ili ankaŭ povas konekti kun multe de tradiciaj interkonaj retejoj. Vidu %s por listo de publikaj retejoj kie vi povas aliĝi." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:141 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Senkulpigu nin. La sistemo nuntempe ne estas agordita por konekti al aliaj retejoj au inviti membrojn." -#: src/Module/Invite.php:146 +#: src/Module/Invite.php:144 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:145 +#: src/Module/Invite.php:143 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "" -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:151 msgid "Send invitations" msgstr "Sendi invitojn" -#: src/Module/Invite.php:154 +#: src/Module/Invite.php:152 msgid "Enter email addresses, one per line:" msgstr "Entajpu retpoŝtadresojn, po unu por ĉiu linio." -#: src/Module/Invite.php:158 +#: src/Module/Invite.php:156 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Ni bonkore invitas vin aliĝi kun ni kaj aliaj bonaj amikoj ĉe Friendica. Helpu nin krei pli bonan interkonan reton." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "You will need to supply this invitation code: $invite_code" msgstr "Vi bezonas ĉi-tiun invitkodon: $invite_code" -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Kiam vi registris, bonvolu konekti al mi pere de mi profilo ĉe: " -#: src/Module/Invite.php:162 +#: src/Module/Invite.php:160 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" @@ -7886,12 +7896,12 @@ msgid "File upload failed." msgstr "Alŝutado malsukcesis." #: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 -#: src/Module/Profile/Photos.php:204 +#: src/Module/Profile/Photos.php:212 #: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Ne eblas procedi la bildon." -#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:224 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:232 #: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Alŝuto de bildo malsukcesis." @@ -7924,23 +7934,23 @@ msgstr "" msgid "List of pending user deletions" msgstr "" -#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:469 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:431 msgid "Normal Account Page" msgstr "Normala Kontopaĝo" -#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:476 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:438 msgid "Soapbox Page" msgstr "Soapbox Paĝo" -#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:483 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:445 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:490 +#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:452 msgid "Public Group - Restricted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:497 +#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:459 msgid "Automatic Friend Page" msgstr "Aŭtomata Amiko Paĝo" @@ -7949,22 +7959,22 @@ msgid "Private Group" msgstr "" #: src/Module/Moderation/BaseUsers.php:118 -#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:440 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:402 msgid "Personal Page" msgstr "" #: src/Module/Moderation/BaseUsers.php:119 -#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:447 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:409 msgid "Organisation Page" msgstr "" #: src/Module/Moderation/BaseUsers.php:120 -#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:454 +#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:416 msgid "News Page" msgstr "" #: src/Module/Moderation/BaseUsers.php:121 -#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:461 +#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:423 msgid "Community Group" msgstr "" @@ -7994,9 +8004,9 @@ msgid "Block Remote Contact" msgstr "" #: src/Module/Moderation/Blocklist/Contact.php:102 -#: 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/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:138 #: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "elekti ĉiujn" @@ -8337,9 +8347,9 @@ msgid "Tag" msgstr "" #: src/Module/Moderation/Item/Source.php:77 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 -#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 +#: src/Module/Moderation/Users/Index.php:129 msgid "Type" msgstr "" @@ -8604,7 +8614,7 @@ msgstr[1] "" msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:418 +#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:380 msgid "Channel Relay" msgstr "" @@ -8625,11 +8635,11 @@ msgstr[0] "" msgstr[1] "" #: src/Module/Moderation/Users/Active.php:37 -#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Active.php:74 #: src/Module/Moderation/Users/Blocked.php:37 -#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Blocked.php:74 #: src/Module/Moderation/Users/Index.php:44 -#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Index.php:81 msgid "You can't remove yourself" msgstr "" @@ -8642,81 +8652,81 @@ msgid_plural "%s users deleted" msgstr[0] "%s uzanto forviŝita" msgstr[1] "%s uzanto forviŝitaj" -#: src/Module/Moderation/Users/Active.php:69 -#: src/Module/Moderation/Users/Blocked.php:69 -#: src/Module/Moderation/Users/Index.php:76 +#: src/Module/Moderation/Users/Active.php:72 +#: src/Module/Moderation/Users/Blocked.php:72 +#: src/Module/Moderation/Users/Index.php:79 #, php-format msgid "User \"%s\" deleted" msgstr "" -#: src/Module/Moderation/Users/Active.php:79 -#: src/Module/Moderation/Users/Index.php:86 +#: src/Module/Moderation/Users/Active.php:82 +#: src/Module/Moderation/Users/Index.php:89 #, php-format msgid "User \"%s\" blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Register date" msgstr "Dato de registrado" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last login" msgstr "Plej ĵusa ensaluto" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last public item" msgstr "" -#: src/Module/Moderation/Users/Active.php:120 +#: src/Module/Moderation/Users/Active.php:123 msgid "Active Accounts" msgstr "" -#: src/Module/Moderation/Users/Active.php:124 -#: src/Module/Moderation/Users/Blocked.php:123 -#: src/Module/Moderation/Users/Index.php:139 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "User blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:125 -#: src/Module/Moderation/Users/Blocked.php:125 -#: src/Module/Moderation/Users/Index.php:141 +#: src/Module/Moderation/Users/Active.php:128 +#: src/Module/Moderation/Users/Blocked.php:128 +#: src/Module/Moderation/Users/Index.php:144 msgid "Site admin" msgstr "" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:142 +#: src/Module/Moderation/Users/Active.php:129 +#: src/Module/Moderation/Users/Blocked.php:129 +#: src/Module/Moderation/Users/Index.php:145 msgid "Account expired" msgstr "" -#: src/Module/Moderation/Users/Active.php:127 -#: src/Module/Moderation/Users/Index.php:145 +#: src/Module/Moderation/Users/Active.php:130 +#: src/Module/Moderation/Users/Index.php:148 msgid "Create a new user" msgstr "" -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:132 -#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:154 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "La elektitaj uzantkontoj estas forviŝotaj!\\n\\nĈiuj elementoj kiujn ili afiŝis je la retpaĝo estos permanente forviŝitaj.\\n\\nĈu vi certas?" -#: src/Module/Moderation/Users/Active.php:134 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:155 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" @@ -8730,13 +8740,13 @@ msgid_plural "%s users unblocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Blocked.php:78 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Blocked.php:81 +#: src/Module/Moderation/Users/Index.php:95 #, php-format msgid "User \"%s\" unblocked" msgstr "" -#: src/Module/Moderation/Users/Blocked.php:120 +#: src/Module/Moderation/Users/Blocked.php:123 msgid "Blocked Users" msgstr "" @@ -8769,11 +8779,11 @@ msgid "Users awaiting permanent deletion" msgstr "" #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:149 msgid "Permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Index.php:136 +#: src/Module/Moderation/Users/Index.php:139 msgid "User waiting for permanent deletion" msgstr "" @@ -8938,7 +8948,7 @@ msgstr "" msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:91 +#: src/Module/OAuth/Token.php:73 msgid "Unsupported or missing grant type" msgstr "" @@ -8990,7 +9000,7 @@ msgstr "" msgid "Keep this window open until done." msgstr "" -#: src/Module/OpenSearch.php:57 +#: src/Module/OpenSearch.php:55 #, php-format msgid "Search in Friendica %s" msgstr "" @@ -9004,12 +9014,12 @@ msgstr "" msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:178 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:180 #, php-format msgid "Invalid photo with id %s." msgstr "" @@ -9042,15 +9052,15 @@ msgstr "Alglui ligilon de sono" msgid "audio link" msgstr "sono ligilo" -#: src/Module/Post/Tag/Remove.php:92 +#: src/Module/Post/Tag/Remove.php:93 msgid "Remove Item Tag" msgstr "Forviŝi markon" -#: src/Module/Post/Tag/Remove.php:93 +#: src/Module/Post/Tag/Remove.php:94 msgid "Select a tag to remove: " msgstr "Elektu forviŝontan markon:" -#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Post/Tag/Remove.php:95 #: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Forviŝi" @@ -9129,32 +9139,32 @@ msgstr "" msgid "%s's timeline" msgstr "" -#: src/Module/Profile/Photos.php:153 src/Module/Profile/Photos.php:156 -#: src/Module/Profile/Photos.php:181 +#: src/Module/Profile/Photos.php:157 src/Module/Profile/Photos.php:160 +#: src/Module/Profile/Photos.php:189 #: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "" -#: src/Module/Profile/Photos.php:159 +#: src/Module/Profile/Photos.php:163 msgid "Image upload didn't complete, please try again" msgstr "" -#: src/Module/Profile/Photos.php:162 +#: src/Module/Profile/Photos.php:166 msgid "Image file is missing" msgstr "" -#: src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:171 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "" -#: src/Module/Profile/Photos.php:189 +#: src/Module/Profile/Photos.php:197 msgid "Image file is empty." msgstr "Bilddosiero estas malplena." -#: src/Module/Profile/Photos.php:341 +#: src/Module/Profile/Photos.php:349 msgid "View Album" msgstr "Vidi albumon" @@ -9270,15 +9280,15 @@ msgid "" "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:69 +#: src/Module/Profile/Schedule.php:67 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:70 +#: src/Module/Profile/Schedule.php:68 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:71 +#: src/Module/Profile/Schedule.php:69 msgid "Remove post" msgstr "" @@ -9343,7 +9353,7 @@ msgid "Please repeat your e-mail address:" msgstr "" #: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:551 +#: src/Module/Settings/Account.php:513 msgid "New Password:" msgstr "Nova pasvorto:" @@ -9352,7 +9362,7 @@ 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:552 +#: src/Module/Settings/Account.php:514 msgid "Confirm:" msgstr "Konfirmi:" @@ -9536,20 +9546,20 @@ msgstr "Elsalutita." msgid "OpenID protocol error. No ID returned" msgstr "" -#: src/Module/Security/OpenID.php:76 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "" -#: src/Module/Security/OpenID.php:78 +#: src/Module/Security/OpenID.php:80 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:51 +#: src/Module/Settings/Account.php:49 msgid "Passwords do not match." msgstr "" @@ -9558,7 +9568,7 @@ msgid "Password does not need changing." msgstr "" #: src/Module/Security/PasswordTooLong.php:63 -#: src/Module/Settings/Account.php:65 +#: src/Module/Settings/Account.php:63 msgid "Password unchanged." msgstr "" @@ -9578,24 +9588,24 @@ msgid "Update Password" msgstr "" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Current Password:" msgstr "" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Your current password to confirm the changes" msgstr "" #: src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:537 +#: src/Module/Settings/Account.php:499 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:538 +#: src/Module/Settings/Account.php:500 msgid "Password length is limited to 72 characters." msgstr "" @@ -9699,129 +9709,121 @@ msgstr "" msgid "Verify code and complete login" msgstr "" -#: src/Module/Settings/Account.php:80 +#: src/Module/Settings/Account.php:78 msgid "Please use a shorter name." msgstr "" -#: src/Module/Settings/Account.php:83 +#: src/Module/Settings/Account.php:81 msgid "Name too short." msgstr "" -#: src/Module/Settings/Account.php:92 +#: src/Module/Settings/Account.php:90 msgid "Wrong Password." msgstr "" -#: src/Module/Settings/Account.php:97 +#: src/Module/Settings/Account.php:95 msgid "Invalid email." msgstr "" -#: src/Module/Settings/Account.php:101 +#: src/Module/Settings/Account.php:99 msgid "Cannot change to that email." msgstr "" -#: 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 +#: 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 msgid "Settings were not updated." msgstr "" -#: src/Module/Settings/Account.php:331 -msgid "Contact CSV file upload error" -msgstr "" - -#: src/Module/Settings/Account.php:350 -msgid "Importing Contacts done" -msgstr "" - -#: src/Module/Settings/Account.php:363 +#: src/Module/Settings/Account.php:325 msgid "Relocate message has been send to your contacts" msgstr "" -#: src/Module/Settings/Account.php:380 +#: src/Module/Settings/Account.php:342 msgid "Unable to find your profile. Please contact your admin." msgstr "" -#: src/Module/Settings/Account.php:420 +#: src/Module/Settings/Account.php:382 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:430 +#: src/Module/Settings/Account.php:392 msgid "Personal Page Subtypes" msgstr "" -#: src/Module/Settings/Account.php:431 +#: src/Module/Settings/Account.php:393 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:442 +#: src/Module/Settings/Account.php:404 msgid "Account for a personal profile." msgstr "" -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:411 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:456 +#: src/Module/Settings/Account.php:418 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:463 +#: src/Module/Settings/Account.php:425 msgid "Account for community discussions." msgstr "" -#: src/Module/Settings/Account.php:471 +#: src/Module/Settings/Account.php:433 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:478 +#: src/Module/Settings/Account.php:440 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:485 +#: src/Module/Settings/Account.php:447 msgid "Automatically approves all contact requests." msgstr "" -#: src/Module/Settings/Account.php:492 +#: src/Module/Settings/Account.php:454 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:499 +#: src/Module/Settings/Account.php:461 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "" -#: src/Module/Settings/Account.php:504 +#: src/Module/Settings/Account.php:466 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:506 +#: src/Module/Settings/Account.php:468 msgid "Requires manual approval of contact requests." msgstr "" -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Nedeviga) Permesi atingon al la konton al ĉi tio OpenID." -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9829,94 +9831,94 @@ msgid "" " system settings." msgstr "" -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:491 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "" -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:504 msgid "Account Settings" msgstr "Kontoagordoj" -#: src/Module/Settings/Account.php:543 +#: src/Module/Settings/Account.php:505 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: src/Module/Settings/Account.php:550 +#: src/Module/Settings/Account.php:512 msgid "Password Settings" msgstr "Agordoj pri Pasvorto" -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Leave password fields blank unless changing" msgstr "Lasu pasvortkampojn malplenaj se vi ne ŝanĝas la pasvorton." -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Password:" msgstr "" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:557 +#: src/Module/Settings/Account.php:519 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:559 +#: src/Module/Settings/Account.php:521 msgid "Basic Settings" msgstr "Bazaj Agordoj" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:522 #: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:523 msgid "Email Address:" msgstr "Retpoŝtadreso:" -#: src/Module/Settings/Account.php:562 +#: src/Module/Settings/Account.php:524 msgid "Your Timezone:" msgstr "Via Horzono:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "Your Language:" msgstr "" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "" -#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Account.php:526 msgid "Default Post Location:" msgstr "Defaŭlta Loko por Afiŝoj:" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:527 msgid "Use Browser Location:" msgstr "Uzu Lokon laŭ Retesplorilo:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:529 msgid "Security and Privacy Settings" msgstr "Agordoj pri Sekureco kaj Privateco" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "Maximum Friend Requests/Day:" msgstr "Taga maksimumo da kontaktpetoj:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "(to prevent spam abuse)" msgstr "(por malhelpi spamaĵojn)" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 msgid "Allow your profile to be searchable globally?" msgstr "" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 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 " @@ -9924,43 +9926,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 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:573 +#: src/Module/Settings/Account.php:535 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:535 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:574 +#: src/Module/Settings/Account.php:536 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:536 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:575 +#: src/Module/Settings/Account.php:537 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:537 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 " @@ -9968,227 +9970,213 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "Allow friends to post to your profile page?" msgstr "Ĉu amikoj povu afiŝi al via profilo?" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Allow friends to tag your posts?" msgstr "Ĉu amikoj povu aldoni markojn al viaj afiŝoj?" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Your contacts can add additional tags to your posts." msgstr "" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:540 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:541 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:542 msgid "Default Post Permissions" msgstr "Defaŭltaj permesoj por afiŝoj" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:546 msgid "Expiration settings" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "Automatically expire posts after this many days:" msgstr "Automatike senvalidigi afiŝojn post tiom da tagoj:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Se malplena, afiŝoj neniam senvalidiĝos. Senvalidigitajn afiŝon estos forviŝata" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "Expire starred posts" msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 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:592 +#: src/Module/Settings/Account.php:554 msgid "Notification Settings" msgstr "Agordoj pri Atentigoj" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:555 msgid "Send a notification email when:" msgstr "Sendu atentiga repoŝton se:" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:556 msgid "You receive an introduction" msgstr "Vi ricevas inviton" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:557 msgid "Your introductions are confirmed" msgstr "Viaj prezentoj estas konfirmata." -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:558 msgid "Someone writes on your profile wall" msgstr "Iu skribas je via profila muro." -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:559 msgid "Someone writes a followup comment" msgstr "Iu skribas sekvan komenton" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:560 msgid "You receive a private message" msgstr "Vi ricevas privatan mesaĝon." -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:561 msgid "You receive a friend suggestion" msgstr "Vi ricevas amikosugeston" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:562 msgid "You are tagged in a post" msgstr "Vi estas markita en afiŝon" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:564 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:565 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:566 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:567 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:605 src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:567 src/Module/Settings/Account.php:568 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:568 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:569 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:570 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:571 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Activate desktop notifications" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Show desktop popup on new notifications" msgstr "" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:577 msgid "Text-only notification emails" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:579 msgid "Send text only notification emails, without the html part" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:583 msgid "Show detailled notifications" msgstr "" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:585 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:589 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:591 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:632 +#: src/Module/Settings/Account.php:594 msgid "Advanced Account/Page Type Settings" msgstr "Detalaj Agordoj pri Tipo de Konto/Paĝo." -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:595 msgid "Change the behaviour of this account for special situations" msgstr "Agordi la teniĝon de la konto en specialaj situacioj" -#: src/Module/Settings/Account.php:636 -msgid "Import Contacts" -msgstr "" - -#: src/Module/Settings/Account.php:637 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "" - -#: src/Module/Settings/Account.php:638 -msgid "Upload File" -msgstr "" - -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:598 msgid "Relocate" msgstr "" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:599 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:643 +#: src/Module/Settings/Account.php:600 msgid "Resend relocate message to contacts" msgstr "" @@ -10353,214 +10341,232 @@ msgstr "" msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:108 +#: src/Module/Settings/Connectors.php:107 msgid "Failed to connect with email account using the settings provided." msgstr "Ne sukcesis konekti al retpoŝtkonto kun la provizitaj agordoj." -#: src/Module/Settings/Connectors.php:155 -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:150 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "" -#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:149 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:150 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:161 msgid "Email access is disabled on this site." msgstr "Retpoŝta atingo ne disponeblas ĉi tie." -#: src/Module/Settings/Connectors.php:182 -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:176 +#: src/Module/Settings/Connectors.php:226 msgid "None" msgstr "Nenio" -#: src/Module/Settings/Connectors.php:186 +#: src/Module/Settings/Connectors.php:180 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "" -#: src/Module/Settings/Connectors.php:187 +#: src/Module/Settings/Connectors.php:181 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "" -#: src/Module/Settings/Connectors.php:188 +#: src/Module/Settings/Connectors.php:182 msgid "Embed the title in the body" msgstr "" -#: src/Module/Settings/Connectors.php:199 +#: src/Module/Settings/Connectors.php:193 msgid "General Social Media Settings" msgstr "" -#: src/Module/Settings/Connectors.php:202 +#: src/Module/Settings/Connectors.php:196 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:198 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:200 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:207 +#: src/Module/Settings/Connectors.php:201 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:208 +#: src/Module/Settings/Connectors.php:202 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "Attach the link title" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "Article Mode" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "" -#: src/Module/Settings/Connectors.php:218 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "" - -#: src/Module/Settings/Connectors.php:218 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "" - -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:215 msgid "Email/Mailbox Setup" msgstr "Agordoj pri Retpoŝto" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:216 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Se vi volas uzi ĉi tiun servon por komuniki per retpoŝto (nedeviga), bonvolu specifi kiel konekti al vian retpoŝtkonton." -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:217 msgid "Last successful email check:" msgstr "Plej ĵusa sukcesa kontrolo de poŝto:" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:219 msgid "IMAP server name:" msgstr "Nomo de IMAP servilo:" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:220 msgid "IMAP port:" msgstr "Numero de IMAP pordo:" -#: src/Module/Settings/Connectors.php:228 +#: src/Module/Settings/Connectors.php:221 msgid "Security:" msgstr "Sekureco:" -#: src/Module/Settings/Connectors.php:229 +#: src/Module/Settings/Connectors.php:222 msgid "Email login name:" msgstr "Retpoŝta salutnomo:" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:223 msgid "Email password:" msgstr "Retpoŝta pasvorto:" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:224 msgid "Reply-to address:" msgstr "Responda adreso (Reply-to):" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:225 msgid "Send public posts to all email contacts:" msgstr "Sendu publikajn afiŝojn al ĉiuj retpoŝtkontaktoj:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Action after import:" msgstr "Ago post la importado:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Move to folder" msgstr "Movi al dosierujo" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:227 msgid "Move to folder:" msgstr "Movi al dosierujo:" +#: src/Module/Settings/ContactImport.php:63 +msgid "Contact CSV file upload error" +msgstr "" + +#: src/Module/Settings/ContactImport.php:82 +msgid "Importing Contacts done" +msgstr "" + +#: src/Module/Settings/ContactImport.php:112 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "" + +#: src/Module/Settings/ContactImport.php:113 +msgid "Upload File" +msgstr "" + +#: src/Module/Settings/ContactImport.php:115 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "" + +#: src/Module/Settings/ContactImport.php:115 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "" + #: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "" @@ -11011,42 +11017,42 @@ msgstr "Privataj ŝlosilvortoj:" msgid "(Used for searching profiles, never shown to others)" msgstr "(Por serĉi profilojn. Neniam videbla al aliaj.)" -#: 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/Crop.php:90 +#: src/Module/Settings/Profile/Photo/Crop.php:108 +#: src/Module/Settings/Profile/Photo/Crop.php:126 #: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Malsukcesis malpligrandigi [%s] la bildon." -#: src/Module/Settings/Profile/Photo/Crop.php:136 +#: src/Module/Settings/Profile/Photo/Crop.php:133 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Reŝarĝu la paĝon au malplenigu la kaŝmemoro de la retesplorilo se la nova bildo ne tuj aperas." -#: src/Module/Settings/Profile/Photo/Crop.php:141 +#: src/Module/Settings/Profile/Photo/Crop.php:138 msgid "Unable to process image" msgstr "Ne eblas procezi bildon." -#: src/Module/Settings/Profile/Photo/Crop.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:157 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:182 +#: src/Module/Settings/Profile/Photo/Crop.php:179 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:208 -#: src/Module/Settings/Profile/Photo/Crop.php:212 +#: src/Module/Settings/Profile/Photo/Crop.php:205 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Crop Image" msgstr "Stuci Bildon" -#: src/Module/Settings/Profile/Photo/Crop.php:209 +#: src/Module/Settings/Profile/Photo/Crop.php:206 msgid "Please adjust the image cropping for optimum viewing." msgstr "Bonvolu agordi la stuco de la bildo por optimuma aspekto." -#: src/Module/Settings/Profile/Photo/Crop.php:211 +#: src/Module/Settings/Profile/Photo/Crop.php:208 msgid "Use Image As Is" msgstr "" @@ -11117,17 +11123,17 @@ msgstr "" msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:116 +#: src/Module/Settings/RemoveMe.php:114 msgid "Remove My Account" msgstr "Forigi Mian Konton" -#: src/Module/Settings/RemoveMe.php:117 +#: src/Module/Settings/RemoveMe.php:115 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Tio tute forigos vian konton. Kiam farita, la konto ne estas restaŭrebla." -#: src/Module/Settings/RemoveMe.php:122 +#: src/Module/Settings/RemoveMe.php:120 msgid "Please enter your password for verification:" msgstr "Bonvolu entajpi vian pasvorton por kontrolado:" @@ -11522,11 +11528,11 @@ msgstr "" msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:64 +#: src/Module/Special/HTTPException.php:65 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:69 +#: src/Module/Special/HTTPException.php:70 #, php-format msgid "Exception thrown in %s:%d" msgstr "" @@ -12309,295 +12315,295 @@ msgstr "Bonvolu rispondi al ĉi mesaĝo kaj kontaktu la sendinto se vi ne volas msgid "%s posted an update." msgstr "%s publikigis afiŝon." -#: src/Object/Post.php:124 +#: src/Object/Post.php:125 msgid "Private Message" msgstr "Privata mesaĝo" -#: src/Object/Post.php:128 +#: src/Object/Post.php:129 msgid "Public Message" msgstr "" -#: src/Object/Post.php:132 +#: src/Object/Post.php:133 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:168 +#: src/Object/Post.php:169 msgid "This entry was edited" msgstr "" -#: src/Object/Post.php:196 +#: src/Object/Post.php:197 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:225 src/Object/Post.php:227 +#: src/Object/Post.php:226 src/Object/Post.php:228 msgid "Edit" msgstr "Redakti" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Delete globally" msgstr "" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Remove locally" msgstr "" -#: src/Object/Post.php:268 +#: src/Object/Post.php:269 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:273 +#: src/Object/Post.php:274 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:278 +#: src/Object/Post.php:279 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:282 +#: src/Object/Post.php:283 msgid "Report post" msgstr "" -#: src/Object/Post.php:293 +#: src/Object/Post.php:294 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will attend" msgstr "" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will not attend" msgstr "" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I might attend" msgstr "" -#: src/Object/Post.php:380 +#: src/Object/Post.php:381 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:381 +#: src/Object/Post.php:382 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:382 +#: src/Object/Post.php:383 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:392 +#: src/Object/Post.php:393 msgid "Add star" msgstr "" -#: src/Object/Post.php:393 +#: src/Object/Post.php:394 msgid "Remove star" msgstr "" -#: src/Object/Post.php:394 +#: src/Object/Post.php:395 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:405 +#: src/Object/Post.php:406 msgid "Pin" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:407 msgid "Unpin" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:408 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:410 +#: src/Object/Post.php:411 msgid "Pinned" msgstr "" -#: src/Object/Post.php:415 +#: src/Object/Post.php:416 msgid "Add tag" msgstr "" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare" msgstr "" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Unshare" msgstr "" -#: src/Object/Post.php:478 +#: src/Object/Post.php:479 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:514 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:517 +#: src/Object/Post.php:518 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:519 +#: src/Object/Post.php:520 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:543 +#: src/Object/Post.php:544 msgid "to" msgstr "al" -#: src/Object/Post.php:544 +#: src/Object/Post.php:545 msgid "via" msgstr "" -#: src/Object/Post.php:545 +#: src/Object/Post.php:546 msgid "Wall-to-Wall" msgstr "Muro-al-Muro" -#: src/Object/Post.php:546 +#: src/Object/Post.php:547 msgid "via Wall-To-Wall:" msgstr "per Muro-al-Muro:" -#: src/Object/Post.php:599 +#: src/Object/Post.php:600 #, php-format msgid "Reply to %s" msgstr "" -#: src/Object/Post.php:602 +#: src/Object/Post.php:603 msgid "More" msgstr "" -#: src/Object/Post.php:621 +#: src/Object/Post.php:622 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:622 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:623 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:624 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:625 +#: src/Object/Post.php:626 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:647 +#: src/Object/Post.php:648 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d komento" msgstr[1] "%d komentoj" -#: src/Object/Post.php:648 +#: src/Object/Post.php:649 msgid "Show more" msgstr "" -#: src/Object/Post.php:649 +#: src/Object/Post.php:650 msgid "Show fewer" msgstr "" -#: src/Object/Post.php:686 +#: src/Object/Post.php:687 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:691 +#: src/Object/Post.php:692 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:696 +#: src/Object/Post.php:697 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:701 +#: src/Object/Post.php:702 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:706 +#: src/Object/Post.php:707 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:711 +#: src/Object/Post.php:712 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:716 +#: src/Object/Post.php:717 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:721 +#: src/Object/Post.php:722 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:726 +#: src/Object/Post.php:727 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:731 +#: src/Object/Post.php:732 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:754 +#: src/Object/Post.php:755 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:557 +#: src/Protocol/ActivityPub/Receiver.php:558 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:530 +#: src/Protocol/Delivery.php:531 msgid "(no subject)" msgstr "" @@ -12610,20 +12616,20 @@ msgstr "" msgid "Login failed." msgstr "Ensalutado malsukcesis." -#: src/Security/Authentication.php:260 +#: src/Security/Authentication.php:261 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:374 #, php-format msgid "Welcome %s" msgstr "" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:375 msgid "Please upload a profile photo." msgstr "Bonvolu alŝuti profilbildon." -#: src/Security/OpenWebAuth.php:149 +#: src/Security/OpenWebAuth.php:150 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "" diff --git a/view/lang/es/messages.po b/view/lang/es/messages.po index c5f500f4f3..6f659931e4 100644 --- a/view/lang/es/messages.po +++ b/view/lang/es/messages.po @@ -55,7 +55,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: Senex Petrovic , 2021\n" "Language-Team: Spanish (http://app.transifex.com/Friendica/friendica/language/es/)\n" @@ -65,34 +65,34 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\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 "No se encontró la publicación original." -#: mod/item.php:127 +#: mod/item.php:126 msgid "Post updated." msgstr "Artículo actualizado." -#: mod/item.php:192 mod/item.php:196 +#: mod/item.php:191 mod/item.php:195 msgid "Item wasn't stored." msgstr "Artículo no almacenado." -#: mod/item.php:206 +#: mod/item.php:205 msgid "Item couldn't be fetched." msgstr "Artículo no pudo recuperarse." -#: mod/item.php:250 mod/item.php:254 +#: mod/item.php:249 mod/item.php:253 msgid "Empty post discarded." msgstr "Publicación vacía descartada." -#: 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 "Elemento no encontrado." -#: 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 @@ -103,7 +103,7 @@ msgstr "Elemento no encontrado." #: 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 @@ -112,13 +112,15 @@ msgstr "Elemento no encontrado." #: 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 @@ -127,15 +129,15 @@ msgstr "Elemento no encontrado." msgid "Permission denied." msgstr "Permiso denegado." -#: mod/lostpass.php:28 +#: mod/lostpass.php:27 msgid "No valid account found." msgstr "No se encontró cuenta válida" -#: mod/lostpass.php:40 +#: mod/lostpass.php:39 msgid "Password reset request issued. Check your email." msgstr "Contraseña reestablecida enviada. Revisa tu correo." -#: mod/lostpass.php:46 +#: mod/lostpass.php:45 #, php-format msgid "" "\n" @@ -151,7 +153,7 @@ msgid "" "\t\tissued this request." msgstr "\n\t\tEstimado %1$s,\n\t\t\tSe recibió una solicitud \"%2$s\" para resetear el password\n\t\tde tu cuenta. Para confirmar la solicitud, selecciona el link\n\t\tdebajo o cópialo en la dirección de tu navegador.\n\n\t\tSi no lo solicitaste, NO ABRAS el VÍNCULO\n\t\te ignoralo o borra este correo, la solicitud expirará pronto.\n\n\t\ty tu contraseña no cambiará a menos que verifiquemos que tu\n\t\thiciste la petición." -#: mod/lostpass.php:57 +#: mod/lostpass.php:56 #, php-format msgid "" "\n" @@ -168,70 +170,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\n\t\tSigue este vínculo para verificar tu identidad:\n\n\t\t%1$s\n\n\t\tRecibirás un mensaje de seguimiento con la nueva contraseña.\n\t\tPodrás cambiar la contraseña desde la configuración de tu cuenta al ingresar.\n\n\t\tLos detalles de ingreso son:\n\n\t\tSitio:\t%2$s\n\t\tNombre de Usuario:\t%3$s" -#: mod/lostpass.php:72 +#: mod/lostpass.php:71 #, php-format msgid "Password reset requested at %s" msgstr "Contraseña restablecida enviada a %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 "La solicitud no puede ser verificada (deberías haberla proporcionado antes). Falló el restablecimiento de la contraseña." -#: mod/lostpass.php:101 +#: mod/lostpass.php:100 msgid "Request has expired, please make a new one." msgstr "La solicitud expiró, solicite una nueva." -#: mod/lostpass.php:116 +#: mod/lostpass.php:115 msgid "Forgot your Password?" msgstr "¿Olvidaste tu contraseña?" -#: 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 "Introduce tu correo para restablecer tu contraseña. Luego comprueba tu correo para las instrucciones adicionales." -#: 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 "Apodo o Correo electrónico: " -#: mod/lostpass.php:119 +#: mod/lostpass.php:118 msgid "Reset" msgstr "Restablecer" -#: mod/lostpass.php:134 src/Module/Security/Login.php:161 +#: mod/lostpass.php:133 src/Module/Security/Login.php:161 msgid "Password Reset" msgstr "Restablecer la contraseña" -#: mod/lostpass.php:135 +#: mod/lostpass.php:134 msgid "Your password has been reset as requested." msgstr "Tu contraseña ha sido restablecida como solicitaste." -#: mod/lostpass.php:136 +#: mod/lostpass.php:135 msgid "Your new password is" msgstr "Tu nueva contraseña es" -#: mod/lostpass.php:137 +#: mod/lostpass.php:136 msgid "Save or copy your new password - and then" msgstr "Guarda o copia tu nueva contraseña y luego" -#: mod/lostpass.php:138 +#: mod/lostpass.php:137 msgid "click here to login" msgstr "pulsa aquí para acceder" -#: mod/lostpass.php:139 +#: mod/lostpass.php:138 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Puedes cambiar tu contraseña desde la página de Configuración después de acceder con éxito." -#: mod/lostpass.php:143 +#: mod/lostpass.php:142 msgid "Your password has been reset." msgstr "Tu contraseña fue restablecida." -#: mod/lostpass.php:146 +#: mod/lostpass.php:145 #, php-format msgid "" "\n" @@ -242,7 +244,7 @@ msgid "" "\t\t" msgstr "\n\t\t\tEstimado %1$s,\n\t\t\t\tTu contraseña ha sido cambiada como solicitaste. Manten esta\n\t\t\tinformación en tu registro (o cambia tu contraseña inmediatamente a\n\t\t\tuna que puedas recordar).\n\t\t" -#: mod/lostpass.php:152 +#: mod/lostpass.php:151 #, php-format msgid "" "\n" @@ -256,7 +258,7 @@ msgid "" "\t\t" msgstr "\n\t\t\tTus datos de acceso son los siguientes:\n\n\t\t\tSitio de Acceso:\t%1$s\n\t\t\tNombre de Usuario:\t%2$s\n\t\t\tContraseña:\t%3$s\n\n\t\t\tPuedes cambiar la contraseña desde configuración de la cuenta al ingresar.\n\t\t" -#: mod/lostpass.php:164 +#: mod/lostpass.php:163 #, php-format msgid "Your password has been changed at %s" msgstr "Tu contraseña se ha cambiado por %s" @@ -320,11 +322,11 @@ msgstr "Para:" msgid "Subject:" msgstr "Asunto:" -#: 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 "Tu mensaje:" -#: 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 "Subir foto" @@ -333,16 +335,16 @@ msgstr "Subir foto" msgid "Insert web link" msgstr "Insertar enlace" -#: 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 "Espere" -#: 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 @@ -350,7 +352,7 @@ msgstr "Espere" #: 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 @@ -359,7 +361,7 @@ msgstr "Espere" #: 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" @@ -418,396 +420,396 @@ msgstr[0] "%d mensaje" msgstr[1] "%d mensajes" msgstr[2] "%d mensajes" -#: mod/notes.php:40 src/Module/BaseProfile.php:93 +#: mod/notes.php:41 src/Module/BaseProfile.php:93 msgid "Personal Notes" msgstr "Notas Personales" -#: mod/notes.php:44 +#: mod/notes.php:45 msgid "Personal notes are visible only by yourself." msgstr "Notas personales solo puedes verlas tu." -#: 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 "Guardar" -#: 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 "Usuario no encontrado." -#: 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 "Álbum de Fotos" -#: 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 "Fotos Recientes" -#: 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 "Subir Nuevas Fotos" -#: 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 "todos" -#: mod/photos.php:142 +#: mod/photos.php:140 msgid "Contact information unavailable" msgstr "Información del contacto no disponible" -#: mod/photos.php:171 +#: mod/photos.php:169 msgid "Album not found." msgstr "Álbum no encontrado." -#: mod/photos.php:227 +#: mod/photos.php:225 msgid "Album successfully deleted" msgstr "Album borrado con éxito" -#: mod/photos.php:229 +#: mod/photos.php:227 msgid "Album was empty." msgstr "El Álbum estaba vacío." -#: mod/photos.php:260 +#: mod/photos.php:258 msgid "Failed to delete the photo." msgstr "Error al borrar la Foto" -#: mod/photos.php:504 +#: mod/photos.php:502 msgid "a photo" msgstr "una foto" -#: mod/photos.php:504 +#: mod/photos.php:502 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s fue etiquetado en %2$s por %3$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 "Acceso público denegado." -#: mod/photos.php:546 +#: mod/photos.php:544 msgid "No photos selected" msgstr "Ninguna foto seleccionada" -#: mod/photos.php:674 +#: mod/photos.php:672 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:681 +#: mod/photos.php:679 msgid "Upload Photos" msgstr "Subir fotos" -#: mod/photos.php:685 mod/photos.php:774 +#: mod/photos.php:683 mod/photos.php:772 msgid "New album name: " msgstr "Nombre del nuevo álbum: " -#: mod/photos.php:686 +#: mod/photos.php:684 msgid "or select existing album:" msgstr "o seleccione un Álbum:" -#: mod/photos.php:687 +#: mod/photos.php:685 msgid "Do not show a status post for this upload" msgstr "No actualizar tu estado con este envío" -#: 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 "Permisos" -#: mod/photos.php:755 +#: mod/photos.php:753 msgid "Do you really want to delete this photo album and all its photos?" msgstr "¿Estás seguro de quieres borrar este álbum y todas sus fotos?" -#: mod/photos.php:756 mod/photos.php:779 +#: mod/photos.php:754 mod/photos.php:777 msgid "Delete Album" msgstr "Eliminar álbum" -#: 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 "Cancelar" -#: mod/photos.php:783 +#: mod/photos.php:781 msgid "Edit Album" msgstr "Modificar álbum" -#: mod/photos.php:784 +#: mod/photos.php:782 msgid "Drop Album" msgstr "Suelte un Álbum" -#: mod/photos.php:788 +#: mod/photos.php:786 msgid "Show Newest First" msgstr "Mostrar más nuevos primero" -#: mod/photos.php:790 +#: mod/photos.php:788 msgid "Show Oldest First" msgstr "Mostrar más antiguos primero" -#: mod/photos.php:811 src/Module/Profile/Photos.php:335 +#: mod/photos.php:809 src/Module/Profile/Photos.php:343 msgid "View Photo" msgstr "Ver foto" -#: mod/photos.php:843 +#: mod/photos.php:841 msgid "Permission denied. Access to this item may be restricted." msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." -#: mod/photos.php:845 +#: mod/photos.php:843 msgid "Photo not available" msgstr "Foto no disponible" -#: mod/photos.php:855 +#: mod/photos.php:853 msgid "Do you really want to delete this photo?" msgstr "¿Estás seguro de que quieres borrar esta foto?" -#: mod/photos.php:856 mod/photos.php:1056 +#: mod/photos.php:854 mod/photos.php:1054 msgid "Delete Photo" msgstr "Eliminar foto" -#: mod/photos.php:954 +#: mod/photos.php:952 msgid "View photo" msgstr "Ver foto" -#: mod/photos.php:956 +#: mod/photos.php:954 msgid "Edit photo" msgstr "Modificar foto" -#: mod/photos.php:957 +#: mod/photos.php:955 msgid "Delete photo" msgstr "Borrar foto" -#: mod/photos.php:958 +#: mod/photos.php:956 msgid "Use as profile photo" msgstr "Usar como foto del perfil" -#: mod/photos.php:965 +#: mod/photos.php:963 msgid "Private Photo" msgstr "Foto privada" -#: mod/photos.php:971 +#: mod/photos.php:969 msgid "View Full Size" msgstr "Ver a tamaño completo" -#: mod/photos.php:1024 +#: mod/photos.php:1022 msgid "Tags: " msgstr "Etiquetas: " -#: mod/photos.php:1027 +#: mod/photos.php:1025 msgid "[Select tags to remove]" msgstr "[Seleccionar etiquetas a borrar]" -#: mod/photos.php:1042 +#: mod/photos.php:1040 msgid "New album name" msgstr "Nuevo nombre del álbum" -#: mod/photos.php:1043 +#: mod/photos.php:1041 msgid "Caption" msgstr "Título" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "Add a Tag" msgstr "Añadir una etiqueta" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Ejemplo: @juan, @Barbara_Ruiz, @julia@example.com, #California, #camping" -#: mod/photos.php:1045 +#: mod/photos.php:1043 msgid "Do not rotate" msgstr "No rotar" -#: mod/photos.php:1046 +#: mod/photos.php:1044 msgid "Rotate CW (right)" msgstr "Girar a la derecha" -#: mod/photos.php:1047 +#: mod/photos.php:1045 msgid "Rotate CCW (left)" msgstr "Girar a la izquierda" -#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: mod/photos.php:1091 mod/photos.php:1147 mod/photos.php:1227 #: src/Module/Contact.php:600 src/Module/Item/Compose.php:184 -#: src/Object/Post.php:1142 +#: src/Object/Post.php:1143 msgid "This is you" msgstr "Este eres tú" -#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 -#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:598 -#: src/Object/Post.php:1144 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:599 +#: src/Object/Post.php:1145 msgid "Comment" msgstr "Comentar" -#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 -#: src/Content/Conversation.php:401 src/Module/Calendar/Event/Form.php:234 +#: 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 -#: src/Object/Post.php:1158 +#: src/Object/Post.php:1159 msgid "Preview" msgstr "Vista previa" -#: mod/photos.php:1098 src/Content/Conversation.php:355 -#: src/Module/Post/Edit.php:121 src/Object/Post.php:1146 +#: mod/photos.php:1096 src/Content/Conversation.php:357 +#: src/Module/Post/Edit.php:121 src/Object/Post.php:1147 msgid "Loading..." msgstr "Cargando..." -#: mod/photos.php:1190 src/Content/Conversation.php:1485 -#: src/Object/Post.php:260 +#: mod/photos.php:1188 src/Content/Conversation.php:1487 +#: src/Object/Post.php:261 msgid "Select" msgstr "Seleccionar" -#: mod/photos.php:1191 src/Content/Conversation.php:1486 -#: 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:233 +#: 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 +#: src/Module/Settings/Connectors.php:226 #: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Eliminar" -#: mod/photos.php:1252 src/Object/Post.php:426 +#: mod/photos.php:1250 src/Object/Post.php:427 msgid "Like" msgstr "Me gusta" -#: mod/photos.php:1253 src/Object/Post.php:426 +#: mod/photos.php:1251 src/Object/Post.php:427 msgid "I like this (toggle)" msgstr "Me gusta esto (cambiar)" -#: mod/photos.php:1254 src/Object/Post.php:427 +#: mod/photos.php:1252 src/Object/Post.php:428 msgid "Dislike" msgstr "No me gusta" -#: mod/photos.php:1256 src/Object/Post.php:427 +#: mod/photos.php:1254 src/Object/Post.php:428 msgid "I don't like this (toggle)" msgstr "No me gusta esto (cambiar)" -#: mod/photos.php:1278 +#: mod/photos.php:1276 msgid "Map" msgstr "Mapa" -#: src/App.php:467 +#: src/App.php:255 msgid "Apologies but the website is unavailable at the moment." msgstr "" -#: src/App/Page.php:237 +#: src/App/Page.php:241 msgid "Delete this item?" msgstr "¿Eliminar este elemento?" -#: src/App/Page.php:238 +#: src/App/Page.php:242 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 "¿Bloquear a este autor? No podrá seguirte ni ver tus publicaciones públicas, y tú no podrás ver sus publicaciones ni sus notificaciones." -#: src/App/Page.php:239 +#: src/App/Page.php:243 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:240 +#: src/App/Page.php:244 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:241 +#: src/App/Page.php:245 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:242 src/Module/Settings/Server/Action.php:47 +#: src/App/Page.php:246 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:244 +#: src/App/Page.php:248 msgid "Like not successful" msgstr "" -#: src/App/Page.php:245 +#: src/App/Page.php:249 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:246 +#: src/App/Page.php:250 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:247 +#: src/App/Page.php:251 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:248 +#: src/App/Page.php:252 msgid "Backend error" msgstr "" -#: src/App/Page.php:249 +#: src/App/Page.php:253 msgid "Network error" msgstr "" -#: src/App/Page.php:252 +#: src/App/Page.php:256 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:257 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:254 +#: src/App/Page.php:258 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:255 +#: src/App/Page.php:259 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:256 +#: src/App/Page.php:260 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:261 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:262 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:263 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:264 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:265 msgid "Remove file" msgstr "" -#: src/App/Page.php:262 +#: src/App/Page.php:266 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:346 +#: src/App/Page.php:350 msgid "toggle mobile" msgstr "Cambiar a versión móvil" @@ -840,7 +842,7 @@ msgid "All contacts" msgstr "Todos los Contactos" #: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 -#: src/Content/Widget.php:254 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Content/Widget.php:254 src/Core/ACL.php:182 src/Module/Contact.php:395 #: src/Module/Privacy/PermissionTooltip.php:150 #: src/Module/Privacy/PermissionTooltip.php:172 #: src/Module/Settings/Channels.php:146 @@ -882,7 +884,7 @@ msgstr "No se encontró contacto sin archivar en esa URL (%s)" msgid "The contact entries have been archived" msgstr "Entradas del contacto archivadas" -#: src/Console/ClearAvatarCache.php:73 +#: src/Console/ClearAvatarCache.php:74 msgid "" "The avatar cache needs to be disabled in local.config.php to use this " "command." @@ -968,22 +970,22 @@ msgstr "" msgid "no resource in photo %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:123 +#: src/Console/MoveToAvatarCache.php:127 #, php-format msgid "no photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:132 +#: src/Console/MoveToAvatarCache.php:136 #, php-format msgid "no image data for photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:141 +#: src/Console/MoveToAvatarCache.php:145 #, php-format msgid "invalid image for id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:154 +#: src/Console/MoveToAvatarCache.php:158 #, php-format msgid "Quit on invalid photo %s" msgstr "" @@ -1013,11 +1015,14 @@ msgstr "Todas las actualizaciones hechas." msgid "Enter user nickname: " msgstr "Ingrese apodo: " -#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Console/User.php:168 src/Model/User.php:830 #: src/Module/Api/Twitter/ContactEndpoint.php:62 -#: 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/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/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "Usuario no encontrado" @@ -1027,12 +1032,12 @@ msgid "Enter new password: " msgstr "Ingrese nueva contraseña: " #: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 -#: src/Module/Settings/Account.php:59 +#: src/Module/Settings/Account.php:57 msgid "Password update failed. Please try again." msgstr "Actualización de contraseña falló. Intente de nuevo." #: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 -#: src/Module/Settings/Account.php:62 +#: src/Module/Settings/Account.php:60 msgid "Password changed." msgstr "Contraseña modificada." @@ -1113,86 +1118,86 @@ msgstr "Semanal" msgid "Monthly" msgstr "Mensual" -#: src/Content/ContactSelector.php:118 +#: src/Content/ContactSelector.php:117 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:119 +#: src/Content/ContactSelector.php:118 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:120 +#: src/Content/ContactSelector.php:119 msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:121 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Content/ContactSelector.php:120 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:58 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "Correo" -#: src/Content/ContactSelector.php:122 src/Module/Debug/Babel.php:273 +#: src/Content/ContactSelector.php:121 src/Module/Debug/Babel.php:273 msgid "Diaspora" msgstr "Diaspora*" -#: src/Content/ContactSelector.php:123 +#: src/Content/ContactSelector.php:122 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:124 +#: src/Content/ContactSelector.php:123 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:125 +#: src/Content/ContactSelector.php:124 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:125 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:126 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:127 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:129 +#: src/Content/ContactSelector.php:128 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:130 +#: src/Content/ContactSelector.php:129 msgid "Discourse" msgstr "Discourse" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:130 msgid "Diaspora Connector" msgstr "Conectos Diaspora" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:131 msgid "GNU Social Connector" msgstr "Conector GNU Social" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:132 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:133 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:134 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:135 msgid "Bluesky" msgstr "" @@ -1201,16 +1206,16 @@ msgstr "" msgid "%s (via %s)" msgstr "%s (a través %s)" -#: src/Content/Conversation.php:213 +#: src/Content/Conversation.php:215 msgid "and" msgstr "y" -#: src/Content/Conversation.php:216 +#: src/Content/Conversation.php:218 #, php-format msgid "and %d other people" msgstr "y a otras %d personas" -#: src/Content/Conversation.php:222 +#: src/Content/Conversation.php:224 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." @@ -1218,7 +1223,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:224 +#: src/Content/Conversation.php:226 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." @@ -1226,7 +1231,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:228 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." @@ -1234,7 +1239,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:230 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." @@ -1242,7 +1247,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:230 +#: src/Content/Conversation.php:232 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." @@ -1250,7 +1255,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:232 +#: src/Content/Conversation.php:234 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." @@ -1258,7 +1263,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:263 +#: src/Content/Conversation.php:265 #, php-format msgid " likes this" msgid_plural " like this" @@ -1266,7 +1271,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:266 +#: src/Content/Conversation.php:268 #, php-format msgid " doesn't like this" msgid_plural " don't like this" @@ -1274,7 +1279,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:269 +#: src/Content/Conversation.php:271 #, php-format msgid " attends" msgid_plural " attend" @@ -1282,7 +1287,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:272 +#: src/Content/Conversation.php:274 #, php-format msgid " doesn't attend" msgid_plural " don't attend" @@ -1290,7 +1295,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:275 +#: src/Content/Conversation.php:277 #, php-format msgid " attends maybe" msgid_plural " attend maybe" @@ -1298,7 +1303,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:278 +#: src/Content/Conversation.php:280 #, php-format msgid " reshared this" msgid_plural " reshared this" @@ -1306,281 +1311,281 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:324 +#: src/Content/Conversation.php:326 msgid "Visible to everybody" msgstr "Visible para cualquiera" -#: src/Content/Conversation.php:325 src/Module/Item/Compose.php:196 -#: src/Object/Post.php:1157 +#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196 +#: src/Object/Post.php:1158 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Escoja una dirección de imágen/video/audio/sitio:" -#: src/Content/Conversation.php:326 +#: src/Content/Conversation.php:328 msgid "Tag term:" msgstr "Etiqueta:" -#: src/Content/Conversation.php:327 src/Module/Filer/SaveTag.php:59 +#: src/Content/Conversation.php:329 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Guardar en directorio:" -#: src/Content/Conversation.php:328 +#: src/Content/Conversation.php:330 msgid "Where are you right now?" msgstr "¿Dónde estás ahora?" -#: src/Content/Conversation.php:329 +#: src/Content/Conversation.php:331 msgid "Delete item(s)?" msgstr "¿Borrar artículo(s)?" -#: src/Content/Conversation.php:341 src/Module/Item/Compose.php:171 +#: src/Content/Conversation.php:343 src/Module/Item/Compose.php:171 msgid "Created at" msgstr "" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:353 msgid "New Post" msgstr "Nuevo artículo" -#: src/Content/Conversation.php:354 +#: src/Content/Conversation.php:356 msgid "Share" msgstr "Compartir" -#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:123 +#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:123 msgid "upload photo" msgstr "subir foto" -#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:124 +#: src/Content/Conversation.php:360 src/Module/Post/Edit.php:124 msgid "Attach file" msgstr "Añadir archivo" -#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:125 +#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:125 msgid "attach file" msgstr "añadir archivo" -#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:186 -#: src/Module/Post/Edit.php:162 src/Object/Post.php:1147 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1148 msgid "Bold" msgstr "Negrita" -#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:187 -#: src/Module/Post/Edit.php:163 src/Object/Post.php:1148 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1149 msgid "Italic" msgstr "Cursiva" -#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:188 -#: src/Module/Post/Edit.php:164 src/Object/Post.php:1149 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1150 msgid "Underline" msgstr "Subrayado" -#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:189 -#: src/Module/Post/Edit.php:165 src/Object/Post.php:1151 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:165 src/Object/Post.php:1152 msgid "Quote" msgstr "Cita" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:166 src/Object/Post.php:1152 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:166 src/Object/Post.php:1153 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:191 -#: src/Object/Post.php:1150 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Object/Post.php:1151 msgid "Content Warning" msgstr "" -#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:167 src/Object/Post.php:1153 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:167 src/Object/Post.php:1154 msgid "Code" msgstr "Código" -#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:193 -#: src/Object/Post.php:1154 +#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1155 msgid "Image" msgstr "Imagen" -#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:168 src/Object/Post.php:1155 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:168 src/Object/Post.php:1156 msgid "Link" msgstr "Enlace" -#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:195 -#: src/Module/Post/Edit.php:169 src/Object/Post.php:1156 +#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:169 src/Object/Post.php:1157 msgid "Link or Media" msgstr "Enlace o Multimedia" -#: src/Content/Conversation.php:370 +#: src/Content/Conversation.php:372 msgid "Video" msgstr "" -#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:198 +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:198 #: src/Module/Post/Edit.php:132 msgid "Set your location" msgstr "Selecciona tu ubicación" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:133 msgid "set location" msgstr "establecer ubicación" -#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:134 msgid "Clear browser location" msgstr "Borrar ubicación del navegador" -#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:135 +#: src/Content/Conversation.php:376 src/Module/Post/Edit.php:135 msgid "clear location" msgstr "borrar ubicación" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:203 +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:203 #: src/Module/Post/Edit.php:148 msgid "Set title" msgstr "Establecer título" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:204 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 #: src/Module/Post/Edit.php:150 msgid "Categories (comma-separated list)" msgstr "Categorías (lista separada por comas)" -#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:220 +#: src/Content/Conversation.php:385 src/Module/Item/Compose.php:220 msgid "Scheduled at" msgstr "" -#: src/Content/Conversation.php:388 src/Module/Post/Edit.php:137 +#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:137 msgid "Permission settings" msgstr "Configuración de permisos" -#: src/Content/Conversation.php:397 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:399 src/Module/Post/Edit.php:146 msgid "Public post" msgstr "Artículo público" -#: src/Content/Conversation.php:411 src/Content/Widget/VCard.php:121 +#: 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 msgid "Message" msgstr "Mensaje" -#: src/Content/Conversation.php:412 src/Module/Post/Edit.php:173 +#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:173 #: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Navegador" -#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:176 +#: src/Content/Conversation.php:416 src/Module/Post/Edit.php:176 msgid "Open Compose page" msgstr "Abrir página de publicación" -#: src/Content/Conversation.php:581 +#: src/Content/Conversation.php:583 msgid "remove" msgstr "eliminar" -#: src/Content/Conversation.php:585 +#: src/Content/Conversation.php:587 msgid "Delete Selected Items" msgstr "Eliminar los seleccionados" -#: src/Content/Conversation.php:713 src/Content/Conversation.php:716 -#: src/Content/Conversation.php:719 src/Content/Conversation.php:722 -#: src/Content/Conversation.php:725 +#: 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 #, php-format msgid "You had been addressed (%s)." msgstr "Has sido mencionado (%s)." -#: src/Content/Conversation.php:728 +#: src/Content/Conversation.php:730 #, php-format msgid "You are following %s." msgstr "Estas siguiendo %s." -#: src/Content/Conversation.php:733 +#: src/Content/Conversation.php:735 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:735 +#: src/Content/Conversation.php:737 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:755 +#: src/Content/Conversation.php:757 #, php-format msgid "%s reshared this." msgstr "%s reenvió esto." -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 msgid "Reshared" msgstr "Compartido" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 #, php-format msgid "Reshared by %s <%s>" msgstr "" -#: src/Content/Conversation.php:760 +#: src/Content/Conversation.php:762 #, php-format msgid "%s is participating in this thread." msgstr "%s participa en el hilo." -#: src/Content/Conversation.php:763 +#: src/Content/Conversation.php:765 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:766 +#: src/Content/Conversation.php:768 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 msgid "Fetched" msgstr "Recuperado" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 #, php-format msgid "Fetched because of %s <%s>" msgstr "" -#: src/Content/Conversation.php:775 +#: src/Content/Conversation.php:777 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:778 +#: src/Content/Conversation.php:780 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:781 +#: src/Content/Conversation.php:783 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:784 +#: src/Content/Conversation.php:786 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:787 +#: src/Content/Conversation.php:789 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1505 src/Object/Post.php:247 +#: src/Content/Conversation.php:1507 src/Object/Post.php:248 msgid "Pinned item" msgstr "" -#: src/Content/Conversation.php:1522 src/Object/Post.php:541 -#: src/Object/Post.php:542 +#: src/Content/Conversation.php:1524 src/Object/Post.php:542 +#: src/Object/Post.php:543 #, php-format msgid "View %s's profile @ %s" msgstr "Ver perfil de %s @ %s" -#: src/Content/Conversation.php:1536 src/Object/Post.php:529 +#: src/Content/Conversation.php:1538 src/Object/Post.php:530 msgid "Categories:" msgstr "Categorías:" -#: src/Content/Conversation.php:1537 src/Object/Post.php:530 +#: src/Content/Conversation.php:1539 src/Object/Post.php:531 msgid "Filed under:" msgstr "Archivado en:" -#: src/Content/Conversation.php:1545 src/Object/Post.php:556 +#: src/Content/Conversation.php:1547 src/Object/Post.php:557 #, php-format msgid "%s from %s" msgstr "%s de %s" -#: src/Content/Conversation.php:1561 +#: src/Content/Conversation.php:1563 msgid "View in context" msgstr "Verlo en contexto" @@ -1713,7 +1718,7 @@ msgstr "Personal" msgid "Posts that mention or involve you" msgstr "Publicaciones que te mencionan o involucran" -#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:398 msgid "Starred" msgstr "Destacados" @@ -1800,7 +1805,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:552 src/Model/User.php:1390 +#: src/Content/Widget.php:555 src/Model/User.php:1390 msgid "Groups" msgstr "" @@ -1808,7 +1813,7 @@ msgstr "" msgid "Display posts that have been distributed by the selected group." msgstr "" -#: src/Content/Feature.php:117 src/Content/Widget.php:521 +#: src/Content/Feature.php:117 src/Content/Widget.php:524 msgid "Archives" msgstr "Archivos" @@ -1824,8 +1829,8 @@ msgstr "Protocolos" msgid "Display posts with the selected protocols." msgstr "" -#: src/Content/Feature.php:119 src/Content/Widget.php:558 -#: src/Module/Settings/Account.php:429 +#: src/Content/Feature.php:119 src/Content/Widget.php:561 +#: src/Module/Settings/Account.php:391 msgid "Account Types" msgstr "Tipos de cuenta" @@ -1833,7 +1838,7 @@ msgstr "Tipos de cuenta" msgid "Display posts done by accounts with the selected account type." msgstr "" -#: src/Content/Feature.php:120 src/Content/Widget.php:607 +#: 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 msgid "Channels" @@ -1859,7 +1864,7 @@ msgstr "Directorios guardados" msgid "Display a list of folders in which posts are stored." msgstr "" -#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:189 msgid "Own Contacts" msgstr "Contactos propios" @@ -1915,12 +1920,12 @@ msgstr "" msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:139 src/Content/Widget.php:527 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:530 msgid "show less" msgstr "mostrar menos" #: src/Content/GroupManager.php:140 src/Content/Widget.php:425 -#: src/Content/Widget.php:528 +#: src/Content/Widget.php:531 msgid "show more" msgstr "Mostrar más" @@ -1928,66 +1933,66 @@ msgstr "Mostrar más" msgid "Create new group" msgstr "" -#: src/Content/Item.php:317 src/Model/Item.php:3273 +#: src/Content/Item.php:322 src/Model/Item.php:3281 msgid "event" msgstr "evento" -#: src/Content/Item.php:320 src/Content/Item.php:330 +#: src/Content/Item.php:325 src/Content/Item.php:335 msgid "status" msgstr "estado" -#: src/Content/Item.php:326 src/Model/Item.php:3275 +#: src/Content/Item.php:331 src/Model/Item.php:3283 #: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "foto" -#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 +#: src/Content/Item.php:345 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s etiquetó %3$s %2$s con %4$s" -#: src/Content/Item.php:414 view/theme/frio/theme.php:253 +#: src/Content/Item.php:419 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Seguir el hilo" -#: src/Content/Item.php:415 src/Model/Contact.php:1244 +#: src/Content/Item.php:420 src/Model/Contact.php:1245 msgid "View Status" msgstr "Ver Estado" -#: 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/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 msgid "View Profile" msgstr "Ver Perfil" -#: src/Content/Item.php:417 src/Model/Contact.php:1246 +#: src/Content/Item.php:422 src/Model/Contact.php:1247 msgid "View Photos" msgstr "Ver Fotos" -#: src/Content/Item.php:418 src/Model/Contact.php:1213 +#: src/Content/Item.php:423 src/Model/Contact.php:1214 #: src/Model/Profile.php:446 msgid "Network Posts" msgstr "Artículos de Red" -#: src/Content/Item.php:419 src/Model/Contact.php:1237 -#: src/Model/Contact.php:1248 +#: src/Content/Item.php:424 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1249 msgid "View Contact" msgstr "Ver contacto" -#: src/Content/Item.php:420 src/Model/Contact.php:1249 +#: src/Content/Item.php:425 src/Model/Contact.php:1250 msgid "Send PM" msgstr "Enviar Privado" -#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Content/Item.php:426 src/Module/Contact.php:449 #: src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:104 -#: src/Module/Moderation/Users/Active.php:123 -#: src/Module/Moderation/Users/Index.php:138 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Index.php:141 msgid "Block" msgstr "Bloquear" -#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Content/Item.php:427 src/Module/Contact.php:450 #: src/Module/Contact/Profile.php:532 #: src/Module/Notifications/Introductions.php:126 #: src/Module/Notifications/Introductions.php:199 @@ -1995,27 +2000,27 @@ msgstr "Bloquear" msgid "Ignore" msgstr "Ignorar" -#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Content/Item.php:428 src/Module/Contact.php:451 #: src/Module/Contact/Profile.php:540 msgid "Collapse" msgstr "" -#: src/Content/Item.php:424 src/Object/Post.php:288 +#: src/Content/Item.php:429 src/Object/Post.php:289 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 -#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 +#: src/Content/Item.php:433 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:503 msgid "Languages" msgstr "Lenguajes" -#: src/Content/Item.php:431 src/Object/Post.php:582 +#: src/Content/Item.php:436 src/Object/Post.php:583 msgid "Search Text" msgstr "" -#: src/Content/Item.php:436 src/Content/Widget.php:66 -#: src/Model/Contact.php:1238 src/Model/Contact.php:1250 +#: src/Content/Item.php:441 src/Content/Widget.php:66 +#: src/Model/Contact.php:1239 src/Model/Contact.php:1251 #: src/Module/Contact/Follow.php:152 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Conectar/Seguir" @@ -2028,7 +2033,7 @@ msgstr "" msgid "Nothing new here" msgstr "No hay nada nuevo" -#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:64 msgid "Go back" msgstr "Regresar" @@ -2242,7 +2247,7 @@ msgstr "Notificaciones" msgid "See all notifications" msgstr "Ver todas las notificaciones" -#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:226 msgid "Mark as seen" msgstr "Marcar como leído" @@ -2270,8 +2275,8 @@ msgstr "Cuentas" msgid "Manage other pages" msgstr "Administrar otras páginas" -#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 -#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:170 +#: 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/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Configuración" @@ -2299,10 +2304,10 @@ msgstr "Opciones y configuración del sitio" #: src/Module/Moderation/Blocklist/Server/Index.php:84 #: 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:119 -#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 #: src/Module/Moderation/Users/Deleted.php:66 -#: src/Module/Moderation/Users/Index.php:133 +#: src/Module/Moderation/Users/Index.php:136 msgid "Moderation" msgstr "" @@ -2334,33 +2339,33 @@ msgstr "sig." msgid "last" msgstr "última" -#: src/Content/Text/BBCode.php:908 +#: src/Content/Text/BBCode.php:903 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:931 src/Model/Item.php:4069 -#: src/Model/Item.php:4075 src/Model/Item.php:4076 +#: src/Content/Text/BBCode.php:926 src/Model/Item.php:4080 +#: src/Model/Item.php:4086 src/Model/Item.php:4087 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1745 src/Content/Text/HTML.php:892 +#: src/Content/Text/BBCode.php:1740 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Pulsa para abrir/cerrar" -#: src/Content/Text/BBCode.php:1800 +#: src/Content/Text/BBCode.php:1795 msgid "$1 wrote:" msgstr "$1 escribió:" -#: src/Content/Text/BBCode.php:1874 src/Content/Text/BBCode.php:1875 +#: src/Content/Text/BBCode.php:1869 src/Content/Text/BBCode.php:1870 msgid "Encrypted content" msgstr "Contenido cifrado" -#: src/Content/Text/BBCode.php:2208 +#: src/Content/Text/BBCode.php:2203 msgid "Invalid source protocol" msgstr "Protocolo de fuente inválido" -#: src/Content/Text/BBCode.php:2227 +#: src/Content/Text/BBCode.php:2222 msgid "Invalid link protocol" msgstr "Protocolo de enlace inválido" @@ -2414,7 +2419,7 @@ msgid "Examples: Robert Morgenstein, Fishing" msgstr "Ejemplos: Robert Morgenstein, Pesca" #: src/Content/Widget.php:68 src/Module/Contact.php:441 -#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 +#: src/Module/Directory.php:82 view/theme/vier/theme.php:185 msgid "Find" msgstr "Buscar" @@ -2435,7 +2440,7 @@ msgstr "Perfil Al Azar" msgid "Invite Friends" msgstr "Invitar Amigos" -#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: src/Content/Widget.php:73 src/Module/Directory.php:74 #: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Directorio Global" @@ -2456,7 +2461,7 @@ msgstr "" msgid "Relationships" msgstr "Relaciones" -#: src/Content/Widget.php:264 src/Module/Circle.php:280 +#: src/Content/Widget.php:264 src/Module/Circle.php:281 #: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Todos los contactos" @@ -2481,27 +2486,27 @@ msgstr[0] "%d contacto en común" msgstr[1] "%d contactos en común" msgstr[2] "%d contactos en común" -#: src/Content/Widget.php:529 +#: src/Content/Widget.php:532 msgid "On this date" msgstr "" -#: src/Content/Widget.php:549 +#: src/Content/Widget.php:552 msgid "Persons" msgstr "Personas" -#: src/Content/Widget.php:550 +#: src/Content/Widget.php:553 msgid "Organisations" msgstr "Organizaciones" -#: src/Content/Widget.php:551 src/Model/Contact.php:1750 +#: src/Content/Widget.php:554 src/Model/Contact.php:1751 msgid "News" msgstr "Noticias" -#: src/Content/Widget.php:553 +#: src/Content/Widget.php:556 msgid "Relays" msgstr "" -#: src/Content/Widget.php:560 src/Module/Moderation/BaseUsers.php:58 +#: src/Content/Widget.php:563 src/Module/Moderation/BaseUsers.php:58 msgid "All" msgstr "Todos" @@ -2549,12 +2554,12 @@ msgstr[2] "Etiquetas tendencia (últimas %d horas)" msgid "More Trending Tags" msgstr "Mas tendencias" -#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1207 +#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1208 #: src/Model/Profile.php:440 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1211 +#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1212 #: src/Model/Profile.php:444 src/Module/Moderation/Item/Source.php:80 msgid "Mention" msgstr "Mención" @@ -2569,10 +2574,10 @@ msgstr "XMPP:" msgid "Matrix:" msgstr "" -#: src/Content/Widget/VCard.php:112 src/Model/Event.php:68 -#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: 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:134 src/Module/Notifications/Introductions.php:180 +#: src/Module/Directory.php:133 src/Module/Notifications/Introductions.php:180 #: src/Module/Profile/Profile.php:212 msgid "Location:" msgstr "Localización:" @@ -2582,75 +2587,75 @@ msgstr "Localización:" msgid "Network:" msgstr "Red:" -#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1239 -#: src/Model/Contact.php:1251 src/Model/Profile.php:457 +#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1252 src/Model/Profile.php:457 #: src/Module/Contact/Profile.php:476 msgid "Unfollow" msgstr "Dejar de Seguir" -#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1209 +#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1210 #: src/Model/Profile.php:442 msgid "View group" msgstr "" -#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:260 +#: src/Core/ACL.php:153 src/Module/Profile/Profile.php:260 msgid "Yourself" msgstr "Tu mismo" -#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Core/ACL.php:189 src/Module/Privacy/PermissionTooltip.php:156 #: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "Mutuos" -#: src/Core/ACL.php:280 +#: src/Core/ACL.php:281 msgid "Post to Email" msgstr "Publicar por Correo" -#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Core/ACL.php:308 src/Module/Privacy/PermissionTooltip.php:103 #: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "Público" -#: src/Core/ACL.php:308 +#: src/Core/ACL.php:309 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 "Este contenido se mostrará a tus seguidores y se podrá ver en laspáginas de la Comunidad y por cualquiera con este enlace." -#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 +#: src/Core/ACL.php:310 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "Limitado/Privado" -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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 "Este contenido se mostrará solo a personas en el primer recuadro, aexcepción de personas mencionadas en el segundo recuadro. No aparecerápúblicamente." -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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:311 +#: src/Core/ACL.php:312 msgid "Show to:" msgstr "Mostrar a:" -#: src/Core/ACL.php:312 +#: src/Core/ACL.php:313 msgid "Except to:" msgstr "Excepto a:" -#: src/Core/ACL.php:313 src/Module/Post/Edit.php:145 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:145 msgid "CC: email addresses" msgstr "CC: dirección de correo" -#: src/Core/ACL.php:314 src/Module/Post/Edit.php:151 +#: src/Core/ACL.php:315 src/Module/Post/Edit.php:151 msgid "Example: bob@example.com, mary@example.com" msgstr "Ejemplo: juan@ejemplo.com, maria@ejemplo.com" -#: src/Core/ACL.php:315 +#: src/Core/ACL.php:316 msgid "Connectors" msgstr "Conectores" @@ -2985,176 +2990,176 @@ msgstr "Base de datos ya esta en uso" msgid "Could not connect to database." msgstr "No es posible conectar con Base Datos." -#: src/Core/L10n.php:430 src/Model/Item.php:2316 +#: src/Core/L10n.php:426 src/Model/Item.php:2324 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:437 +#: src/Core/L10n.php:433 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Core/L10n.php:481 src/Model/Event.php:418 #: src/Module/Settings/Display.php:292 msgid "Monday" msgstr "Lunes" -#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Core/L10n.php:481 src/Model/Event.php:419 #: src/Module/Settings/Display.php:293 msgid "Tuesday" msgstr "Martes" -#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Core/L10n.php:481 src/Model/Event.php:420 #: src/Module/Settings/Display.php:294 msgid "Wednesday" msgstr "Miércoles" -#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Core/L10n.php:481 src/Model/Event.php:421 #: src/Module/Settings/Display.php:295 msgid "Thursday" msgstr "Jueves" -#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Core/L10n.php:481 src/Model/Event.php:422 #: src/Module/Settings/Display.php:296 msgid "Friday" msgstr "Viernes" -#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Core/L10n.php:481 src/Model/Event.php:423 #: src/Module/Settings/Display.php:297 msgid "Saturday" msgstr "Sábado" -#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Core/L10n.php:481 src/Model/Event.php:417 #: src/Module/Settings/Display.php:291 msgid "Sunday" msgstr "Domingo" -#: src/Core/L10n.php:489 src/Model/Event.php:436 +#: src/Core/L10n.php:485 src/Model/Event.php:438 msgid "January" msgstr "Enero" -#: src/Core/L10n.php:489 src/Model/Event.php:437 +#: src/Core/L10n.php:485 src/Model/Event.php:439 msgid "February" msgstr "Febrero" -#: src/Core/L10n.php:489 src/Model/Event.php:438 +#: src/Core/L10n.php:485 src/Model/Event.php:440 msgid "March" msgstr "Marzo" -#: src/Core/L10n.php:489 src/Model/Event.php:439 +#: src/Core/L10n.php:485 src/Model/Event.php:441 msgid "April" msgstr "Abril" -#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 +#: src/Core/L10n.php:485 src/Core/L10n.php:504 src/Model/Event.php:429 msgid "May" msgstr "Mayo" -#: src/Core/L10n.php:489 src/Model/Event.php:440 +#: src/Core/L10n.php:485 src/Model/Event.php:442 msgid "June" msgstr "Junio" -#: src/Core/L10n.php:489 src/Model/Event.php:441 +#: src/Core/L10n.php:485 src/Model/Event.php:443 msgid "July" msgstr "Julio" -#: src/Core/L10n.php:489 src/Model/Event.php:442 +#: src/Core/L10n.php:485 src/Model/Event.php:444 msgid "August" msgstr "Agosto" -#: src/Core/L10n.php:489 src/Model/Event.php:443 +#: src/Core/L10n.php:485 src/Model/Event.php:445 msgid "September" msgstr "Septiembre" -#: src/Core/L10n.php:489 src/Model/Event.php:444 +#: src/Core/L10n.php:485 src/Model/Event.php:446 msgid "October" msgstr "Octubre" -#: src/Core/L10n.php:489 src/Model/Event.php:445 +#: src/Core/L10n.php:485 src/Model/Event.php:447 msgid "November" msgstr "Noviembre" -#: src/Core/L10n.php:489 src/Model/Event.php:446 +#: src/Core/L10n.php:485 src/Model/Event.php:448 msgid "December" msgstr "Diciembre" -#: src/Core/L10n.php:504 src/Model/Event.php:408 +#: src/Core/L10n.php:500 src/Model/Event.php:410 msgid "Mon" msgstr "Lun" -#: src/Core/L10n.php:504 src/Model/Event.php:409 +#: src/Core/L10n.php:500 src/Model/Event.php:411 msgid "Tue" msgstr "Mar" -#: src/Core/L10n.php:504 src/Model/Event.php:410 +#: src/Core/L10n.php:500 src/Model/Event.php:412 msgid "Wed" msgstr "Mie" -#: src/Core/L10n.php:504 src/Model/Event.php:411 +#: src/Core/L10n.php:500 src/Model/Event.php:413 msgid "Thu" msgstr "Jue" -#: src/Core/L10n.php:504 src/Model/Event.php:412 +#: src/Core/L10n.php:500 src/Model/Event.php:414 msgid "Fri" msgstr "Vie" -#: src/Core/L10n.php:504 src/Model/Event.php:413 +#: src/Core/L10n.php:500 src/Model/Event.php:415 msgid "Sat" msgstr "Sab" -#: src/Core/L10n.php:504 src/Model/Event.php:407 +#: src/Core/L10n.php:500 src/Model/Event.php:409 msgid "Sun" msgstr "Dom" -#: src/Core/L10n.php:508 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:425 msgid "Jan" msgstr "Ene" -#: src/Core/L10n.php:508 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:426 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:508 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:427 msgid "Mar" msgstr "Mar" -#: src/Core/L10n.php:508 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:428 msgid "Apr" msgstr "Abr" -#: src/Core/L10n.php:508 src/Model/Event.php:428 +#: src/Core/L10n.php:504 src/Model/Event.php:430 msgid "Jun" msgstr "Jun" -#: src/Core/L10n.php:508 src/Model/Event.php:429 +#: src/Core/L10n.php:504 src/Model/Event.php:431 msgid "Jul" msgstr "Jul" -#: src/Core/L10n.php:508 src/Model/Event.php:430 +#: src/Core/L10n.php:504 src/Model/Event.php:432 msgid "Aug" msgstr "Ago" -#: src/Core/L10n.php:508 +#: src/Core/L10n.php:504 msgid "Sep" msgstr "Sep" -#: src/Core/L10n.php:508 src/Model/Event.php:432 +#: src/Core/L10n.php:504 src/Model/Event.php:434 msgid "Oct" msgstr "Oct" -#: src/Core/L10n.php:508 src/Model/Event.php:433 +#: src/Core/L10n.php:504 src/Model/Event.php:435 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:508 src/Model/Event.php:434 +#: src/Core/L10n.php:504 src/Model/Event.php:436 msgid "Dec" msgstr "Dec" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:44 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "Tl archivo de log '%s' no se puede usar. No es posible el registro (error: '%s')" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:67 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" @@ -3346,7 +3351,7 @@ msgstr "añadir" msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:592 src/Module/Circle.php:181 +#: src/Model/Circle.php:592 src/Module/Circle.php:185 msgid "Contacts not in any circle" msgstr "" @@ -3354,8 +3359,8 @@ msgstr "" msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:595 src/Module/Circle.php:166 -#: src/Module/Circle.php:189 src/Module/Circle.php:264 +#: src/Model/Circle.php:595 src/Module/Circle.php:168 +#: src/Module/Circle.php:190 src/Module/Circle.php:265 msgid "Circle Name: " msgstr "" @@ -3363,247 +3368,247 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1258 src/Module/Moderation/Users/Pending.php:88 +#: src/Model/Contact.php:1259 src/Module/Moderation/Users/Pending.php:88 #: src/Module/Notifications/Introductions.php:124 #: src/Module/Notifications/Introductions.php:197 msgid "Approve" msgstr "Aprobar" -#: src/Model/Contact.php:1594 src/Model/Contact.php:1666 +#: src/Model/Contact.php:1595 src/Model/Contact.php:1667 #: src/Module/Contact/Profile.php:360 #, php-format msgid "%s has blocked you" msgstr "" -#: src/Model/Contact.php:1746 +#: src/Model/Contact.php:1747 msgid "Organisation" msgstr "Organización" -#: src/Model/Contact.php:1754 +#: src/Model/Contact.php:1755 msgid "Group" msgstr "" -#: src/Model/Contact.php:1758 src/Module/Moderation/BaseUsers.php:122 +#: src/Model/Contact.php:1759 src/Module/Moderation/BaseUsers.php:122 msgid "Relay" msgstr "Retransmisión" -#: src/Model/Contact.php:3073 +#: src/Model/Contact.php:3085 msgid "Disallowed profile URL." msgstr "Dirección de perfil no permitida." -#: src/Model/Contact.php:3078 src/Module/Friendica.php:88 +#: src/Model/Contact.php:3090 src/Module/Friendica.php:88 msgid "Blocked domain" msgstr "Dominio bloqueado" -#: src/Model/Contact.php:3083 +#: src/Model/Contact.php:3095 msgid "Connect URL missing." msgstr "Falta el conector URL." -#: src/Model/Contact.php:3092 +#: src/Model/Contact.php:3104 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "No pudo añadirse el contacto. Consulte las credenciales de red en Ajustes -> Redes Sociales." -#: src/Model/Contact.php:3110 +#: src/Model/Contact.php:3122 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3127 +#: src/Model/Contact.php:3139 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3134 +#: src/Model/Contact.php:3146 msgid "The profile address specified does not provide adequate information." msgstr "La dirección del perfil especificado no proporciona información adecuada." -#: src/Model/Contact.php:3136 +#: src/Model/Contact.php:3148 msgid "No compatible communication protocols or feeds were discovered." msgstr "No se ha descubierto protocolos de comunicación o fuentes compatibles." -#: src/Model/Contact.php:3139 +#: src/Model/Contact.php:3151 msgid "An author or name was not found." msgstr "No se ha encontrado un autor o nombre." -#: src/Model/Contact.php:3142 +#: src/Model/Contact.php:3154 msgid "No browser URL could be matched to this address." msgstr "Ninguna dirección concuerda con la suministrada." -#: src/Model/Contact.php:3145 +#: src/Model/Contact.php:3157 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Imposible identificar la Identidad @-style con algún protocolo conocido o dirección de contacto." -#: src/Model/Contact.php:3146 +#: src/Model/Contact.php:3158 msgid "Use mailto: in front of address to force email check." msgstr "Escribe mailto: al principio de la dirección para forzar el envío." -#: src/Model/Contact.php:3152 +#: src/Model/Contact.php:3164 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Perfil limitado. Esta persona no podrá recibir notificaciones directas/personales tuyas." -#: src/Model/Contact.php:3211 +#: src/Model/Contact.php:3223 msgid "Unable to retrieve contact information." msgstr "No ha sido posible recibir la información del contacto." -#: src/Model/Event.php:40 +#: src/Model/Event.php:42 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 -#: src/Model/Event.php:928 +#: src/Model/Event.php:63 src/Model/Event.php:80 src/Model/Event.php:457 +#: src/Model/Event.php:929 msgid "Starts:" msgstr "Inicio:" -#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 -#: src/Model/Event.php:932 +#: src/Model/Event.php:66 src/Model/Event.php:86 src/Model/Event.php:458 +#: src/Model/Event.php:933 msgid "Finishes:" msgstr "Final:" -#: src/Model/Event.php:405 +#: src/Model/Event.php:407 msgid "all-day" msgstr "todo el día" -#: src/Model/Event.php:431 +#: src/Model/Event.php:433 msgid "Sept" msgstr "Sept" -#: src/Model/Event.php:448 src/Module/Calendar/Show.php:117 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:117 #: src/Util/Temporal.php:329 msgid "today" msgstr "hoy" -#: src/Model/Event.php:449 src/Module/Calendar/Show.php:118 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:118 #: src/Module/Settings/Display.php:302 src/Util/Temporal.php:339 msgid "month" msgstr "mes" -#: src/Model/Event.php:450 src/Module/Calendar/Show.php:119 +#: src/Model/Event.php:452 src/Module/Calendar/Show.php:119 #: src/Module/Settings/Display.php:303 src/Util/Temporal.php:340 msgid "week" msgstr "semana" -#: src/Model/Event.php:451 src/Module/Calendar/Show.php:120 +#: src/Model/Event.php:453 src/Module/Calendar/Show.php:120 #: src/Module/Settings/Display.php:304 src/Util/Temporal.php:341 msgid "day" msgstr "día" -#: src/Model/Event.php:453 +#: src/Model/Event.php:455 msgid "No events to display" msgstr "No hay eventos a mostrar" -#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Model/Event.php:504 src/Module/Feed.php:56 #: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "El acceso a este perfil ha sido restringido." -#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:52 +#: src/Model/Event.php:545 src/Module/Calendar/Event/Show.php:52 msgid "Event not found." msgstr "" -#: src/Model/Event.php:623 +#: src/Model/Event.php:624 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:650 +#: src/Model/Event.php:651 msgid "Edit event" msgstr "Editar evento" -#: src/Model/Event.php:651 +#: src/Model/Event.php:652 msgid "Duplicate event" msgstr "Duplicar evento" -#: src/Model/Event.php:652 +#: src/Model/Event.php:653 msgid "Delete event" msgstr "Borrar evento" -#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 +#: src/Model/Event.php:883 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:883 +#: src/Model/Event.php:884 msgid "D g:i A" msgstr "D g:i A" -#: src/Model/Event.php:884 +#: src/Model/Event.php:885 msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:947 src/Model/Event.php:949 +#: src/Model/Event.php:948 src/Model/Event.php:950 msgid "Show map" msgstr "Mostrar mapa" -#: src/Model/Event.php:948 +#: src/Model/Event.php:949 msgid "Hide map" msgstr "Ocultar mapa" -#: src/Model/Event.php:1041 +#: src/Model/Event.php:1042 #, php-format msgid "%s's birthday" msgstr "Cumpleaños de %s" -#: src/Model/Event.php:1042 +#: src/Model/Event.php:1043 #, php-format msgid "Happy Birthday %s" msgstr "Feliz cumpleaños %s" -#: src/Model/Item.php:2323 +#: src/Model/Item.php:2331 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2325 +#: src/Model/Item.php:2333 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2328 +#: src/Model/Item.php:2336 #, php-format msgid "" "Detected languages in this post:\n" "%s" msgstr "" -#: src/Model/Item.php:3277 +#: src/Model/Item.php:3285 msgid "activity" msgstr "Actividad" -#: src/Model/Item.php:3279 +#: src/Model/Item.php:3287 msgid "comment" msgstr "" -#: src/Model/Item.php:3282 src/Module/Post/Tag/Add.php:109 +#: src/Model/Item.php:3290 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "Publicación" -#: src/Model/Item.php:3452 +#: src/Model/Item.php:3463 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3454 +#: src/Model/Item.php:3465 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3456 +#: src/Model/Item.php:3467 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3460 +#: src/Model/Item.php:3471 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3969 +#: src/Model/Item.php:3980 msgid "bytes" msgstr "bytes" -#: src/Model/Item.php:4000 +#: src/Model/Item.php:4011 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3611,7 +3616,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:4002 +#: src/Model/Item.php:4013 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3619,7 +3624,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:4007 +#: src/Model/Item.php:4018 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3627,7 +3632,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:4009 +#: src/Model/Item.php:4020 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3635,12 +3640,12 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:4011 +#: src/Model/Item.php:4022 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:4052 src/Model/Item.php:4053 +#: src/Model/Item.php:4063 src/Model/Item.php:4064 msgid "View on separate page" msgstr "Ver en pagina aparte" @@ -3648,7 +3653,7 @@ msgstr "Ver en pagina aparte" msgid "[no subject]" msgstr "[sin asunto]" -#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 +#: src/Model/Photo.php:1192 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Foto del Perfil" @@ -3661,7 +3666,7 @@ msgstr "Editar perfil" msgid "Change profile photo" msgstr "Cambiar foto del perfil" -#: src/Model/Profile.php:357 src/Module/Directory.php:139 +#: src/Model/Profile.php:357 src/Module/Directory.php:138 #: src/Module/Profile/Profile.php:200 msgid "Homepage:" msgstr "Inicio:" @@ -3751,7 +3756,7 @@ msgstr "No me gustan:" msgid "Title/Description:" msgstr "Título/Descripción:" -#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:176 +#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:174 #: src/Module/Moderation/Report/Create.php:266 #: src/Module/Moderation/Summary.php:65 msgid "Summary" @@ -3802,59 +3807,59 @@ msgstr "" msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "ERROR GRAVE: Generación de claves de seguridad falló." -#: src/Model/User.php:740 src/Model/User.php:773 +#: src/Model/User.php:739 src/Model/User.php:772 msgid "Login failed" msgstr "Ingreso fallido" -#: src/Model/User.php:805 +#: src/Model/User.php:804 msgid "Not enough information to authenticate" msgstr "Falta información para autenticación" -#: src/Model/User.php:930 +#: src/Model/User.php:929 msgid "Password can't be empty" msgstr "La contraseña es requerida" -#: src/Model/User.php:972 +#: src/Model/User.php:971 msgid "Empty passwords are not allowed." msgstr "No se permiten contraseñas vacias" -#: src/Model/User.php:976 +#: src/Model/User.php:975 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "La nueva contraseña ya se ha usado muchas veces, escoja otro." -#: src/Model/User.php:980 +#: src/Model/User.php:979 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:984 +#: src/Model/User.php:983 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1193 +#: src/Model/User.php:1192 msgid "Passwords do not match. Password unchanged." msgstr "Las contraseñas no coinciden. La contraseña no ha sido modificada." -#: src/Model/User.php:1200 +#: src/Model/User.php:1199 msgid "An invitation is required." msgstr "Se requiere de invitación." -#: src/Model/User.php:1204 +#: src/Model/User.php:1203 msgid "Invitation could not be verified." msgstr "No se puede verificar la invitación." -#: src/Model/User.php:1212 +#: src/Model/User.php:1211 msgid "Invalid OpenID url" msgstr "Dirección OpenID no válida" -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Se ha encontrado un problema para acceder con el OpenID que has escrito. Verifica que lo hayas escrito correctamente." -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "The error message was:" msgstr "El mensaje del error fue:" @@ -4047,57 +4052,57 @@ msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:51 +#: src/Module/Admin/Addons/Details.php:49 msgid "Addon not found." msgstr "Añadido no encontrado." -#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 +#: src/Module/Admin/Addons/Details.php:60 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "Añadido %s deshabilitado." -#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 +#: src/Module/Admin/Addons/Details.php:63 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "Añadido %s habilitado." -#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Addons/Details.php:72 #: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "Desactivar" -#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Addons/Details.php:75 #: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351 msgid "Enable" msgstr "Activar" -#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Addons/Details.php:95 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:175 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Summary.php:173 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 "Administración" -#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/Admin/Addons/Details.php:96 src/Module/Admin/Addons/Index.php:60 #: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:127 msgid "Addons" msgstr "Añadidos" -#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Addons/Details.php:97 #: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Activar" -#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Addons/Details.php:104 #: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Autor: " -#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Addons/Details.php:105 #: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Mantenedor: " @@ -4114,9 +4119,10 @@ msgstr "Instalación de Añadido %s falló" #: 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:545 src/Module/Settings/Addons.php:64 -#: src/Module/Settings/Connectors.php:149 -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Account.php:507 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/Features.php:61 msgid "Save Settings" @@ -4133,62 +4139,62 @@ msgid "" "official addon repository at %1$s." msgstr "" -#: src/Module/Admin/DBSync.php:37 +#: src/Module/Admin/DBSync.php:35 msgid "Update has been marked successful" msgstr "La actualización se ha completado con éxito" -#: src/Module/Admin/DBSync.php:45 +#: src/Module/Admin/DBSync.php:43 #, php-format msgid "Database structure update %s was successfully applied." msgstr "Actualización de base de datos %s fue aplicada con éxito." -#: src/Module/Admin/DBSync.php:47 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "El paso de actualización de la estructura de la base de datos %s fallo con el mensaje de error: %s" -#: src/Module/Admin/DBSync.php:62 +#: src/Module/Admin/DBSync.php:60 #, php-format msgid "Executing %s failed with error: %s" msgstr "Paso %s fallo con el error: %s" -#: src/Module/Admin/DBSync.php:64 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Update %s was successfully applied." msgstr "Actualización %s aplicada con éxito." -#: src/Module/Admin/DBSync.php:67 +#: src/Module/Admin/DBSync.php:65 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "La actualización %s no ha informado, se desconoce el estado." -#: src/Module/Admin/DBSync.php:70 +#: src/Module/Admin/DBSync.php:68 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "No había función adicional de actualización %s que necesitaba ser requerida." -#: src/Module/Admin/DBSync.php:91 +#: src/Module/Admin/DBSync.php:89 msgid "No failed updates." msgstr "Actualizaciones sin fallos." -#: src/Module/Admin/DBSync.php:92 +#: src/Module/Admin/DBSync.php:90 msgid "Check database structure" msgstr "Revisar estructura de la base de datos" -#: src/Module/Admin/DBSync.php:96 +#: src/Module/Admin/DBSync.php:94 msgid "Failed Updates" msgstr "Actualizaciones fallidas" -#: src/Module/Admin/DBSync.php:97 +#: src/Module/Admin/DBSync.php:95 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "No se incluyen las anteriores a la 1139, que no indicaban su estado." -#: src/Module/Admin/DBSync.php:98 +#: src/Module/Admin/DBSync.php:96 msgid "Mark success (if update was manually applied)" msgstr "Marcar como correcta (si actualizaste manualmente)" -#: src/Module/Admin/DBSync.php:99 +#: src/Module/Admin/DBSync.php:97 msgid "Attempt to execute this update step automatically" msgstr "Intentando ejecutar este paso automáticamente" @@ -5761,12 +5767,12 @@ msgstr "" msgid "Database (legacy)" msgstr "Base de Datos (legada)" -#: src/Module/Admin/Summary.php:41 +#: src/Module/Admin/Summary.php:39 #, php-format msgid "Template engine (%s) error: %s" msgstr "Error (%s) en Motor de plantilla: %s" -#: src/Module/Admin/Summary.php:45 +#: src/Module/Admin/Summary.php:43 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5777,7 +5783,7 @@ msgid "" " an automatic conversion.
" msgstr "Tu BD corre con tablas MyISAM. Debes cambiar al motor InnoDB. Pues Friendica usará solo InnoDB en el futuro, debes cambiarlo! Ver esto como guía de ayuda para convertir el motor de tablas. Podrías usar también el comando php bin/console.php dbstructure toinnodb de tu instalación Friendica para conversión automática.
" -#: src/Module/Admin/Summary.php:50 +#: src/Module/Admin/Summary.php:48 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5788,7 +5794,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "Tu BD corre con tablas InnoDB. En formato de archivo Antelope. Debes cambiar al formato de archivos Barracuda. Friendica usa opciones que no provee el formato Antelope. Ver esto como guía de ayuda para convertir el motor de tablas. Podrías usar también el comando php bin/console.php dbstructure toinnodb de tu instalación Friendica para conversión automática.
" -#: src/Module/Admin/Summary.php:60 +#: src/Module/Admin/Summary.php:58 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5796,46 +5802,46 @@ msgid "" " to %d. See here for more information.
" msgstr "El 'table_definition_cache' es muy corto (%d). puede acarrear error de BD \"Sentencia preparada debe ser Re-preparada\". Setealo al menos a %d. Ver here para mas información.
" -#: src/Module/Admin/Summary.php:68 +#: src/Module/Admin/Summary.php:66 #, 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 "Hay una nueva versión de Friendica disponible para descargar. Su versión actual es %1$s, la versión ascendente es %2$s" -#: src/Module/Admin/Summary.php:76 +#: src/Module/Admin/Summary.php:74 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 "Actualización de la BD Falló. Ejecute \"php bin/console.php dbstructure update\" desde línea de comandos y revise los errores que puedan haber ocurrido." -#: src/Module/Admin/Summary.php:80 +#: src/Module/Admin/Summary.php:78 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 "La última actualización falló. Ejecute \"php bin/console.php dbstructure update\" desde línea de comandos y revise los errores que puedan haber ocurrido. (Algunos aparecerán en archivo de log.)" -#: src/Module/Admin/Summary.php:84 +#: src/Module/Admin/Summary.php:82 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:89 +#: src/Module/Admin/Summary.php:87 msgid "The worker was never executed. Please check your database structure!" msgstr "El worker nunca fue ejecutado. ¡Revise la estructura de su BD!" -#: src/Module/Admin/Summary.php:91 +#: src/Module/Admin/Summary.php:89 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "La última ejecución del trabajador fue a las %s UTC. Anterior a una hora. Revise su configuración de crontab." -#: src/Module/Admin/Summary.php:96 +#: src/Module/Admin/Summary.php:94 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5844,7 +5850,7 @@ msgid "" "help with the transition." msgstr "Configuración Friendica ahora se almacena en config/local.config.php, copie config/local-sample.config.php y mueva su configuración de .htconfig.php. Ver página de ayuda como ayuda en la transición." -#: src/Module/Admin/Summary.php:100 +#: src/Module/Admin/Summary.php:98 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5853,7 +5859,7 @@ msgid "" "page for help with the transition." msgstr "Configuración Friendica ahora se almacena en config/local.config.php, copie config/local-sample.config.php y mueva su configuración de config/local.ini.php. Ver página de ayuda como ayuda en la transición." -#: src/Module/Admin/Summary.php:106 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5861,40 +5867,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "%s no se alcanza en tu sistema. Es un error grave en la configuración que evita la comunicación de servidor a servidor. Ver la página de instalación como ayuda." -#: src/Module/Admin/Summary.php:130 +#: src/Module/Admin/Summary.php:128 #, 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 "La ruta Friendica system.basepath se actualizó de '%s' a '%s'. Quite la system.basepath de tu BD para evitar diferencias." -#: src/Module/Admin/Summary.php:138 +#: src/Module/Admin/Summary.php:136 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "Ruta actual Friendica system.basepath '%s' es errónea y el archivo de configuración '%s' no se usa." -#: src/Module/Admin/Summary.php:146 +#: src/Module/Admin/Summary.php:144 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "Ruta actual de Friendica system.basepath '%s' no es igual al archivo config '%s'. Corrija su configuración." -#: src/Module/Admin/Summary.php:157 +#: src/Module/Admin/Summary.php:155 msgid "Message queues" msgstr "Cola de mensajes" -#: src/Module/Admin/Summary.php:160 +#: src/Module/Admin/Summary.php:158 msgid "Server Settings" msgstr "Ajustes del Servidor" -#: src/Module/Admin/Summary.php:178 +#: src/Module/Admin/Summary.php:176 msgid "Version" msgstr "Versión" -#: src/Module/Admin/Summary.php:182 +#: src/Module/Admin/Summary.php:180 msgid "Active addons" msgstr "Añadidos Activos" @@ -6162,8 +6168,8 @@ msgstr "" msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:134 -#: src/Module/Moderation/Users/Index.php:144 +#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:137 +#: src/Module/Moderation/Users/Index.php:147 msgid "Users" msgstr "Usuarios" @@ -6199,7 +6205,7 @@ msgstr "" msgid "Only You Can See This" msgstr "Únicamente tú puedes ver esto" -#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:67 +#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:65 msgid "Scheduled Posts" msgstr "" @@ -6252,7 +6258,7 @@ msgstr "Ingreso de 2 factores" msgid "Display" msgstr "Interfaz del usuario" -#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:195 +#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:189 msgid "Social Networks" msgstr "Redes sociales" @@ -6268,11 +6274,15 @@ msgstr "Aplicaciones conectadas" msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:84 +#: src/Module/BaseSettings.php:155 src/Module/Settings/ContactImport.php:109 +msgid "Import Contacts" +msgstr "Importar contactos" + +#: src/Module/BaseSettings.php:162 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Exportación de datos personales" -#: src/Module/BaseSettings.php:162 +#: src/Module/BaseSettings.php:169 msgid "Remove account" msgstr "Eliminar cuenta" @@ -6401,8 +6411,8 @@ msgstr "lista" msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:54 src/Module/Circle.php:202 -#: src/Module/Circle.php:226 +#: src/Module/Circle.php:54 src/Module/Circle.php:203 +#: src/Module/Circle.php:227 msgid "Circle not found." msgstr "" @@ -6410,15 +6420,15 @@ msgstr "" msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:78 +#: src/Module/Circle.php:80 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Circle.php:86 src/Module/Circle.php:95 #: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 -#: 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/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/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 @@ -6427,75 +6437,75 @@ msgstr "" msgid "Contact not found." msgstr "Contacto no encontrado." -#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 +#: src/Module/Circle.php:90 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Contacto erróneo." -#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 +#: src/Module/Circle.php:99 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "El contacto se borra." -#: src/Module/Circle.php:103 +#: src/Module/Circle.php:105 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:106 +#: src/Module/Circle.php:108 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:110 +#: src/Module/Circle.php:112 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:113 +#: src/Module/Circle.php:115 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:119 msgid "Bad request." msgstr "Petición no reconocida" -#: src/Module/Circle.php:158 +#: src/Module/Circle.php:160 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:159 +#: src/Module/Circle.php:161 msgid "Filter" msgstr "Filtro" -#: src/Module/Circle.php:165 +#: src/Module/Circle.php:167 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:207 +#: src/Module/Circle.php:208 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:258 +#: src/Module/Circle.php:259 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:268 +#: src/Module/Circle.php:269 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:278 +#: src/Module/Circle.php:279 msgid "Members" msgstr "Miembros" -#: src/Module/Circle.php:281 +#: src/Module/Circle.php:282 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:297 +#: src/Module/Circle.php:298 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:320 +#: src/Module/Circle.php:321 msgid "Click on a contact to add or remove." msgstr "Pulsa en un contacto para añadirlo o eliminarlo." -#: src/Module/Circle.php:337 +#: src/Module/Circle.php:338 msgid "Add contact to circle" msgstr "" @@ -6530,7 +6540,7 @@ msgid "Only show blocked contacts" msgstr "Mostrar solo contactos bloqueados" #: src/Module/Contact.php:349 src/Module/Contact.php:421 -#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:386 msgid "Ignored" msgstr "Ignorados" @@ -6581,8 +6591,8 @@ msgstr "Actualizar" #: src/Module/Contact.php:449 src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:105 -#: src/Module/Moderation/Users/Blocked.php:124 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Blocked.php:127 +#: src/Module/Moderation/Users/Index.php:143 msgid "Unblock" msgstr "Desbloquear" @@ -6658,12 +6668,12 @@ msgstr "Volver al editor de contactos" #: 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:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:56 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Nombre" @@ -7233,11 +7243,11 @@ msgstr "" msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:190 +#: src/Module/Conversation/Timeline.php:193 msgid "Include" msgstr "Incluir" -#: src/Module/Conversation/Timeline.php:191 +#: src/Module/Conversation/Timeline.php:194 msgid "Hide" msgstr "Ocultar" @@ -7507,19 +7517,19 @@ msgstr "Diagnóstico Webfinger" msgid "Lookup address:" msgstr "Buscar Dirección:" -#: src/Module/Directory.php:61 +#: src/Module/Directory.php:60 msgid "No entries (some entries may be hidden)." msgstr "Sin entradas (algunas pueden que estén ocultas)." -#: src/Module/Directory.php:77 +#: src/Module/Directory.php:76 msgid "Find on this site" msgstr "Buscar en este sitio" -#: src/Module/Directory.php:79 +#: src/Module/Directory.php:78 msgid "Results for:" msgstr "Resultados para:" -#: src/Module/Directory.php:81 +#: src/Module/Directory.php:80 msgid "Site Directory" msgstr "Directorio del sitio" @@ -7772,29 +7782,29 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Ve a la Página de Registro de tu nuevo nodo de Friendicay registrate como nuevo usuario. Recuerda utilizar el mismo correo electrónico que ingresaste como correo del administrador. Esto te permitirá ingresar al Panel de Administración del Sitio." -#: src/Module/Invite.php:43 +#: src/Module/Invite.php:42 msgid "Total invitation limit exceeded." msgstr "Límite de invitaciones excedido." -#: src/Module/Invite.php:68 +#: src/Module/Invite.php:67 #, php-format msgid "%s : Not a valid email address." msgstr "%s : No es un correo válido." -#: src/Module/Invite.php:94 +#: src/Module/Invite.php:93 msgid "Please join us on Friendica" msgstr "Únete a nosotros en Friendica" -#: src/Module/Invite.php:103 +#: src/Module/Invite.php:102 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Límite de invitaciones sobrepasado. Contacta con el administrador del sitio." -#: src/Module/Invite.php:107 +#: src/Module/Invite.php:106 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Ha fallado la entrega del mensaje." -#: src/Module/Invite.php:111 +#: src/Module/Invite.php:110 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." @@ -7802,11 +7812,11 @@ msgstr[0] "%d mensaje enviado." msgstr[1] "%d mensajes enviados." msgstr[2] "%d mensajes enviados." -#: src/Module/Invite.php:129 +#: src/Module/Invite.php:127 msgid "You have no more invitations available" msgstr "No tienes más invitaciones disponibles" -#: src/Module/Invite.php:136 +#: src/Module/Invite.php:134 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7814,14 +7824,14 @@ msgid "" " other social networks." msgstr "Visita %s para ver una lista de servidores públicos donde puedes darte de alta. Los miembros de otros servidores de Friendica pueden conectarse entre ellos, así como con miembros de otras redes sociales diferentes." -#: src/Module/Invite.php:138 +#: src/Module/Invite.php:136 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Para aceptar la invitación visita y regístrate en %s o en cualquier otro servidor público de Friendica." -#: src/Module/Invite.php:139 +#: src/Module/Invite.php:137 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7830,48 +7840,48 @@ msgid "" "sites you can join." msgstr "Los servidores de Friendica están interconectados para crear una enorme red social centrada en la privacidad y controlada por sus miembros. También se puede conectar con muchas redes sociales tradicionales. Mira en %s para poder ver un listado de servidores alternativos de Friendica donde puedes darte de alta." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:141 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Discúlpanos. Este sistema no está configurado actualmente para conectar con otros servidores públicos o invitar nuevos miembros." -#: src/Module/Invite.php:146 +#: src/Module/Invite.php:144 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 "Los sitios de Friendica se conectan entre sí para crear una gran red social con privacidad mejorada que es propiedad y está controlada por sus miembros. También pueden conectarse con muchas redes sociales tradicionales." -#: src/Module/Invite.php:145 +#: src/Module/Invite.php:143 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "Para aceptar esta invitación, visite y regístrese en%s, por favor." -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:151 msgid "Send invitations" msgstr "Enviar invitaciones" -#: src/Module/Invite.php:154 +#: src/Module/Invite.php:152 msgid "Enter email addresses, one per line:" msgstr "Introduce las direcciones de correo, una por línea:" -#: src/Module/Invite.php:158 +#: src/Module/Invite.php:156 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Estás cordialmente invitado a unirte a mi y a otros amigos en Friendica, creemos juntos una red social mejor." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "You will need to supply this invitation code: $invite_code" msgstr "Tienes que proporcionar el siguiente código: $invite_code" -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Una vez registrado, por favor contacta conmigo a través de mi página de perfil en:" -#: src/Module/Invite.php:162 +#: src/Module/Invite.php:160 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" @@ -7973,12 +7983,12 @@ msgid "File upload failed." msgstr "Ha fallado la subida del archivo." #: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 -#: src/Module/Profile/Photos.php:204 +#: src/Module/Profile/Photos.php:212 #: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Imposible procesar la imagen." -#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:224 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:232 #: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Error al subir la imagen." @@ -8011,23 +8021,23 @@ msgstr "Borrados" msgid "List of pending user deletions" msgstr "Lista de borrados de usuario pendientes" -#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:469 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:431 msgid "Normal Account Page" msgstr "Página de Cuenta Normal" -#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:476 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:438 msgid "Soapbox Page" msgstr "Página de Tribuna" -#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:483 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:445 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:490 +#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:452 msgid "Public Group - Restricted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:497 +#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:459 msgid "Automatic Friend Page" msgstr "Página de Amistad Autómatica" @@ -8036,22 +8046,22 @@ msgid "Private Group" msgstr "" #: src/Module/Moderation/BaseUsers.php:118 -#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:440 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:402 msgid "Personal Page" msgstr "Página personal" #: src/Module/Moderation/BaseUsers.php:119 -#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:447 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:409 msgid "Organisation Page" msgstr "Página de Organización" #: src/Module/Moderation/BaseUsers.php:120 -#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:454 +#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:416 msgid "News Page" msgstr "Página de Noticias" #: src/Module/Moderation/BaseUsers.php:121 -#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:461 +#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:423 msgid "Community Group" msgstr "" @@ -8082,9 +8092,9 @@ msgid "Block Remote Contact" msgstr "Bloquear Contacto Remoto" #: src/Module/Moderation/Blocklist/Contact.php:102 -#: 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/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:138 #: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "seleccionar todo" @@ -8431,9 +8441,9 @@ msgid "Tag" msgstr "Etiqueta" #: src/Module/Moderation/Item/Source.php:77 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 -#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 +#: src/Module/Moderation/Users/Index.php:129 msgid "Type" msgstr "Tipo" @@ -8699,7 +8709,7 @@ msgstr[2] "" msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:418 +#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:380 msgid "Channel Relay" msgstr "" @@ -8721,11 +8731,11 @@ msgstr[1] "%s usuarios bloqueados" msgstr[2] "%s usuarios bloqueados" #: src/Module/Moderation/Users/Active.php:37 -#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Active.php:74 #: src/Module/Moderation/Users/Blocked.php:37 -#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Blocked.php:74 #: src/Module/Moderation/Users/Index.php:44 -#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Index.php:81 msgid "You can't remove yourself" msgstr "No puedes borrar tu usuario" @@ -8739,81 +8749,81 @@ msgstr[0] "%s usuario eliminado" msgstr[1] "%s usuarios eliminados" msgstr[2] "%s usuarios eliminados" -#: src/Module/Moderation/Users/Active.php:69 -#: src/Module/Moderation/Users/Blocked.php:69 -#: src/Module/Moderation/Users/Index.php:76 +#: src/Module/Moderation/Users/Active.php:72 +#: src/Module/Moderation/Users/Blocked.php:72 +#: src/Module/Moderation/Users/Index.php:79 #, php-format msgid "User \"%s\" deleted" msgstr "Usuario \"%s\" borrado" -#: src/Module/Moderation/Users/Active.php:79 -#: src/Module/Moderation/Users/Index.php:86 +#: src/Module/Moderation/Users/Active.php:82 +#: src/Module/Moderation/Users/Index.php:89 #, php-format msgid "User \"%s\" blocked" msgstr "Usuario \"%s\" bloqueado" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Register date" msgstr "Fecha de registro" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last login" msgstr "Último acceso" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last public item" msgstr "Último artículo público" -#: src/Module/Moderation/Users/Active.php:120 +#: src/Module/Moderation/Users/Active.php:123 msgid "Active Accounts" msgstr "Cuentas Activas" -#: src/Module/Moderation/Users/Active.php:124 -#: src/Module/Moderation/Users/Blocked.php:123 -#: src/Module/Moderation/Users/Index.php:139 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "User blocked" msgstr "Usuario bloqueado" -#: src/Module/Moderation/Users/Active.php:125 -#: src/Module/Moderation/Users/Blocked.php:125 -#: src/Module/Moderation/Users/Index.php:141 +#: src/Module/Moderation/Users/Active.php:128 +#: src/Module/Moderation/Users/Blocked.php:128 +#: src/Module/Moderation/Users/Index.php:144 msgid "Site admin" msgstr "Administrador del Sitio" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:142 +#: src/Module/Moderation/Users/Active.php:129 +#: src/Module/Moderation/Users/Blocked.php:129 +#: src/Module/Moderation/Users/Index.php:145 msgid "Account expired" msgstr "Cuenta caducada" -#: src/Module/Moderation/Users/Active.php:127 -#: src/Module/Moderation/Users/Index.php:145 +#: src/Module/Moderation/Users/Active.php:130 +#: src/Module/Moderation/Users/Index.php:148 msgid "Create a new user" msgstr "Crear nuevo usuario" -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:132 -#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:154 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "¡Los usuarios seleccionados serán eliminados!\\n\\n¡Todo lo que hayan publicado en este sitio se borrará para siempre!\\n\\n¿Estás seguro?" -#: src/Module/Moderation/Users/Active.php:134 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:155 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" @@ -8828,13 +8838,13 @@ msgstr[0] "%s usuario desbloqueado" msgstr[1] "%s usuarios desbloqueados" msgstr[2] "%s usuarios desbloqueados" -#: src/Module/Moderation/Users/Blocked.php:78 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Blocked.php:81 +#: src/Module/Moderation/Users/Index.php:95 #, php-format msgid "User \"%s\" unblocked" msgstr "Usuario \"%s\" desbloqueado" -#: src/Module/Moderation/Users/Blocked.php:120 +#: src/Module/Moderation/Users/Blocked.php:123 msgid "Blocked Users" msgstr "Usuarios bloqueados" @@ -8867,11 +8877,11 @@ msgid "Users awaiting permanent deletion" msgstr "Usuarios en espera de borrado permanente" #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:149 msgid "Permanent deletion" msgstr "Borrado Permanente" -#: src/Module/Moderation/Users/Index.php:136 +#: src/Module/Moderation/Users/Index.php:139 msgid "User waiting for permanent deletion" msgstr "Usuario esperando anulación permanente." @@ -9038,7 +9048,7 @@ msgstr "" msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:91 +#: src/Module/OAuth/Token.php:73 msgid "Unsupported or missing grant type" msgstr "" @@ -9090,7 +9100,7 @@ msgstr "ignorado" msgid "Keep this window open until done." msgstr "Manténer la ventana abierta hasta que finalice." -#: src/Module/OpenSearch.php:57 +#: src/Module/OpenSearch.php:55 #, php-format msgid "Search in Friendica %s" msgstr "" @@ -9104,12 +9114,12 @@ msgstr "" msgid "The Photo with id %s is not available." msgstr "La foto con id %s no esta disponible." -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:178 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:180 #, php-format msgid "Invalid photo with id %s." msgstr "Foto no válida de Id %s." @@ -9142,15 +9152,15 @@ msgstr "Insertar vínculo del audio" msgid "audio link" msgstr "enlace de audio" -#: src/Module/Post/Tag/Remove.php:92 +#: src/Module/Post/Tag/Remove.php:93 msgid "Remove Item Tag" msgstr "Eliminar etiqueta" -#: src/Module/Post/Tag/Remove.php:93 +#: src/Module/Post/Tag/Remove.php:94 msgid "Select a tag to remove: " msgstr "Selecciona etiqueta a eliminar: " -#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Post/Tag/Remove.php:95 #: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Eliminar" @@ -9229,32 +9239,32 @@ msgstr "Comentarios de %s" msgid "%s's timeline" msgstr "Estado de %s" -#: src/Module/Profile/Photos.php:153 src/Module/Profile/Photos.php:156 -#: src/Module/Profile/Photos.php:181 +#: src/Module/Profile/Photos.php:157 src/Module/Profile/Photos.php:160 +#: src/Module/Profile/Photos.php:189 #: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "Imagen excede el tamaño de %s" -#: src/Module/Profile/Photos.php:159 +#: src/Module/Profile/Photos.php:163 msgid "Image upload didn't complete, please try again" msgstr "Subida de imagen no completa, vuelve a intentar" -#: src/Module/Profile/Photos.php:162 +#: src/Module/Profile/Photos.php:166 msgid "Image file is missing" msgstr "Falta el archivo de imagen" -#: src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:171 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "El servidor no puede aceptar la carga de archivos nuevos en este momento, comuníquese con el Administrador" -#: src/Module/Profile/Photos.php:189 +#: src/Module/Profile/Photos.php:197 msgid "Image file is empty." msgstr "El archivo de imagen está vacío." -#: src/Module/Profile/Photos.php:341 +#: src/Module/Profile/Photos.php:349 msgid "View Album" msgstr "Ver Álbum" @@ -9371,15 +9381,15 @@ msgid "" "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:69 +#: src/Module/Profile/Schedule.php:67 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:70 +#: src/Module/Profile/Schedule.php:68 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:71 +#: src/Module/Profile/Schedule.php:69 msgid "Remove post" msgstr "" @@ -9444,7 +9454,7 @@ msgid "Please repeat your e-mail address:" msgstr "Repite tu correo:" #: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:551 +#: src/Module/Settings/Account.php:513 msgid "New Password:" msgstr "Contraseña Nueva:" @@ -9453,7 +9463,7 @@ msgid "Leave empty for an auto generated password." msgstr "Dejar vacío para autogenerar una contraseña" #: src/Module/Register.php:157 src/Module/Security/PasswordTooLong.php:87 -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Confirm:" msgstr "Confirmar:" @@ -9637,20 +9647,20 @@ msgstr "Desconectado." msgid "OpenID protocol error. No ID returned" msgstr "Error de protocolo OpenID. No encuentra ID" -#: src/Module/Security/OpenID.php:76 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "Cuenta no encontrada. Ingresa en tu cuenta existente para agregarle OpenID." -#: src/Module/Security/OpenID.php:78 +#: src/Module/Security/OpenID.php:80 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "Cuenta no encontrada. Registra una nueva cuenta o ingresa en su cuenta existentepara agregarle OpenID." #: src/Module/Security/PasswordTooLong.php:43 -#: src/Module/Settings/Account.php:51 +#: src/Module/Settings/Account.php:49 msgid "Passwords do not match." msgstr "No coinciden los passwords" @@ -9659,7 +9669,7 @@ msgid "Password does not need changing." msgstr "" #: src/Module/Security/PasswordTooLong.php:63 -#: src/Module/Settings/Account.php:65 +#: src/Module/Settings/Account.php:63 msgid "Password unchanged." msgstr "Contraseña no modificada" @@ -9679,24 +9689,24 @@ msgid "Update Password" msgstr "" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Current Password:" msgstr "Contraseña actual:" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Your current password to confirm the changes" msgstr "Tu contraseña actual para confirmar los cambios." #: src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:537 +#: src/Module/Settings/Account.php:499 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:538 +#: src/Module/Settings/Account.php:500 msgid "Password length is limited to 72 characters." msgstr "" @@ -9800,129 +9810,121 @@ msgstr "Ingresa un código de ingreso desde tu app" msgid "Verify code and complete login" msgstr "Verificar código y completar ingreso" -#: src/Module/Settings/Account.php:80 +#: src/Module/Settings/Account.php:78 msgid "Please use a shorter name." msgstr "Utiliza un nombre mas corto" -#: src/Module/Settings/Account.php:83 +#: src/Module/Settings/Account.php:81 msgid "Name too short." msgstr "Nombre muy corto" -#: src/Module/Settings/Account.php:92 +#: src/Module/Settings/Account.php:90 msgid "Wrong Password." msgstr "Password erróneo" -#: src/Module/Settings/Account.php:97 +#: src/Module/Settings/Account.php:95 msgid "Invalid email." msgstr "Corréo no válido." -#: src/Module/Settings/Account.php:101 +#: src/Module/Settings/Account.php:99 msgid "Cannot change to that email." msgstr "Imposible cambiar a ese correo." -#: 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 +#: 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 msgid "Settings were not updated." msgstr "Configuración no actualizada" -#: src/Module/Settings/Account.php:331 -msgid "Contact CSV file upload error" -msgstr "Error al subir archivo CSV" - -#: src/Module/Settings/Account.php:350 -msgid "Importing Contacts done" -msgstr "Importación del contacto completada" - -#: src/Module/Settings/Account.php:363 +#: src/Module/Settings/Account.php:325 msgid "Relocate message has been send to your contacts" msgstr "Mensaje de reubicación enviado a sus contactos." -#: src/Module/Settings/Account.php:380 +#: src/Module/Settings/Account.php:342 msgid "Unable to find your profile. Please contact your admin." msgstr "No se encontró tu perfil. Contacta al Administrador." -#: src/Module/Settings/Account.php:420 +#: src/Module/Settings/Account.php:382 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:430 +#: src/Module/Settings/Account.php:392 msgid "Personal Page Subtypes" msgstr "Subtipos de Página Personal" -#: src/Module/Settings/Account.php:431 +#: src/Module/Settings/Account.php:393 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:442 +#: src/Module/Settings/Account.php:404 msgid "Account for a personal profile." msgstr "Cuenta para un perfil personal." -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:411 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Cuenta para una organización que aprueba automáticamente solicitudes de \"Seguidores\"." -#: src/Module/Settings/Account.php:456 +#: src/Module/Settings/Account.php:418 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Cuenta Reflector de noticias que aprueba automáticamente solicitudes de contacto como \"Seguidores\"." -#: src/Module/Settings/Account.php:463 +#: src/Module/Settings/Account.php:425 msgid "Account for community discussions." msgstr "Cuenta para discusiones de la comunidad." -#: src/Module/Settings/Account.php:471 +#: src/Module/Settings/Account.php:433 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Cuenta para perfil personal regular que requiere aprobación manual de \"Amigos\" and \"Seguidores\"." -#: src/Module/Settings/Account.php:478 +#: src/Module/Settings/Account.php:440 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Cuenta para un perfil público que aprueba automáticamente las solicitudes de contacto como «Seguidores»." -#: src/Module/Settings/Account.php:485 +#: src/Module/Settings/Account.php:447 msgid "Automatically approves all contact requests." msgstr "Aprueba automáticamente las solicitudes de contacto." -#: src/Module/Settings/Account.php:492 +#: src/Module/Settings/Account.php:454 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:499 +#: src/Module/Settings/Account.php:461 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Cuenta para un perfil popular que aprueba automáticamente solicitudes de contacto como \"Amigos\"." -#: src/Module/Settings/Account.php:504 +#: src/Module/Settings/Account.php:466 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:506 +#: src/Module/Settings/Account.php:468 msgid "Requires manual approval of contact requests." msgstr "Requiere aprobación manual de solicitudes de contacto." -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Opcional) Permitir a este OpenID acceder a esta cuenta." -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 msgid "Publish your profile in your local site directory?" msgstr "Publicar tu perfil en tu Directorio Local?" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9930,94 +9932,94 @@ msgid "" " system settings." msgstr "Tu perfil se publicará en el directorio de nodo local . Los detalles de tu perfil pueden ser públicos según los ajustes del sistema." -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:491 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Tu perfil también será publicado en Directorios Globales Friendica (ej. %s)." -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:504 msgid "Account Settings" msgstr "Configuración de Cuenta" -#: src/Module/Settings/Account.php:543 +#: src/Module/Settings/Account.php:505 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Tu dirección de Identidad es '%s' o '%s'." -#: src/Module/Settings/Account.php:550 +#: src/Module/Settings/Account.php:512 msgid "Password Settings" msgstr "Configuración de Contraseña" -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Leave password fields blank unless changing" msgstr "Deja la contraseña en blanco si no quieres cambiarla" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Password:" msgstr "Contraseña:" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Your current password to confirm the changes of the email address" msgstr "Tu contraseña actual para confirmar los cambios de cuenta de corréo." -#: src/Module/Settings/Account.php:557 +#: src/Module/Settings/Account.php:519 msgid "Delete OpenID URL" msgstr "Borrar URL de OpenID" -#: src/Module/Settings/Account.php:559 +#: src/Module/Settings/Account.php:521 msgid "Basic Settings" msgstr "Configuración Básica" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:522 #: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "Nombre desplegable:" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:523 msgid "Email Address:" msgstr "Dirección de Correo:" -#: src/Module/Settings/Account.php:562 +#: src/Module/Settings/Account.php:524 msgid "Your Timezone:" msgstr "Zona horaria:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "Your Language:" msgstr "Tu idioma:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Selecciona el idioma que usará la interfaz Friendica y para enviarte correos." -#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Account.php:526 msgid "Default Post Location:" msgstr "Ubicación predeterminada:" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:527 msgid "Use Browser Location:" msgstr "Usar localización del navegador:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:529 msgid "Security and Privacy Settings" msgstr "Configuración de Seguridad y Privacidad" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "Maximum Friend Requests/Day:" msgstr "Número máximo de solicitudes de amistad/día:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "(to prevent spam abuse)" msgstr "(para prevenir abuso de basura)" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 msgid "Allow your profile to be searchable globally?" msgstr "¿Permitir tu perfil ser encontrado globalmente?" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 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 " @@ -10025,43 +10027,43 @@ msgid "" "indexed or not." msgstr "Activa esta configuración si quieres que otros te encuentren y sigan fácilmente. Tu perfil se podrá buscar en sistemas remotos. Esta configuración también determina si Friendica informará a los motores de búsqueda que tu perfil debe ser indexado o no." -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Esconde tu lista de contactos/amistades de otros a tu perfil?" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "Se muestra una lista de tus contactos en tu Perfil. Activar esta opción para deshabilitar la visualización de tu lista de contactos." -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:535 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:535 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:574 +#: src/Module/Settings/Account.php:536 msgid "Make public posts unlisted" msgstr "No listar mis artículos públicos" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:536 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 "Tus publicaciones públicas no aparecerán en páginas de la comunidad ni en búsquedas, ni se enviaran a servidores de retransmisión. Sin embargo, aparecerán en artículos públicos de servidores remotos." -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:537 msgid "Make all posted pictures accessible" msgstr "Hacer accesibles todas las fotos" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:537 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 " @@ -10069,227 +10071,213 @@ msgid "" "public on your photo albums though." msgstr "Esta opción hace accesibles todas las imágenes a través del enlace directo. Este es una solución al problema que la mayoría de las redes no pueden manejar permisos en las imágenes. Las imágenes no públicas aún no serán visibles para elpúblico en tus álbumes de fotos." -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "Allow friends to post to your profile page?" msgstr "¿Permitir que tus amigos publiquen en tu página de perfil?" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Tus contactos pueden escribir artículos en tu perfil. Estas publicaciones se distribuirán a tus contactos" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Allow friends to tag your posts?" msgstr "¿Permitir a los amigos etiquetar tus publicaciones?" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Your contacts can add additional tags to your posts." msgstr "Tus contactos pueden añadir etiquetas adicionales a tus artículos." -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:540 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:541 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:542 msgid "Default Post Permissions" msgstr "Permisos por defecto para publicaciones" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:546 msgid "Expiration settings" msgstr "Configuración de Expiración" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "Automatically expire posts after this many days:" msgstr "Publicaciones caducarán solas después de estos días:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Si dejas vacío no caducarán. Publicaciones caducadas serán borradas" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "Expire posts" msgstr "Caducar artículos" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "When activated, posts and comments will be expired." msgstr "Cuando se activa, artículos y comentarios caducarán." -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "Expire personal notes" msgstr "Caducar Anotaciones" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Si se activa, las Anotaciones en tu Perfil caducarán." -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "Expire starred posts" msgstr "Caducar artículos Destacados" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Destacar las publicaciones evita que caduquen. Ese comportamiento cambiacon este ajuste." -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 msgid "Only expire posts by others" msgstr "Solo caducar artículos de otros" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Cuando se activa, publicaciones propias nunca caducan. Esta configuración solo es válida para las artículos recibidas." -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:554 msgid "Notification Settings" msgstr "Configuración de Notificaciones" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:555 msgid "Send a notification email when:" msgstr "Enviar notificación por correo cuando:" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:556 msgid "You receive an introduction" msgstr "Recibas una presentación" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:557 msgid "Your introductions are confirmed" msgstr "Tu presentación sea confirmada" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:558 msgid "Someone writes on your profile wall" msgstr "Alguien escriba en tu perfil" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:559 msgid "Someone writes a followup comment" msgstr "Alguien escriba en un comentario que sigo" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:560 msgid "You receive a private message" msgstr "Recibas un mensaje privado" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:561 msgid "You receive a friend suggestion" msgstr "Recibas una sugerencia de amistad" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:562 msgid "You are tagged in a post" msgstr "Seas etiquetado en un artículo" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:564 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:565 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:566 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:567 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:605 src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:567 src/Module/Settings/Account.php:568 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:568 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:569 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:570 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:571 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Activate desktop notifications" msgstr "Activar notificaciones" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Show desktop popup on new notifications" msgstr "Mostrar notificaciones emergentes en caso de nuevos eventos." -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:577 msgid "Text-only notification emails" msgstr "Notificaciones de correo solo en texto" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:579 msgid "Send text only notification emails, without the html part" msgstr "Enviar correo de notificación en formato Solo Texto sin html" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:583 msgid "Show detailled notifications" msgstr "Mostrar notificaciones detalladas" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:585 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Por default, notificaciones se condensan en una sola notificación por artículo. Cuando se habilita se muestran cada notificación." -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:589 msgid "Show notifications of ignored contacts" msgstr "Mostrar notificación de Contactos Ignorados" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:591 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 "No ves publicaciones de contactos ignorados. Pero todavía ves sus comentarios. Esta configuración controla si aún desea recibir notificaciones regulares causadas por contactos ignorados o no." -#: src/Module/Settings/Account.php:632 +#: src/Module/Settings/Account.php:594 msgid "Advanced Account/Page Type Settings" msgstr "Configuración avanzada de tipo de Cuenta/Página" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:595 msgid "Change the behaviour of this account for special situations" msgstr "Cambiar el comportamiento de esta cuenta para situaciones especiales" -#: src/Module/Settings/Account.php:636 -msgid "Import Contacts" -msgstr "Importar contactos" - -#: src/Module/Settings/Account.php:637 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "Subir archivo CSV que contenga identificador de tus cuentas seguidas en elprimera columna que exportó desde la cuenta anterior." - -#: src/Module/Settings/Account.php:638 -msgid "Upload File" -msgstr "Subir archivo" - -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:598 msgid "Relocate" msgstr "Relocalizar" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:599 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 "Si migró este perfil desde otro servidor y algunos contactos no reciben sus publicaciones intente oprimiendo esta opción." -#: src/Module/Settings/Account.php:643 +#: src/Module/Settings/Account.php:600 msgid "Resend relocate message to contacts" msgstr "Reenviar mensaje de relocalización a contactos" @@ -10454,214 +10442,232 @@ msgstr "" msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:108 +#: src/Module/Settings/Connectors.php:107 msgid "Failed to connect with email account using the settings provided." msgstr "Error al conectar con el Correo mediante esa configuración." -#: src/Module/Settings/Connectors.php:155 -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:150 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:149 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:150 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:161 msgid "Email access is disabled on this site." msgstr "Acceso por correo deshabilitado en este sitio." -#: src/Module/Settings/Connectors.php:182 -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:176 +#: src/Module/Settings/Connectors.php:226 msgid "None" msgstr "Ninguno" -#: src/Module/Settings/Connectors.php:186 +#: src/Module/Settings/Connectors.php:180 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "" -#: src/Module/Settings/Connectors.php:187 +#: src/Module/Settings/Connectors.php:181 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "" -#: src/Module/Settings/Connectors.php:188 +#: src/Module/Settings/Connectors.php:182 msgid "Embed the title in the body" msgstr "" -#: src/Module/Settings/Connectors.php:199 +#: src/Module/Settings/Connectors.php:193 msgid "General Social Media Settings" msgstr "Configuración General de Medios Sociales" -#: src/Module/Settings/Connectors.php:202 +#: src/Module/Settings/Connectors.php:196 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:198 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:200 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:207 +#: src/Module/Settings/Connectors.php:201 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:208 +#: src/Module/Settings/Connectors.php:202 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "Attach the link title" msgstr "Agregar título del link" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Si se activa, el título del link se añade como titulo en artículos de Diaspora. Esto es bueno con contactos \"remote-self\" que comparten contenido." -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "Article Mode" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "" -#: src/Module/Settings/Connectors.php:218 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "" - -#: src/Module/Settings/Connectors.php:218 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "" - -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:215 msgid "Email/Mailbox Setup" msgstr "Configuración de Correo/Buzón" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:216 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Si quieres comunicarte con contactos de correo con este servicio (opcional), especifica cómo conectar con tu buzón." -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:217 msgid "Last successful email check:" msgstr "Última comprobación de correo éxitosa:" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:219 msgid "IMAP server name:" msgstr "Nombre del servidor IMAP:" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:220 msgid "IMAP port:" msgstr "Puerto IMAP:" -#: src/Module/Settings/Connectors.php:228 +#: src/Module/Settings/Connectors.php:221 msgid "Security:" msgstr "Seguridad:" -#: src/Module/Settings/Connectors.php:229 +#: src/Module/Settings/Connectors.php:222 msgid "Email login name:" msgstr "Usuario de Correo:" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:223 msgid "Email password:" msgstr "Contraseña de Correo:" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:224 msgid "Reply-to address:" msgstr "Dirección de respuesta:" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:225 msgid "Send public posts to all email contacts:" msgstr "Enviar notificaciones públicas a todos los correos:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Action after import:" msgstr "Acción al importar:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Move to folder" msgstr "Mover a un folder" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:227 msgid "Move to folder:" msgstr "Mover al folder:" +#: src/Module/Settings/ContactImport.php:63 +msgid "Contact CSV file upload error" +msgstr "Error al subir archivo CSV" + +#: src/Module/Settings/ContactImport.php:82 +msgid "Importing Contacts done" +msgstr "Importación del contacto completada" + +#: src/Module/Settings/ContactImport.php:112 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "Subir archivo CSV que contenga identificador de tus cuentas seguidas en elprimera columna que exportó desde la cuenta anterior." + +#: src/Module/Settings/ContactImport.php:113 +msgid "Upload File" +msgstr "Subir archivo" + +#: src/Module/Settings/ContactImport.php:115 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "" + +#: src/Module/Settings/ContactImport.php:115 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "" + #: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "Se autorizó delegación." @@ -11112,42 +11118,42 @@ msgstr "Palabras clave privadas:" msgid "(Used for searching profiles, never shown to others)" msgstr "(Utilizadas para buscar perfiles, nunca se muestra a otros)" -#: 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/Crop.php:90 +#: src/Module/Settings/Profile/Photo/Crop.php:108 +#: src/Module/Settings/Profile/Photo/Crop.php:126 #: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Ha fallado la reducción de las dimensiones de la imagen [%s]." -#: src/Module/Settings/Profile/Photo/Crop.php:136 +#: src/Module/Settings/Profile/Photo/Crop.php:133 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Recarga la página o limpia la caché del navegador si la foto nueva no aparece inmediatamente." -#: src/Module/Settings/Profile/Photo/Crop.php:141 +#: src/Module/Settings/Profile/Photo/Crop.php:138 msgid "Unable to process image" msgstr "Imposible procesar la imagen" -#: src/Module/Settings/Profile/Photo/Crop.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:157 msgid "Photo not found." msgstr "No se encontró foto." -#: src/Module/Settings/Profile/Photo/Crop.php:182 +#: src/Module/Settings/Profile/Photo/Crop.php:179 msgid "Profile picture successfully updated." msgstr "Foto de perfil actualizado." -#: src/Module/Settings/Profile/Photo/Crop.php:208 -#: src/Module/Settings/Profile/Photo/Crop.php:212 +#: src/Module/Settings/Profile/Photo/Crop.php:205 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Crop Image" msgstr "Recortar imagen" -#: src/Module/Settings/Profile/Photo/Crop.php:209 +#: src/Module/Settings/Profile/Photo/Crop.php:206 msgid "Please adjust the image cropping for optimum viewing." msgstr "Por favor, ajusta el recorte de la imagen para optimizarla." -#: src/Module/Settings/Profile/Photo/Crop.php:211 +#: src/Module/Settings/Profile/Photo/Crop.php:208 msgid "Use Image As Is" msgstr "Usar imagen como esta" @@ -11218,17 +11224,17 @@ msgstr "El Id de Usuario es %d" msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:116 +#: src/Module/Settings/RemoveMe.php:114 msgid "Remove My Account" msgstr "Eliminar mi cuenta" -#: src/Module/Settings/RemoveMe.php:117 +#: src/Module/Settings/RemoveMe.php:115 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Esto eliminará por completo tu cuenta. Una vez hecho no puede deshacerse." -#: src/Module/Settings/RemoveMe.php:122 +#: src/Module/Settings/RemoveMe.php:120 msgid "Please enter your password for verification:" msgstr "Introduce tu contraseña para verificación:" @@ -11623,11 +11629,11 @@ msgstr "" msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:64 +#: src/Module/Special/HTTPException.php:65 msgid "Stack trace:" msgstr "Seguimiento de pila:" -#: src/Module/Special/HTTPException.php:69 +#: src/Module/Special/HTTPException.php:70 #, php-format msgid "Exception thrown in %s:%d" msgstr "Excepción lanzada en %s:%d" @@ -12411,221 +12417,221 @@ msgstr "Por favor contacta con el remitente respondiendo a este mensaje si no de msgid "%s posted an update." msgstr "%s publicó una actualización." -#: src/Object/Post.php:124 +#: src/Object/Post.php:125 msgid "Private Message" msgstr "Mensaje privado" -#: src/Object/Post.php:128 +#: src/Object/Post.php:129 msgid "Public Message" msgstr "" -#: src/Object/Post.php:132 +#: src/Object/Post.php:133 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:168 +#: src/Object/Post.php:169 msgid "This entry was edited" msgstr "Esta entrada fue editada" -#: src/Object/Post.php:196 +#: src/Object/Post.php:197 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:225 src/Object/Post.php:227 +#: src/Object/Post.php:226 src/Object/Post.php:228 msgid "Edit" msgstr "Editar" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Delete globally" msgstr "Borrar Globalmente" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Remove locally" msgstr "Borrar localmente" -#: src/Object/Post.php:268 +#: src/Object/Post.php:269 #, php-format msgid "Block %s" msgstr "Bloquear %s" -#: src/Object/Post.php:273 +#: src/Object/Post.php:274 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:278 +#: src/Object/Post.php:279 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:282 +#: src/Object/Post.php:283 msgid "Report post" msgstr "" -#: src/Object/Post.php:293 +#: src/Object/Post.php:294 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will attend" msgstr "Asistiré" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will not attend" msgstr "No asistiré" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I might attend" msgstr "Podría asistir" -#: src/Object/Post.php:380 +#: src/Object/Post.php:381 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:381 +#: src/Object/Post.php:382 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:382 +#: src/Object/Post.php:383 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:392 +#: src/Object/Post.php:393 msgid "Add star" msgstr "" -#: src/Object/Post.php:393 +#: src/Object/Post.php:394 msgid "Remove star" msgstr "" -#: src/Object/Post.php:394 +#: src/Object/Post.php:395 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:405 +#: src/Object/Post.php:406 msgid "Pin" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:407 msgid "Unpin" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:408 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:410 +#: src/Object/Post.php:411 msgid "Pinned" msgstr "" -#: src/Object/Post.php:415 +#: src/Object/Post.php:416 msgid "Add tag" msgstr "" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote share this" msgstr "Compartir Comentado esto" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote Share" msgstr "Compartir comentado" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare this" msgstr "Compartir esto" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare" msgstr "Compartir" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Cancel your Reshare" msgstr "Cancelar Compartir" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Unshare" msgstr "Dejar de Compartir" -#: src/Object/Post.php:478 +#: src/Object/Post.php:479 #, php-format msgid "%s (Received %s)" msgstr "%s (Recibido %s)" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Comment this item on your system" msgstr "Comentarlo en mi estado" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:514 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:517 +#: src/Object/Post.php:518 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:519 +#: src/Object/Post.php:520 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:543 +#: src/Object/Post.php:544 msgid "to" msgstr "a" -#: src/Object/Post.php:544 +#: src/Object/Post.php:545 msgid "via" msgstr "vía" -#: src/Object/Post.php:545 +#: src/Object/Post.php:546 msgid "Wall-to-Wall" msgstr "Perfil-a-Perfil" -#: src/Object/Post.php:546 +#: src/Object/Post.php:547 msgid "via Wall-To-Wall:" msgstr "via Perfil-a-Perfil:" -#: src/Object/Post.php:599 +#: src/Object/Post.php:600 #, php-format msgid "Reply to %s" msgstr "Responder a %s" -#: src/Object/Post.php:602 +#: src/Object/Post.php:603 msgid "More" msgstr "Mas" -#: src/Object/Post.php:621 +#: src/Object/Post.php:622 msgid "Notifier task is pending" msgstr "Notificador tarea pendiente" -#: src/Object/Post.php:622 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is pending" msgstr "Entrega remota pendiente" -#: src/Object/Post.php:623 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is underway" msgstr "Entrega remota en camino" -#: src/Object/Post.php:624 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is mostly done" msgstr "Entrega remota casi completada" -#: src/Object/Post.php:625 +#: src/Object/Post.php:626 msgid "Delivery to remote servers is done" msgstr "Entrega remota completada" -#: src/Object/Post.php:647 +#: src/Object/Post.php:648 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -12633,74 +12639,74 @@ msgstr[0] "%d comentario" msgstr[1] "%d comentarios" msgstr[2] "%d comentarios" -#: src/Object/Post.php:648 +#: src/Object/Post.php:649 msgid "Show more" msgstr "Mostrar mas" -#: src/Object/Post.php:649 +#: src/Object/Post.php:650 msgid "Show fewer" msgstr "Mostrar menos" -#: src/Object/Post.php:686 +#: src/Object/Post.php:687 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:691 +#: src/Object/Post.php:692 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:696 +#: src/Object/Post.php:697 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:701 +#: src/Object/Post.php:702 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:706 +#: src/Object/Post.php:707 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:711 +#: src/Object/Post.php:712 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:716 +#: src/Object/Post.php:717 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:721 +#: src/Object/Post.php:722 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:726 +#: src/Object/Post.php:727 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:731 +#: src/Object/Post.php:732 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:754 +#: src/Object/Post.php:755 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:557 +#: src/Protocol/ActivityPub/Receiver.php:558 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:530 +#: src/Protocol/Delivery.php:531 msgid "(no subject)" msgstr "(sin asunto)" @@ -12713,20 +12719,20 @@ msgstr "" msgid "Login failed." msgstr "Accesso fallido." -#: src/Security/Authentication.php:260 +#: src/Security/Authentication.php:261 msgid "Login failed. Please check your credentials." msgstr "Acceso falló. Checa tus credenciales." -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:374 #, php-format msgid "Welcome %s" msgstr "Bienvenido %s" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:375 msgid "Please upload a profile photo." msgstr "Por favor sube una foto para el perfil." -#: src/Security/OpenWebAuth.php:149 +#: src/Security/OpenWebAuth.php:150 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s te da la bienvenida %2$s" diff --git a/view/lang/es/strings.php b/view/lang/es/strings.php index 4417704d09..84ec81d98c 100644 --- a/view/lang/es/strings.php +++ b/view/lang/es/strings.php @@ -1073,6 +1073,7 @@ $a->strings['Display'] = 'Interfaz del usuario'; $a->strings['Social Networks'] = 'Redes sociales'; $a->strings['Manage Accounts'] = 'Gestionar cuentas'; $a->strings['Connected apps'] = 'Aplicaciones conectadas'; +$a->strings['Import Contacts'] = 'Importar contactos'; $a->strings['Export personal data'] = 'Exportación de datos personales'; $a->strings['Remove account'] = 'Eliminar cuenta'; $a->strings['This page is missing a url parameter.'] = 'A la página le falta URL.'; @@ -1686,8 +1687,6 @@ $a->strings['Wrong Password.'] = 'Password erróneo'; $a->strings['Invalid email.'] = 'Corréo no válido.'; $a->strings['Cannot change to that email.'] = 'Imposible cambiar a ese correo.'; $a->strings['Settings were not updated.'] = 'Configuración no actualizada'; -$a->strings['Contact CSV file upload error'] = 'Error al subir archivo CSV'; -$a->strings['Importing Contacts done'] = 'Importación del contacto completada'; $a->strings['Relocate message has been send to your contacts'] = 'Mensaje de reubicación enviado a sus contactos.'; $a->strings['Unable to find your profile. Please contact your admin.'] = 'No se encontró tu perfil. Contacta al Administrador.'; $a->strings['Personal Page Subtypes'] = 'Subtipos de Página Personal'; @@ -1766,9 +1765,6 @@ $a->strings['Show notifications of ignored contacts'] = 'Mostrar notificación d $a->strings['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.'] = 'No ves publicaciones de contactos ignorados. Pero todavía ves sus comentarios. Esta configuración controla si aún desea recibir notificaciones regulares causadas por contactos ignorados o no.'; $a->strings['Advanced Account/Page Type Settings'] = 'Configuración avanzada de tipo de Cuenta/Página'; $a->strings['Change the behaviour of this account for special situations'] = 'Cambiar el comportamiento de esta cuenta para situaciones especiales'; -$a->strings['Import Contacts'] = 'Importar contactos'; -$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Subir archivo CSV que contenga identificador de tus cuentas seguidas en elprimera columna que exportó desde la cuenta anterior.'; -$a->strings['Upload File'] = 'Subir archivo'; $a->strings['Relocate'] = 'Relocalizar'; $a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'Si migró este perfil desde otro servidor y algunos contactos no reciben sus publicaciones intente oprimiendo esta opción.'; $a->strings['Resend relocate message to contacts'] = 'Reenviar mensaje de relocalización a contactos'; @@ -1796,6 +1792,10 @@ $a->strings['Send public posts to all email contacts:'] = 'Enviar notificaciones $a->strings['Action after import:'] = 'Acción al importar:'; $a->strings['Move to folder'] = 'Mover a un folder'; $a->strings['Move to folder:'] = 'Mover al folder:'; +$a->strings['Contact CSV file upload error'] = 'Error al subir archivo CSV'; +$a->strings['Importing Contacts done'] = 'Importación del contacto completada'; +$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Subir archivo CSV que contenga identificador de tus cuentas seguidas en elprimera columna que exportó desde la cuenta anterior.'; +$a->strings['Upload File'] = 'Subir archivo'; $a->strings['Delegation successfully granted.'] = 'Se autorizó delegación.'; $a->strings['Parent user not found, unavailable or password doesn\'t match.'] = 'Usuario padre no encontrado, o no coincide contraseña.'; $a->strings['Delegation successfully revoked.'] = 'Delegación revocada con éxito.'; diff --git a/view/lang/et/messages.po b/view/lang/et/messages.po index 13433615e2..10df1ff6bf 100644 --- a/view/lang/et/messages.po +++ b/view/lang/et/messages.po @@ -8,7 +8,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: Rain Hawk, 2019-2022\n" "Language-Team: Estonian (http://app.transifex.com/Friendica/friendica/language/et/)\n" @@ -18,34 +18,34 @@ msgstr "" "Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\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 "Ei leia algset postitust." -#: 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 "Tühi postitus eiratud." -#: 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 "Elementi ei leitud" -#: 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 @@ -56,7 +56,7 @@ msgstr "Elementi ei leitud" #: 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 @@ -65,13 +65,15 @@ msgstr "Elementi ei leitud" #: 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 @@ -80,15 +82,15 @@ msgstr "Elementi ei leitud" msgid "Permission denied." msgstr "Õigus puudub." -#: mod/lostpass.php:28 +#: mod/lostpass.php:27 msgid "No valid account found." msgstr "Valiidset kontot ei leitud." -#: mod/lostpass.php:40 +#: mod/lostpass.php:39 msgid "Password reset request issued. Check your email." msgstr "Paroolimuutmise taotlus teostusel. Kontrolli oma e-posti. " -#: mod/lostpass.php:46 +#: mod/lostpass.php:45 #, php-format msgid "" "\n" @@ -104,7 +106,7 @@ msgid "" "\t\tissued this request." msgstr "" -#: mod/lostpass.php:57 +#: mod/lostpass.php:56 #, php-format msgid "" "\n" @@ -121,70 +123,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "" -#: mod/lostpass.php:72 +#: mod/lostpass.php:71 #, php-format msgid "Password reset requested at %s" msgstr "" -#: 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 "Unustasid oma parooli?" -#: 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 "Sisesta oma emaili aadress ja saada, et taaslähtestada oma parool. Siis kontrolli oma meili lisajuhendite saamiseks. " -#: 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 "Hüüdnimi või email:" -#: mod/lostpass.php:119 +#: mod/lostpass.php:118 msgid "Reset" msgstr "Lähtesta" -#: mod/lostpass.php:134 src/Module/Security/Login.php:161 +#: mod/lostpass.php:133 src/Module/Security/Login.php:161 msgid "Password Reset" msgstr "Lähtesta parool" -#: mod/lostpass.php:135 +#: mod/lostpass.php:134 msgid "Your password has been reset as requested." msgstr "Teie parool on taaslähtestatud nagu taotletud." -#: mod/lostpass.php:136 +#: mod/lostpass.php:135 msgid "Your new password is" msgstr "Sinu uus parool on" -#: mod/lostpass.php:137 +#: mod/lostpass.php:136 msgid "Save or copy your new password - and then" msgstr "Salvesta või kopeeri oma uus parool - ja siis" -#: mod/lostpass.php:138 +#: mod/lostpass.php:137 msgid "click here to login" msgstr "vajuta siia sisselogimiseks" -#: mod/lostpass.php:139 +#: mod/lostpass.php:138 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Su parool on muudetav Seaded lehel peale edukat sisselogimist." -#: 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" @@ -195,7 +197,7 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:152 +#: mod/lostpass.php:151 #, php-format msgid "" "\n" @@ -209,7 +211,7 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:164 +#: mod/lostpass.php:163 #, php-format msgid "Your password has been changed at %s" msgstr "" @@ -273,11 +275,11 @@ msgstr "" msgid "Subject:" msgstr "Teema:" -#: 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 "Sinu sõnum:" -#: 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 "Lae foto üles" @@ -286,16 +288,16 @@ msgstr "Lae foto üles" msgid "Insert web link" msgstr "Lisa hüperlink" -#: 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 "Palun oota" -#: 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 @@ -303,7 +305,7 @@ msgstr "Palun oota" #: 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 @@ -312,7 +314,7 @@ msgstr "Palun oota" #: 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" @@ -370,396 +372,396 @@ msgid_plural "%d messages" msgstr[0] "%d sõnum" msgstr[1] "%d sõnumid" -#: mod/notes.php:40 src/Module/BaseProfile.php:93 +#: mod/notes.php:41 src/Module/BaseProfile.php:93 msgid "Personal Notes" msgstr "Isiklikud märkmed" -#: 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 "Salvesta" -#: 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 "Foto albumid" -#: 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 "Hiljutised fotod" -#: 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 "Lae üles uusi fotosid" -#: 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 "igaüks" -#: mod/photos.php:142 +#: mod/photos.php:140 msgid "Contact information unavailable" msgstr "Kontakti infot pole saadaval" -#: mod/photos.php:171 +#: mod/photos.php:169 msgid "Album not found." msgstr "Albumit ei leitud" -#: 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 "see foto" -#: mod/photos.php:504 +#: mod/photos.php:502 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s täägiti kohas %2$s %3$s poolt" -#: 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 "Avalik ligipääs keelatud." -#: mod/photos.php:546 +#: mod/photos.php:544 msgid "No photos selected" msgstr "Fotosid pole valitud" -#: mod/photos.php:674 +#: mod/photos.php:672 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:681 +#: mod/photos.php:679 msgid "Upload Photos" msgstr "Lae fotod üles" -#: mod/photos.php:685 mod/photos.php:774 +#: mod/photos.php:683 mod/photos.php:772 msgid "New album name: " msgstr "Uus albuminimi" -#: mod/photos.php:686 +#: mod/photos.php:684 msgid "or select existing album:" msgstr "või vali olemasolev album:" -#: mod/photos.php:687 +#: mod/photos.php:685 msgid "Do not show a status post for this upload" msgstr "Ära näita staatuse postitust selle üleslaadimise kohta" -#: 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 "Õigused" -#: mod/photos.php:755 +#: mod/photos.php:753 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Kas soovid tõesti kustutada selle fotoalbumi ja kõik fotod?" -#: mod/photos.php:756 mod/photos.php:779 +#: mod/photos.php:754 mod/photos.php:777 msgid "Delete Album" msgstr "Kustuta album" -#: 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 "Katkesta" -#: mod/photos.php:783 +#: mod/photos.php:781 msgid "Edit Album" msgstr "Muuda Albumit" -#: 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 "Uusimad esmalt" -#: mod/photos.php:790 +#: mod/photos.php:788 msgid "Show Oldest First" msgstr "Vanimad esmalt" -#: mod/photos.php:811 src/Module/Profile/Photos.php:335 +#: mod/photos.php:809 src/Module/Profile/Photos.php:343 msgid "View Photo" msgstr "Kuva foto" -#: mod/photos.php:843 +#: mod/photos.php:841 msgid "Permission denied. Access to this item may be restricted." msgstr "Ebapiisavad õigused. Ligipääs siia võib olla piiratud." -#: mod/photos.php:845 +#: mod/photos.php:843 msgid "Photo not available" msgstr "Foto ei ole saadaval" -#: mod/photos.php:855 +#: mod/photos.php:853 msgid "Do you really want to delete this photo?" msgstr "Kas soovid tõesti selle foto kustutada?" -#: mod/photos.php:856 mod/photos.php:1056 +#: mod/photos.php:854 mod/photos.php:1054 msgid "Delete Photo" msgstr "Kustuta foto" -#: mod/photos.php:954 +#: mod/photos.php:952 msgid "View photo" msgstr "Kuva foto" -#: mod/photos.php:956 +#: mod/photos.php:954 msgid "Edit photo" msgstr "Muuda foto" -#: mod/photos.php:957 +#: mod/photos.php:955 msgid "Delete photo" msgstr "" -#: mod/photos.php:958 +#: mod/photos.php:956 msgid "Use as profile photo" msgstr "Kasuta profiilipildina" -#: mod/photos.php:965 +#: mod/photos.php:963 msgid "Private Photo" msgstr "" -#: mod/photos.php:971 +#: mod/photos.php:969 msgid "View Full Size" msgstr "Kuva täismõõdus" -#: mod/photos.php:1024 +#: mod/photos.php:1022 msgid "Tags: " msgstr "" -#: mod/photos.php:1027 +#: mod/photos.php:1025 msgid "[Select tags to remove]" msgstr "[vali tag` id mida eemaldada]" -#: mod/photos.php:1042 +#: mod/photos.php:1040 msgid "New album name" msgstr "Uus albuminimi" -#: mod/photos.php:1043 +#: mod/photos.php:1041 msgid "Caption" msgstr "" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "Add a Tag" msgstr "Lisa Tag" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Näide: @mati, @Kati_Murutar, @jim@example.com, #Viljandi, #eestimaa, #matkamine" -#: mod/photos.php:1045 +#: mod/photos.php:1043 msgid "Do not rotate" msgstr "Ära pööra" -#: mod/photos.php:1046 +#: mod/photos.php:1044 msgid "Rotate CW (right)" msgstr "Pööra CW (paremale)" -#: mod/photos.php:1047 +#: mod/photos.php:1045 msgid "Rotate CCW (left)" msgstr "Pööra CCW (vasakule)" -#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: mod/photos.php:1091 mod/photos.php:1147 mod/photos.php:1227 #: src/Module/Contact.php:600 src/Module/Item/Compose.php:184 -#: src/Object/Post.php:1142 +#: src/Object/Post.php:1143 msgid "This is you" msgstr "See oled sina" -#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 -#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:598 -#: src/Object/Post.php:1144 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:599 +#: src/Object/Post.php:1145 msgid "Comment" msgstr "Kommentaar" -#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 -#: src/Content/Conversation.php:401 src/Module/Calendar/Event/Form.php:234 +#: 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 -#: src/Object/Post.php:1158 +#: src/Object/Post.php:1159 msgid "Preview" msgstr "Eelvaade" -#: mod/photos.php:1098 src/Content/Conversation.php:355 -#: src/Module/Post/Edit.php:121 src/Object/Post.php:1146 +#: mod/photos.php:1096 src/Content/Conversation.php:357 +#: src/Module/Post/Edit.php:121 src/Object/Post.php:1147 msgid "Loading..." msgstr "" -#: mod/photos.php:1190 src/Content/Conversation.php:1485 -#: src/Object/Post.php:260 +#: mod/photos.php:1188 src/Content/Conversation.php:1487 +#: src/Object/Post.php:261 msgid "Select" msgstr "Vali" -#: mod/photos.php:1191 src/Content/Conversation.php:1486 -#: 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:233 +#: 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 +#: src/Module/Settings/Connectors.php:226 #: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Kustuta" -#: mod/photos.php:1252 src/Object/Post.php:426 +#: mod/photos.php:1250 src/Object/Post.php:427 msgid "Like" msgstr "" -#: mod/photos.php:1253 src/Object/Post.php:426 +#: mod/photos.php:1251 src/Object/Post.php:427 msgid "I like this (toggle)" msgstr "Mulle meeldib see (toggle)" -#: mod/photos.php:1254 src/Object/Post.php:427 +#: mod/photos.php:1252 src/Object/Post.php:428 msgid "Dislike" msgstr "" -#: mod/photos.php:1256 src/Object/Post.php:427 +#: mod/photos.php:1254 src/Object/Post.php:428 msgid "I don't like this (toggle)" msgstr "Mulle ei meeldi see (toggle)" -#: mod/photos.php:1278 +#: mod/photos.php:1276 msgid "Map" msgstr "Kaart" -#: src/App.php:467 +#: src/App.php:255 msgid "Apologies but the website is unavailable at the moment." msgstr "" -#: src/App/Page.php:237 +#: src/App/Page.php:241 msgid "Delete this item?" msgstr "Kustutada see element?" -#: src/App/Page.php:238 +#: src/App/Page.php:242 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:239 +#: src/App/Page.php:243 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:240 +#: src/App/Page.php:244 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:241 +#: src/App/Page.php:245 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:242 src/Module/Settings/Server/Action.php:47 +#: src/App/Page.php:246 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:244 +#: src/App/Page.php:248 msgid "Like not successful" msgstr "" -#: src/App/Page.php:245 +#: src/App/Page.php:249 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:246 +#: src/App/Page.php:250 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:247 +#: src/App/Page.php:251 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:248 +#: src/App/Page.php:252 msgid "Backend error" msgstr "" -#: src/App/Page.php:249 +#: src/App/Page.php:253 msgid "Network error" msgstr "" -#: src/App/Page.php:252 +#: src/App/Page.php:256 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:257 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:254 +#: src/App/Page.php:258 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:255 +#: src/App/Page.php:259 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:256 +#: src/App/Page.php:260 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:261 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:262 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:263 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:264 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:265 msgid "Remove file" msgstr "" -#: src/App/Page.php:262 +#: src/App/Page.php:266 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:346 +#: src/App/Page.php:350 msgid "toggle mobile" msgstr "vaheta mobiilseks" @@ -792,7 +794,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:181 src/Module/Contact.php:395 +#: src/Content/Widget.php:254 src/Core/ACL.php:182 src/Module/Contact.php:395 #: src/Module/Privacy/PermissionTooltip.php:150 #: src/Module/Privacy/PermissionTooltip.php:172 #: src/Module/Settings/Channels.php:146 @@ -834,7 +836,7 @@ msgstr "" msgid "The contact entries have been archived" msgstr "Selle kontakti kirjed arhiveeritud" -#: src/Console/ClearAvatarCache.php:73 +#: src/Console/ClearAvatarCache.php:74 msgid "" "The avatar cache needs to be disabled in local.config.php to use this " "command." @@ -920,22 +922,22 @@ msgstr "" msgid "no resource in photo %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:123 +#: src/Console/MoveToAvatarCache.php:127 #, php-format msgid "no photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:132 +#: src/Console/MoveToAvatarCache.php:136 #, php-format msgid "no image data for photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:141 +#: src/Console/MoveToAvatarCache.php:145 #, php-format msgid "invalid image for id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:154 +#: src/Console/MoveToAvatarCache.php:158 #, php-format msgid "Quit on invalid photo %s" msgstr "" @@ -965,11 +967,14 @@ msgstr "" msgid "Enter user nickname: " msgstr "" -#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Console/User.php:168 src/Model/User.php:830 #: src/Module/Api/Twitter/ContactEndpoint.php:62 -#: 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/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/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "Kasutajat ei leitud" @@ -979,12 +984,12 @@ msgid "Enter new password: " msgstr "Sisesta uus parool:" #: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 -#: src/Module/Settings/Account.php:59 +#: src/Module/Settings/Account.php:57 msgid "Password update failed. Please try again." msgstr "Parooli uuendus nurjus. Palun proovi uuesti." #: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 -#: src/Module/Settings/Account.php:62 +#: src/Module/Settings/Account.php:60 msgid "Password changed." msgstr "Parool muudetud." @@ -1065,86 +1070,86 @@ msgstr "Nädalas" msgid "Monthly" msgstr "Kuus" -#: src/Content/ContactSelector.php:118 +#: src/Content/ContactSelector.php:117 msgid "DFRN" msgstr "" -#: src/Content/ContactSelector.php:119 +#: src/Content/ContactSelector.php:118 msgid "OStatus" msgstr "" -#: src/Content/ContactSelector.php:120 +#: src/Content/ContactSelector.php:119 msgid "RSS/Atom" msgstr "" -#: src/Content/ContactSelector.php:121 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Content/ContactSelector.php:120 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:58 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "Email" -#: src/Content/ContactSelector.php:122 src/Module/Debug/Babel.php:273 +#: src/Content/ContactSelector.php:121 src/Module/Debug/Babel.php:273 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:123 +#: src/Content/ContactSelector.php:122 msgid "Zot!" msgstr "" -#: src/Content/ContactSelector.php:124 +#: src/Content/ContactSelector.php:123 msgid "LinkedIn" msgstr "" -#: src/Content/ContactSelector.php:125 +#: src/Content/ContactSelector.php:124 msgid "XMPP/IM" msgstr "" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:125 msgid "MySpace" msgstr "" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:126 msgid "Google+" msgstr "" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:127 msgid "pump.io" msgstr "" -#: src/Content/ContactSelector.php:129 +#: src/Content/ContactSelector.php:128 msgid "Twitter" msgstr "" -#: src/Content/ContactSelector.php:130 +#: src/Content/ContactSelector.php:129 msgid "Discourse" msgstr "" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:130 msgid "Diaspora Connector" msgstr "" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:131 msgid "GNU Social Connector" msgstr "" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:132 msgid "ActivityPub" msgstr "" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:133 msgid "pnut" msgstr "" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:134 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:135 msgid "Bluesky" msgstr "" @@ -1153,374 +1158,374 @@ msgstr "" msgid "%s (via %s)" msgstr "" -#: src/Content/Conversation.php:213 +#: src/Content/Conversation.php:215 msgid "and" msgstr "ja" -#: src/Content/Conversation.php:216 +#: src/Content/Conversation.php:218 #, php-format msgid "and %d other people" msgstr "" -#: src/Content/Conversation.php:222 +#: src/Content/Conversation.php:224 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:224 +#: src/Content/Conversation.php:226 #, 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:226 +#: src/Content/Conversation.php:228 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:230 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:230 +#: src/Content/Conversation.php:232 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:232 +#: src/Content/Conversation.php:234 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:263 +#: src/Content/Conversation.php:265 #, php-format msgid " likes this" msgid_plural " like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:266 +#: src/Content/Conversation.php:268 #, php-format msgid " doesn't like this" msgid_plural " don't like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:269 +#: src/Content/Conversation.php:271 #, php-format msgid " attends" msgid_plural " attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:272 +#: src/Content/Conversation.php:274 #, php-format msgid " doesn't attend" msgid_plural " don't attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:275 +#: src/Content/Conversation.php:277 #, php-format msgid " attends maybe" msgid_plural " attend maybe" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:278 +#: src/Content/Conversation.php:280 #, php-format msgid " reshared this" msgid_plural " reshared this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:324 +#: src/Content/Conversation.php:326 msgid "Visible to everybody" msgstr "" -#: src/Content/Conversation.php:325 src/Module/Item/Compose.php:196 -#: src/Object/Post.php:1157 +#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196 +#: src/Object/Post.php:1158 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Palun sisesta pildi/video/audio/veebilehe URL:" -#: src/Content/Conversation.php:326 +#: src/Content/Conversation.php:328 msgid "Tag term:" msgstr "Tag`i tingimus:" -#: src/Content/Conversation.php:327 src/Module/Filer/SaveTag.php:59 +#: src/Content/Conversation.php:329 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Salvesta kausta:" -#: src/Content/Conversation.php:328 +#: src/Content/Conversation.php:330 msgid "Where are you right now?" msgstr "Kus sa hetkel oled?" -#: src/Content/Conversation.php:329 +#: src/Content/Conversation.php:331 msgid "Delete item(s)?" msgstr "Kustutada element(id)?" -#: src/Content/Conversation.php:341 src/Module/Item/Compose.php:171 +#: src/Content/Conversation.php:343 src/Module/Item/Compose.php:171 msgid "Created at" msgstr "" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:353 msgid "New Post" msgstr "Uus postitus" -#: src/Content/Conversation.php:354 +#: src/Content/Conversation.php:356 msgid "Share" msgstr "Jaga" -#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:123 +#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:123 msgid "upload photo" msgstr "lae foto üles" -#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:124 +#: src/Content/Conversation.php:360 src/Module/Post/Edit.php:124 msgid "Attach file" msgstr "Manusta fail" -#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:125 +#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:125 msgid "attach file" msgstr "manusta fail" -#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:186 -#: src/Module/Post/Edit.php:162 src/Object/Post.php:1147 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1148 msgid "Bold" msgstr "Rasvane" -#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:187 -#: src/Module/Post/Edit.php:163 src/Object/Post.php:1148 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1149 msgid "Italic" msgstr "" -#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:188 -#: src/Module/Post/Edit.php:164 src/Object/Post.php:1149 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1150 msgid "Underline" msgstr "Allajoonitud" -#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:189 -#: src/Module/Post/Edit.php:165 src/Object/Post.php:1151 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:165 src/Object/Post.php:1152 msgid "Quote" msgstr "Tsitaat" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:166 src/Object/Post.php:1152 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:166 src/Object/Post.php:1153 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:191 -#: src/Object/Post.php:1150 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Object/Post.php:1151 msgid "Content Warning" msgstr "" -#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:167 src/Object/Post.php:1153 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:167 src/Object/Post.php:1154 msgid "Code" msgstr "Kood" -#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:193 -#: src/Object/Post.php:1154 +#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1155 msgid "Image" msgstr "Pilt" -#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:168 src/Object/Post.php:1155 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:168 src/Object/Post.php:1156 msgid "Link" msgstr "" -#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:195 -#: src/Module/Post/Edit.php:169 src/Object/Post.php:1156 +#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:169 src/Object/Post.php:1157 msgid "Link or Media" msgstr "Link või meediafail" -#: src/Content/Conversation.php:370 +#: src/Content/Conversation.php:372 msgid "Video" msgstr "" -#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:198 +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:198 #: src/Module/Post/Edit.php:132 msgid "Set your location" msgstr "Vali oma asukoht" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:133 msgid "set location" msgstr "vali asukoht" -#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:134 msgid "Clear browser location" msgstr "Kustuta sirviku asukoht" -#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:135 +#: src/Content/Conversation.php:376 src/Module/Post/Edit.php:135 msgid "clear location" msgstr "kustuta asukoht" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:203 +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:203 #: src/Module/Post/Edit.php:148 msgid "Set title" msgstr "Pane pealkiri" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:204 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 #: src/Module/Post/Edit.php:150 msgid "Categories (comma-separated list)" msgstr "Kategooriad (komaga-eraldatud nimistu)" -#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:220 +#: src/Content/Conversation.php:385 src/Module/Item/Compose.php:220 msgid "Scheduled at" msgstr "Ajastatud" -#: src/Content/Conversation.php:388 src/Module/Post/Edit.php:137 +#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:137 msgid "Permission settings" msgstr "Õiguste sätted" -#: src/Content/Conversation.php:397 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:399 src/Module/Post/Edit.php:146 msgid "Public post" msgstr "Avalik postitus" -#: src/Content/Conversation.php:411 src/Content/Widget/VCard.php:121 +#: 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 msgid "Message" msgstr "Sõnum" -#: src/Content/Conversation.php:412 src/Module/Post/Edit.php:173 +#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:173 #: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Sirvik" -#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:176 +#: src/Content/Conversation.php:416 src/Module/Post/Edit.php:176 msgid "Open Compose page" msgstr "" -#: src/Content/Conversation.php:581 +#: src/Content/Conversation.php:583 msgid "remove" msgstr "eemalda" -#: src/Content/Conversation.php:585 +#: src/Content/Conversation.php:587 msgid "Delete Selected Items" msgstr "Kustuta valitud elemendid" -#: src/Content/Conversation.php:713 src/Content/Conversation.php:716 -#: src/Content/Conversation.php:719 src/Content/Conversation.php:722 -#: src/Content/Conversation.php:725 +#: 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 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: src/Content/Conversation.php:728 +#: src/Content/Conversation.php:730 #, php-format msgid "You are following %s." msgstr "" -#: src/Content/Conversation.php:733 +#: src/Content/Conversation.php:735 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:735 +#: src/Content/Conversation.php:737 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:755 +#: src/Content/Conversation.php:757 #, php-format msgid "%s reshared this." msgstr "" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 msgid "Reshared" msgstr "Taasjagatud" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 #, php-format msgid "Reshared by %s <%s>" msgstr "" -#: src/Content/Conversation.php:760 +#: src/Content/Conversation.php:762 #, php-format msgid "%s is participating in this thread." msgstr "" -#: src/Content/Conversation.php:763 +#: src/Content/Conversation.php:765 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:766 +#: src/Content/Conversation.php:768 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 msgid "Fetched" msgstr "" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 #, php-format msgid "Fetched because of %s <%s>" msgstr "" -#: src/Content/Conversation.php:775 +#: src/Content/Conversation.php:777 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:778 +#: src/Content/Conversation.php:780 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:781 +#: src/Content/Conversation.php:783 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:784 +#: src/Content/Conversation.php:786 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:787 +#: src/Content/Conversation.php:789 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1505 src/Object/Post.php:247 +#: src/Content/Conversation.php:1507 src/Object/Post.php:248 msgid "Pinned item" msgstr "" -#: src/Content/Conversation.php:1522 src/Object/Post.php:541 -#: src/Object/Post.php:542 +#: src/Content/Conversation.php:1524 src/Object/Post.php:542 +#: src/Object/Post.php:543 #, php-format msgid "View %s's profile @ %s" msgstr "" -#: src/Content/Conversation.php:1536 src/Object/Post.php:529 +#: src/Content/Conversation.php:1538 src/Object/Post.php:530 msgid "Categories:" msgstr "Kategooriad:" -#: src/Content/Conversation.php:1537 src/Object/Post.php:530 +#: src/Content/Conversation.php:1539 src/Object/Post.php:531 msgid "Filed under:" msgstr "" -#: src/Content/Conversation.php:1545 src/Object/Post.php:556 +#: src/Content/Conversation.php:1547 src/Object/Post.php:557 #, php-format msgid "%s from %s" msgstr "" -#: src/Content/Conversation.php:1561 +#: src/Content/Conversation.php:1563 msgid "View in context" msgstr "" @@ -1653,7 +1658,7 @@ msgstr "Isiklik" msgid "Posts that mention or involve you" msgstr "Postitused, mis mainivad või puudutavad sind" -#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:398 msgid "Starred" msgstr "Tähega märgitud" @@ -1740,7 +1745,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:552 src/Model/User.php:1390 +#: src/Content/Widget.php:555 src/Model/User.php:1390 msgid "Groups" msgstr "" @@ -1748,7 +1753,7 @@ msgstr "" msgid "Display posts that have been distributed by the selected group." msgstr "" -#: src/Content/Feature.php:117 src/Content/Widget.php:521 +#: src/Content/Feature.php:117 src/Content/Widget.php:524 msgid "Archives" msgstr "Arhiivid" @@ -1764,8 +1769,8 @@ msgstr "Protokollid" msgid "Display posts with the selected protocols." msgstr "" -#: src/Content/Feature.php:119 src/Content/Widget.php:558 -#: src/Module/Settings/Account.php:429 +#: src/Content/Feature.php:119 src/Content/Widget.php:561 +#: src/Module/Settings/Account.php:391 msgid "Account Types" msgstr "Kontode tüübid" @@ -1773,7 +1778,7 @@ msgstr "Kontode tüübid" msgid "Display posts done by accounts with the selected account type." msgstr "" -#: src/Content/Feature.php:120 src/Content/Widget.php:607 +#: 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 msgid "Channels" @@ -1799,7 +1804,7 @@ msgstr "Salvestatud kaustad" msgid "Display a list of folders in which posts are stored." msgstr "" -#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:189 msgid "Own Contacts" msgstr "" @@ -1855,12 +1860,12 @@ msgstr "" msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:139 src/Content/Widget.php:527 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:530 msgid "show less" msgstr "" #: src/Content/GroupManager.php:140 src/Content/Widget.php:425 -#: src/Content/Widget.php:528 +#: src/Content/Widget.php:531 msgid "show more" msgstr "näita veel" @@ -1868,66 +1873,66 @@ msgstr "näita veel" msgid "Create new group" msgstr "" -#: src/Content/Item.php:317 src/Model/Item.php:3273 +#: src/Content/Item.php:322 src/Model/Item.php:3281 msgid "event" msgstr "sündmus" -#: src/Content/Item.php:320 src/Content/Item.php:330 +#: src/Content/Item.php:325 src/Content/Item.php:335 msgid "status" msgstr "staatus" -#: src/Content/Item.php:326 src/Model/Item.php:3275 +#: src/Content/Item.php:331 src/Model/Item.php:3283 #: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "foto" -#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 +#: src/Content/Item.php:345 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:414 view/theme/frio/theme.php:253 +#: src/Content/Item.php:419 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Jälgi vestlust" -#: src/Content/Item.php:415 src/Model/Contact.php:1244 +#: src/Content/Item.php:420 src/Model/Contact.php:1245 msgid "View Status" msgstr "Vaata staatust" -#: 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/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 msgid "View Profile" msgstr "Vaata profiili" -#: src/Content/Item.php:417 src/Model/Contact.php:1246 +#: src/Content/Item.php:422 src/Model/Contact.php:1247 msgid "View Photos" msgstr "Vaata fotosid" -#: src/Content/Item.php:418 src/Model/Contact.php:1213 +#: src/Content/Item.php:423 src/Model/Contact.php:1214 #: src/Model/Profile.php:446 msgid "Network Posts" msgstr "Võrgupostitused" -#: src/Content/Item.php:419 src/Model/Contact.php:1237 -#: src/Model/Contact.php:1248 +#: src/Content/Item.php:424 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1249 msgid "View Contact" msgstr "Vaata kontakti" -#: src/Content/Item.php:420 src/Model/Contact.php:1249 +#: src/Content/Item.php:425 src/Model/Contact.php:1250 msgid "Send PM" msgstr "Saada privaatsõnum" -#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Content/Item.php:426 src/Module/Contact.php:449 #: src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:104 -#: src/Module/Moderation/Users/Active.php:123 -#: src/Module/Moderation/Users/Index.php:138 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Index.php:141 msgid "Block" msgstr "Blokeeri" -#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Content/Item.php:427 src/Module/Contact.php:450 #: src/Module/Contact/Profile.php:532 #: src/Module/Notifications/Introductions.php:126 #: src/Module/Notifications/Introductions.php:199 @@ -1935,27 +1940,27 @@ msgstr "Blokeeri" msgid "Ignore" msgstr "Ignoreeri" -#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Content/Item.php:428 src/Module/Contact.php:451 #: src/Module/Contact/Profile.php:540 msgid "Collapse" msgstr "" -#: src/Content/Item.php:424 src/Object/Post.php:288 +#: src/Content/Item.php:429 src/Object/Post.php:289 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 -#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 +#: src/Content/Item.php:433 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:503 msgid "Languages" msgstr "" -#: src/Content/Item.php:431 src/Object/Post.php:582 +#: src/Content/Item.php:436 src/Object/Post.php:583 msgid "Search Text" msgstr "" -#: src/Content/Item.php:436 src/Content/Widget.php:66 -#: src/Model/Contact.php:1238 src/Model/Contact.php:1250 +#: src/Content/Item.php:441 src/Content/Widget.php:66 +#: src/Model/Contact.php:1239 src/Model/Contact.php:1251 #: src/Module/Contact/Follow.php:152 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Ühendu/Järgi" @@ -1968,7 +1973,7 @@ msgstr "" msgid "Nothing new here" msgstr "Ei midagi uut siin" -#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:64 msgid "Go back" msgstr "" @@ -2182,7 +2187,7 @@ msgstr "Teavitused" msgid "See all notifications" msgstr "Vaata kõiki teavitusi" -#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:226 msgid "Mark as seen" msgstr "Märgi loetuks" @@ -2210,8 +2215,8 @@ msgstr "" msgid "Manage other pages" msgstr "Halda teisi lehti" -#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 -#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:170 +#: 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/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Sätted" @@ -2239,10 +2244,10 @@ msgstr "Saidi seadmine ja sätted" #: src/Module/Moderation/Blocklist/Server/Index.php:84 #: 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:119 -#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 #: src/Module/Moderation/Users/Deleted.php:66 -#: src/Module/Moderation/Users/Index.php:133 +#: src/Module/Moderation/Users/Index.php:136 msgid "Moderation" msgstr "" @@ -2274,33 +2279,33 @@ msgstr "järgmine" msgid "last" msgstr "viimane" -#: src/Content/Text/BBCode.php:908 +#: src/Content/Text/BBCode.php:903 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:931 src/Model/Item.php:4069 -#: src/Model/Item.php:4075 src/Model/Item.php:4076 +#: src/Content/Text/BBCode.php:926 src/Model/Item.php:4080 +#: src/Model/Item.php:4086 src/Model/Item.php:4087 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1745 src/Content/Text/HTML.php:892 +#: src/Content/Text/BBCode.php:1740 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Klõpsa ava/sulge" -#: src/Content/Text/BBCode.php:1800 +#: src/Content/Text/BBCode.php:1795 msgid "$1 wrote:" msgstr "" -#: src/Content/Text/BBCode.php:1874 src/Content/Text/BBCode.php:1875 +#: src/Content/Text/BBCode.php:1869 src/Content/Text/BBCode.php:1870 msgid "Encrypted content" msgstr "Krüptitud sisu" -#: src/Content/Text/BBCode.php:2208 +#: src/Content/Text/BBCode.php:2203 msgid "Invalid source protocol" msgstr "" -#: src/Content/Text/BBCode.php:2227 +#: src/Content/Text/BBCode.php:2222 msgid "Invalid link protocol" msgstr "" @@ -2353,7 +2358,7 @@ msgid "Examples: Robert Morgenstein, Fishing" msgstr "" #: src/Content/Widget.php:68 src/Module/Contact.php:441 -#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 +#: src/Module/Directory.php:82 view/theme/vier/theme.php:185 msgid "Find" msgstr "Otsi" @@ -2374,7 +2379,7 @@ msgstr "Suvaline profiil" msgid "Invite Friends" msgstr "Kutsu sõpru" -#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: src/Content/Widget.php:73 src/Module/Directory.php:74 #: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Globaalne kataloog" @@ -2395,7 +2400,7 @@ msgstr "" msgid "Relationships" msgstr "Suhted" -#: src/Content/Widget.php:264 src/Module/Circle.php:280 +#: src/Content/Widget.php:264 src/Module/Circle.php:281 #: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Kõik kontaktid" @@ -2419,27 +2424,27 @@ msgid_plural "%d contacts in common" msgstr[0] "%d ühine kontakt" msgstr[1] "%d ühine kontakt" -#: src/Content/Widget.php:529 +#: src/Content/Widget.php:532 msgid "On this date" msgstr "" -#: src/Content/Widget.php:549 +#: src/Content/Widget.php:552 msgid "Persons" msgstr "Isikud" -#: src/Content/Widget.php:550 +#: src/Content/Widget.php:553 msgid "Organisations" msgstr "Organisatsioonid" -#: src/Content/Widget.php:551 src/Model/Contact.php:1750 +#: src/Content/Widget.php:554 src/Model/Contact.php:1751 msgid "News" msgstr "Uudised" -#: src/Content/Widget.php:553 +#: src/Content/Widget.php:556 msgid "Relays" msgstr "" -#: src/Content/Widget.php:560 src/Module/Moderation/BaseUsers.php:58 +#: src/Content/Widget.php:563 src/Module/Moderation/BaseUsers.php:58 msgid "All" msgstr "" @@ -2485,12 +2490,12 @@ msgstr[1] "" msgid "More Trending Tags" msgstr "Veel trendikaid silte" -#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1207 +#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1208 #: src/Model/Profile.php:440 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1211 +#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1212 #: src/Model/Profile.php:444 src/Module/Moderation/Item/Source.php:80 msgid "Mention" msgstr "" @@ -2505,10 +2510,10 @@ msgstr "" msgid "Matrix:" msgstr "" -#: src/Content/Widget/VCard.php:112 src/Model/Event.php:68 -#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: 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:134 src/Module/Notifications/Introductions.php:180 +#: src/Module/Directory.php:133 src/Module/Notifications/Introductions.php:180 #: src/Module/Profile/Profile.php:212 msgid "Location:" msgstr "Asukoht:" @@ -2518,75 +2523,75 @@ msgstr "Asukoht:" msgid "Network:" msgstr "Võrk" -#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1239 -#: src/Model/Contact.php:1251 src/Model/Profile.php:457 +#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1252 src/Model/Profile.php:457 #: src/Module/Contact/Profile.php:476 msgid "Unfollow" msgstr "" -#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1209 +#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1210 #: src/Model/Profile.php:442 msgid "View group" msgstr "" -#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:260 +#: src/Core/ACL.php:153 src/Module/Profile/Profile.php:260 msgid "Yourself" msgstr "" -#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Core/ACL.php:189 src/Module/Privacy/PermissionTooltip.php:156 #: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "" -#: src/Core/ACL.php:280 +#: src/Core/ACL.php:281 msgid "Post to Email" msgstr "Postita meilile" -#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Core/ACL.php:308 src/Module/Privacy/PermissionTooltip.php:103 #: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "Avalik" -#: src/Core/ACL.php:308 +#: src/Core/ACL.php:309 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:309 src/Module/Privacy/PermissionTooltip.php:105 +#: src/Core/ACL.php:310 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "Piiratud/Privaatne" -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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:310 +#: src/Core/ACL.php:311 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:311 +#: src/Core/ACL.php:312 msgid "Show to:" msgstr "" -#: src/Core/ACL.php:312 +#: src/Core/ACL.php:313 msgid "Except to:" msgstr "" -#: src/Core/ACL.php:313 src/Module/Post/Edit.php:145 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:145 msgid "CC: email addresses" msgstr "CC: emaili addressid" -#: src/Core/ACL.php:314 src/Module/Post/Edit.php:151 +#: src/Core/ACL.php:315 src/Module/Post/Edit.php:151 msgid "Example: bob@example.com, mary@example.com" msgstr "" -#: src/Core/ACL.php:315 +#: src/Core/ACL.php:316 msgid "Connectors" msgstr "" @@ -2921,176 +2926,176 @@ msgstr "" msgid "Could not connect to database." msgstr "" -#: src/Core/L10n.php:430 src/Model/Item.php:2316 +#: src/Core/L10n.php:426 src/Model/Item.php:2324 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:437 +#: src/Core/L10n.php:433 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Core/L10n.php:481 src/Model/Event.php:418 #: src/Module/Settings/Display.php:292 msgid "Monday" msgstr "Esmaspäev" -#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Core/L10n.php:481 src/Model/Event.php:419 #: src/Module/Settings/Display.php:293 msgid "Tuesday" msgstr "Teisipäev" -#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Core/L10n.php:481 src/Model/Event.php:420 #: src/Module/Settings/Display.php:294 msgid "Wednesday" msgstr "Kolmapäev" -#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Core/L10n.php:481 src/Model/Event.php:421 #: src/Module/Settings/Display.php:295 msgid "Thursday" msgstr "Neljapäev" -#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Core/L10n.php:481 src/Model/Event.php:422 #: src/Module/Settings/Display.php:296 msgid "Friday" msgstr "Reede" -#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Core/L10n.php:481 src/Model/Event.php:423 #: src/Module/Settings/Display.php:297 msgid "Saturday" msgstr "Laupäev" -#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Core/L10n.php:481 src/Model/Event.php:417 #: src/Module/Settings/Display.php:291 msgid "Sunday" msgstr "Pühapäev" -#: src/Core/L10n.php:489 src/Model/Event.php:436 +#: src/Core/L10n.php:485 src/Model/Event.php:438 msgid "January" msgstr "Jaanuar" -#: src/Core/L10n.php:489 src/Model/Event.php:437 +#: src/Core/L10n.php:485 src/Model/Event.php:439 msgid "February" msgstr "Veebruar" -#: src/Core/L10n.php:489 src/Model/Event.php:438 +#: src/Core/L10n.php:485 src/Model/Event.php:440 msgid "March" msgstr "Märts" -#: src/Core/L10n.php:489 src/Model/Event.php:439 +#: src/Core/L10n.php:485 src/Model/Event.php:441 msgid "April" msgstr "Aprill" -#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 +#: src/Core/L10n.php:485 src/Core/L10n.php:504 src/Model/Event.php:429 msgid "May" msgstr "Mai" -#: src/Core/L10n.php:489 src/Model/Event.php:440 +#: src/Core/L10n.php:485 src/Model/Event.php:442 msgid "June" msgstr "Juuni" -#: src/Core/L10n.php:489 src/Model/Event.php:441 +#: src/Core/L10n.php:485 src/Model/Event.php:443 msgid "July" msgstr "Juuli" -#: src/Core/L10n.php:489 src/Model/Event.php:442 +#: src/Core/L10n.php:485 src/Model/Event.php:444 msgid "August" msgstr "August" -#: src/Core/L10n.php:489 src/Model/Event.php:443 +#: src/Core/L10n.php:485 src/Model/Event.php:445 msgid "September" msgstr "" -#: src/Core/L10n.php:489 src/Model/Event.php:444 +#: src/Core/L10n.php:485 src/Model/Event.php:446 msgid "October" msgstr "Oktoober" -#: src/Core/L10n.php:489 src/Model/Event.php:445 +#: src/Core/L10n.php:485 src/Model/Event.php:447 msgid "November" msgstr "" -#: src/Core/L10n.php:489 src/Model/Event.php:446 +#: src/Core/L10n.php:485 src/Model/Event.php:448 msgid "December" msgstr "Detsember" -#: src/Core/L10n.php:504 src/Model/Event.php:408 +#: src/Core/L10n.php:500 src/Model/Event.php:410 msgid "Mon" msgstr "Esm" -#: src/Core/L10n.php:504 src/Model/Event.php:409 +#: src/Core/L10n.php:500 src/Model/Event.php:411 msgid "Tue" msgstr "Tei" -#: src/Core/L10n.php:504 src/Model/Event.php:410 +#: src/Core/L10n.php:500 src/Model/Event.php:412 msgid "Wed" msgstr "Kol" -#: src/Core/L10n.php:504 src/Model/Event.php:411 +#: src/Core/L10n.php:500 src/Model/Event.php:413 msgid "Thu" msgstr "Nel" -#: src/Core/L10n.php:504 src/Model/Event.php:412 +#: src/Core/L10n.php:500 src/Model/Event.php:414 msgid "Fri" msgstr "Ree" -#: src/Core/L10n.php:504 src/Model/Event.php:413 +#: src/Core/L10n.php:500 src/Model/Event.php:415 msgid "Sat" msgstr "Lau" -#: src/Core/L10n.php:504 src/Model/Event.php:407 +#: src/Core/L10n.php:500 src/Model/Event.php:409 msgid "Sun" msgstr "Püh" -#: src/Core/L10n.php:508 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:425 msgid "Jan" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:426 msgid "Feb" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:427 msgid "Mar" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:428 msgid "Apr" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:428 +#: src/Core/L10n.php:504 src/Model/Event.php:430 msgid "Jun" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:429 +#: src/Core/L10n.php:504 src/Model/Event.php:431 msgid "Jul" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:430 +#: src/Core/L10n.php:504 src/Model/Event.php:432 msgid "Aug" msgstr "" -#: src/Core/L10n.php:508 +#: src/Core/L10n.php:504 msgid "Sep" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:432 +#: src/Core/L10n.php:504 src/Model/Event.php:434 msgid "Oct" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:433 +#: src/Core/L10n.php:504 src/Model/Event.php:435 msgid "Nov" msgstr "" -#: src/Core/L10n.php:508 src/Model/Event.php:434 +#: src/Core/L10n.php:504 src/Model/Event.php:436 msgid "Dec" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:44 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:67 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" @@ -3282,7 +3287,7 @@ msgstr "lisa" msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:592 src/Module/Circle.php:181 +#: src/Model/Circle.php:592 src/Module/Circle.php:185 msgid "Contacts not in any circle" msgstr "" @@ -3290,8 +3295,8 @@ msgstr "" msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:595 src/Module/Circle.php:166 -#: src/Module/Circle.php:189 src/Module/Circle.php:264 +#: src/Model/Circle.php:595 src/Module/Circle.php:168 +#: src/Module/Circle.php:190 src/Module/Circle.php:265 msgid "Circle Name: " msgstr "" @@ -3299,280 +3304,280 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1258 src/Module/Moderation/Users/Pending.php:88 +#: src/Model/Contact.php:1259 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:1594 src/Model/Contact.php:1666 +#: src/Model/Contact.php:1595 src/Model/Contact.php:1667 #: src/Module/Contact/Profile.php:360 #, php-format msgid "%s has blocked you" msgstr "" -#: src/Model/Contact.php:1746 +#: src/Model/Contact.php:1747 msgid "Organisation" msgstr "Organisatsioon" -#: src/Model/Contact.php:1754 +#: src/Model/Contact.php:1755 msgid "Group" msgstr "" -#: src/Model/Contact.php:1758 src/Module/Moderation/BaseUsers.php:122 +#: src/Model/Contact.php:1759 src/Module/Moderation/BaseUsers.php:122 msgid "Relay" msgstr "" -#: src/Model/Contact.php:3073 +#: src/Model/Contact.php:3085 msgid "Disallowed profile URL." msgstr "Mittelubatud profiili URL." -#: src/Model/Contact.php:3078 src/Module/Friendica.php:88 +#: src/Model/Contact.php:3090 src/Module/Friendica.php:88 msgid "Blocked domain" msgstr "" -#: src/Model/Contact.php:3083 +#: src/Model/Contact.php:3095 msgid "Connect URL missing." msgstr "" -#: src/Model/Contact.php:3092 +#: src/Model/Contact.php:3104 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Contact.php:3110 +#: src/Model/Contact.php:3122 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3127 +#: src/Model/Contact.php:3139 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3134 +#: src/Model/Contact.php:3146 msgid "The profile address specified does not provide adequate information." msgstr "" -#: src/Model/Contact.php:3136 +#: src/Model/Contact.php:3148 msgid "No compatible communication protocols or feeds were discovered." msgstr "" -#: src/Model/Contact.php:3139 +#: src/Model/Contact.php:3151 msgid "An author or name was not found." msgstr "" -#: src/Model/Contact.php:3142 +#: src/Model/Contact.php:3154 msgid "No browser URL could be matched to this address." msgstr "" -#: src/Model/Contact.php:3145 +#: src/Model/Contact.php:3157 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "" -#: src/Model/Contact.php:3146 +#: src/Model/Contact.php:3158 msgid "Use mailto: in front of address to force email check." msgstr "" -#: src/Model/Contact.php:3152 +#: src/Model/Contact.php:3164 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "" -#: src/Model/Contact.php:3211 +#: src/Model/Contact.php:3223 msgid "Unable to retrieve contact information." msgstr "" -#: src/Model/Event.php:40 +#: src/Model/Event.php:42 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 -#: src/Model/Event.php:928 +#: src/Model/Event.php:63 src/Model/Event.php:80 src/Model/Event.php:457 +#: src/Model/Event.php:929 msgid "Starts:" msgstr "Algab:" -#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 -#: src/Model/Event.php:932 +#: src/Model/Event.php:66 src/Model/Event.php:86 src/Model/Event.php:458 +#: src/Model/Event.php:933 msgid "Finishes:" msgstr "Lõpeb:" -#: src/Model/Event.php:405 +#: src/Model/Event.php:407 msgid "all-day" msgstr "terve päev" -#: src/Model/Event.php:431 +#: src/Model/Event.php:433 msgid "Sept" msgstr "" -#: src/Model/Event.php:448 src/Module/Calendar/Show.php:117 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:117 #: src/Util/Temporal.php:329 msgid "today" msgstr "täna" -#: src/Model/Event.php:449 src/Module/Calendar/Show.php:118 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:118 #: src/Module/Settings/Display.php:302 src/Util/Temporal.php:339 msgid "month" msgstr "kuu" -#: src/Model/Event.php:450 src/Module/Calendar/Show.php:119 +#: src/Model/Event.php:452 src/Module/Calendar/Show.php:119 #: src/Module/Settings/Display.php:303 src/Util/Temporal.php:340 msgid "week" msgstr "nädal" -#: src/Model/Event.php:451 src/Module/Calendar/Show.php:120 +#: src/Model/Event.php:453 src/Module/Calendar/Show.php:120 #: src/Module/Settings/Display.php:304 src/Util/Temporal.php:341 msgid "day" msgstr "päev" -#: src/Model/Event.php:453 +#: src/Model/Event.php:455 msgid "No events to display" msgstr "Pole üritusi kuvamiseks" -#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Model/Event.php:504 src/Module/Feed.php:56 #: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "Ligipääs sellele profiilile on piiratud. " -#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:52 +#: src/Model/Event.php:545 src/Module/Calendar/Event/Show.php:52 msgid "Event not found." msgstr "" -#: src/Model/Event.php:623 +#: src/Model/Event.php:624 msgid "l, F j" msgstr "" -#: src/Model/Event.php:650 +#: src/Model/Event.php:651 msgid "Edit event" msgstr "Muuda sündmust" -#: src/Model/Event.php:651 +#: src/Model/Event.php:652 msgid "Duplicate event" msgstr "Dubleeri sündmus" -#: src/Model/Event.php:652 +#: src/Model/Event.php:653 msgid "Delete event" msgstr "Kustuta sündmus" -#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 +#: src/Model/Event.php:883 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "" -#: src/Model/Event.php:883 +#: src/Model/Event.php:884 msgid "D g:i A" msgstr "" -#: src/Model/Event.php:884 +#: src/Model/Event.php:885 msgid "g:i A" msgstr "" -#: src/Model/Event.php:947 src/Model/Event.php:949 +#: src/Model/Event.php:948 src/Model/Event.php:950 msgid "Show map" msgstr "Näita kaarti" -#: src/Model/Event.php:948 +#: src/Model/Event.php:949 msgid "Hide map" msgstr "Peida kaart" -#: src/Model/Event.php:1041 +#: src/Model/Event.php:1042 #, php-format msgid "%s's birthday" msgstr "%s sünnipäev" -#: src/Model/Event.php:1042 +#: src/Model/Event.php:1043 #, php-format msgid "Happy Birthday %s" msgstr "Palju Õnne %s " -#: src/Model/Item.php:2323 +#: src/Model/Item.php:2331 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2325 +#: src/Model/Item.php:2333 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2328 +#: src/Model/Item.php:2336 #, php-format msgid "" "Detected languages in this post:\n" "%s" msgstr "" -#: src/Model/Item.php:3277 +#: src/Model/Item.php:3285 msgid "activity" msgstr "tegevused" -#: src/Model/Item.php:3279 +#: src/Model/Item.php:3287 msgid "comment" msgstr "" -#: src/Model/Item.php:3282 src/Module/Post/Tag/Add.php:109 +#: src/Model/Item.php:3290 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "postitus" -#: src/Model/Item.php:3452 +#: src/Model/Item.php:3463 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3454 +#: src/Model/Item.php:3465 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3456 +#: src/Model/Item.php:3467 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3460 +#: src/Model/Item.php:3471 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3969 +#: src/Model/Item.php:3980 msgid "bytes" msgstr "" -#: src/Model/Item.php:4000 +#: src/Model/Item.php:4011 #, 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:4002 +#: src/Model/Item.php:4013 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:4007 +#: src/Model/Item.php:4018 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:4009 +#: src/Model/Item.php:4020 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:4011 +#: src/Model/Item.php:4022 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:4052 src/Model/Item.php:4053 +#: src/Model/Item.php:4063 src/Model/Item.php:4064 msgid "View on separate page" msgstr "Kuva eraldi lehel" @@ -3580,7 +3585,7 @@ msgstr "Kuva eraldi lehel" msgid "[no subject]" msgstr "[teema puudub] " -#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 +#: src/Model/Photo.php:1192 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Seina fotod" @@ -3593,7 +3598,7 @@ msgstr "Muuda profiili" msgid "Change profile photo" msgstr "Muuda profiilifoto" -#: src/Model/Profile.php:357 src/Module/Directory.php:139 +#: src/Model/Profile.php:357 src/Module/Directory.php:138 #: src/Module/Profile/Profile.php:200 msgid "Homepage:" msgstr "Koduleht:" @@ -3683,7 +3688,7 @@ msgstr "Mittemeeldimised:" msgid "Title/Description:" msgstr "Tiitel/Kirjeldus:" -#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:176 +#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:174 #: src/Module/Moderation/Report/Create.php:266 #: src/Module/Moderation/Summary.php:65 msgid "Summary" @@ -3734,59 +3739,59 @@ msgstr "" msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "" -#: src/Model/User.php:740 src/Model/User.php:773 +#: src/Model/User.php:739 src/Model/User.php:772 msgid "Login failed" msgstr "" -#: src/Model/User.php:805 +#: src/Model/User.php:804 msgid "Not enough information to authenticate" msgstr "" -#: src/Model/User.php:930 +#: src/Model/User.php:929 msgid "Password can't be empty" msgstr "Parool ei saa olla tühi " -#: src/Model/User.php:972 +#: src/Model/User.php:971 msgid "Empty passwords are not allowed." msgstr "Tühjad paroolid pole lubatud" -#: src/Model/User.php:976 +#: src/Model/User.php:975 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Uus parool on juba kasutuses, palun vali midagi muud. " -#: src/Model/User.php:980 +#: src/Model/User.php:979 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:984 +#: src/Model/User.php:983 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1193 +#: src/Model/User.php:1192 msgid "Passwords do not match. Password unchanged." msgstr "Paroolid ei kattu" -#: src/Model/User.php:1200 +#: src/Model/User.php:1199 msgid "An invitation is required." msgstr "Kutse on nõutav." -#: src/Model/User.php:1204 +#: src/Model/User.php:1203 msgid "Invitation could not be verified." msgstr "Kutset ei õnnestu kontrollida." -#: src/Model/User.php:1212 +#: src/Model/User.php:1211 msgid "Invalid OpenID url" msgstr "" -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 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:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "The error message was:" msgstr "" @@ -3977,57 +3982,57 @@ msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:51 +#: src/Module/Admin/Addons/Details.php:49 msgid "Addon not found." msgstr "" -#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 +#: src/Module/Admin/Addons/Details.php:60 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "" -#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 +#: src/Module/Admin/Addons/Details.php:63 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "" -#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Addons/Details.php:72 #: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "" -#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Addons/Details.php:75 #: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351 msgid "Enable" msgstr "" -#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Addons/Details.php:95 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:175 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Summary.php:173 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:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/Admin/Addons/Details.php:96 src/Module/Admin/Addons/Index.php:60 #: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:127 msgid "Addons" msgstr "Lisad" -#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Addons/Details.php:97 #: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "" -#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Addons/Details.php:104 #: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "" -#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Addons/Details.php:105 #: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "" @@ -4044,9 +4049,10 @@ 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:545 src/Module/Settings/Addons.php:64 -#: src/Module/Settings/Connectors.php:149 -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Account.php:507 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/Features.php:61 msgid "Save Settings" @@ -4063,62 +4069,62 @@ msgid "" "official addon repository at %1$s." msgstr "" -#: src/Module/Admin/DBSync.php:37 +#: src/Module/Admin/DBSync.php:35 msgid "Update has been marked successful" msgstr "" -#: src/Module/Admin/DBSync.php:45 +#: src/Module/Admin/DBSync.php:43 #, php-format msgid "Database structure update %s was successfully applied." msgstr "" -#: src/Module/Admin/DBSync.php:47 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:62 +#: src/Module/Admin/DBSync.php:60 #, php-format msgid "Executing %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:64 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Update %s was successfully applied." msgstr "" -#: src/Module/Admin/DBSync.php:67 +#: src/Module/Admin/DBSync.php:65 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: src/Module/Admin/DBSync.php:70 +#: src/Module/Admin/DBSync.php:68 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "" -#: src/Module/Admin/DBSync.php:91 +#: src/Module/Admin/DBSync.php:89 msgid "No failed updates." msgstr "" -#: src/Module/Admin/DBSync.php:92 +#: src/Module/Admin/DBSync.php:90 msgid "Check database structure" msgstr "" -#: src/Module/Admin/DBSync.php:96 +#: src/Module/Admin/DBSync.php:94 msgid "Failed Updates" msgstr "" -#: src/Module/Admin/DBSync.php:97 +#: src/Module/Admin/DBSync.php:95 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "" -#: src/Module/Admin/DBSync.php:98 +#: src/Module/Admin/DBSync.php:96 msgid "Mark success (if update was manually applied)" msgstr "" -#: src/Module/Admin/DBSync.php:99 +#: src/Module/Admin/DBSync.php:97 msgid "Attempt to execute this update step automatically" msgstr "" @@ -5683,12 +5689,12 @@ msgstr "" msgid "Database (legacy)" msgstr "" -#: src/Module/Admin/Summary.php:41 +#: src/Module/Admin/Summary.php:39 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:45 +#: src/Module/Admin/Summary.php:43 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5699,7 +5705,7 @@ msgid "" " an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:50 +#: src/Module/Admin/Summary.php:48 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5710,7 +5716,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:60 +#: src/Module/Admin/Summary.php:58 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5718,46 +5724,46 @@ msgid "" " to %d. See here for more information.
" msgstr "" -#: src/Module/Admin/Summary.php:68 +#: src/Module/Admin/Summary.php:66 #, 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:76 +#: src/Module/Admin/Summary.php:74 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:80 +#: src/Module/Admin/Summary.php:78 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:84 +#: src/Module/Admin/Summary.php:82 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:89 +#: src/Module/Admin/Summary.php:87 msgid "The worker was never executed. Please check your database structure!" msgstr "" -#: src/Module/Admin/Summary.php:91 +#: src/Module/Admin/Summary.php:89 #, 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:96 +#: src/Module/Admin/Summary.php:94 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5766,7 +5772,7 @@ msgid "" "help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:100 +#: src/Module/Admin/Summary.php:98 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5775,7 +5781,7 @@ msgid "" "page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:106 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5783,40 +5789,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "" -#: src/Module/Admin/Summary.php:130 +#: src/Module/Admin/Summary.php:128 #, 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:138 +#: src/Module/Admin/Summary.php:136 #, 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:146 +#: src/Module/Admin/Summary.php:144 #, 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:157 +#: src/Module/Admin/Summary.php:155 msgid "Message queues" msgstr "" -#: src/Module/Admin/Summary.php:160 +#: src/Module/Admin/Summary.php:158 msgid "Server Settings" msgstr "Serveri sätted" -#: src/Module/Admin/Summary.php:178 +#: src/Module/Admin/Summary.php:176 msgid "Version" msgstr "Versioon" -#: src/Module/Admin/Summary.php:182 +#: src/Module/Admin/Summary.php:180 msgid "Active addons" msgstr "Aktiveeritud lisad" @@ -6081,8 +6087,8 @@ msgstr "" msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:134 -#: src/Module/Moderation/Users/Index.php:144 +#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:137 +#: src/Module/Moderation/Users/Index.php:147 msgid "Users" msgstr "Kasutajad" @@ -6118,7 +6124,7 @@ msgstr "" msgid "Only You Can See This" msgstr "Ainult Sina saad seda näha" -#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:67 +#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:65 msgid "Scheduled Posts" msgstr "Ajastatud postitused" @@ -6170,7 +6176,7 @@ msgstr "" msgid "Display" msgstr "Kuva" -#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:195 +#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:189 msgid "Social Networks" msgstr "Sotsiaalvõrgud" @@ -6186,11 +6192,15 @@ msgstr "Ühendatud rakendused" msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:84 +#: src/Module/BaseSettings.php:155 src/Module/Settings/ContactImport.php:109 +msgid "Import Contacts" +msgstr "" + +#: src/Module/BaseSettings.php:162 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Ekspordi isiklikud andmed" -#: src/Module/BaseSettings.php:162 +#: src/Module/BaseSettings.php:169 msgid "Remove account" msgstr "Eemalda konto" @@ -6319,8 +6329,8 @@ msgstr "" msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:54 src/Module/Circle.php:202 -#: src/Module/Circle.php:226 +#: src/Module/Circle.php:54 src/Module/Circle.php:203 +#: src/Module/Circle.php:227 msgid "Circle not found." msgstr "" @@ -6328,15 +6338,15 @@ msgstr "" msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:78 +#: src/Module/Circle.php:80 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Circle.php:86 src/Module/Circle.php:95 #: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 -#: 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/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/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 @@ -6345,75 +6355,75 @@ msgstr "" msgid "Contact not found." msgstr "Kontakti ei leitud." -#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 +#: src/Module/Circle.php:90 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Mittevaliidne kontakt." -#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 +#: src/Module/Circle.php:99 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "" -#: src/Module/Circle.php:103 +#: src/Module/Circle.php:105 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:106 +#: src/Module/Circle.php:108 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:110 +#: src/Module/Circle.php:112 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:113 +#: src/Module/Circle.php:115 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:119 msgid "Bad request." msgstr "" -#: src/Module/Circle.php:158 +#: src/Module/Circle.php:160 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:159 +#: src/Module/Circle.php:161 msgid "Filter" msgstr "" -#: src/Module/Circle.php:165 +#: src/Module/Circle.php:167 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:207 +#: src/Module/Circle.php:208 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:258 +#: src/Module/Circle.php:259 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:268 +#: src/Module/Circle.php:269 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:278 +#: src/Module/Circle.php:279 msgid "Members" msgstr "Liikmed" -#: src/Module/Circle.php:281 +#: src/Module/Circle.php:282 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:297 +#: src/Module/Circle.php:298 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:320 +#: src/Module/Circle.php:321 msgid "Click on a contact to add or remove." msgstr "Lisamiseks või eemaldamiseks klõpsa kontaktil." -#: src/Module/Circle.php:337 +#: src/Module/Circle.php:338 msgid "Add contact to circle" msgstr "" @@ -6447,7 +6457,7 @@ msgid "Only show blocked contacts" msgstr "Näita ainult blokeeritud kontakte" #: src/Module/Contact.php:349 src/Module/Contact.php:421 -#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:386 msgid "Ignored" msgstr "Ignoreeritud" @@ -6498,8 +6508,8 @@ msgstr "Uuenda" #: src/Module/Contact.php:449 src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:105 -#: src/Module/Moderation/Users/Blocked.php:124 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Blocked.php:127 +#: src/Module/Moderation/Users/Index.php:143 msgid "Unblock" msgstr "Võta blokk maha" @@ -6575,12 +6585,12 @@ 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:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:56 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Nimi" @@ -7145,11 +7155,11 @@ msgstr "" msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:190 +#: src/Module/Conversation/Timeline.php:193 msgid "Include" msgstr "" -#: src/Module/Conversation/Timeline.php:191 +#: src/Module/Conversation/Timeline.php:194 msgid "Hide" msgstr "" @@ -7418,19 +7428,19 @@ msgstr "" msgid "Lookup address:" msgstr "" -#: src/Module/Directory.php:61 +#: src/Module/Directory.php:60 msgid "No entries (some entries may be hidden)." msgstr "Pole kirjeid (osad võivad olla peidetud)" -#: src/Module/Directory.php:77 +#: src/Module/Directory.php:76 msgid "Find on this site" msgstr "Leia sellelt lehelt" -#: src/Module/Directory.php:79 +#: src/Module/Directory.php:78 msgid "Results for:" msgstr "Tulemused:" -#: src/Module/Directory.php:81 +#: src/Module/Directory.php:80 msgid "Site Directory" msgstr "Lehe kataloog" @@ -7683,40 +7693,40 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "" -#: src/Module/Invite.php:43 +#: src/Module/Invite.php:42 msgid "Total invitation limit exceeded." msgstr "Totaalne kutsungite limiit ületatud." -#: src/Module/Invite.php:68 +#: src/Module/Invite.php:67 #, php-format msgid "%s : Not a valid email address." msgstr "%s : Mittevaliidne meiliaadress." -#: src/Module/Invite.php:94 +#: src/Module/Invite.php:93 msgid "Please join us on Friendica" msgstr "Palun ühine meiega Friendicas" -#: src/Module/Invite.php:103 +#: src/Module/Invite.php:102 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Kutsumiste limiit ületatud. Palun kontakteeru oma lehe adminniga." -#: src/Module/Invite.php:107 +#: src/Module/Invite.php:106 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Sõnumi saatmine nurjus." -#: src/Module/Invite.php:111 +#: src/Module/Invite.php:110 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%d sõnum saadetud." msgstr[1] "%d sõnumid saadetud." -#: src/Module/Invite.php:129 +#: src/Module/Invite.php:127 msgid "You have no more invitations available" msgstr "Sul ei ole rohkem kutseid" -#: src/Module/Invite.php:136 +#: src/Module/Invite.php:134 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7724,14 +7734,14 @@ msgid "" " other social networks." msgstr "Külasta %s avalike saitide nimistut kus saad liituda. Friendica liikmed teistel saitidel saavad kõik üksteisega ühenduda ja samuti saavad seda ka paljude teiste sotsiaalvõrkude liikmed. " -#: src/Module/Invite.php:138 +#: src/Module/Invite.php:136 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Et seda kutset vastu võtta külasta palun saiti %s ja registreeri või siis registreeri ükskõik millisel Friendica avalikul veebilehel. " -#: src/Module/Invite.php:139 +#: src/Module/Invite.php:137 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7740,48 +7750,48 @@ msgid "" "sites you can join." msgstr "Kõik Friendica saidid on omavahel ühenduses ja moodustavad tohutu turvatäiustatud sotsiaalvõrgustiku, mida omavad ja kontrollivad selle liikmed. Nad saavad samuti ühenduda paljude teiste sotsiaalvõrkudga. Vaata nimekirja alternatiivsetest saitidest, kus saad liituda. \n%s " -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:141 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Meie vabandused. See süsteem ei ole hetkel seadistatud ühenduseks teiste avalike saitidega või liikmete vastuvõtuks. " -#: src/Module/Invite.php:146 +#: src/Module/Invite.php:144 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 "Kõik Friendica saidid on omavahel ühenduses ja moodustavad tohutu \nturvatäiustatud sotsiaalvõrgustiku, mida omavad ja kontrollivad selle \nliikmed. Nad saavad samuti ühenduda paljude teiste sotsiaalvõrkudga." -#: src/Module/Invite.php:145 +#: src/Module/Invite.php:143 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "Et seda kutset vastu võtta, külasta palun %s ja registreeri. " -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:151 msgid "Send invitations" msgstr "Saada kutseid" -#: src/Module/Invite.php:154 +#: src/Module/Invite.php:152 msgid "Enter email addresses, one per line:" msgstr "Lisa e-posti aadresse, üks iga rea kohta:" -#: src/Module/Invite.php:158 +#: src/Module/Invite.php:156 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Oled kutsutud ühinema minu ei teiste sõpradega Freindicas - et saaksime koos luua parema sotsiaalvõrgustiku. " -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "You will need to supply this invitation code: $invite_code" msgstr "Peate sisestama selle kutse koodi: $invite_code " -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Kui olete registreerunud, kontakteeruge minuga mu profiili lehel: " -#: src/Module/Invite.php:162 +#: src/Module/Invite.php:160 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" @@ -7883,12 +7893,12 @@ msgid "File upload failed." msgstr "Faili üleslaadimine nurjus." #: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 -#: src/Module/Profile/Photos.php:204 +#: src/Module/Profile/Photos.php:212 #: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Ei suuda pilti töödelda. " -#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:224 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:232 #: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Pildi üleslaadimine nurjus." @@ -7921,23 +7931,23 @@ msgstr "" msgid "List of pending user deletions" msgstr "" -#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:469 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:431 msgid "Normal Account Page" msgstr "Normaalse konto leht" -#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:476 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:438 msgid "Soapbox Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:483 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:445 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:490 +#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:452 msgid "Public Group - Restricted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:497 +#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:459 msgid "Automatic Friend Page" msgstr "Automaatne sõbraleht" @@ -7946,22 +7956,22 @@ msgid "Private Group" msgstr "" #: src/Module/Moderation/BaseUsers.php:118 -#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:440 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:402 msgid "Personal Page" msgstr "Isiklik leht" #: src/Module/Moderation/BaseUsers.php:119 -#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:447 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:409 msgid "Organisation Page" msgstr "Organisatsiooni leht" #: src/Module/Moderation/BaseUsers.php:120 -#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:454 +#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:416 msgid "News Page" msgstr "Uudiste leht" #: src/Module/Moderation/BaseUsers.php:121 -#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:461 +#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:423 msgid "Community Group" msgstr "" @@ -7991,9 +8001,9 @@ msgid "Block Remote Contact" msgstr "" #: src/Module/Moderation/Blocklist/Contact.php:102 -#: 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/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:138 #: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "" @@ -8334,9 +8344,9 @@ msgid "Tag" msgstr "" #: src/Module/Moderation/Item/Source.php:77 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 -#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 +#: src/Module/Moderation/Users/Index.php:129 msgid "Type" msgstr "Tüüp" @@ -8601,7 +8611,7 @@ msgstr[1] "" msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:418 +#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:380 msgid "Channel Relay" msgstr "" @@ -8622,11 +8632,11 @@ msgstr[0] "" msgstr[1] "" #: src/Module/Moderation/Users/Active.php:37 -#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Active.php:74 #: src/Module/Moderation/Users/Blocked.php:37 -#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Blocked.php:74 #: src/Module/Moderation/Users/Index.php:44 -#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Index.php:81 msgid "You can't remove yourself" msgstr "Iseend eemaldada ei saa" @@ -8639,81 +8649,81 @@ msgid_plural "%s users deleted" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Active.php:69 -#: src/Module/Moderation/Users/Blocked.php:69 -#: src/Module/Moderation/Users/Index.php:76 +#: src/Module/Moderation/Users/Active.php:72 +#: src/Module/Moderation/Users/Blocked.php:72 +#: src/Module/Moderation/Users/Index.php:79 #, php-format msgid "User \"%s\" deleted" msgstr "" -#: src/Module/Moderation/Users/Active.php:79 -#: src/Module/Moderation/Users/Index.php:86 +#: src/Module/Moderation/Users/Active.php:82 +#: src/Module/Moderation/Users/Index.php:89 #, php-format msgid "User \"%s\" blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Register date" msgstr "Registreerimisaeg" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last login" msgstr "Viimane login" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last public item" msgstr "" -#: src/Module/Moderation/Users/Active.php:120 +#: src/Module/Moderation/Users/Active.php:123 msgid "Active Accounts" msgstr "" -#: src/Module/Moderation/Users/Active.php:124 -#: src/Module/Moderation/Users/Blocked.php:123 -#: src/Module/Moderation/Users/Index.php:139 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "User blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:125 -#: src/Module/Moderation/Users/Blocked.php:125 -#: src/Module/Moderation/Users/Index.php:141 +#: src/Module/Moderation/Users/Active.php:128 +#: src/Module/Moderation/Users/Blocked.php:128 +#: src/Module/Moderation/Users/Index.php:144 msgid "Site admin" msgstr "" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:142 +#: src/Module/Moderation/Users/Active.php:129 +#: src/Module/Moderation/Users/Blocked.php:129 +#: src/Module/Moderation/Users/Index.php:145 msgid "Account expired" msgstr "" -#: src/Module/Moderation/Users/Active.php:127 -#: src/Module/Moderation/Users/Index.php:145 +#: src/Module/Moderation/Users/Active.php:130 +#: src/Module/Moderation/Users/Index.php:148 msgid "Create a new user" msgstr "" -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:132 -#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:154 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:134 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:155 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" @@ -8727,13 +8737,13 @@ msgid_plural "%s users unblocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Blocked.php:78 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Blocked.php:81 +#: src/Module/Moderation/Users/Index.php:95 #, php-format msgid "User \"%s\" unblocked" msgstr "" -#: src/Module/Moderation/Users/Blocked.php:120 +#: src/Module/Moderation/Users/Blocked.php:123 msgid "Blocked Users" msgstr "" @@ -8766,11 +8776,11 @@ msgid "Users awaiting permanent deletion" msgstr "" #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:149 msgid "Permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Index.php:136 +#: src/Module/Moderation/Users/Index.php:139 msgid "User waiting for permanent deletion" msgstr "" @@ -8935,7 +8945,7 @@ msgstr "" msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:91 +#: src/Module/OAuth/Token.php:73 msgid "Unsupported or missing grant type" msgstr "" @@ -8987,7 +8997,7 @@ msgstr "ignoreeritud" msgid "Keep this window open until done." msgstr "Hoia see aken lahti kuni kõik tehtud. " -#: src/Module/OpenSearch.php:57 +#: src/Module/OpenSearch.php:55 #, php-format msgid "Search in Friendica %s" msgstr "" @@ -9001,12 +9011,12 @@ msgstr "" msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:178 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:180 #, php-format msgid "Invalid photo with id %s." msgstr "" @@ -9039,15 +9049,15 @@ msgstr "Lisa audiolink" msgid "audio link" msgstr "audiolink" -#: src/Module/Post/Tag/Remove.php:92 +#: src/Module/Post/Tag/Remove.php:93 msgid "Remove Item Tag" msgstr "Eemalda elemendi Silt" -#: src/Module/Post/Tag/Remove.php:93 +#: src/Module/Post/Tag/Remove.php:94 msgid "Select a tag to remove: " msgstr "Vali tag mida eemaldada: " -#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Post/Tag/Remove.php:95 #: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Eemalda" @@ -9126,32 +9136,32 @@ msgstr "%s kommentaarid" msgid "%s's timeline" msgstr "%s ajajoon" -#: src/Module/Profile/Photos.php:153 src/Module/Profile/Photos.php:156 -#: src/Module/Profile/Photos.php:181 +#: src/Module/Profile/Photos.php:157 src/Module/Profile/Photos.php:160 +#: src/Module/Profile/Photos.php:189 #: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "Pilt ületab suuruse limiidi %s " -#: src/Module/Profile/Photos.php:159 +#: src/Module/Profile/Photos.php:163 msgid "Image upload didn't complete, please try again" msgstr "Pildi üleslaadimine ei lõppenud, palun ürita uuesti" -#: src/Module/Profile/Photos.php:162 +#: src/Module/Profile/Photos.php:166 msgid "Image file is missing" msgstr "Pildifail on puudu" -#: src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:171 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "Server ei aktsepteeri hetkel uue faili üleslaadimist. Palun kontakteeru adminniga. " -#: src/Module/Profile/Photos.php:189 +#: src/Module/Profile/Photos.php:197 msgid "Image file is empty." msgstr "Pildifail on tühi" -#: src/Module/Profile/Photos.php:341 +#: src/Module/Profile/Photos.php:349 msgid "View Album" msgstr "Kuva Album" @@ -9267,15 +9277,15 @@ msgid "" "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:69 +#: src/Module/Profile/Schedule.php:67 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:70 +#: src/Module/Profile/Schedule.php:68 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:71 +#: src/Module/Profile/Schedule.php:69 msgid "Remove post" msgstr "" @@ -9340,7 +9350,7 @@ msgid "Please repeat your e-mail address:" msgstr "" #: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:551 +#: src/Module/Settings/Account.php:513 msgid "New Password:" msgstr "Uus parool" @@ -9349,7 +9359,7 @@ 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:552 +#: src/Module/Settings/Account.php:514 msgid "Confirm:" msgstr "Kinnita:" @@ -9533,20 +9543,20 @@ msgstr "Välja logitud." msgid "OpenID protocol error. No ID returned" msgstr "" -#: src/Module/Security/OpenID.php:76 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "" -#: src/Module/Security/OpenID.php:78 +#: src/Module/Security/OpenID.php:80 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:51 +#: src/Module/Settings/Account.php:49 msgid "Passwords do not match." msgstr "Paroolid ei kattu." @@ -9555,7 +9565,7 @@ msgid "Password does not need changing." msgstr "" #: src/Module/Security/PasswordTooLong.php:63 -#: src/Module/Settings/Account.php:65 +#: src/Module/Settings/Account.php:63 msgid "Password unchanged." msgstr "Parool muutmata. " @@ -9575,24 +9585,24 @@ msgid "Update Password" msgstr "" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Current Password:" msgstr "Kehtiv parool" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Your current password to confirm the changes" msgstr "Sinu kehtiv parool muutuste kinnitamiseks" #: src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:537 +#: src/Module/Settings/Account.php:499 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:538 +#: src/Module/Settings/Account.php:500 msgid "Password length is limited to 72 characters." msgstr "" @@ -9696,129 +9706,121 @@ msgstr "" msgid "Verify code and complete login" msgstr "" -#: src/Module/Settings/Account.php:80 +#: src/Module/Settings/Account.php:78 msgid "Please use a shorter name." msgstr "" -#: src/Module/Settings/Account.php:83 +#: src/Module/Settings/Account.php:81 msgid "Name too short." msgstr "" -#: src/Module/Settings/Account.php:92 +#: src/Module/Settings/Account.php:90 msgid "Wrong Password." msgstr "" -#: src/Module/Settings/Account.php:97 +#: src/Module/Settings/Account.php:95 msgid "Invalid email." msgstr "" -#: src/Module/Settings/Account.php:101 +#: src/Module/Settings/Account.php:99 msgid "Cannot change to that email." msgstr "" -#: 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 +#: 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 msgid "Settings were not updated." msgstr "" -#: src/Module/Settings/Account.php:331 -msgid "Contact CSV file upload error" -msgstr "" - -#: src/Module/Settings/Account.php:350 -msgid "Importing Contacts done" -msgstr "" - -#: src/Module/Settings/Account.php:363 +#: src/Module/Settings/Account.php:325 msgid "Relocate message has been send to your contacts" msgstr "" -#: src/Module/Settings/Account.php:380 +#: src/Module/Settings/Account.php:342 msgid "Unable to find your profile. Please contact your admin." msgstr "Ei leia sinu profiili. Palun kontakteeru adminniga. " -#: src/Module/Settings/Account.php:420 +#: src/Module/Settings/Account.php:382 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:430 +#: src/Module/Settings/Account.php:392 msgid "Personal Page Subtypes" msgstr "Isikliku lehe alltüübid" -#: src/Module/Settings/Account.php:431 +#: src/Module/Settings/Account.php:393 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:442 +#: src/Module/Settings/Account.php:404 msgid "Account for a personal profile." msgstr "Personaalse profiili konto." -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:411 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Konto organisatsioonile, mis automaatselt kiidab kontaktitaotlused heaks kui \"Jälgijad\". " -#: src/Module/Settings/Account.php:456 +#: src/Module/Settings/Account.php:418 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Uudistelevitaja konto, kes automaatselt kiidab kontaktitaotlused heaks kui \"Jälgijad\". " -#: src/Module/Settings/Account.php:463 +#: src/Module/Settings/Account.php:425 msgid "Account for community discussions." msgstr "Kogukondlike arutluste konto." -#: src/Module/Settings/Account.php:471 +#: src/Module/Settings/Account.php:433 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Tavalise inimese konto, mis nõuab \"Sõprade\" ja \"Jälgijate\" käsitsi heaks kiitmist. " -#: src/Module/Settings/Account.php:478 +#: src/Module/Settings/Account.php:440 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Avaliku profiili konto, mis kiidab automaatselt heaks kontaktitaotlused kui \"Jälgijad\". " -#: src/Module/Settings/Account.php:485 +#: src/Module/Settings/Account.php:447 msgid "Automatically approves all contact requests." msgstr "Kiidab automaatselt kõik kontaktitaotlused heaks. " -#: src/Module/Settings/Account.php:492 +#: src/Module/Settings/Account.php:454 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:499 +#: src/Module/Settings/Account.php:461 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Kuulsuse profiili konto, mis kiidab automaatselt kontaktitaotlused heaks kui \"Sõbrad\". " -#: src/Module/Settings/Account.php:504 +#: src/Module/Settings/Account.php:466 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:506 +#: src/Module/Settings/Account.php:468 msgid "Requires manual approval of contact requests." msgstr "Nõuab käsitsi kontaktitaotluste heakskiitu. " -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "OpenID:" msgstr "" -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "(Optional) Allow this OpenID to login to this account." msgstr "" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9826,94 +9828,94 @@ msgid "" " system settings." msgstr "" -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:491 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "" -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:504 msgid "Account Settings" msgstr "Konto sätted" -#: src/Module/Settings/Account.php:543 +#: src/Module/Settings/Account.php:505 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Sinu ID Aadress on '%s' või '%s'. " -#: src/Module/Settings/Account.php:550 +#: src/Module/Settings/Account.php:512 msgid "Password Settings" msgstr "Parooli sätted" -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Leave password fields blank unless changing" msgstr "Jäta väljad tühjaks kui sa ei muuda" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Password:" msgstr "Parool:" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:557 +#: src/Module/Settings/Account.php:519 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:559 +#: src/Module/Settings/Account.php:521 msgid "Basic Settings" msgstr "Peamised sätted" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:522 #: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:523 msgid "Email Address:" msgstr "E-posti aadress:" -#: src/Module/Settings/Account.php:562 +#: src/Module/Settings/Account.php:524 msgid "Your Timezone:" msgstr "Sinu ajatsoon:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "Your Language:" msgstr "Sinu keel:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Vali keel friendica kuvamiseks ja sulle e-posti saatmiseks. " -#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Account.php:526 msgid "Default Post Location:" msgstr "Postitamise baasasukoht:" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:527 msgid "Use Browser Location:" msgstr "Kasuta sirviku asukohta:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:529 msgid "Security and Privacy Settings" msgstr "Turva ja privaatsuse sätted" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "Maximum Friend Requests/Day:" msgstr "Maksimum sõbrakutseid/Päevas:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "(to prevent spam abuse)" msgstr "(et rämpspost tõrjuda)" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 msgid "Allow your profile to be searchable globally?" msgstr "" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 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 " @@ -9921,43 +9923,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 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:573 +#: src/Module/Settings/Account.php:535 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:535 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:574 +#: src/Module/Settings/Account.php:536 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:536 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:575 +#: src/Module/Settings/Account.php:537 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:537 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 " @@ -9965,227 +9967,213 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "Allow friends to post to your profile page?" msgstr "Kas lubada sõpradel sinu profiililehele postitada?" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Sinu kontaktid võivad postitada sinu profiili lehele. Need postitused edastatakse sinu kontaktidele" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Allow friends to tag your posts?" msgstr "Kas lubada sõpradel sinu postitusi tag`ida?" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Your contacts can add additional tags to your posts." msgstr "Sinu kontaktid saavad lisada täiendavaid silte su postitustele." -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:540 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:541 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:542 msgid "Default Post Permissions" msgstr "Postituste baasõigused" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:546 msgid "Expiration settings" msgstr "Aegumise sätted" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "Automatically expire posts after this many days:" msgstr "Märgi sõnumid automaatselt loetuks selle hulga päevade möödudes: " -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Kui väli tühi, siis sõnumid ei aegu. Aegunud sõnumid kustutatakse" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "Expire starred posts" msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 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:592 +#: src/Module/Settings/Account.php:554 msgid "Notification Settings" msgstr "Teadete sätted" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:555 msgid "Send a notification email when:" msgstr "Saada meiliteavitus kui:" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:556 msgid "You receive an introduction" msgstr "Sulle saabub tutvustus" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:557 msgid "Your introductions are confirmed" msgstr "Sinu tutvustused on kinnitatud" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:558 msgid "Someone writes on your profile wall" msgstr "Keegi kirjutab sinu profiili seinale" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:559 msgid "Someone writes a followup comment" msgstr "Keegi kirjutab järgneva kommentaari" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:560 msgid "You receive a private message" msgstr "Saabub privaatsõnum" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:561 msgid "You receive a friend suggestion" msgstr "Saabub sõbrasoovitus" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:562 msgid "You are tagged in a post" msgstr "Sind on postituses tag`itud" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:564 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:565 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:566 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:567 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:605 src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:567 src/Module/Settings/Account.php:568 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:568 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:569 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:570 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:571 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Activate desktop notifications" msgstr "Aktiveeri töölaua teavitused" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Show desktop popup on new notifications" msgstr "Näita hüpikakent uute teadetega" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:577 msgid "Text-only notification emails" msgstr "Ainult tekstipõhised teavitusmeilid" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:579 msgid "Send text only notification emails, without the html part" msgstr "Saada ainut tekstimeile ilma html-ita" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:583 msgid "Show detailled notifications" msgstr "Kuva detailseid teavitusi" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:585 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:589 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:591 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:632 +#: src/Module/Settings/Account.php:594 msgid "Advanced Account/Page Type Settings" msgstr "Konto/Lehetüübi sätted edasijõudnutele" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:595 msgid "Change the behaviour of this account for special situations" msgstr "" -#: src/Module/Settings/Account.php:636 -msgid "Import Contacts" -msgstr "" - -#: src/Module/Settings/Account.php:637 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "" - -#: src/Module/Settings/Account.php:638 -msgid "Upload File" -msgstr "Lae fail üles" - -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:598 msgid "Relocate" msgstr "" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:599 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:643 +#: src/Module/Settings/Account.php:600 msgid "Resend relocate message to contacts" msgstr "" @@ -10350,214 +10338,232 @@ msgstr "" msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:108 +#: src/Module/Settings/Connectors.php:107 msgid "Failed to connect with email account using the settings provided." msgstr "E-posti kontoga ei õnnestu antud sätetega ühendust saada." -#: src/Module/Settings/Connectors.php:155 -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:150 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "" -#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:149 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:150 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:161 msgid "Email access is disabled on this site." msgstr "" -#: src/Module/Settings/Connectors.php:182 -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:176 +#: src/Module/Settings/Connectors.php:226 msgid "None" msgstr "" -#: src/Module/Settings/Connectors.php:186 +#: src/Module/Settings/Connectors.php:180 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "" -#: src/Module/Settings/Connectors.php:187 +#: src/Module/Settings/Connectors.php:181 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "" -#: src/Module/Settings/Connectors.php:188 +#: src/Module/Settings/Connectors.php:182 msgid "Embed the title in the body" msgstr "" -#: src/Module/Settings/Connectors.php:199 +#: src/Module/Settings/Connectors.php:193 msgid "General Social Media Settings" msgstr "Üldised sotsiaalmeedia sätted" -#: src/Module/Settings/Connectors.php:202 +#: src/Module/Settings/Connectors.php:196 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:198 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:200 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:207 +#: src/Module/Settings/Connectors.php:201 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:208 +#: src/Module/Settings/Connectors.php:202 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "Attach the link title" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "Article Mode" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "" -#: src/Module/Settings/Connectors.php:218 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "" - -#: src/Module/Settings/Connectors.php:218 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "" - -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:215 msgid "Email/Mailbox Setup" msgstr "Emaili/Postkasti seadistamine" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:216 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Kui ühenduda kontaktidega meilitsi kasutades seda teenust (valikuline), siis palun täpsustage kuidas postkastiga ühenduda. " -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:217 msgid "Last successful email check:" msgstr "Viimane õnnestunud meilikontroll: " -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:219 msgid "IMAP server name:" msgstr "" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:220 msgid "IMAP port:" msgstr "" -#: src/Module/Settings/Connectors.php:228 +#: src/Module/Settings/Connectors.php:221 msgid "Security:" msgstr "" -#: src/Module/Settings/Connectors.php:229 +#: src/Module/Settings/Connectors.php:222 msgid "Email login name:" msgstr "" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:223 msgid "Email password:" msgstr "" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:224 msgid "Reply-to address:" msgstr "" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:225 msgid "Send public posts to all email contacts:" msgstr "" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Action after import:" msgstr "Tegevus peale inporti:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Move to folder" msgstr "Liiguta kausta" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:227 msgid "Move to folder:" msgstr "Liiguta kausta:" +#: src/Module/Settings/ContactImport.php:63 +msgid "Contact CSV file upload error" +msgstr "" + +#: src/Module/Settings/ContactImport.php:82 +msgid "Importing Contacts done" +msgstr "" + +#: src/Module/Settings/ContactImport.php:112 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "" + +#: src/Module/Settings/ContactImport.php:113 +msgid "Upload File" +msgstr "Lae fail üles" + +#: src/Module/Settings/ContactImport.php:115 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "" + +#: src/Module/Settings/ContactImport.php:115 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "" + #: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "" @@ -11008,42 +11014,42 @@ msgstr "Privaatsed märksõnad:" msgid "(Used for searching profiles, never shown to others)" msgstr "(Kasutused profiilide otsingul, ei näidata mitte kunagi teistele)" -#: 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/Crop.php:90 +#: src/Module/Settings/Profile/Photo/Crop.php:108 +#: src/Module/Settings/Profile/Photo/Crop.php:126 #: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Pildi suuruse vähendamine [%s] nurjus. " -#: src/Module/Settings/Profile/Photo/Crop.php:136 +#: src/Module/Settings/Profile/Photo/Crop.php:133 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:141 +#: src/Module/Settings/Profile/Photo/Crop.php:138 msgid "Unable to process image" msgstr "Ei saa pilti töödelda" -#: src/Module/Settings/Profile/Photo/Crop.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:157 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:182 +#: src/Module/Settings/Profile/Photo/Crop.php:179 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:208 -#: src/Module/Settings/Profile/Photo/Crop.php:212 +#: src/Module/Settings/Profile/Photo/Crop.php:205 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Crop Image" msgstr "Vähenda pilti" -#: src/Module/Settings/Profile/Photo/Crop.php:209 +#: src/Module/Settings/Profile/Photo/Crop.php:206 msgid "Please adjust the image cropping for optimum viewing." msgstr "Palun säti pildi vähendamine optimaalseks kuvamiseks." -#: src/Module/Settings/Profile/Photo/Crop.php:211 +#: src/Module/Settings/Profile/Photo/Crop.php:208 msgid "Use Image As Is" msgstr "" @@ -11114,17 +11120,17 @@ msgstr "Kasutajatunnud on %d " msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:116 +#: src/Module/Settings/RemoveMe.php:114 msgid "Remove My Account" msgstr "Eemalda Minu Konto" -#: src/Module/Settings/RemoveMe.php:117 +#: src/Module/Settings/RemoveMe.php:115 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "See eemaldab sinu konto täielikult. Kui kord tehtud, siis taastada ei saa. " -#: src/Module/Settings/RemoveMe.php:122 +#: src/Module/Settings/RemoveMe.php:120 msgid "Please enter your password for verification:" msgstr "Palun sisesta oma parool kontrollimiseks:" @@ -11519,11 +11525,11 @@ msgstr "" msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:64 +#: src/Module/Special/HTTPException.php:65 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:69 +#: src/Module/Special/HTTPException.php:70 #, php-format msgid "Exception thrown in %s:%d" msgstr "" @@ -12306,295 +12312,295 @@ msgstr "Palun kontakteeruge saatjaga vastates sellele postitusele, kui ei soovi msgid "%s posted an update." msgstr "%s postitas uuenduse." -#: src/Object/Post.php:124 +#: src/Object/Post.php:125 msgid "Private Message" msgstr "Pirvaatsõnum" -#: src/Object/Post.php:128 +#: src/Object/Post.php:129 msgid "Public Message" msgstr "" -#: src/Object/Post.php:132 +#: src/Object/Post.php:133 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:168 +#: src/Object/Post.php:169 msgid "This entry was edited" msgstr "See kanne on muudetud" -#: src/Object/Post.php:196 +#: src/Object/Post.php:197 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:225 src/Object/Post.php:227 +#: src/Object/Post.php:226 src/Object/Post.php:228 msgid "Edit" msgstr "Muuda" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Delete globally" msgstr "Kustuta globaalselt" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Remove locally" msgstr "Eemalda lokaalselt" -#: src/Object/Post.php:268 +#: src/Object/Post.php:269 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:273 +#: src/Object/Post.php:274 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:278 +#: src/Object/Post.php:279 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:282 +#: src/Object/Post.php:283 msgid "Report post" msgstr "" -#: src/Object/Post.php:293 +#: src/Object/Post.php:294 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will attend" msgstr "Ma osalen" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will not attend" msgstr "Ma ei osale" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I might attend" msgstr "Ma ehk osalen" -#: src/Object/Post.php:380 +#: src/Object/Post.php:381 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:381 +#: src/Object/Post.php:382 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:382 +#: src/Object/Post.php:383 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:392 +#: src/Object/Post.php:393 msgid "Add star" msgstr "" -#: src/Object/Post.php:393 +#: src/Object/Post.php:394 msgid "Remove star" msgstr "" -#: src/Object/Post.php:394 +#: src/Object/Post.php:395 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:405 +#: src/Object/Post.php:406 msgid "Pin" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:407 msgid "Unpin" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:408 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:410 +#: src/Object/Post.php:411 msgid "Pinned" msgstr "" -#: src/Object/Post.php:415 +#: src/Object/Post.php:416 msgid "Add tag" msgstr "" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote Share" msgstr "Tsitaadiga jagamine" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare" msgstr "Taasjaga" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Unshare" msgstr "" -#: src/Object/Post.php:478 +#: src/Object/Post.php:479 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:514 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:517 +#: src/Object/Post.php:518 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:519 +#: src/Object/Post.php:520 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:543 +#: src/Object/Post.php:544 msgid "to" msgstr "" -#: src/Object/Post.php:544 +#: src/Object/Post.php:545 msgid "via" msgstr "" -#: src/Object/Post.php:545 +#: src/Object/Post.php:546 msgid "Wall-to-Wall" msgstr "Seinalt Seinale" -#: src/Object/Post.php:546 +#: src/Object/Post.php:547 msgid "via Wall-To-Wall:" msgstr "läbi Seinalt Seinale:" -#: src/Object/Post.php:599 +#: src/Object/Post.php:600 #, php-format msgid "Reply to %s" msgstr "Vasta %s le" -#: src/Object/Post.php:602 +#: src/Object/Post.php:603 msgid "More" msgstr "Rohkem" -#: src/Object/Post.php:621 +#: src/Object/Post.php:622 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:622 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:623 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:624 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:625 +#: src/Object/Post.php:626 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:647 +#: src/Object/Post.php:648 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: src/Object/Post.php:648 +#: src/Object/Post.php:649 msgid "Show more" msgstr "Näita rohkem " -#: src/Object/Post.php:649 +#: src/Object/Post.php:650 msgid "Show fewer" msgstr "Näita vähem" -#: src/Object/Post.php:686 +#: src/Object/Post.php:687 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:691 +#: src/Object/Post.php:692 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:696 +#: src/Object/Post.php:697 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:701 +#: src/Object/Post.php:702 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:706 +#: src/Object/Post.php:707 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:711 +#: src/Object/Post.php:712 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:716 +#: src/Object/Post.php:717 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:721 +#: src/Object/Post.php:722 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:726 +#: src/Object/Post.php:727 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:731 +#: src/Object/Post.php:732 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:754 +#: src/Object/Post.php:755 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:557 +#: src/Protocol/ActivityPub/Receiver.php:558 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:530 +#: src/Protocol/Delivery.php:531 msgid "(no subject)" msgstr "" @@ -12607,20 +12613,20 @@ msgstr "" msgid "Login failed." msgstr "" -#: src/Security/Authentication.php:260 +#: src/Security/Authentication.php:261 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:374 #, php-format msgid "Welcome %s" msgstr "" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:375 msgid "Please upload a profile photo." msgstr "Palun lae profiilifoto üles" -#: src/Security/OpenWebAuth.php:149 +#: src/Security/OpenWebAuth.php:150 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "" diff --git a/view/lang/et/strings.php b/view/lang/et/strings.php index 8ac6a56612..b8cbdec222 100644 --- a/view/lang/et/strings.php +++ b/view/lang/et/strings.php @@ -729,7 +729,6 @@ $a->strings['Text-only notification emails'] = 'Ainult tekstipõhised teavitusme $a->strings['Send text only notification emails, without the html part'] = 'Saada ainut tekstimeile ilma html-ita'; $a->strings['Show detailled notifications'] = 'Kuva detailseid teavitusi'; $a->strings['Advanced Account/Page Type Settings'] = 'Konto/Lehetüübi sätted edasijõudnutele'; -$a->strings['Upload File'] = 'Lae fail üles'; $a->strings['Addon Settings'] = 'Lisade sätted'; $a->strings['Add'] = 'Lisa'; $a->strings['Failed to connect with email account using the settings provided.'] = 'E-posti kontoga ei õnnestu antud sätetega ühendust saada.'; @@ -740,6 +739,7 @@ $a->strings['Last successful email check:'] = 'Viimane õnnestunud meilikontroll $a->strings['Action after import:'] = 'Tegevus peale inporti:'; $a->strings['Move to folder'] = 'Liiguta kausta'; $a->strings['Move to folder:'] = 'Liiguta kausta:'; +$a->strings['Upload File'] = 'Lae fail üles'; $a->strings['No parent user'] = 'Vanemkasutajad ei ole'; $a->strings['Parent User'] = 'Vanemkasutaja'; $a->strings['Additional Accounts'] = 'Lisakontod'; diff --git a/view/lang/fr/messages.po b/view/lang/fr/messages.po index b8b3f77bf9..2346be75f2 100644 --- a/view/lang/fr/messages.po +++ b/view/lang/fr/messages.po @@ -36,7 +36,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: cracrayol, 2024\n" "Language-Team: French (http://app.transifex.com/Friendica/friendica/language/fr/)\n" @@ -46,34 +46,34 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\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 "Impossible de localiser la publication originale." -#: mod/item.php:127 +#: mod/item.php:126 msgid "Post updated." msgstr "Publication mise à jour." -#: mod/item.php:192 mod/item.php:196 +#: mod/item.php:191 mod/item.php:195 msgid "Item wasn't stored." msgstr "La publication n'a pas été enregistrée." -#: mod/item.php:206 +#: mod/item.php:205 msgid "Item couldn't be fetched." msgstr "La publication n'a pas pu être récupérée." -#: mod/item.php:250 mod/item.php:254 +#: mod/item.php:249 mod/item.php:253 msgid "Empty post discarded." msgstr "Publication vide rejetée." -#: 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 "Élément introuvable." -#: 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 @@ -84,7 +84,7 @@ msgstr "Élément introuvable." #: 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 @@ -93,13 +93,15 @@ msgstr "Élément introuvable." #: 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 @@ -108,15 +110,15 @@ msgstr "Élément introuvable." msgid "Permission denied." msgstr "Permission refusée." -#: mod/lostpass.php:28 +#: mod/lostpass.php:27 msgid "No valid account found." msgstr "Impossible de trouver un compte valide." -#: mod/lostpass.php:40 +#: mod/lostpass.php:39 msgid "Password reset request issued. Check your email." msgstr "Réinitialisation du mot de passe en cours. Vérifiez vos courriels." -#: mod/lostpass.php:46 +#: mod/lostpass.php:45 #, php-format msgid "" "\n" @@ -132,7 +134,7 @@ msgid "" "\t\tissued this request." msgstr "\n\t\tCher/Chère %1$s,\n\t\t\tUne demande vient d'être faite depuis \"%2$s\" pour réinitialiser votre mot de passe de compte. \n\t\tAfin de confirmer cette demande, merci de sélectionner le lien ci-dessous \n\t\tet de le coller dans la barre d'adresse de votre navigateur.\n\n\t\tSi vous n'avez PAS fait cette demande de changement, merci de NE PAS suivre le lien\n\t\tci-dessous et d'ignorer et/ou supprimer ce message. La demande expirera rapidement.\n\n\t\tVotre mot de passe ne changera pas tant que nous n'avons pas vérifié que vous êtes à l'origine de la demande." -#: mod/lostpass.php:57 +#: mod/lostpass.php:56 #, php-format msgid "" "\n" @@ -149,70 +151,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\n\t\tSuivez ce lien pour confirmer votre identité :\n\n\t\t%1$s\n\n\t\tVous recevrez alors un message contenant votre nouveau mot de passe.\n\t\tVous pourrez changer ce mot de passe depuis les paramètres de votre compte une fois connecté.\n\n\t\tInformations de connexion :\n\n\t\tAdresse :\t%2$s\n\t\tIdentifiant :\t%3$s" -#: mod/lostpass.php:72 +#: mod/lostpass.php:71 #, php-format msgid "Password reset requested at %s" msgstr "Demande de réinitialisation de mot de passe depuis %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 "La requête n'a pas pu être vérifiée. (Vous l'avez peut-être déjà précédemment envoyée.) La réinitialisation du mot de passe a échoué." -#: mod/lostpass.php:101 +#: mod/lostpass.php:100 msgid "Request has expired, please make a new one." msgstr "La requête a expiré, veuillez la renouveler." -#: mod/lostpass.php:116 +#: mod/lostpass.php:115 msgid "Forgot your Password?" msgstr "Mot de passe oublié ?" -#: 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 "Entrez votre adresse de courriel et validez pour réinitialiser votre mot de passe. Vous recevrez la suite des instructions par courriel." -#: 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 "Pseudo ou Courriel : " -#: mod/lostpass.php:119 +#: mod/lostpass.php:118 msgid "Reset" msgstr "Réinitialiser" -#: mod/lostpass.php:134 src/Module/Security/Login.php:161 +#: mod/lostpass.php:133 src/Module/Security/Login.php:161 msgid "Password Reset" msgstr "Réinitialiser le mot de passe" -#: mod/lostpass.php:135 +#: mod/lostpass.php:134 msgid "Your password has been reset as requested." msgstr "Votre mot de passe a bien été réinitialisé." -#: mod/lostpass.php:136 +#: mod/lostpass.php:135 msgid "Your new password is" msgstr "Votre nouveau mot de passe est " -#: mod/lostpass.php:137 +#: mod/lostpass.php:136 msgid "Save or copy your new password - and then" msgstr "Sauvez ou copiez ce nouveau mot de passe - puis" -#: mod/lostpass.php:138 +#: mod/lostpass.php:137 msgid "click here to login" msgstr "cliquez ici pour vous connecter" -#: mod/lostpass.php:139 +#: mod/lostpass.php:138 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Votre mot de passe peut être changé depuis la page <em>Réglages</em>, une fois que vous serez connecté." -#: mod/lostpass.php:143 +#: mod/lostpass.php:142 msgid "Your password has been reset." msgstr "Votre mot de passe a été réinitialisé." -#: mod/lostpass.php:146 +#: mod/lostpass.php:145 #, php-format msgid "" "\n" @@ -223,7 +225,7 @@ msgid "" "\t\t" msgstr "\n\t\t\t\tChère/Cher %1$s,\n\t\t\t\t\tVotre mot de passe a été changé ainsi que vous l’avez demandé. Veuillez conserver cette informations dans vos archives (ou changer immédiatement votre mot de passe pour un autre dont vous vous souviendrez).\n\t\t\t" -#: mod/lostpass.php:152 +#: mod/lostpass.php:151 #, php-format msgid "" "\n" @@ -237,7 +239,7 @@ msgid "" "\t\t" msgstr "\n\t\t\t\tVoici vos informations de connexion :\n\n\t\t\t\tAdresse :\t%1$s\n\t\t\t\tIdentifiant :\t%2$s\n\t\t\t\tMot de passe :\t%3$s\n\n\t\t\t\tVous pourrez changer votre mot de passe dans les paramètres de votre compte une fois connecté.\n\t\t\t" -#: mod/lostpass.php:164 +#: mod/lostpass.php:163 #, php-format msgid "Your password has been changed at %s" msgstr "Votre mot de passe a été modifié à %s" @@ -301,11 +303,11 @@ msgstr "À:" msgid "Subject:" msgstr "Sujet:" -#: 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 "Votre message :" -#: 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 "Joindre photo" @@ -314,16 +316,16 @@ msgstr "Joindre photo" msgid "Insert web link" msgstr "Insérer lien web" -#: 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 "Patientez" -#: 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 @@ -331,7 +333,7 @@ msgstr "Patientez" #: 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 @@ -340,7 +342,7 @@ msgstr "Patientez" #: 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" @@ -399,396 +401,396 @@ msgstr[0] "%d message" msgstr[1] "%d messages" msgstr[2] "%d messages" -#: mod/notes.php:40 src/Module/BaseProfile.php:93 +#: mod/notes.php:41 src/Module/BaseProfile.php:93 msgid "Personal Notes" msgstr "Notes personnelles" -#: mod/notes.php:44 +#: mod/notes.php:45 msgid "Personal notes are visible only by yourself." msgstr "Les notes personnelles ne sont visibles que par vous." -#: 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 "Sauver" -#: 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 "Utilisateur introuvable." -#: 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 "Albums photo" -#: 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 "Photos récentes" -#: 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 "Téléverser de nouvelles photos" -#: 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 "tout le monde" -#: mod/photos.php:142 +#: mod/photos.php:140 msgid "Contact information unavailable" msgstr "Informations de contact indisponibles" -#: mod/photos.php:171 +#: mod/photos.php:169 msgid "Album not found." msgstr "Album introuvable." -#: mod/photos.php:227 +#: mod/photos.php:225 msgid "Album successfully deleted" msgstr "Album bien supprimé" -#: mod/photos.php:229 +#: mod/photos.php:227 msgid "Album was empty." msgstr "L'album était vide" -#: mod/photos.php:260 +#: mod/photos.php:258 msgid "Failed to delete the photo." msgstr "La suppression de la photo a échoué." -#: mod/photos.php:504 +#: mod/photos.php:502 msgid "a photo" msgstr "une photo" -#: mod/photos.php:504 +#: mod/photos.php:502 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s a été mentionné(e) dans %2$s par %3$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 "Accès public refusé." -#: mod/photos.php:546 +#: mod/photos.php:544 msgid "No photos selected" msgstr "Aucune photo sélectionnée" -#: mod/photos.php:674 +#: mod/photos.php:672 #, php-format msgid "The maximum accepted image size is %s" msgstr "La taille maximum d'image autorisée est de %s" -#: mod/photos.php:681 +#: mod/photos.php:679 msgid "Upload Photos" msgstr "Téléverser des photos" -#: mod/photos.php:685 mod/photos.php:774 +#: mod/photos.php:683 mod/photos.php:772 msgid "New album name: " msgstr "Nom du nouvel album : " -#: mod/photos.php:686 +#: mod/photos.php:684 msgid "or select existing album:" msgstr "ou sélectionner un album existant" -#: mod/photos.php:687 +#: mod/photos.php:685 msgid "Do not show a status post for this upload" msgstr "Ne pas publier de notice de statut pour cet envoi" -#: 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 "Permissions" -#: mod/photos.php:755 +#: mod/photos.php:753 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Voulez-vous vraiment supprimer cet album photo et toutes ses photos ?" -#: mod/photos.php:756 mod/photos.php:779 +#: mod/photos.php:754 mod/photos.php:777 msgid "Delete Album" msgstr "Effacer l'album" -#: 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 "Annuler" -#: mod/photos.php:783 +#: mod/photos.php:781 msgid "Edit Album" msgstr "Éditer l'album" -#: mod/photos.php:784 +#: mod/photos.php:782 msgid "Drop Album" msgstr "Supprimer l'album" -#: mod/photos.php:788 +#: mod/photos.php:786 msgid "Show Newest First" msgstr "Plus récent d'abord" -#: mod/photos.php:790 +#: mod/photos.php:788 msgid "Show Oldest First" msgstr "Plus ancien d'abord" -#: mod/photos.php:811 src/Module/Profile/Photos.php:335 +#: mod/photos.php:809 src/Module/Profile/Photos.php:343 msgid "View Photo" msgstr "Voir la photo" -#: mod/photos.php:843 +#: mod/photos.php:841 msgid "Permission denied. Access to this item may be restricted." msgstr "Interdit. L'accès à cet élément peut avoir été restreint." -#: mod/photos.php:845 +#: mod/photos.php:843 msgid "Photo not available" msgstr "Photo indisponible" -#: mod/photos.php:855 +#: mod/photos.php:853 msgid "Do you really want to delete this photo?" msgstr "Voulez-vous vraiment supprimer cette photo ?" -#: mod/photos.php:856 mod/photos.php:1056 +#: mod/photos.php:854 mod/photos.php:1054 msgid "Delete Photo" msgstr "Effacer la photo" -#: mod/photos.php:954 +#: mod/photos.php:952 msgid "View photo" msgstr "Voir photo" -#: mod/photos.php:956 +#: mod/photos.php:954 msgid "Edit photo" msgstr "Éditer la photo" -#: mod/photos.php:957 +#: mod/photos.php:955 msgid "Delete photo" msgstr "Effacer la photo" -#: mod/photos.php:958 +#: mod/photos.php:956 msgid "Use as profile photo" msgstr "Utiliser comme photo de profil" -#: mod/photos.php:965 +#: mod/photos.php:963 msgid "Private Photo" msgstr "Photo privée" -#: mod/photos.php:971 +#: mod/photos.php:969 msgid "View Full Size" msgstr "Voir en taille réelle" -#: mod/photos.php:1024 +#: mod/photos.php:1022 msgid "Tags: " msgstr "Étiquettes :" -#: mod/photos.php:1027 +#: mod/photos.php:1025 msgid "[Select tags to remove]" msgstr "[Sélectionner les étiquettes à supprimer]" -#: mod/photos.php:1042 +#: mod/photos.php:1040 msgid "New album name" msgstr "Nom du nouvel album" -#: mod/photos.php:1043 +#: mod/photos.php:1041 msgid "Caption" msgstr "Titre" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "Add a Tag" msgstr "Ajouter une étiquette" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Exemples : @bob, @Barbara_Jensen, @jim@example.com, #Californie, #vacances" -#: mod/photos.php:1045 +#: mod/photos.php:1043 msgid "Do not rotate" msgstr "Pas de rotation" -#: mod/photos.php:1046 +#: mod/photos.php:1044 msgid "Rotate CW (right)" msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)" -#: mod/photos.php:1047 +#: mod/photos.php:1045 msgid "Rotate CCW (left)" msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauche)" -#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: mod/photos.php:1091 mod/photos.php:1147 mod/photos.php:1227 #: src/Module/Contact.php:600 src/Module/Item/Compose.php:184 -#: src/Object/Post.php:1142 +#: src/Object/Post.php:1143 msgid "This is you" msgstr "C'est vous" -#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 -#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:598 -#: src/Object/Post.php:1144 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:599 +#: src/Object/Post.php:1145 msgid "Comment" msgstr "Commenter" -#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 -#: src/Content/Conversation.php:401 src/Module/Calendar/Event/Form.php:234 +#: 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 -#: src/Object/Post.php:1158 +#: src/Object/Post.php:1159 msgid "Preview" msgstr "Aperçu" -#: mod/photos.php:1098 src/Content/Conversation.php:355 -#: src/Module/Post/Edit.php:121 src/Object/Post.php:1146 +#: mod/photos.php:1096 src/Content/Conversation.php:357 +#: src/Module/Post/Edit.php:121 src/Object/Post.php:1147 msgid "Loading..." msgstr "Chargement en cours..." -#: mod/photos.php:1190 src/Content/Conversation.php:1485 -#: src/Object/Post.php:260 +#: mod/photos.php:1188 src/Content/Conversation.php:1487 +#: src/Object/Post.php:261 msgid "Select" msgstr "Sélectionner" -#: mod/photos.php:1191 src/Content/Conversation.php:1486 -#: 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:233 +#: 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 +#: src/Module/Settings/Connectors.php:226 #: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Supprimer" -#: mod/photos.php:1252 src/Object/Post.php:426 +#: mod/photos.php:1250 src/Object/Post.php:427 msgid "Like" msgstr "Aime" -#: mod/photos.php:1253 src/Object/Post.php:426 +#: mod/photos.php:1251 src/Object/Post.php:427 msgid "I like this (toggle)" msgstr "J'aime" -#: mod/photos.php:1254 src/Object/Post.php:427 +#: mod/photos.php:1252 src/Object/Post.php:428 msgid "Dislike" msgstr "N'aime pas" -#: mod/photos.php:1256 src/Object/Post.php:427 +#: mod/photos.php:1254 src/Object/Post.php:428 msgid "I don't like this (toggle)" msgstr "Je n'aime pas" -#: mod/photos.php:1278 +#: mod/photos.php:1276 msgid "Map" msgstr "Carte" -#: src/App.php:467 +#: src/App.php:255 msgid "Apologies but the website is unavailable at the moment." msgstr "Désolé mais le site web n'est pas disponible pour le moment." -#: src/App/Page.php:237 +#: src/App/Page.php:241 msgid "Delete this item?" msgstr "Effacer cet élément?" -#: src/App/Page.php:238 +#: src/App/Page.php:242 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 "Bloquer cet auteur ? Il ne pourra pas s'abonner à votre compte et vous ne pourrez pas voir ses publications, ni ses commentaires." -#: src/App/Page.php:239 +#: src/App/Page.php:243 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "Ignorer cet auteur ? Vous ne serez plus en mesure de voir ses publications et notifications." -#: src/App/Page.php:240 +#: src/App/Page.php:244 msgid "Collapse this author's posts?" msgstr "Réduire les publications de cet auteur ?" -#: src/App/Page.php:241 +#: src/App/Page.php:245 msgid "Ignore this author's server?" msgstr "Ignorer le serveur de cet auteur ?" -#: src/App/Page.php:242 src/Module/Settings/Server/Action.php:47 +#: src/App/Page.php:246 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 "Vous ne verrez aucun contenu provenant de ce serveur, y compris les partages dans votre page Réseau, les pages de la communauté et les conversations individuelles." -#: src/App/Page.php:244 +#: src/App/Page.php:248 msgid "Like not successful" msgstr "Erreur lors du \"Aime\"" -#: src/App/Page.php:245 +#: src/App/Page.php:249 msgid "Dislike not successful" msgstr "Erreur lors du \"N'aime pas\"" -#: src/App/Page.php:246 +#: src/App/Page.php:250 msgid "Sharing not successful" msgstr "Erreur lors du \"Partager\"" -#: src/App/Page.php:247 +#: src/App/Page.php:251 msgid "Attendance unsuccessful" msgstr "Erreur lors du \"Participer\"" -#: src/App/Page.php:248 +#: src/App/Page.php:252 msgid "Backend error" msgstr "Erreur backend" -#: src/App/Page.php:249 +#: src/App/Page.php:253 msgid "Network error" msgstr "Erreur réseau" -#: src/App/Page.php:252 +#: src/App/Page.php:256 msgid "Drop files here to upload" msgstr "Déposer des fichiers ici pour les envoyer" -#: src/App/Page.php:253 +#: src/App/Page.php:257 msgid "Your browser does not support drag and drop file uploads." msgstr "Votre navigateur ne supporte pas l'envoi de fichier par glisser-déposer." -#: src/App/Page.php:254 +#: src/App/Page.php:258 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "Veuillez utiliser le formulaire ci-dessous pour envoyer vos fichiers comme au bon vieux temps." -#: src/App/Page.php:255 +#: src/App/Page.php:259 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "Fichier trop volumineux ({{filesize}}Mio). Taille maximum : {{maxFilesize}}Mio." -#: src/App/Page.php:256 +#: src/App/Page.php:260 msgid "You can't upload files of this type." msgstr "Vous ne pouvez pas envoyer des fichiers de ce type." -#: src/App/Page.php:257 +#: src/App/Page.php:261 msgid "Server responded with {{statusCode}} code." msgstr "Le serveur a répondu avec un code {{statusCode}}." -#: src/App/Page.php:258 +#: src/App/Page.php:262 msgid "Cancel upload" msgstr "Annuler l'envoi" -#: src/App/Page.php:259 +#: src/App/Page.php:263 msgid "Upload canceled." msgstr "Envoi annulé." -#: src/App/Page.php:260 +#: src/App/Page.php:264 msgid "Are you sure you want to cancel this upload?" msgstr "Êtes-vous sûr de vouloir annuler cet envoi ?" -#: src/App/Page.php:261 +#: src/App/Page.php:265 msgid "Remove file" msgstr "Supprimer le fichier" -#: src/App/Page.php:262 +#: src/App/Page.php:266 msgid "You can't upload any more files." msgstr "Vous ne pouvez plus envoyer de fichiers." -#: src/App/Page.php:346 +#: src/App/Page.php:350 msgid "toggle mobile" msgstr "activ. mobile" @@ -821,7 +823,7 @@ msgid "All contacts" msgstr "Tous les contacts" #: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 -#: src/Content/Widget.php:254 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Content/Widget.php:254 src/Core/ACL.php:182 src/Module/Contact.php:395 #: src/Module/Privacy/PermissionTooltip.php:150 #: src/Module/Privacy/PermissionTooltip.php:172 #: src/Module/Settings/Channels.php:146 @@ -863,7 +865,7 @@ msgstr "Aucune entrée de contact non archivé n'a été trouvé pour cette URL msgid "The contact entries have been archived" msgstr "Les contacts ont été archivés" -#: src/Console/ClearAvatarCache.php:73 +#: src/Console/ClearAvatarCache.php:74 msgid "" "The avatar cache needs to be disabled in local.config.php to use this " "command." @@ -949,22 +951,22 @@ msgstr "Le cache des avatars doit être activé pour pouvoir utiliser cette comm msgid "no resource in photo %s" msgstr "Aucune ressource dans la photo %s" -#: src/Console/MoveToAvatarCache.php:123 +#: src/Console/MoveToAvatarCache.php:127 #, php-format msgid "no photo with id %s" msgstr "aucune photo avec l'id %s" -#: src/Console/MoveToAvatarCache.php:132 +#: src/Console/MoveToAvatarCache.php:136 #, php-format msgid "no image data for photo with id %s" msgstr "aucune donnée d'image pour la photo avec l'id %s" -#: src/Console/MoveToAvatarCache.php:141 +#: src/Console/MoveToAvatarCache.php:145 #, php-format msgid "invalid image for id %s" msgstr "image invalide pour l'id %s" -#: src/Console/MoveToAvatarCache.php:154 +#: src/Console/MoveToAvatarCache.php:158 #, php-format msgid "Quit on invalid photo %s" msgstr "Sortie sur photo %s invalide" @@ -994,11 +996,14 @@ msgstr "Toutes les mises à jour de publications en attente sont terminées." msgid "Enter user nickname: " msgstr "Entrer un pseudo :" -#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Console/User.php:168 src/Model/User.php:830 #: src/Module/Api/Twitter/ContactEndpoint.php:62 -#: 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/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/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "Utilisateur introuvable" @@ -1008,12 +1013,12 @@ msgid "Enter new password: " msgstr "Entrer le nouveau mot de passe :" #: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 -#: src/Module/Settings/Account.php:59 +#: src/Module/Settings/Account.php:57 msgid "Password update failed. Please try again." msgstr "Le changement de mot de passe a échoué. Merci de recommencer." #: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 -#: src/Module/Settings/Account.php:62 +#: src/Module/Settings/Account.php:60 msgid "Password changed." msgstr "Mot de passe changé." @@ -1094,86 +1099,86 @@ msgstr "Hebdomadaire" msgid "Monthly" msgstr "Mensuelle" -#: src/Content/ContactSelector.php:118 +#: src/Content/ContactSelector.php:117 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:119 +#: src/Content/ContactSelector.php:118 msgid "OStatus" msgstr "Ostatus" -#: src/Content/ContactSelector.php:120 +#: src/Content/ContactSelector.php:119 msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:121 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Content/ContactSelector.php:120 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:58 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "Courriel" -#: src/Content/ContactSelector.php:122 src/Module/Debug/Babel.php:273 +#: src/Content/ContactSelector.php:121 src/Module/Debug/Babel.php:273 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:123 +#: src/Content/ContactSelector.php:122 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:124 +#: src/Content/ContactSelector.php:123 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:125 +#: src/Content/ContactSelector.php:124 msgid "XMPP/IM" msgstr "XMPP/Messagerie Instantanée" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:125 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:126 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:127 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:129 +#: src/Content/ContactSelector.php:128 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:130 +#: src/Content/ContactSelector.php:129 msgid "Discourse" msgstr "Discourse" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:130 msgid "Diaspora Connector" msgstr "Connecteur Disapora" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:131 msgid "GNU Social Connector" msgstr "Connecteur GNU Social" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:132 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:133 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:134 msgid "Tumblr" msgstr "Tumblr" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:135 msgid "Bluesky" msgstr "Bluesky" @@ -1182,16 +1187,16 @@ msgstr "Bluesky" msgid "%s (via %s)" msgstr "%s (via %s)" -#: src/Content/Conversation.php:213 +#: src/Content/Conversation.php:215 msgid "and" msgstr "et" -#: src/Content/Conversation.php:216 +#: src/Content/Conversation.php:218 #, php-format msgid "and %d other people" msgstr "et %d autres personnes" -#: src/Content/Conversation.php:222 +#: src/Content/Conversation.php:224 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." @@ -1199,7 +1204,7 @@ msgstr[0] "%2$s aime." msgstr[1] "%2$s aiment." msgstr[2] "%2$s aiment." -#: src/Content/Conversation.php:224 +#: src/Content/Conversation.php:226 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." @@ -1207,7 +1212,7 @@ msgstr[0] "%2$s n'aime pas." msgstr[1] "%2$s n'aiment pas." msgstr[2] "%2$s n'aiment pas." -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:228 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." @@ -1215,7 +1220,7 @@ msgstr[0] "%2$s participe." msgstr[1] "%2$s participent." msgstr[2] "%2$s participent." -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:230 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." @@ -1223,7 +1228,7 @@ msgstr[0] "%2$s ne participe pas." msgstr[1] "%2$s ne participent pas." msgstr[2] "%2$s ne participent pas." -#: src/Content/Conversation.php:230 +#: src/Content/Conversation.php:232 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." @@ -1231,7 +1236,7 @@ msgstr[0] "%2$s participe peut-être." msgstr[1] "%2$s participent peut-être." msgstr[2] "%2$s participent peut-être." -#: src/Content/Conversation.php:232 +#: src/Content/Conversation.php:234 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." @@ -1239,7 +1244,7 @@ msgstr[0] "%2$s à partagé." msgstr[1] "%2$s ont partagé." msgstr[2] "%2$s ont partagé." -#: src/Content/Conversation.php:263 +#: src/Content/Conversation.php:265 #, php-format msgid " likes this" msgid_plural " like this" @@ -1247,7 +1252,7 @@ msgstr[0] " aime" msgstr[1] " aiment" msgstr[2] " aiment" -#: src/Content/Conversation.php:266 +#: src/Content/Conversation.php:268 #, php-format msgid " doesn't like this" msgid_plural " don't like this" @@ -1255,7 +1260,7 @@ msgstr[0] " n'aime pas" msgstr[1] " n'aiment pas" msgstr[2] " n'aiment pas" -#: src/Content/Conversation.php:269 +#: src/Content/Conversation.php:271 #, php-format msgid " attends" msgid_plural " attend" @@ -1263,7 +1268,7 @@ msgstr[0] " participe" msgstr[1] " participent" msgstr[2] " participent" -#: src/Content/Conversation.php:272 +#: src/Content/Conversation.php:274 #, php-format msgid " doesn't attend" msgid_plural " don't attend" @@ -1271,7 +1276,7 @@ msgstr[0] " ne participe pas" msgstr[1] " ne participent pas" msgstr[2] " ne participent pas" -#: src/Content/Conversation.php:275 +#: src/Content/Conversation.php:277 #, php-format msgid " attends maybe" msgid_plural " attend maybe" @@ -1279,7 +1284,7 @@ msgstr[0] " participe peut-ê msgstr[1] " participent peut-être" msgstr[2] " participent peut-être" -#: src/Content/Conversation.php:278 +#: src/Content/Conversation.php:280 #, php-format msgid " reshared this" msgid_plural " reshared this" @@ -1287,281 +1292,281 @@ msgstr[0] " a partagé" msgstr[1] " ont partagé" msgstr[2] " ont partagé" -#: src/Content/Conversation.php:324 +#: src/Content/Conversation.php:326 msgid "Visible to everybody" msgstr "Visible par tout le monde" -#: src/Content/Conversation.php:325 src/Module/Item/Compose.php:196 -#: src/Object/Post.php:1157 +#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196 +#: src/Object/Post.php:1158 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Veuillez entrer une URL d'image/vidéo/page web." -#: src/Content/Conversation.php:326 +#: src/Content/Conversation.php:328 msgid "Tag term:" msgstr "Tag :" -#: src/Content/Conversation.php:327 src/Module/Filer/SaveTag.php:59 +#: src/Content/Conversation.php:329 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Sauver dans le Dossier :" -#: src/Content/Conversation.php:328 +#: src/Content/Conversation.php:330 msgid "Where are you right now?" msgstr "Où êtes-vous actuellement ?" -#: src/Content/Conversation.php:329 +#: src/Content/Conversation.php:331 msgid "Delete item(s)?" msgstr "Supprimer les élément(s) ?" -#: src/Content/Conversation.php:341 src/Module/Item/Compose.php:171 +#: src/Content/Conversation.php:343 src/Module/Item/Compose.php:171 msgid "Created at" msgstr "Créé à" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:353 msgid "New Post" msgstr "Nouvelle publication" -#: src/Content/Conversation.php:354 +#: src/Content/Conversation.php:356 msgid "Share" msgstr "Partager" -#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:123 +#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:123 msgid "upload photo" msgstr "envoi image" -#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:124 +#: src/Content/Conversation.php:360 src/Module/Post/Edit.php:124 msgid "Attach file" msgstr "Joindre fichier" -#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:125 +#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:125 msgid "attach file" msgstr "ajout fichier" -#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:186 -#: src/Module/Post/Edit.php:162 src/Object/Post.php:1147 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1148 msgid "Bold" msgstr "Gras" -#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:187 -#: src/Module/Post/Edit.php:163 src/Object/Post.php:1148 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1149 msgid "Italic" msgstr "Italique" -#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:188 -#: src/Module/Post/Edit.php:164 src/Object/Post.php:1149 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1150 msgid "Underline" msgstr "Souligné" -#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:189 -#: src/Module/Post/Edit.php:165 src/Object/Post.php:1151 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:165 src/Object/Post.php:1152 msgid "Quote" msgstr "Citation" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:166 src/Object/Post.php:1152 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:166 src/Object/Post.php:1153 msgid "Add emojis" msgstr "Ajouter des émojis" -#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:191 -#: src/Object/Post.php:1150 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Object/Post.php:1151 msgid "Content Warning" msgstr "Avertissement de contenu" -#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:167 src/Object/Post.php:1153 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:167 src/Object/Post.php:1154 msgid "Code" msgstr "Code" -#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:193 -#: src/Object/Post.php:1154 +#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1155 msgid "Image" msgstr "Image" -#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:168 src/Object/Post.php:1155 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:168 src/Object/Post.php:1156 msgid "Link" msgstr "Lien" -#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:195 -#: src/Module/Post/Edit.php:169 src/Object/Post.php:1156 +#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:169 src/Object/Post.php:1157 msgid "Link or Media" msgstr "Lien ou média" -#: src/Content/Conversation.php:370 +#: src/Content/Conversation.php:372 msgid "Video" msgstr "Vidéo" -#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:198 +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:198 #: src/Module/Post/Edit.php:132 msgid "Set your location" msgstr "Définir votre localisation" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:133 msgid "set location" msgstr "spéc. localisation" -#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:134 msgid "Clear browser location" msgstr "Effacer la localisation du navigateur" -#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:135 +#: src/Content/Conversation.php:376 src/Module/Post/Edit.php:135 msgid "clear location" msgstr "supp. localisation" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:203 +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:203 #: src/Module/Post/Edit.php:148 msgid "Set title" msgstr "Définir un titre" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:204 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 #: src/Module/Post/Edit.php:150 msgid "Categories (comma-separated list)" msgstr "Catégories (séparées par des virgules)" -#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:220 +#: src/Content/Conversation.php:385 src/Module/Item/Compose.php:220 msgid "Scheduled at" msgstr "Prévu pour" -#: src/Content/Conversation.php:388 src/Module/Post/Edit.php:137 +#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:137 msgid "Permission settings" msgstr "Réglages des permissions" -#: src/Content/Conversation.php:397 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:399 src/Module/Post/Edit.php:146 msgid "Public post" msgstr "Publication publique" -#: src/Content/Conversation.php:411 src/Content/Widget/VCard.php:121 +#: 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 msgid "Message" msgstr "Message" -#: src/Content/Conversation.php:412 src/Module/Post/Edit.php:173 +#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:173 #: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Navigateur" -#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:176 +#: src/Content/Conversation.php:416 src/Module/Post/Edit.php:176 msgid "Open Compose page" msgstr "Ouvrir la page de saisie" -#: src/Content/Conversation.php:581 +#: src/Content/Conversation.php:583 msgid "remove" msgstr "enlever" -#: src/Content/Conversation.php:585 +#: src/Content/Conversation.php:587 msgid "Delete Selected Items" msgstr "Supprimer les éléments sélectionnés" -#: src/Content/Conversation.php:713 src/Content/Conversation.php:716 -#: src/Content/Conversation.php:719 src/Content/Conversation.php:722 -#: src/Content/Conversation.php:725 +#: 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 #, php-format msgid "You had been addressed (%s)." msgstr "Vous avez été mentionné (%s)" -#: src/Content/Conversation.php:728 +#: src/Content/Conversation.php:730 #, php-format msgid "You are following %s." msgstr "Vous suivez %s." -#: src/Content/Conversation.php:733 +#: src/Content/Conversation.php:735 #, php-format msgid "You subscribed to %s." msgstr "Vous vous êtes abonné(e) à %s." -#: src/Content/Conversation.php:735 +#: src/Content/Conversation.php:737 msgid "You subscribed to one or more tags in this post." msgstr "Vous vous êtes abonné(e) à une étiquette ou plus de cette publication." -#: src/Content/Conversation.php:755 +#: src/Content/Conversation.php:757 #, php-format msgid "%s reshared this." msgstr "%s a partagé." -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 msgid "Reshared" msgstr "Partagé" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 #, php-format msgid "Reshared by %s <%s>" msgstr "Partagé par %s <%s>" -#: src/Content/Conversation.php:760 +#: src/Content/Conversation.php:762 #, php-format msgid "%s is participating in this thread." msgstr "%s participe à ce fil de discussion" -#: src/Content/Conversation.php:763 +#: src/Content/Conversation.php:765 msgid "Stored for general reasons" msgstr "Stocké pour des raisons générales." -#: src/Content/Conversation.php:766 +#: src/Content/Conversation.php:768 msgid "Global post" msgstr "Publication globale" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 msgid "Sent via an relay server" msgstr "Envoyé via un serveur relais" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "Envoyé par le serveur relais %s <%s>" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 msgid "Fetched" msgstr "Récupéré" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 #, php-format msgid "Fetched because of %s <%s>" msgstr "Récupéré grâce à %s <%s>" -#: src/Content/Conversation.php:775 +#: src/Content/Conversation.php:777 msgid "Stored because of a child post to complete this thread." msgstr "Stocké parce qu'une publication fille complète ce fil de discussion." -#: src/Content/Conversation.php:778 +#: src/Content/Conversation.php:780 msgid "Local delivery" msgstr "Distribution locale" -#: src/Content/Conversation.php:781 +#: src/Content/Conversation.php:783 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "Stocké en lien avec votre activité (j'aime, commentaire, étoile...)" -#: src/Content/Conversation.php:784 +#: src/Content/Conversation.php:786 msgid "Distributed" msgstr "Distribué" -#: src/Content/Conversation.php:787 +#: src/Content/Conversation.php:789 msgid "Pushed to us" msgstr "Poussé vers nous" -#: src/Content/Conversation.php:1505 src/Object/Post.php:247 +#: src/Content/Conversation.php:1507 src/Object/Post.php:248 msgid "Pinned item" msgstr "Élément épinglé" -#: src/Content/Conversation.php:1522 src/Object/Post.php:541 -#: src/Object/Post.php:542 +#: src/Content/Conversation.php:1524 src/Object/Post.php:542 +#: src/Object/Post.php:543 #, php-format msgid "View %s's profile @ %s" msgstr "Voir le profil de %s @ %s" -#: src/Content/Conversation.php:1536 src/Object/Post.php:529 +#: src/Content/Conversation.php:1538 src/Object/Post.php:530 msgid "Categories:" msgstr "Catégories :" -#: src/Content/Conversation.php:1537 src/Object/Post.php:530 +#: src/Content/Conversation.php:1539 src/Object/Post.php:531 msgid "Filed under:" msgstr "Rangé sous :" -#: src/Content/Conversation.php:1545 src/Object/Post.php:556 +#: src/Content/Conversation.php:1547 src/Object/Post.php:557 #, php-format msgid "%s from %s" msgstr "%s de %s" -#: src/Content/Conversation.php:1561 +#: src/Content/Conversation.php:1563 msgid "View in context" msgstr "Voir dans le contexte" @@ -1694,7 +1699,7 @@ msgstr "Personnel" msgid "Posts that mention or involve you" msgstr "Publications qui vous concernent" -#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:398 msgid "Starred" msgstr "Mis en avant" @@ -1781,7 +1786,7 @@ msgstr "Affiche les publications créées par les comptes du cercle sélectionn #: 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:552 src/Model/User.php:1390 +#: src/Content/Widget.php:555 src/Model/User.php:1390 msgid "Groups" msgstr "Groupes" @@ -1789,7 +1794,7 @@ msgstr "Groupes" msgid "Display posts that have been distributed by the selected group." msgstr "Affiche les publications qui ont été distribuées par le groupe sélectionné." -#: src/Content/Feature.php:117 src/Content/Widget.php:521 +#: src/Content/Feature.php:117 src/Content/Widget.php:524 msgid "Archives" msgstr "Archives" @@ -1805,8 +1810,8 @@ msgstr "Protocoles" msgid "Display posts with the selected protocols." msgstr "Affiche les publications obtenues via les protocoles sélectionnés." -#: src/Content/Feature.php:119 src/Content/Widget.php:558 -#: src/Module/Settings/Account.php:429 +#: src/Content/Feature.php:119 src/Content/Widget.php:561 +#: src/Module/Settings/Account.php:391 msgid "Account Types" msgstr "Type de compte" @@ -1814,7 +1819,7 @@ msgstr "Type de compte" msgid "Display posts done by accounts with the selected account type." msgstr "Affiche les publications des comptes du type sélectionné." -#: src/Content/Feature.php:120 src/Content/Widget.php:607 +#: 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 msgid "Channels" @@ -1840,7 +1845,7 @@ msgstr "Dossiers sauvegardés" msgid "Display a list of folders in which posts are stored." msgstr "Affiche une liste de dossier dans lesquels les publications sont enregistrées." -#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:189 msgid "Own Contacts" msgstr "Publications de vos propres contacts" @@ -1896,12 +1901,12 @@ msgstr "Autorise les visiteurs anonymes à consulter votre calendrier et vos év msgid "External link to group" msgstr "Lien externe vers le groupe" -#: src/Content/GroupManager.php:139 src/Content/Widget.php:527 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:530 msgid "show less" msgstr "voir moins" #: src/Content/GroupManager.php:140 src/Content/Widget.php:425 -#: src/Content/Widget.php:528 +#: src/Content/Widget.php:531 msgid "show more" msgstr "montrer plus" @@ -1909,66 +1914,66 @@ msgstr "montrer plus" msgid "Create new group" msgstr "Créer un nouveau groupe" -#: src/Content/Item.php:317 src/Model/Item.php:3273 +#: src/Content/Item.php:322 src/Model/Item.php:3281 msgid "event" msgstr "évènement" -#: src/Content/Item.php:320 src/Content/Item.php:330 +#: src/Content/Item.php:325 src/Content/Item.php:335 msgid "status" msgstr "le statut" -#: src/Content/Item.php:326 src/Model/Item.php:3275 +#: src/Content/Item.php:331 src/Model/Item.php:3283 #: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "photo" -#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 +#: src/Content/Item.php:345 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s a mentionné %3$s de %2$s avec %4$s" -#: src/Content/Item.php:414 view/theme/frio/theme.php:253 +#: src/Content/Item.php:419 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Suivre le fil" -#: src/Content/Item.php:415 src/Model/Contact.php:1244 +#: src/Content/Item.php:420 src/Model/Contact.php:1245 msgid "View Status" msgstr "Voir les statuts" -#: 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/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 msgid "View Profile" msgstr "Voir le profil" -#: src/Content/Item.php:417 src/Model/Contact.php:1246 +#: src/Content/Item.php:422 src/Model/Contact.php:1247 msgid "View Photos" msgstr "Voir les photos" -#: src/Content/Item.php:418 src/Model/Contact.php:1213 +#: src/Content/Item.php:423 src/Model/Contact.php:1214 #: src/Model/Profile.php:446 msgid "Network Posts" msgstr "Publications du réseau" -#: src/Content/Item.php:419 src/Model/Contact.php:1237 -#: src/Model/Contact.php:1248 +#: src/Content/Item.php:424 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1249 msgid "View Contact" msgstr "Voir Contact" -#: src/Content/Item.php:420 src/Model/Contact.php:1249 +#: src/Content/Item.php:425 src/Model/Contact.php:1250 msgid "Send PM" msgstr "Message privé" -#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Content/Item.php:426 src/Module/Contact.php:449 #: src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:104 -#: src/Module/Moderation/Users/Active.php:123 -#: src/Module/Moderation/Users/Index.php:138 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Index.php:141 msgid "Block" msgstr "Bloquer" -#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Content/Item.php:427 src/Module/Contact.php:450 #: src/Module/Contact/Profile.php:532 #: src/Module/Notifications/Introductions.php:126 #: src/Module/Notifications/Introductions.php:199 @@ -1976,27 +1981,27 @@ msgstr "Bloquer" msgid "Ignore" msgstr "Ignorer" -#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Content/Item.php:428 src/Module/Contact.php:451 #: src/Module/Contact/Profile.php:540 msgid "Collapse" msgstr "Réduire" -#: src/Content/Item.php:424 src/Object/Post.php:288 +#: src/Content/Item.php:429 src/Object/Post.php:289 #, php-format msgid "Ignore %s server" msgstr "Ignorer le serveur %s" -#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 -#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 +#: src/Content/Item.php:433 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:503 msgid "Languages" msgstr "Langues" -#: src/Content/Item.php:431 src/Object/Post.php:582 +#: src/Content/Item.php:436 src/Object/Post.php:583 msgid "Search Text" msgstr "Rechercher un texte" -#: src/Content/Item.php:436 src/Content/Widget.php:66 -#: src/Model/Contact.php:1238 src/Model/Contact.php:1250 +#: src/Content/Item.php:441 src/Content/Widget.php:66 +#: src/Model/Contact.php:1239 src/Model/Contact.php:1251 #: src/Module/Contact/Follow.php:152 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Se connecter/Suivre" @@ -2009,7 +2014,7 @@ msgstr "Impossible de récupérer l'utilisateur." msgid "Nothing new here" msgstr "Rien de neuf ici" -#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:64 msgid "Go back" msgstr "Revenir" @@ -2223,7 +2228,7 @@ msgstr "Notifications" msgid "See all notifications" msgstr "Voir toutes les notifications" -#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:226 msgid "Mark as seen" msgstr "Marquer comme vu" @@ -2251,8 +2256,8 @@ msgstr "Comptes" msgid "Manage other pages" msgstr "Gérer les autres pages" -#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 -#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:170 +#: 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/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Réglages" @@ -2280,10 +2285,10 @@ msgstr "Démarrage et configuration du site" #: src/Module/Moderation/Blocklist/Server/Index.php:84 #: 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:119 -#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 #: src/Module/Moderation/Users/Deleted.php:66 -#: src/Module/Moderation/Users/Index.php:133 +#: src/Module/Moderation/Users/Index.php:136 msgid "Moderation" msgstr "Modération" @@ -2315,33 +2320,33 @@ msgstr "suivant" msgid "last" msgstr "dernier" -#: src/Content/Text/BBCode.php:908 +#: src/Content/Text/BBCode.php:903 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:931 src/Model/Item.php:4069 -#: src/Model/Item.php:4075 src/Model/Item.php:4076 +#: src/Content/Text/BBCode.php:926 src/Model/Item.php:4080 +#: src/Model/Item.php:4086 src/Model/Item.php:4087 msgid "Link to source" msgstr "Lien vers la source" -#: src/Content/Text/BBCode.php:1745 src/Content/Text/HTML.php:892 +#: src/Content/Text/BBCode.php:1740 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Cliquer pour ouvrir/fermer" -#: src/Content/Text/BBCode.php:1800 +#: src/Content/Text/BBCode.php:1795 msgid "$1 wrote:" msgstr "$1 a écrit :" -#: src/Content/Text/BBCode.php:1874 src/Content/Text/BBCode.php:1875 +#: src/Content/Text/BBCode.php:1869 src/Content/Text/BBCode.php:1870 msgid "Encrypted content" msgstr "Contenu chiffré" -#: src/Content/Text/BBCode.php:2208 +#: src/Content/Text/BBCode.php:2203 msgid "Invalid source protocol" msgstr "Protocole d'image invalide" -#: src/Content/Text/BBCode.php:2227 +#: src/Content/Text/BBCode.php:2222 msgid "Invalid link protocol" msgstr "Protocole de lien invalide" @@ -2395,7 +2400,7 @@ msgid "Examples: Robert Morgenstein, Fishing" msgstr "Exemples : Robert Morgenstein, Pêche" #: src/Content/Widget.php:68 src/Module/Contact.php:441 -#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 +#: src/Module/Directory.php:82 view/theme/vier/theme.php:185 msgid "Find" msgstr "Trouver" @@ -2416,7 +2421,7 @@ msgstr "Profil au hasard" msgid "Invite Friends" msgstr "Inviter des contacts" -#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: src/Content/Widget.php:73 src/Module/Directory.php:74 #: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Annuaire global" @@ -2437,7 +2442,7 @@ msgstr "Aucune relation" msgid "Relationships" msgstr "Relations" -#: src/Content/Widget.php:264 src/Module/Circle.php:280 +#: src/Content/Widget.php:264 src/Module/Circle.php:281 #: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Tous les contacts" @@ -2462,27 +2467,27 @@ msgstr[0] "%d contact en commun" msgstr[1] "%d contacts en commun" msgstr[2] "%d contacts en commun" -#: src/Content/Widget.php:529 +#: src/Content/Widget.php:532 msgid "On this date" msgstr "A cette date" -#: src/Content/Widget.php:549 +#: src/Content/Widget.php:552 msgid "Persons" msgstr "Personnes" -#: src/Content/Widget.php:550 +#: src/Content/Widget.php:553 msgid "Organisations" msgstr "Organisations" -#: src/Content/Widget.php:551 src/Model/Contact.php:1750 +#: src/Content/Widget.php:554 src/Model/Contact.php:1751 msgid "News" msgstr "Nouvelles" -#: src/Content/Widget.php:553 +#: src/Content/Widget.php:556 msgid "Relays" msgstr "Relais" -#: src/Content/Widget.php:560 src/Module/Moderation/BaseUsers.php:58 +#: src/Content/Widget.php:563 src/Module/Moderation/BaseUsers.php:58 msgid "All" msgstr "Tout" @@ -2530,12 +2535,12 @@ msgstr[2] "Tendances (dernières %d heures)" msgid "More Trending Tags" msgstr "Plus de tendances" -#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1207 +#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1208 #: src/Model/Profile.php:440 msgid "Post to group" msgstr "Publier sur le groupe" -#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1211 +#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1212 #: src/Model/Profile.php:444 src/Module/Moderation/Item/Source.php:80 msgid "Mention" msgstr "Mention" @@ -2550,10 +2555,10 @@ msgstr "XMPP" msgid "Matrix:" msgstr "Matrix :" -#: src/Content/Widget/VCard.php:112 src/Model/Event.php:68 -#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: 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:134 src/Module/Notifications/Introductions.php:180 +#: src/Module/Directory.php:133 src/Module/Notifications/Introductions.php:180 #: src/Module/Profile/Profile.php:212 msgid "Location:" msgstr "Localisation :" @@ -2563,75 +2568,75 @@ msgstr "Localisation :" msgid "Network:" msgstr "Réseau" -#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1239 -#: src/Model/Contact.php:1251 src/Model/Profile.php:457 +#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1252 src/Model/Profile.php:457 #: src/Module/Contact/Profile.php:476 msgid "Unfollow" msgstr "Se désabonner" -#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1209 +#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1210 #: src/Model/Profile.php:442 msgid "View group" msgstr "Voir le groupe" -#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:260 +#: src/Core/ACL.php:153 src/Module/Profile/Profile.php:260 msgid "Yourself" msgstr "Vous-même" -#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Core/ACL.php:189 src/Module/Privacy/PermissionTooltip.php:156 #: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "Mutuels" -#: src/Core/ACL.php:280 +#: src/Core/ACL.php:281 msgid "Post to Email" msgstr "Publier aux courriels" -#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Core/ACL.php:308 src/Module/Privacy/PermissionTooltip.php:103 #: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "Public" -#: src/Core/ACL.php:308 +#: src/Core/ACL.php:309 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 "Ce contenu sera visible par vos abonnés, sur votre profile, dans les flux communautaires et par quiconque ayant son adresse Web." -#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 +#: src/Core/ACL.php:310 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "Limité/Privé" -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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 "Ce contenu sera visible uniquement par les groupes et contacts listés dans le premier champ, sauf par les groupes et contacts listés dans le second champ. Il ne sera pas visible publiquement." -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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 "Commencer à écrire le nom d'un contact ou d'un cercle pour afficher une liste filtrée. Vous pouvez aussi mentionner les groupes spéciaux \"Followers\" et \"Mutuels\"." -#: src/Core/ACL.php:311 +#: src/Core/ACL.php:312 msgid "Show to:" msgstr "Visible par :" -#: src/Core/ACL.php:312 +#: src/Core/ACL.php:313 msgid "Except to:" msgstr "Masquer à :" -#: src/Core/ACL.php:313 src/Module/Post/Edit.php:145 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:145 msgid "CC: email addresses" msgstr "CC: adresses de courriel" -#: src/Core/ACL.php:314 src/Module/Post/Edit.php:151 +#: src/Core/ACL.php:315 src/Module/Post/Edit.php:151 msgid "Example: bob@example.com, mary@example.com" msgstr "Exemple : bob@exemple.com, mary@exemple.com" -#: src/Core/ACL.php:315 +#: src/Core/ACL.php:316 msgid "Connectors" msgstr "Connecteurs" @@ -2966,176 +2971,176 @@ msgstr "Base de données déjà en cours d'utilisation." msgid "Could not connect to database." msgstr "Impossible de se connecter à la base." -#: src/Core/L10n.php:430 src/Model/Item.php:2316 +#: src/Core/L10n.php:426 src/Model/Item.php:2324 msgid "Undetermined" msgstr "Indéterminé" -#: src/Core/L10n.php:437 +#: src/Core/L10n.php:433 #, php-format msgid "%s (%s)" msgstr "%s (%s)" -#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Core/L10n.php:481 src/Model/Event.php:418 #: src/Module/Settings/Display.php:292 msgid "Monday" msgstr "Lundi" -#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Core/L10n.php:481 src/Model/Event.php:419 #: src/Module/Settings/Display.php:293 msgid "Tuesday" msgstr "Mardi" -#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Core/L10n.php:481 src/Model/Event.php:420 #: src/Module/Settings/Display.php:294 msgid "Wednesday" msgstr "Mercredi" -#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Core/L10n.php:481 src/Model/Event.php:421 #: src/Module/Settings/Display.php:295 msgid "Thursday" msgstr "Jeudi" -#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Core/L10n.php:481 src/Model/Event.php:422 #: src/Module/Settings/Display.php:296 msgid "Friday" msgstr "Vendredi" -#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Core/L10n.php:481 src/Model/Event.php:423 #: src/Module/Settings/Display.php:297 msgid "Saturday" msgstr "Samedi" -#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Core/L10n.php:481 src/Model/Event.php:417 #: src/Module/Settings/Display.php:291 msgid "Sunday" msgstr "Dimanche" -#: src/Core/L10n.php:489 src/Model/Event.php:436 +#: src/Core/L10n.php:485 src/Model/Event.php:438 msgid "January" msgstr "Janvier" -#: src/Core/L10n.php:489 src/Model/Event.php:437 +#: src/Core/L10n.php:485 src/Model/Event.php:439 msgid "February" msgstr "Février" -#: src/Core/L10n.php:489 src/Model/Event.php:438 +#: src/Core/L10n.php:485 src/Model/Event.php:440 msgid "March" msgstr "Mars" -#: src/Core/L10n.php:489 src/Model/Event.php:439 +#: src/Core/L10n.php:485 src/Model/Event.php:441 msgid "April" msgstr "Avril" -#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 +#: src/Core/L10n.php:485 src/Core/L10n.php:504 src/Model/Event.php:429 msgid "May" msgstr "Mai" -#: src/Core/L10n.php:489 src/Model/Event.php:440 +#: src/Core/L10n.php:485 src/Model/Event.php:442 msgid "June" msgstr "Juin" -#: src/Core/L10n.php:489 src/Model/Event.php:441 +#: src/Core/L10n.php:485 src/Model/Event.php:443 msgid "July" msgstr "Juillet" -#: src/Core/L10n.php:489 src/Model/Event.php:442 +#: src/Core/L10n.php:485 src/Model/Event.php:444 msgid "August" msgstr "Août" -#: src/Core/L10n.php:489 src/Model/Event.php:443 +#: src/Core/L10n.php:485 src/Model/Event.php:445 msgid "September" msgstr "Septembre" -#: src/Core/L10n.php:489 src/Model/Event.php:444 +#: src/Core/L10n.php:485 src/Model/Event.php:446 msgid "October" msgstr "Octobre" -#: src/Core/L10n.php:489 src/Model/Event.php:445 +#: src/Core/L10n.php:485 src/Model/Event.php:447 msgid "November" msgstr "Novembre" -#: src/Core/L10n.php:489 src/Model/Event.php:446 +#: src/Core/L10n.php:485 src/Model/Event.php:448 msgid "December" msgstr "Décembre" -#: src/Core/L10n.php:504 src/Model/Event.php:408 +#: src/Core/L10n.php:500 src/Model/Event.php:410 msgid "Mon" msgstr "Lun" -#: src/Core/L10n.php:504 src/Model/Event.php:409 +#: src/Core/L10n.php:500 src/Model/Event.php:411 msgid "Tue" msgstr "Mar" -#: src/Core/L10n.php:504 src/Model/Event.php:410 +#: src/Core/L10n.php:500 src/Model/Event.php:412 msgid "Wed" msgstr "Mer" -#: src/Core/L10n.php:504 src/Model/Event.php:411 +#: src/Core/L10n.php:500 src/Model/Event.php:413 msgid "Thu" msgstr "Jeu" -#: src/Core/L10n.php:504 src/Model/Event.php:412 +#: src/Core/L10n.php:500 src/Model/Event.php:414 msgid "Fri" msgstr "Ven" -#: src/Core/L10n.php:504 src/Model/Event.php:413 +#: src/Core/L10n.php:500 src/Model/Event.php:415 msgid "Sat" msgstr "Sam" -#: src/Core/L10n.php:504 src/Model/Event.php:407 +#: src/Core/L10n.php:500 src/Model/Event.php:409 msgid "Sun" msgstr "Dim" -#: src/Core/L10n.php:508 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:425 msgid "Jan" msgstr "Jan" -#: src/Core/L10n.php:508 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:426 msgid "Feb" msgstr "Fév" -#: src/Core/L10n.php:508 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:427 msgid "Mar" msgstr "Mar" -#: src/Core/L10n.php:508 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:428 msgid "Apr" msgstr "Avr" -#: src/Core/L10n.php:508 src/Model/Event.php:428 +#: src/Core/L10n.php:504 src/Model/Event.php:430 msgid "Jun" msgstr "Jun" -#: src/Core/L10n.php:508 src/Model/Event.php:429 +#: src/Core/L10n.php:504 src/Model/Event.php:431 msgid "Jul" msgstr "Jul" -#: src/Core/L10n.php:508 src/Model/Event.php:430 +#: src/Core/L10n.php:504 src/Model/Event.php:432 msgid "Aug" msgstr "Aoû" -#: src/Core/L10n.php:508 +#: src/Core/L10n.php:504 msgid "Sep" msgstr "Sep" -#: src/Core/L10n.php:508 src/Model/Event.php:432 +#: src/Core/L10n.php:504 src/Model/Event.php:434 msgid "Oct" msgstr "Oct" -#: src/Core/L10n.php:508 src/Model/Event.php:433 +#: src/Core/L10n.php:504 src/Model/Event.php:435 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:508 src/Model/Event.php:434 +#: src/Core/L10n.php:504 src/Model/Event.php:436 msgid "Dec" msgstr "Déc" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:44 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "Le fichier journal '%s' n'est pas utilisable. Pas de journalisation possible (erreur '%s')" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:67 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" @@ -3327,7 +3332,7 @@ msgstr "ajouter" msgid "Edit circle" msgstr "Modifier le cercle" -#: src/Model/Circle.php:592 src/Module/Circle.php:181 +#: src/Model/Circle.php:592 src/Module/Circle.php:185 msgid "Contacts not in any circle" msgstr "Contacts n'appartenant à aucun cercle" @@ -3335,8 +3340,8 @@ msgstr "Contacts n'appartenant à aucun cercle" msgid "Create a new circle" msgstr "Créer un nouveau cercle" -#: src/Model/Circle.php:595 src/Module/Circle.php:166 -#: src/Module/Circle.php:189 src/Module/Circle.php:264 +#: src/Model/Circle.php:595 src/Module/Circle.php:168 +#: src/Module/Circle.php:190 src/Module/Circle.php:265 msgid "Circle Name: " msgstr "Nom du cercle :" @@ -3344,247 +3349,247 @@ msgstr "Nom du cercle :" msgid "Edit circles" msgstr "Modifier les cercles" -#: src/Model/Contact.php:1258 src/Module/Moderation/Users/Pending.php:88 +#: src/Model/Contact.php:1259 src/Module/Moderation/Users/Pending.php:88 #: src/Module/Notifications/Introductions.php:124 #: src/Module/Notifications/Introductions.php:197 msgid "Approve" msgstr "Approuver" -#: src/Model/Contact.php:1594 src/Model/Contact.php:1666 +#: src/Model/Contact.php:1595 src/Model/Contact.php:1667 #: src/Module/Contact/Profile.php:360 #, php-format msgid "%s has blocked you" msgstr "%s vous a bloqué(e)." -#: src/Model/Contact.php:1746 +#: src/Model/Contact.php:1747 msgid "Organisation" msgstr "Organisation" -#: src/Model/Contact.php:1754 +#: src/Model/Contact.php:1755 msgid "Group" msgstr "Groupe" -#: src/Model/Contact.php:1758 src/Module/Moderation/BaseUsers.php:122 +#: src/Model/Contact.php:1759 src/Module/Moderation/BaseUsers.php:122 msgid "Relay" msgstr "Relai" -#: src/Model/Contact.php:3073 +#: src/Model/Contact.php:3085 msgid "Disallowed profile URL." msgstr "URL de profil interdite." -#: src/Model/Contact.php:3078 src/Module/Friendica.php:88 +#: src/Model/Contact.php:3090 src/Module/Friendica.php:88 msgid "Blocked domain" msgstr "Domaine bloqué" -#: src/Model/Contact.php:3083 +#: src/Model/Contact.php:3095 msgid "Connect URL missing." msgstr "URL de connexion manquante." -#: src/Model/Contact.php:3092 +#: src/Model/Contact.php:3104 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Le contact n'a pu être ajouté. Veuillez vérifier les identifiants du réseau concerné dans la page Réglages -> Réseaux Sociaux si pertinent." -#: src/Model/Contact.php:3110 +#: src/Model/Contact.php:3122 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "Le réseau %s espéré ne correspond pas au réseau %s actuel" -#: src/Model/Contact.php:3127 +#: src/Model/Contact.php:3139 msgid "This seems to be a relay account. They can't be followed by users." msgstr "Cela semble être un compte relai. Ils ne peuvent pas être suivi par des utilisateurs." -#: src/Model/Contact.php:3134 +#: src/Model/Contact.php:3146 msgid "The profile address specified does not provide adequate information." msgstr "L'adresse de profil indiquée ne fournit par les informations adéquates." -#: src/Model/Contact.php:3136 +#: src/Model/Contact.php:3148 msgid "No compatible communication protocols or feeds were discovered." msgstr "Aucun protocole de communication ni aucun flux n'a pu être découvert." -#: src/Model/Contact.php:3139 +#: src/Model/Contact.php:3151 msgid "An author or name was not found." msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé." -#: src/Model/Contact.php:3142 +#: src/Model/Contact.php:3154 msgid "No browser URL could be matched to this address." msgstr "Aucune URL de navigation ne correspond à cette adresse." -#: src/Model/Contact.php:3145 +#: src/Model/Contact.php:3157 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Impossible de faire correspondre l'adresse d'identité en \"@\" avec un protocole connu ou un contact courriel." -#: src/Model/Contact.php:3146 +#: src/Model/Contact.php:3158 msgid "Use mailto: in front of address to force email check." msgstr "Utilisez mailto: en face d'une adresse pour l'obliger à être reconnue comme courriel." -#: src/Model/Contact.php:3152 +#: src/Model/Contact.php:3164 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Profil limité. Cette personne ne sera pas capable de recevoir des notifications directes/personnelles de votre part." -#: src/Model/Contact.php:3211 +#: src/Model/Contact.php:3223 msgid "Unable to retrieve contact information." msgstr "Impossible de récupérer les informations du contact." -#: src/Model/Event.php:40 +#: src/Model/Event.php:42 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "l d F Y \\@ G:i \\G\\M\\TP (e)" -#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 -#: src/Model/Event.php:928 +#: src/Model/Event.php:63 src/Model/Event.php:80 src/Model/Event.php:457 +#: src/Model/Event.php:929 msgid "Starts:" msgstr "Débute :" -#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 -#: src/Model/Event.php:932 +#: src/Model/Event.php:66 src/Model/Event.php:86 src/Model/Event.php:458 +#: src/Model/Event.php:933 msgid "Finishes:" msgstr "Finit :" -#: src/Model/Event.php:405 +#: src/Model/Event.php:407 msgid "all-day" msgstr "toute la journée" -#: src/Model/Event.php:431 +#: src/Model/Event.php:433 msgid "Sept" msgstr "Sep" -#: src/Model/Event.php:448 src/Module/Calendar/Show.php:117 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:117 #: src/Util/Temporal.php:329 msgid "today" msgstr "aujourd'hui" -#: src/Model/Event.php:449 src/Module/Calendar/Show.php:118 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:118 #: src/Module/Settings/Display.php:302 src/Util/Temporal.php:339 msgid "month" msgstr "mois" -#: src/Model/Event.php:450 src/Module/Calendar/Show.php:119 +#: src/Model/Event.php:452 src/Module/Calendar/Show.php:119 #: src/Module/Settings/Display.php:303 src/Util/Temporal.php:340 msgid "week" msgstr "semaine" -#: src/Model/Event.php:451 src/Module/Calendar/Show.php:120 +#: src/Model/Event.php:453 src/Module/Calendar/Show.php:120 #: src/Module/Settings/Display.php:304 src/Util/Temporal.php:341 msgid "day" msgstr "jour" -#: src/Model/Event.php:453 +#: src/Model/Event.php:455 msgid "No events to display" msgstr "Pas d'évènement à afficher" -#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Model/Event.php:504 src/Module/Feed.php:56 #: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "L'accès au profil a été restreint." -#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:52 +#: src/Model/Event.php:545 src/Module/Calendar/Event/Show.php:52 msgid "Event not found." msgstr "Évènement non trouvé." -#: src/Model/Event.php:623 +#: src/Model/Event.php:624 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:650 +#: src/Model/Event.php:651 msgid "Edit event" msgstr "Editer l'évènement" -#: src/Model/Event.php:651 +#: src/Model/Event.php:652 msgid "Duplicate event" msgstr "Dupliquer l'évènement" -#: src/Model/Event.php:652 +#: src/Model/Event.php:653 msgid "Delete event" msgstr "Supprimer l'évènement" -#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 +#: src/Model/Event.php:883 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:883 +#: src/Model/Event.php:884 msgid "D g:i A" msgstr "D G:i" -#: src/Model/Event.php:884 +#: src/Model/Event.php:885 msgid "g:i A" msgstr "G:i" -#: src/Model/Event.php:947 src/Model/Event.php:949 +#: src/Model/Event.php:948 src/Model/Event.php:950 msgid "Show map" msgstr "Montrer la carte" -#: src/Model/Event.php:948 +#: src/Model/Event.php:949 msgid "Hide map" msgstr "Cacher la carte" -#: src/Model/Event.php:1041 +#: src/Model/Event.php:1042 #, php-format msgid "%s's birthday" msgstr "Anniversaire de %s's" -#: src/Model/Event.php:1042 +#: src/Model/Event.php:1043 #, php-format msgid "Happy Birthday %s" msgstr "Joyeux anniversaire, %s !" -#: src/Model/Item.php:2323 +#: src/Model/Item.php:2331 #, php-format msgid "%s (%s - %s): %s" msgstr "%s (%s - %s) : %s" -#: src/Model/Item.php:2325 +#: src/Model/Item.php:2333 #, php-format msgid "%s (%s): %s" msgstr "%s (%s) : %s" -#: src/Model/Item.php:2328 +#: src/Model/Item.php:2336 #, php-format msgid "" "Detected languages in this post:\n" "%s" msgstr "Langues détectées dans la publication :\n%s" -#: src/Model/Item.php:3277 +#: src/Model/Item.php:3285 msgid "activity" msgstr "activité" -#: src/Model/Item.php:3279 +#: src/Model/Item.php:3287 msgid "comment" msgstr "commentaire" -#: src/Model/Item.php:3282 src/Module/Post/Tag/Add.php:109 +#: src/Model/Item.php:3290 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "publication" -#: src/Model/Item.php:3452 +#: src/Model/Item.php:3463 #, php-format msgid "%s is blocked" msgstr "%s est bloqué(e)" -#: src/Model/Item.php:3454 +#: src/Model/Item.php:3465 #, php-format msgid "%s is ignored" msgstr "%s est ignoré(e)" -#: src/Model/Item.php:3456 +#: src/Model/Item.php:3467 #, php-format msgid "Content from %s is collapsed" msgstr "Le contenu de %s est réduit" -#: src/Model/Item.php:3460 +#: src/Model/Item.php:3471 msgid "Sensitive content" msgstr "Contenu sensible" -#: src/Model/Item.php:3969 +#: src/Model/Item.php:3980 msgid "bytes" msgstr "octets" -#: src/Model/Item.php:4000 +#: src/Model/Item.php:4011 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3592,7 +3597,7 @@ msgstr[0] "%2$s (%3$d%%, %1$d vote)" msgstr[1] "%2$s (%3$d%%, %1$d votes)" msgstr[2] "%2$s (%3$d%%, %1$d votes)" -#: src/Model/Item.php:4002 +#: src/Model/Item.php:4013 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3600,7 +3605,7 @@ msgstr[0] "%2$s (%1$d vote)" msgstr[1] "%2$s (%1$d votes)" msgstr[2] "%2$s (%1$d votes)" -#: src/Model/Item.php:4007 +#: src/Model/Item.php:4018 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3608,7 +3613,7 @@ msgstr[0] "%d votant. Fin du sondage : %s" msgstr[1] "%d votants. Fin du sondage : %s" msgstr[2] "%d votants. Fin du sondage : %s" -#: src/Model/Item.php:4009 +#: src/Model/Item.php:4020 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3616,12 +3621,12 @@ msgstr[0] "%d votant." msgstr[1] "%d votants." msgstr[2] "%d votants." -#: src/Model/Item.php:4011 +#: src/Model/Item.php:4022 #, php-format msgid "Poll end: %s" msgstr "Fin du sondage : %s" -#: src/Model/Item.php:4052 src/Model/Item.php:4053 +#: src/Model/Item.php:4063 src/Model/Item.php:4064 msgid "View on separate page" msgstr "Voir dans une nouvelle page" @@ -3629,7 +3634,7 @@ msgstr "Voir dans une nouvelle page" msgid "[no subject]" msgstr "[pas de sujet]" -#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 +#: src/Model/Photo.php:1192 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Photos du mur" @@ -3642,7 +3647,7 @@ msgstr "Editer le profil" msgid "Change profile photo" msgstr "Changer de photo de profil" -#: src/Model/Profile.php:357 src/Module/Directory.php:139 +#: src/Model/Profile.php:357 src/Module/Directory.php:138 #: src/Module/Profile/Profile.php:200 msgid "Homepage:" msgstr "Page personnelle :" @@ -3732,7 +3737,7 @@ msgstr "Je n'aime pas :" msgid "Title/Description:" msgstr "Titre / Description :" -#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:176 +#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:174 #: src/Module/Moderation/Report/Create.php:266 #: src/Module/Moderation/Summary.php:65 msgid "Summary" @@ -3783,59 +3788,59 @@ msgstr "Compte responsable : %s" msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "ERREUR FATALE : La génération des clés de sécurité a échoué." -#: src/Model/User.php:740 src/Model/User.php:773 +#: src/Model/User.php:739 src/Model/User.php:772 msgid "Login failed" msgstr "Échec de l'identification" -#: src/Model/User.php:805 +#: src/Model/User.php:804 msgid "Not enough information to authenticate" msgstr "Pas assez d'informations pour s'identifier" -#: src/Model/User.php:930 +#: src/Model/User.php:929 msgid "Password can't be empty" msgstr "Le mot de passe ne peut pas être vide" -#: src/Model/User.php:972 +#: src/Model/User.php:971 msgid "Empty passwords are not allowed." msgstr "Les mots de passe vides ne sont pas acceptés." -#: src/Model/User.php:976 +#: src/Model/User.php:975 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Le nouveau mot de passe fait partie d'une fuite de mot de passe publique, veuillez en choisir un autre." -#: src/Model/User.php:980 +#: src/Model/User.php:979 msgid "The password length is limited to 72 characters." msgstr "La taille du mot de passe est limitée à 72 caractères." -#: src/Model/User.php:984 +#: src/Model/User.php:983 msgid "The password can't contain white spaces nor accentuated letters" msgstr "Le mot de passe ne peut pas contenir d'espaces ou de lettres accentuées" -#: src/Model/User.php:1193 +#: src/Model/User.php:1192 msgid "Passwords do not match. Password unchanged." msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué." -#: src/Model/User.php:1200 +#: src/Model/User.php:1199 msgid "An invitation is required." msgstr "Une invitation est requise." -#: src/Model/User.php:1204 +#: src/Model/User.php:1203 msgid "Invitation could not be verified." msgstr "L'invitation fournie n'a pu être validée." -#: src/Model/User.php:1212 +#: src/Model/User.php:1211 msgid "Invalid OpenID url" msgstr "Adresse OpenID invalide" -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Nous avons eu un souci avec l'OpenID que vous avez fourni. Merci de vérifier qu'il est correctement écrit." -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "The error message was:" msgstr "Le message d'erreur était :" @@ -4028,57 +4033,57 @@ msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "Un utilisateur avec des délégataires ne peut pas être supprimé, veuillez d'abord retirer les délégataires." -#: src/Module/Admin/Addons/Details.php:51 +#: src/Module/Admin/Addons/Details.php:49 msgid "Addon not found." msgstr "Extension manquante." -#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 +#: src/Module/Admin/Addons/Details.php:60 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "Extension %s désactivée." -#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 +#: src/Module/Admin/Addons/Details.php:63 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "Extension %s activée." -#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Addons/Details.php:72 #: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "Désactiver" -#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Addons/Details.php:75 #: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351 msgid "Enable" msgstr "Activer" -#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Addons/Details.php:95 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:175 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Summary.php:173 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 "Administration" -#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/Admin/Addons/Details.php:96 src/Module/Admin/Addons/Index.php:60 #: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:127 msgid "Addons" msgstr "Extensions" -#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Addons/Details.php:97 #: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Activer/Désactiver" -#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Addons/Details.php:104 #: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Auteur : " -#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Addons/Details.php:105 #: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Mainteneur : " @@ -4095,9 +4100,10 @@ msgstr "L'extension %s a échoué à s'installer." #: 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:545 src/Module/Settings/Addons.php:64 -#: src/Module/Settings/Connectors.php:149 -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Account.php:507 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/Features.php:61 msgid "Save Settings" @@ -4114,62 +4120,62 @@ msgid "" "official addon repository at %1$s." msgstr "Il n'y a pas d'extension disponible sur votre serveur. Vous pouvez trouver le dépôt officiel d'extensions sur %1$s." -#: src/Module/Admin/DBSync.php:37 +#: src/Module/Admin/DBSync.php:35 msgid "Update has been marked successful" msgstr "Mise à jour validée comme 'réussie'" -#: src/Module/Admin/DBSync.php:45 +#: src/Module/Admin/DBSync.php:43 #, php-format msgid "Database structure update %s was successfully applied." msgstr "La structure de base de données pour la mise à jour %s a été appliquée avec succès." -#: src/Module/Admin/DBSync.php:47 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "L'exécution de la mise à jour %s pour la structure de base de données a échoué avec l'erreur: %s" -#: src/Module/Admin/DBSync.php:62 +#: src/Module/Admin/DBSync.php:60 #, php-format msgid "Executing %s failed with error: %s" msgstr "L'exécution %s a échoué avec l'erreur: %s" -#: src/Module/Admin/DBSync.php:64 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Update %s was successfully applied." msgstr "Mise à jour %s appliquée avec succès." -#: src/Module/Admin/DBSync.php:67 +#: src/Module/Admin/DBSync.php:65 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "La mise à jour %s n'a pas retourné de détails. Impossible de savoir si elle a réussi." -#: src/Module/Admin/DBSync.php:70 +#: src/Module/Admin/DBSync.php:68 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "Il n'y avait aucune fonction supplémentaire de mise à jour %s qui devait être appelé" -#: src/Module/Admin/DBSync.php:91 +#: src/Module/Admin/DBSync.php:89 msgid "No failed updates." msgstr "Pas de mises-à-jour échouées." -#: src/Module/Admin/DBSync.php:92 +#: src/Module/Admin/DBSync.php:90 msgid "Check database structure" msgstr "Vérifier la structure de la base de données" -#: src/Module/Admin/DBSync.php:96 +#: src/Module/Admin/DBSync.php:94 msgid "Failed Updates" msgstr "Mises à jour échouées" -#: src/Module/Admin/DBSync.php:97 +#: src/Module/Admin/DBSync.php:95 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Ceci n'inclut pas les versions antérieures à la 1139, qui ne retournaient jamais de détails." -#: src/Module/Admin/DBSync.php:98 +#: src/Module/Admin/DBSync.php:96 msgid "Mark success (if update was manually applied)" msgstr "Marquer comme 'réussie' (dans le cas d'une mise-à-jour manuelle)" -#: src/Module/Admin/DBSync.php:99 +#: src/Module/Admin/DBSync.php:97 msgid "Attempt to execute this update step automatically" msgstr "Tenter d'éxecuter cette étape automatiquement" @@ -5742,12 +5748,12 @@ msgstr "Il n'est pas possible de changer le moteur de stockage car il est config msgid "Database (legacy)" msgstr "Base de donnée (historique)" -#: src/Module/Admin/Summary.php:41 +#: src/Module/Admin/Summary.php:39 #, php-format msgid "Template engine (%s) error: %s" msgstr "Moteur de template (%s) erreur : %s" -#: src/Module/Admin/Summary.php:45 +#: src/Module/Admin/Summary.php:43 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5758,7 +5764,7 @@ msgid "" " an automatic conversion.
" msgstr "
Votre base de donnée comporte des tables MYISAM. Vous devriez changer pour InnoDB car il est prévu d'utiliser des fonctionnalités spécifiques à InnoDB à l'avenir. Veuillez consulter ce guide de conversion pour mettre à jour votre base de donnée. Vous pouvez également exécuter la commande php bin/console.php dbstructure toinnodb à la racine de votre répertoire Friendica pour une conversion automatique." -#: src/Module/Admin/Summary.php:50 +#: src/Module/Admin/Summary.php:48 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5769,7 +5775,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "Votre BDD utilise encore des tables InnoDB au format de fichiers Antelope. Vous devriez le remplacer par le format Barracuda. Friendica utilise des fonctionnalités qui ne sont pas disponibles dans le format Antelope. Voir ici pour un guide qui peut être utile pour la conversion du moteur des tables. Vous pouvez également utiliser la commande php bin/console.php dbstructure toinnodb de votre installation Friendica pour une conversion automatique.
" -#: src/Module/Admin/Summary.php:60 +#: src/Module/Admin/Summary.php:58 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5777,46 +5783,46 @@ msgid "" " to %d. See here for more information.
" msgstr "Votre table_definition_cache est trop faible (%d). Cela peut conduire à l'erreur de base de données \"Prepared statement needs to be re-prepared\". Merci de le définir au minimum à %d. Voir ici pour plus d'informations.
" -#: src/Module/Admin/Summary.php:68 +#: src/Module/Admin/Summary.php:66 #, 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 "Une nouvelle version de Friendica est disponible. Votre version est %1$s, la nouvelle version est %2$s" -#: src/Module/Admin/Summary.php:76 +#: src/Module/Admin/Summary.php:74 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 "La mise à jour automatique de la base de donnée a échoué. Veuillez exécuter la commande php bin/console.php dbstructure update depuis votre répertoire Friendica et noter les erreurs potentielles." -#: src/Module/Admin/Summary.php:80 +#: src/Module/Admin/Summary.php:78 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 "La dernière mise à jour a échoué. Merci d'exécuter \"php bin/console.php dbstructure update\" depuis la ligne de commandes et de surveiller les erreurs qui pourraient survenir (Certaines erreurs pourraient être dans le fichier journal)." -#: src/Module/Admin/Summary.php:84 +#: src/Module/Admin/Summary.php:82 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 "L'entrée system.url est manquante. Il s'agit d'un paramètre bas niveau qui peut conduire à un comportement non attendu. Merci d'ajouter une entrée valide dès que possible dans le fichier de configuration ou via la console de commandes !" -#: src/Module/Admin/Summary.php:89 +#: src/Module/Admin/Summary.php:87 msgid "The worker was never executed. Please check your database structure!" msgstr "La tâche de fond n'a pas encore été exécutée. Vérifiez la structure de votre base de données." -#: src/Module/Admin/Summary.php:91 +#: src/Module/Admin/Summary.php:89 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "La dernière exécution de la tâche de fond s'est déroulée à %s, c'est-à-dire il y a plus d'une heure. Vérifiez les réglages de crontab." -#: src/Module/Admin/Summary.php:96 +#: src/Module/Admin/Summary.php:94 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5825,7 +5831,7 @@ msgid "" "help with the transition." msgstr "La configuration de votre site Friendica est maintenant stockée dans le fichier config/local.config.php, veuillez copier le fichier config/local-sample.config.php et transférer votre configuration depuis le fichier .htconfig.php. Veuillez consulter la page d'aide de configuration (en anglais) pour vous aider dans la transition." -#: src/Module/Admin/Summary.php:100 +#: src/Module/Admin/Summary.php:98 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5834,7 +5840,7 @@ msgid "" "page for help with the transition." msgstr "La configuration de votre site Friendica est maintenant stockée dans le fichier config/local.config.php, veuillez copier le fichier config/local-sample.config.php et transférer votre configuration depuis le fichier config/local.ini.php. Veuillez consulter la page d'aide de configuration (en anglais) pour vous aider dans la transition." -#: src/Module/Admin/Summary.php:106 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5842,40 +5848,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "%s n'est pas accessible sur votre site. C'est un problème de configuration sévère qui empêche toute communication avec les serveurs distants. Veuillez consulter la page d'aide à l'installation (en anglais) pour plus d'information." -#: src/Module/Admin/Summary.php:130 +#: src/Module/Admin/Summary.php:128 #, 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 "Le system.basepath de Friendica a été mis à jour de '%s' à '%s'. Merci de supprimer le system.basepath de votre base de données pour éviter des différences." -#: src/Module/Admin/Summary.php:138 +#: src/Module/Admin/Summary.php:136 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "Le system.basepath actuel de Friendica, '%s' est erroné et le fichier de configuration '%s' n'est pas utilisé." -#: src/Module/Admin/Summary.php:146 +#: src/Module/Admin/Summary.php:144 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "Le system.basepath '%s' actuel de Friendica n'est pas le même que le fichier de configuration '%s'. Merci de corriger votre configuration." -#: src/Module/Admin/Summary.php:157 +#: src/Module/Admin/Summary.php:155 msgid "Message queues" msgstr "Files d'attente des messages" -#: src/Module/Admin/Summary.php:160 +#: src/Module/Admin/Summary.php:158 msgid "Server Settings" msgstr "Paramètres du site" -#: src/Module/Admin/Summary.php:178 +#: src/Module/Admin/Summary.php:176 msgid "Version" msgstr "Version" -#: src/Module/Admin/Summary.php:182 +#: src/Module/Admin/Summary.php:180 msgid "Active addons" msgstr "Extensions actives" @@ -6143,8 +6149,8 @@ msgstr "Les comptes sous-gérés ne peuvent accéder aux pages de modération. V msgid "Reports" msgstr "Signalements" -#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:134 -#: src/Module/Moderation/Users/Index.php:144 +#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:137 +#: src/Module/Moderation/Users/Index.php:147 msgid "Users" msgstr "Utilisateurs" @@ -6180,7 +6186,7 @@ msgstr "Discussions commencées" msgid "Only You Can See This" msgstr "Vous seul pouvez voir ça" -#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:67 +#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:65 msgid "Scheduled Posts" msgstr "Publications programmées" @@ -6233,7 +6239,7 @@ msgstr "Authentification à deux facteurs" msgid "Display" msgstr "Affichage" -#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:195 +#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:189 msgid "Social Networks" msgstr "Réseaux sociaux" @@ -6249,11 +6255,15 @@ msgstr "Applications connectées" msgid "Remote servers" msgstr "Serveurs distants" -#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:84 +#: src/Module/BaseSettings.php:155 src/Module/Settings/ContactImport.php:109 +msgid "Import Contacts" +msgstr "Importer des contacts" + +#: src/Module/BaseSettings.php:162 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Exporter" -#: src/Module/BaseSettings.php:162 +#: src/Module/BaseSettings.php:169 msgid "Remove account" msgstr "Supprimer le compte" @@ -6382,8 +6392,8 @@ msgstr "liste" msgid "Could not create circle." msgstr "Impossible de créer le cercle." -#: src/Module/Circle.php:54 src/Module/Circle.php:202 -#: src/Module/Circle.php:226 +#: src/Module/Circle.php:54 src/Module/Circle.php:203 +#: src/Module/Circle.php:227 msgid "Circle not found." msgstr "Cercle introuvable." @@ -6391,15 +6401,15 @@ msgstr "Cercle introuvable." msgid "Circle name was not changed." msgstr "Le nom du cercle n'a pas été modifié." -#: src/Module/Circle.php:78 +#: src/Module/Circle.php:80 msgid "Unknown circle." msgstr "Cercle inconnu." -#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Circle.php:86 src/Module/Circle.php:95 #: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 -#: 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/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/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 @@ -6408,75 +6418,75 @@ msgstr "Cercle inconnu." msgid "Contact not found." msgstr "Contact introuvable." -#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 +#: src/Module/Circle.php:90 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Contact invalide." -#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 +#: src/Module/Circle.php:99 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "Le contact a été supprimé." -#: src/Module/Circle.php:103 +#: src/Module/Circle.php:105 msgid "Unable to add the contact to the circle." msgstr "Impossible d'ajouter le contact au cercle." -#: src/Module/Circle.php:106 +#: src/Module/Circle.php:108 msgid "Contact successfully added to circle." msgstr "Le contact a été ajouté au cercle." -#: src/Module/Circle.php:110 +#: src/Module/Circle.php:112 msgid "Unable to remove the contact from the circle." msgstr "Impossible de retirer le contact du cercle." -#: src/Module/Circle.php:113 +#: src/Module/Circle.php:115 msgid "Contact successfully removed from circle." msgstr "Le contact a été retiré du cercle." -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:119 msgid "Bad request." msgstr "Requête invalide." -#: src/Module/Circle.php:158 +#: src/Module/Circle.php:160 msgid "Save Circle" msgstr "Enregistrer le cercle" -#: src/Module/Circle.php:159 +#: src/Module/Circle.php:161 msgid "Filter" msgstr "Filtre" -#: src/Module/Circle.php:165 +#: src/Module/Circle.php:167 msgid "Create a circle of contacts/friends." msgstr "Créer un cercle de contacts/amis." -#: src/Module/Circle.php:207 +#: src/Module/Circle.php:208 msgid "Unable to remove circle." msgstr "Impossible de supprimer le cercle." -#: src/Module/Circle.php:258 +#: src/Module/Circle.php:259 msgid "Delete Circle" msgstr "Supprimer le Cercle" -#: src/Module/Circle.php:268 +#: src/Module/Circle.php:269 msgid "Edit Circle Name" msgstr "Modifier le Nom du Cercle" -#: src/Module/Circle.php:278 +#: src/Module/Circle.php:279 msgid "Members" msgstr "Membres" -#: src/Module/Circle.php:281 +#: src/Module/Circle.php:282 msgid "Circle is empty" msgstr "Le cercle est vide" -#: src/Module/Circle.php:297 +#: src/Module/Circle.php:298 msgid "Remove contact from circle" msgstr "Retirer ce contact du cercle" -#: src/Module/Circle.php:320 +#: src/Module/Circle.php:321 msgid "Click on a contact to add or remove." msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer." -#: src/Module/Circle.php:337 +#: src/Module/Circle.php:338 msgid "Add contact to circle" msgstr "Ajouter ce contact au cercle" @@ -6511,7 +6521,7 @@ msgid "Only show blocked contacts" msgstr "Ne montrer que les contacts bloqués" #: src/Module/Contact.php:349 src/Module/Contact.php:421 -#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:386 msgid "Ignored" msgstr "Ignorés" @@ -6562,8 +6572,8 @@ msgstr "Mises à jour" #: src/Module/Contact.php:449 src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:105 -#: src/Module/Moderation/Users/Blocked.php:124 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Blocked.php:127 +#: src/Module/Moderation/Users/Index.php:143 msgid "Unblock" msgstr "Débloquer" @@ -6639,12 +6649,12 @@ msgstr "Retour à l'éditeur de contact" #: 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:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:56 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Nom" @@ -7214,11 +7224,11 @@ msgstr "Erreur %d (%s) lors de la récupération du flux." msgid "Network feed not available." msgstr "Flux du réseau non disponible." -#: src/Module/Conversation/Timeline.php:190 +#: src/Module/Conversation/Timeline.php:193 msgid "Include" msgstr "Inclure" -#: src/Module/Conversation/Timeline.php:191 +#: src/Module/Conversation/Timeline.php:194 msgid "Hide" msgstr "Masquer" @@ -7488,19 +7498,19 @@ msgstr "Diagnostic Webfinger" msgid "Lookup address:" msgstr "Tester l'adresse:" -#: src/Module/Directory.php:61 +#: src/Module/Directory.php:60 msgid "No entries (some entries may be hidden)." msgstr "Aucune entrée (certaines peuvent être cachées)." -#: src/Module/Directory.php:77 +#: src/Module/Directory.php:76 msgid "Find on this site" msgstr "Trouver sur ce site" -#: src/Module/Directory.php:79 +#: src/Module/Directory.php:78 msgid "Results for:" msgstr "Résultats pour :" -#: src/Module/Directory.php:81 +#: src/Module/Directory.php:80 msgid "Site Directory" msgstr "Annuaire local" @@ -7753,29 +7763,29 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Rendez-vous sur la page d'inscription de votre nouveau nœud Friendica et inscrivez vous en tant que nouvel utilisateur. Rappelez-vous de bien utiliser la même adresse de courriel que celle que vous avez utilisée en tant qu'adresse d'administrateur. Cela vous permettra d'accéder au panel d'administration du site." -#: src/Module/Invite.php:43 +#: src/Module/Invite.php:42 msgid "Total invitation limit exceeded." msgstr "La limite d'invitation totale est éxédée." -#: src/Module/Invite.php:68 +#: src/Module/Invite.php:67 #, php-format msgid "%s : Not a valid email address." msgstr "%s : Adresse de courriel invalide." -#: src/Module/Invite.php:94 +#: src/Module/Invite.php:93 msgid "Please join us on Friendica" msgstr "Rejoignez-nous sur Friendica" -#: src/Module/Invite.php:103 +#: src/Module/Invite.php:102 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Limite d'invitation exédée. Veuillez contacter l'administrateur de votre site." -#: src/Module/Invite.php:107 +#: src/Module/Invite.php:106 #, php-format msgid "%s : Message delivery failed." msgstr "%s : L'envoi du message a échoué." -#: src/Module/Invite.php:111 +#: src/Module/Invite.php:110 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." @@ -7783,11 +7793,11 @@ msgstr[0] "%d message envoyé." msgstr[1] "%d messages envoyés." msgstr[2] "%d messages envoyés." -#: src/Module/Invite.php:129 +#: src/Module/Invite.php:127 msgid "You have no more invitations available" msgstr "Vous n'avez plus d'invitations disponibles" -#: src/Module/Invite.php:136 +#: src/Module/Invite.php:134 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7795,14 +7805,14 @@ msgid "" " other social networks." msgstr "Visitez %s pour une liste des sites publics que vous pouvez rejoindre. Les membres de Friendica appartenant à d'autres sites peuvent s'interconnecter, ainsi qu'avec les membres de plusieurs autres réseaux sociaux." -#: src/Module/Invite.php:138 +#: src/Module/Invite.php:136 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Pour accepter cette invitation, merci d'aller vous inscrire sur %s, ou n'importe quel autre site Friendica public." -#: src/Module/Invite.php:139 +#: src/Module/Invite.php:137 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7811,48 +7821,48 @@ msgid "" "sites you can join." msgstr "Les sites Friendica sont tous interconnectés pour créer un immense réseau social respectueux de la vie privée, possédé et contrôllé par ses membres. Ils peuvent également interagir avec plusieurs réseaux sociaux traditionnels. Voir %s pour une liste d'autres sites Friendica que vous pourriez rejoindre." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:141 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Toutes nos excuses. Ce système n'est pas configuré pour se connecter à d'autres sites publics ou inviter de nouveaux membres." -#: src/Module/Invite.php:146 +#: src/Module/Invite.php:144 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 "Les instances Friendica sont interconnectées pour créer un immense réseau social possédé et contrôlé par ses membres, et qui respecte leur vie privée. Ils peuvent aussi s'interconnecter avec d'autres réseaux sociaux traditionnels." -#: src/Module/Invite.php:145 +#: src/Module/Invite.php:143 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "Pour accepter cette invitation, rendez-vous sur %s et inscrivez-vous." -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:151 msgid "Send invitations" msgstr "Envoyer des invitations" -#: src/Module/Invite.php:154 +#: src/Module/Invite.php:152 msgid "Enter email addresses, one per line:" msgstr "Entrez les adresses de courriel, une par ligne :" -#: src/Module/Invite.php:158 +#: src/Module/Invite.php:156 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Vous êtes cordialement invité à me rejoindre sur Friendica, et nous aider ainsi à créer un meilleur web social." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "You will need to supply this invitation code: $invite_code" msgstr "Vous devrez fournir ce code d'invitation : $invite_code" -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Une fois inscrit, connectez-vous à la page de mon profil sur :" -#: src/Module/Invite.php:162 +#: src/Module/Invite.php:160 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" @@ -7954,12 +7964,12 @@ msgid "File upload failed." msgstr "Le téléversement a échoué." #: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 -#: src/Module/Profile/Photos.php:204 +#: src/Module/Profile/Photos.php:212 #: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Impossible de traiter l'image." -#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:224 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:232 #: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Le téléversement de l'image a échoué." @@ -7992,23 +8002,23 @@ msgstr "Supprimé" msgid "List of pending user deletions" msgstr "Liste des utilisateurs en attente de suppression" -#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:469 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:431 msgid "Normal Account Page" msgstr "Compte normal" -#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:476 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:438 msgid "Soapbox Page" msgstr "Compte \"boîte à savon\"" -#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:483 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:445 msgid "Public Group" msgstr "Groupe Public" -#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:490 +#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:452 msgid "Public Group - Restricted" msgstr "Groupe Public - Restreint" -#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:497 +#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:459 msgid "Automatic Friend Page" msgstr "Abonnement réciproque" @@ -8017,22 +8027,22 @@ msgid "Private Group" msgstr "Groupe Privé" #: src/Module/Moderation/BaseUsers.php:118 -#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:440 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:402 msgid "Personal Page" msgstr "Page personnelle" #: src/Module/Moderation/BaseUsers.php:119 -#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:447 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:409 msgid "Organisation Page" msgstr "Page Associative" #: src/Module/Moderation/BaseUsers.php:120 -#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:454 +#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:416 msgid "News Page" msgstr "Page d'informations" #: src/Module/Moderation/BaseUsers.php:121 -#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:461 +#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:423 msgid "Community Group" msgstr "Groupe Communautaire" @@ -8063,9 +8073,9 @@ msgid "Block Remote Contact" msgstr "Bloquer le profile distant" #: src/Module/Moderation/Blocklist/Contact.php:102 -#: 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/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:138 #: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "tout sélectionner" @@ -8412,9 +8422,9 @@ msgid "Tag" msgstr "Tag" #: src/Module/Moderation/Item/Source.php:77 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 -#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 +#: src/Module/Moderation/Users/Index.php:129 msgid "Type" msgstr "Type" @@ -8680,7 +8690,7 @@ msgstr[2] "%s signalements au total" msgid "URL of the reported contact." msgstr "URL du contact signalé." -#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:418 +#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:380 msgid "Channel Relay" msgstr "Relai de chaîne" @@ -8702,11 +8712,11 @@ msgstr[1] "%s utilisateurs bloqués" msgstr[2] "%s utilisateurs bloqués" #: src/Module/Moderation/Users/Active.php:37 -#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Active.php:74 #: src/Module/Moderation/Users/Blocked.php:37 -#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Blocked.php:74 #: src/Module/Moderation/Users/Index.php:44 -#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Index.php:81 msgid "You can't remove yourself" msgstr "Vous ne pouvez pas supprimer votre propre compte" @@ -8720,81 +8730,81 @@ msgstr[0] "%s utilisateur supprimé" msgstr[1] "%s utilisateurs supprimés" msgstr[2] "%s utilisateurs supprimés" -#: src/Module/Moderation/Users/Active.php:69 -#: src/Module/Moderation/Users/Blocked.php:69 -#: src/Module/Moderation/Users/Index.php:76 +#: src/Module/Moderation/Users/Active.php:72 +#: src/Module/Moderation/Users/Blocked.php:72 +#: src/Module/Moderation/Users/Index.php:79 #, php-format msgid "User \"%s\" deleted" msgstr "Utilisateur \"%s\" supprimé" -#: src/Module/Moderation/Users/Active.php:79 -#: src/Module/Moderation/Users/Index.php:86 +#: src/Module/Moderation/Users/Active.php:82 +#: src/Module/Moderation/Users/Index.php:89 #, php-format msgid "User \"%s\" blocked" msgstr "Utilisateur \"%s\" bloqué" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Register date" msgstr "Date d'inscription" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last login" msgstr "Dernière connexion" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last public item" msgstr "Dernière publication publique" -#: src/Module/Moderation/Users/Active.php:120 +#: src/Module/Moderation/Users/Active.php:123 msgid "Active Accounts" msgstr "Comptes actifs" -#: src/Module/Moderation/Users/Active.php:124 -#: src/Module/Moderation/Users/Blocked.php:123 -#: src/Module/Moderation/Users/Index.php:139 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "User blocked" msgstr "Utilisateur bloqué" -#: src/Module/Moderation/Users/Active.php:125 -#: src/Module/Moderation/Users/Blocked.php:125 -#: src/Module/Moderation/Users/Index.php:141 +#: src/Module/Moderation/Users/Active.php:128 +#: src/Module/Moderation/Users/Blocked.php:128 +#: src/Module/Moderation/Users/Index.php:144 msgid "Site admin" msgstr "Administration du Site" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:142 +#: src/Module/Moderation/Users/Active.php:129 +#: src/Module/Moderation/Users/Blocked.php:129 +#: src/Module/Moderation/Users/Index.php:145 msgid "Account expired" msgstr "Compte expiré" -#: src/Module/Moderation/Users/Active.php:127 -#: src/Module/Moderation/Users/Index.php:145 +#: src/Module/Moderation/Users/Active.php:130 +#: src/Module/Moderation/Users/Index.php:148 msgid "Create a new user" msgstr "Créer un nouvel utilisateur" -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:132 -#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:154 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Les utilisateurs sélectionnés vont être supprimés!\\n\\nTout ce qu'ils ont posté sur ce site sera définitivement effacé!\\n\\nÊtes-vous certain?" -#: src/Module/Moderation/Users/Active.php:134 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:155 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" @@ -8809,13 +8819,13 @@ msgstr[0] "%s utilisateur débloqué" msgstr[1] "%s utilisateurs débloqués" msgstr[2] "%s utilisateurs débloqués" -#: src/Module/Moderation/Users/Blocked.php:78 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Blocked.php:81 +#: src/Module/Moderation/Users/Index.php:95 #, php-format msgid "User \"%s\" unblocked" msgstr "Utilisateur \"%s\" débloqué" -#: src/Module/Moderation/Users/Blocked.php:120 +#: src/Module/Moderation/Users/Blocked.php:123 msgid "Blocked Users" msgstr "Utilisateurs bloqués" @@ -8848,11 +8858,11 @@ msgid "Users awaiting permanent deletion" msgstr "Utilisateurs en attente de suppression définitive" #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:149 msgid "Permanent deletion" msgstr "Suppression définitive" -#: src/Module/Moderation/Users/Index.php:136 +#: src/Module/Moderation/Users/Index.php:139 msgid "User waiting for permanent deletion" msgstr "Utilisateur en attente de suppression définitive" @@ -9019,7 +9029,7 @@ msgstr "Veuillez copier le code d'identification suivant dans votre application msgid "Invalid data or unknown client" msgstr "Données invalides ou client inconnu" -#: src/Module/OAuth/Token.php:91 +#: src/Module/OAuth/Token.php:73 msgid "Unsupported or missing grant type" msgstr "Type de \"grant\" manquant ou non pris en charge" @@ -9071,7 +9081,7 @@ msgstr "ignoré" msgid "Keep this window open until done." msgstr "Veuillez garder cette fenêtre ouverte jusqu'à la fin." -#: src/Module/OpenSearch.php:57 +#: src/Module/OpenSearch.php:55 #, php-format msgid "Search in Friendica %s" msgstr "Rechercher sur Friendica de %s" @@ -9085,12 +9095,12 @@ msgstr "La photo n'est pas disponible." msgid "The Photo with id %s is not available." msgstr "La photo avec l'identifiant %s n'est pas disponible." -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:178 #, php-format msgid "Invalid external resource with url %s." msgstr "La ressource externe avec l'URL %s est invalide." -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:180 #, php-format msgid "Invalid photo with id %s." msgstr "La photo avec l'identifiant %s est invalide." @@ -9123,15 +9133,15 @@ msgstr "Insérer un lien audio" msgid "audio link" msgstr "lien audio" -#: src/Module/Post/Tag/Remove.php:92 +#: src/Module/Post/Tag/Remove.php:93 msgid "Remove Item Tag" msgstr "Enlever le tag de l'élément" -#: src/Module/Post/Tag/Remove.php:93 +#: src/Module/Post/Tag/Remove.php:94 msgid "Select a tag to remove: " msgstr "Sélectionner un tag à supprimer :" -#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Post/Tag/Remove.php:95 #: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Utiliser comme photo de profil" @@ -9210,32 +9220,32 @@ msgstr "Les commentaires de %s" msgid "%s's timeline" msgstr "Le flux de %s" -#: src/Module/Profile/Photos.php:153 src/Module/Profile/Photos.php:156 -#: src/Module/Profile/Photos.php:181 +#: src/Module/Profile/Photos.php:157 src/Module/Profile/Photos.php:160 +#: src/Module/Profile/Photos.php:189 #: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "L'image dépasse la taille limite de %s" -#: src/Module/Profile/Photos.php:159 +#: src/Module/Profile/Photos.php:163 msgid "Image upload didn't complete, please try again" msgstr "La mise en ligne de l'image ne s'est pas terminée, veuillez réessayer" -#: src/Module/Profile/Photos.php:162 +#: src/Module/Profile/Photos.php:166 msgid "Image file is missing" msgstr "Fichier image manquant" -#: src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:171 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "Le serveur ne peut pas accepter la mise en ligne d'un nouveau fichier en ce moment, veuillez contacter un administrateur" -#: src/Module/Profile/Photos.php:189 +#: src/Module/Profile/Photos.php:197 msgid "Image file is empty." msgstr "Fichier image vide." -#: src/Module/Profile/Photos.php:341 +#: src/Module/Profile/Photos.php:349 msgid "View Album" msgstr "Voir l'album" @@ -9352,15 +9362,15 @@ msgid "" "content from anonymous visitors." msgstr "Ce profil a été restreint ce qui empêche l'accès des visiteurs anonymes à son contenu public." -#: src/Module/Profile/Schedule.php:69 +#: src/Module/Profile/Schedule.php:67 msgid "Scheduled" msgstr "Programmé" -#: src/Module/Profile/Schedule.php:70 +#: src/Module/Profile/Schedule.php:68 msgid "Content" msgstr "Contenu" -#: src/Module/Profile/Schedule.php:71 +#: src/Module/Profile/Schedule.php:69 msgid "Remove post" msgstr "Supprimer la publication" @@ -9425,7 +9435,7 @@ msgid "Please repeat your e-mail address:" msgstr "Veuillez répéter votre adresse courriel :" #: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:551 +#: src/Module/Settings/Account.php:513 msgid "New Password:" msgstr "Nouveau mot de passe :" @@ -9434,7 +9444,7 @@ msgid "Leave empty for an auto generated password." msgstr "Laisser ce champ libre pour obtenir un mot de passe généré automatiquement." #: src/Module/Register.php:157 src/Module/Security/PasswordTooLong.php:87 -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Confirm:" msgstr "Confirmer :" @@ -9618,20 +9628,20 @@ msgstr "Déconnecté." msgid "OpenID protocol error. No ID returned" msgstr "Erreur de protocole OpenID. Pas d'ID en retour." -#: src/Module/Security/OpenID.php:76 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "Compte non trouvé. Veuillez vous connecter à votre compte existant pour y ajouter l'OpenID." -#: src/Module/Security/OpenID.php:78 +#: src/Module/Security/OpenID.php:80 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "Compte non trouvé. Veuillez créer un nouveau compte ou vous connecter à votre compte existant pour y ajouter l'OpenID." #: src/Module/Security/PasswordTooLong.php:43 -#: src/Module/Settings/Account.php:51 +#: src/Module/Settings/Account.php:49 msgid "Passwords do not match." msgstr "Les mots de passe ne correspondent pas." @@ -9640,7 +9650,7 @@ msgid "Password does not need changing." msgstr "Le mot de passe n'a pas besoin d'être changé." #: src/Module/Security/PasswordTooLong.php:63 -#: src/Module/Settings/Account.php:65 +#: src/Module/Settings/Account.php:63 msgid "Password unchanged." msgstr "Mot de passe non changé." @@ -9660,24 +9670,24 @@ msgid "Update Password" msgstr "Mettre à jour le mot de passe" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Current Password:" msgstr "Mot de passe actuel :" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Your current password to confirm the changes" msgstr "Votre mot de passe actuel pour confirmer les modifications" #: src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:537 +#: src/Module/Settings/Account.php:499 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " "spaces and accentuated letters." msgstr "Les caractères autorisés sont a-z, A-Z, 0-9 et les caractères spéciaux à l'exception des espaces et des lettres accentuées." #: src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:538 +#: src/Module/Settings/Account.php:500 msgid "Password length is limited to 72 characters." msgstr "La taille du mot de passe est limitée à 72 caractères." @@ -9781,129 +9791,121 @@ msgstr "Veuillez saisir le code fourni par votre application mobile d'authentifi msgid "Verify code and complete login" msgstr "Vérifier le code de récupération et compléter l'identification" -#: src/Module/Settings/Account.php:80 +#: src/Module/Settings/Account.php:78 msgid "Please use a shorter name." msgstr "Veuillez saisir un nom plus court." -#: src/Module/Settings/Account.php:83 +#: src/Module/Settings/Account.php:81 msgid "Name too short." msgstr "Le nom est trop court." -#: src/Module/Settings/Account.php:92 +#: src/Module/Settings/Account.php:90 msgid "Wrong Password." msgstr "Mot de passe erroné." -#: src/Module/Settings/Account.php:97 +#: src/Module/Settings/Account.php:95 msgid "Invalid email." msgstr "Courriel invalide." -#: src/Module/Settings/Account.php:101 +#: src/Module/Settings/Account.php:99 msgid "Cannot change to that email." msgstr "Ne peut pas changer vers ce courriel." -#: 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 +#: 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 msgid "Settings were not updated." msgstr "Les paramètres n'ont pas été mis à jour." -#: src/Module/Settings/Account.php:331 -msgid "Contact CSV file upload error" -msgstr "Erreur de téléversement du fichier de contact CSV" - -#: src/Module/Settings/Account.php:350 -msgid "Importing Contacts done" -msgstr "Import des contacts effectué" - -#: src/Module/Settings/Account.php:363 +#: src/Module/Settings/Account.php:325 msgid "Relocate message has been send to your contacts" msgstr "Un message de relocalisation a été envoyé à vos contacts." -#: src/Module/Settings/Account.php:380 +#: src/Module/Settings/Account.php:342 msgid "Unable to find your profile. Please contact your admin." msgstr "Impossible de trouver votre profile. Merci de contacter votre administrateur." -#: src/Module/Settings/Account.php:420 +#: src/Module/Settings/Account.php:382 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "Compte de service qui partage automatiquement du contenu basés les chaînes de l'utilisateur" -#: src/Module/Settings/Account.php:430 +#: src/Module/Settings/Account.php:392 msgid "Personal Page Subtypes" msgstr "Sous-catégories de page personnelle" -#: src/Module/Settings/Account.php:431 +#: src/Module/Settings/Account.php:393 msgid "Community Group Subtypes" msgstr "Sous-catégories de groupe communautaire" -#: src/Module/Settings/Account.php:442 +#: src/Module/Settings/Account.php:404 msgid "Account for a personal profile." msgstr "Compte pour profil personnel." -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:411 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Compte pour une organisation qui accepte les demandes comme \"Abonnés\"." -#: src/Module/Settings/Account.php:456 +#: src/Module/Settings/Account.php:418 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Compte pour les miroirs de nouvelles qui accepte automatiquement les de contact comme \"Abonnés\"." -#: src/Module/Settings/Account.php:463 +#: src/Module/Settings/Account.php:425 msgid "Account for community discussions." msgstr "Compte pour des discussions communautaires." -#: src/Module/Settings/Account.php:471 +#: src/Module/Settings/Account.php:433 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Les demandes d'abonnement doivent être acceptées manuellement." -#: src/Module/Settings/Account.php:478 +#: src/Module/Settings/Account.php:440 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Compte pour un profil public qui accepte les demandes de contact comme \"Abonnés\"." -#: src/Module/Settings/Account.php:485 +#: src/Module/Settings/Account.php:447 msgid "Automatically approves all contact requests." msgstr "Les demandes de participation au forum sont automatiquement acceptées." -#: src/Module/Settings/Account.php:492 +#: src/Module/Settings/Account.php:454 msgid "Contact requests have to be manually approved." msgstr "Les demandes de contact doivent être validées manuellement." -#: src/Module/Settings/Account.php:499 +#: src/Module/Settings/Account.php:461 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Les demandes d'abonnement sont automatiquement acceptées." -#: src/Module/Settings/Account.php:504 +#: src/Module/Settings/Account.php:466 msgid "Private Group [Experimental]" msgstr "Groupe Privé [Expérimental]" -#: src/Module/Settings/Account.php:506 +#: src/Module/Settings/Account.php:468 msgid "Requires manual approval of contact requests." msgstr "Les demandes de participation au forum nécessitent une approbation." -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Facultatif) Autoriser cet OpenID à se connecter à ce compte." -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 msgid "Publish your profile in your local site directory?" msgstr "Publier votre profil dans le répertoire local" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9911,94 +9913,94 @@ msgid "" " system settings." msgstr "Votre profil sera public sur l'annuaire local de cette instance. Les détails de votre profil pourront être visible publiquement selon les paramètres de votre système." -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:491 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Votre profil sera aussi publié dans le répertoire Friendica global (%s)." -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:504 msgid "Account Settings" msgstr "Compte" -#: src/Module/Settings/Account.php:543 +#: src/Module/Settings/Account.php:505 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "L’adresse de votre profil est '%s' ou '%s'." -#: src/Module/Settings/Account.php:550 +#: src/Module/Settings/Account.php:512 msgid "Password Settings" msgstr "Réglages de mot de passe" -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Leave password fields blank unless changing" msgstr "Laissez les champs de mot de passe vierges, sauf si vous désirez les changer" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Password:" msgstr "Mot de passe :" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Your current password to confirm the changes of the email address" msgstr "Votre mot de passe actuel pour confirmer les modifications de votre adresse de courriel." -#: src/Module/Settings/Account.php:557 +#: src/Module/Settings/Account.php:519 msgid "Delete OpenID URL" msgstr "Supprimer l'URL OpenID" -#: src/Module/Settings/Account.php:559 +#: src/Module/Settings/Account.php:521 msgid "Basic Settings" msgstr "Réglages de base" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:522 #: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "Nom d'affichage :" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:523 msgid "Email Address:" msgstr "Adresse courriel :" -#: src/Module/Settings/Account.php:562 +#: src/Module/Settings/Account.php:524 msgid "Your Timezone:" msgstr "Votre fuseau horaire :" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "Your Language:" msgstr "Votre langue :" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Détermine la langue que nous utilisons pour afficher votre interface Friendica et pour vous envoyer des courriels" -#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Account.php:526 msgid "Default Post Location:" msgstr "Emplacement de publication par défaut:" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:527 msgid "Use Browser Location:" msgstr "Utiliser la localisation géographique du navigateur:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:529 msgid "Security and Privacy Settings" msgstr "Réglages de sécurité et vie privée" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "Maximum Friend Requests/Day:" msgstr "Nombre maximal de demandes d'abonnement par jour :" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "(to prevent spam abuse)" msgstr "(pour limiter l'impact du spam)" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 msgid "Allow your profile to be searchable globally?" msgstr "Publier votre profil publiquement" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 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 " @@ -10006,43 +10008,43 @@ msgid "" "indexed or not." msgstr "Permet à quiconque de trouver votre profil via une recherche sur n'importe quel site compatible ou un moteur de recherche." -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Cacher votre liste de contacts/amis des visiteurs de votre profil?" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "La liste de vos contacts est affichée sur votre profil. Activer cette option pour désactiver son affichage." -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:535 msgid "Hide your public content from anonymous viewers" msgstr "Masque votre contenu public aux visiteurs anonymes" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:535 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 "Les visiteurs anonymes ne verront que vos détails de base de profil. Vos publications publiques et vos réponses seront toujours librement accessibles sur les serveurs distants de vos contacts et à travers les relais." -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:536 msgid "Make public posts unlisted" msgstr "Délister vos publications publiques" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:536 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 "Vos publications publiques n'apparaîtront pas dans les pages communautaires ni les résultats de recherche de ce site et ne seront pas diffusées via les serveurs de relai. Cependant, elles pourront quand même apparaître dans les fils publics de sites distants." -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:537 msgid "Make all posted pictures accessible" msgstr "Rendre toutes les images envoyées accessibles." -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:537 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 " @@ -10050,227 +10052,213 @@ msgid "" "public on your photo albums though." msgstr "Cette option rend chaque image envoyée accessible par un lien direct. C'est un contournement pour prendre en compte que la pluplart des autres réseaux ne gèrent pas les droits sur les images. Cependant les images non publiques ne seront pas visibles sur votre album photo." -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "Allow friends to post to your profile page?" msgstr "Autoriser vos contacts à publier sur votre profil ?" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Vos contacts peuvent partager des publications sur votre mur. Ces publications seront visibles par vos abonnés." -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Allow friends to tag your posts?" msgstr "Autoriser vos contacts à ajouter des tags à vos publications ?" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Your contacts can add additional tags to your posts." msgstr "Vos contacts peuvent ajouter des étiquettes à vos publications." -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:540 msgid "Default privacy circle for new contacts" msgstr "Cercle de contacts par défaut pour les nouveaux contacts" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:541 msgid "Default privacy circle for new group contacts" msgstr "Cercle de contacts par défaut pour les nouveaux contacts du groupe" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:542 msgid "Default Post Permissions" msgstr "Permissions de publication par défaut" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:546 msgid "Expiration settings" msgstr "Réglages d'expiration" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "Automatically expire posts after this many days:" msgstr "Les publications expirent automatiquement après (en jours) :" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Si ce champ est vide, les publications n'expireront pas. Les publications expirées seront supprimées" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "Expire posts" msgstr "Faire expirer les publications" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "When activated, posts and comments will be expired." msgstr "Les publications originales et commentaires expireront." -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "Expire personal notes" msgstr "Faire expirer les notes personnelles" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr " " -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "Expire starred posts" msgstr "Faire expirer les publications marquées" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Ajouter une étoile à une publication empêche son expiration, sauf si vous activez ce paramètre." -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 msgid "Only expire posts by others" msgstr "Faire expirer uniquement les contenu reçus" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Empêche vos propres publications d'expirer. S'applique à tous les choix précédents." -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:554 msgid "Notification Settings" msgstr "Réglages de notification" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:555 msgid "Send a notification email when:" msgstr "Envoyer un courriel de notification quand :" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:556 msgid "You receive an introduction" msgstr "Vous recevez une introduction" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:557 msgid "Your introductions are confirmed" msgstr "Vos introductions sont confirmées" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:558 msgid "Someone writes on your profile wall" msgstr "Quelqu'un écrit sur votre mur" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:559 msgid "Someone writes a followup comment" msgstr "Quelqu'un vous commente" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:560 msgid "You receive a private message" msgstr "Vous recevez un message privé" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:561 msgid "You receive a friend suggestion" msgstr "Vous avez reçu une suggestion d'abonnement" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:562 msgid "You are tagged in a post" msgstr "Vous avez été mentionné(e) dans une publication" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:564 msgid "Create a desktop notification when:" msgstr "Créer une notification de bureau quand :" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:565 msgid "Someone tagged you" msgstr "Quelqu'un vous a mentionné" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:566 msgid "Someone directly commented on your post" msgstr "Quelqu'un a commenté directement sur votre publication" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:567 msgid "Someone liked your content" msgstr "Quelqu'un a aimé votre contenu" -#: src/Module/Settings/Account.php:605 src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:567 src/Module/Settings/Account.php:568 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "Peut uniquement être activé quand la notification des commentaires directs est activée." -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:568 msgid "Someone shared your content" msgstr "Quelqu'un a partagé votre contenu" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:569 msgid "Someone commented in your thread" msgstr "Quelqu'un a commenté dans votre conversation" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:570 msgid "Someone commented in a thread where you commented" msgstr "Quelqu'un a commenté dans une conversation où vous avez commenté" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:571 msgid "Someone commented in a thread where you interacted" msgstr "Quelqu'un a commenté dans une conversation avec laquelle vous avez interagi" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Activate desktop notifications" msgstr "Activer les notifications de bureau" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Show desktop popup on new notifications" msgstr "Afficher dans des pop-ups les nouvelles notifications" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:577 msgid "Text-only notification emails" msgstr "Courriels de notification en format texte" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:579 msgid "Send text only notification emails, without the html part" msgstr "Envoyer le texte des courriels de notification, sans la composante html" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:583 msgid "Show detailled notifications" msgstr "Notifications détaillées" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:585 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Par défaut seule la notification la plus récente par conversation est affichée. Ce réglage affiche toutes les notifications." -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:589 msgid "Show notifications of ignored contacts" msgstr "Montrer les notifications des contacts ignorés" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:591 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 "Par défaut les notifications de vos contacts ignorés sont également ignorées." -#: src/Module/Settings/Account.php:632 +#: src/Module/Settings/Account.php:594 msgid "Advanced Account/Page Type Settings" msgstr "Paramètres avancés de compte/page" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:595 msgid "Change the behaviour of this account for special situations" msgstr "Modifier le comportement de ce compte dans certaines situations" -#: src/Module/Settings/Account.php:636 -msgid "Import Contacts" -msgstr "Importer des contacts" - -#: src/Module/Settings/Account.php:637 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "Téléversez un fichier CSV contenant des identifiants de contacts dans la première colonne." - -#: src/Module/Settings/Account.php:638 -msgid "Upload File" -msgstr "Téléverser le fichier" - -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:598 msgid "Relocate" msgstr "Relocaliser" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:599 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 "Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton." -#: src/Module/Settings/Account.php:643 +#: src/Module/Settings/Account.php:600 msgid "Resend relocate message to contacts" msgstr "Renvoyer un message de relocalisation aux contacts." @@ -10435,214 +10423,232 @@ msgstr "Supprimer l'entrée de la liste des chaînes" msgid "Delete entry from the channel list?" msgstr "Supprimer l'entrée de la liste des chaînes ?" -#: src/Module/Settings/Connectors.php:108 +#: src/Module/Settings/Connectors.php:107 msgid "Failed to connect with email account using the settings provided." msgstr "Impossible de se connecter au compte courriel configuré." -#: src/Module/Settings/Connectors.php:155 -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:150 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:149 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "Le support intégré pour la connectivité %s est activé" -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:150 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "Le support intégré pour la connectivité %s est désactivé" -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:161 msgid "Email access is disabled on this site." msgstr "L'accès courriel est désactivé sur ce site." -#: src/Module/Settings/Connectors.php:182 -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:176 +#: src/Module/Settings/Connectors.php:226 msgid "None" msgstr "Aucun(e)" -#: src/Module/Settings/Connectors.php:186 +#: src/Module/Settings/Connectors.php:180 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "Par défaut (Mastodon affichera le titre et un lien vers la publication)" -#: src/Module/Settings/Connectors.php:187 +#: src/Module/Settings/Connectors.php:181 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "Utiliser le résumé (Mastodon et quelques autres le considèreront comme un avertissement de contenu)" -#: src/Module/Settings/Connectors.php:188 +#: src/Module/Settings/Connectors.php:182 msgid "Embed the title in the body" msgstr "Intégrer le titre dans le corps du texte" -#: src/Module/Settings/Connectors.php:199 +#: src/Module/Settings/Connectors.php:193 msgid "General Social Media Settings" msgstr "Paramètres généraux des réseaux sociaux" -#: src/Module/Settings/Connectors.php:202 +#: src/Module/Settings/Connectors.php:196 msgid "Followed content scope" msgstr "Étendue des contenus suivis" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:198 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "Par défaut, les conversations dans lesquelles vos comptes suivis ont participé mais qu'ils n'ont pas commencées seront affichées dans votre flux. Vous pouvez désactiver ce comportement, ou l'étendre aux conversations dans lesquelles vos comptes suivis ont aimé une publication." -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:200 msgid "Only conversations my follows started" msgstr "Seulement les conversations démarrées par mes comptes suivis" -#: src/Module/Settings/Connectors.php:207 +#: src/Module/Settings/Connectors.php:201 msgid "Conversations my follows started or commented on (default)" msgstr "Les conversations que mes comptes suivis ont commencé ou commentées (par défaut)" -#: src/Module/Settings/Connectors.php:208 +#: src/Module/Settings/Connectors.php:202 msgid "Any conversation my follows interacted with, including likes" msgstr "Toute conversation avec laquelle mes comptes suivis ont interagi, y compris les \"J'aime\"" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "Collapse sensitive posts" msgstr "Réduire les publications sensibles" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "Si actif, les publications marquées comme \"sensible\" seront affichées réduites." -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "Enable intelligent shortening" msgstr "Activer l'abbréviation intelligente" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "L'abbréviation intelligente cherche le lien le plus adapté dans les publications abbréviées. Quand elle est désactivée, le lien est toujours celui de la publication Friendica initiale." -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "Enable simple text shortening" msgstr "Activer l'abbréviation de texte simple" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "Cette option raccourcit le texte des publications au nombre de caractères exact au lieu d'attendre la fin du paragraphe." -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "Attach the link title" msgstr "Attacher le titre du lien (Diaspora)" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Si vos publications contiennent un lien, le titre de la page associée sera attaché à la publication à destination de vos contacts Diaspora. C'est principalement utile avec les contacts \"remote-self\" qui partagent du contenu de flux RSS/Atom." -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "API: Use spoiler field as title" msgstr "API : Utiliser le champ spoiler (divulgachis) en tant que titre" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "Quand activé, le champ \"spoiler_text\" dans l'API sera utilisé pour le titre des publications individuelles. Quand désactivé, il sera utilisé pour du texte spoiler (divulgachis). Pour les commentaires, il sera toujours utilisé pour du texte spoiler." -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "API: Automatically links at the end of the post as attached posts" msgstr "API : Afficher comme publications attachés les liens ajoutés en fin de publication" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "Quand activé, les liens ajoutés à la fin d'une publication fonctionnent de la même manière que les liens ajoutés dans l'interface web." -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "Article Mode" msgstr "Mode Article" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "Contrôle la façon dont les publications avec des titres sont transmises. Mastodon et ses forks n'affichent pas le contenu de ces publications si la publication est créée de la bonne manière (par défaut)." -#: src/Module/Settings/Connectors.php:218 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "Votre ancient compte ActivityPub/GNU Social" - -#: src/Module/Settings/Connectors.php:218 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "Si vous saisissez votre adresse de compte précédente d'un réseau basé sur ActivityPub ou GNU Social/Statusnet (au format utilisateur@domaine.tld), vos contacts seront ajoutés autoamtiquement. Le champ sera vidé quand l'opération sera terminé." - -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:215 msgid "Email/Mailbox Setup" msgstr "Réglages de courriel/boîte à lettre" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:216 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Si vous souhaitez communiquer avec vos contacts \"courriel\" (facultatif), merci de nous indiquer comment vous connecter à votre boîte." -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:217 msgid "Last successful email check:" msgstr "Dernière vérification réussie des courriels :" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:219 msgid "IMAP server name:" msgstr "Nom du serveur IMAP :" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:220 msgid "IMAP port:" msgstr "Port IMAP :" -#: src/Module/Settings/Connectors.php:228 +#: src/Module/Settings/Connectors.php:221 msgid "Security:" msgstr "Sécurité :" -#: src/Module/Settings/Connectors.php:229 +#: src/Module/Settings/Connectors.php:222 msgid "Email login name:" msgstr "Nom de connexion :" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:223 msgid "Email password:" msgstr "Mot de passe :" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:224 msgid "Reply-to address:" msgstr "Adresse de réponse :" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:225 msgid "Send public posts to all email contacts:" msgstr "Envoyer les publications publiques à tous les contacts courriels :" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Action after import:" msgstr "Action après import :" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Move to folder" msgstr "Déplacer vers" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:227 msgid "Move to folder:" msgstr "Déplacer vers :" +#: src/Module/Settings/ContactImport.php:63 +msgid "Contact CSV file upload error" +msgstr "Erreur de téléversement du fichier de contact CSV" + +#: src/Module/Settings/ContactImport.php:82 +msgid "Importing Contacts done" +msgstr "Import des contacts effectué" + +#: src/Module/Settings/ContactImport.php:112 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "Téléversez un fichier CSV contenant des identifiants de contacts dans la première colonne." + +#: src/Module/Settings/ContactImport.php:113 +msgid "Upload File" +msgstr "Téléverser le fichier" + +#: src/Module/Settings/ContactImport.php:115 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "Votre ancient compte ActivityPub/GNU Social" + +#: src/Module/Settings/ContactImport.php:115 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "Si vous saisissez votre adresse de compte précédente d'un réseau basé sur ActivityPub ou GNU Social/Statusnet (au format utilisateur@domaine.tld), vos contacts seront ajoutés autoamtiquement. Le champ sera vidé quand l'opération sera terminé." + #: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "Délégation accordée avec succès." @@ -11093,42 +11099,42 @@ msgstr "Mots-clés privés :" msgid "(Used for searching profiles, never shown to others)" msgstr "(Utilisés pour rechercher des profils. Ils ne seront jamais montrés à autrui)" -#: 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/Crop.php:90 +#: src/Module/Settings/Profile/Photo/Crop.php:108 +#: src/Module/Settings/Profile/Photo/Crop.php:126 #: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Réduction de la taille de l'image [%s] échouée." -#: src/Module/Settings/Profile/Photo/Crop.php:136 +#: src/Module/Settings/Profile/Photo/Crop.php:133 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Rechargez la page avec la touche Maj pressée, ou bien effacez le cache du navigateur, si d'aventure la nouvelle photo n'apparaissait pas immédiatement." -#: src/Module/Settings/Profile/Photo/Crop.php:141 +#: src/Module/Settings/Profile/Photo/Crop.php:138 msgid "Unable to process image" msgstr "Impossible de traiter l'image" -#: src/Module/Settings/Profile/Photo/Crop.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:157 msgid "Photo not found." msgstr "Photo introuvable." -#: src/Module/Settings/Profile/Photo/Crop.php:182 +#: src/Module/Settings/Profile/Photo/Crop.php:179 msgid "Profile picture successfully updated." msgstr "Photo de profil mise à jour avec succès." -#: src/Module/Settings/Profile/Photo/Crop.php:208 -#: src/Module/Settings/Profile/Photo/Crop.php:212 +#: src/Module/Settings/Profile/Photo/Crop.php:205 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Crop Image" msgstr "(Re)cadrer l'image" -#: src/Module/Settings/Profile/Photo/Crop.php:209 +#: src/Module/Settings/Profile/Photo/Crop.php:206 msgid "Please adjust the image cropping for optimum viewing." msgstr "Ajustez le cadre de l'image pour une visualisation optimale." -#: src/Module/Settings/Profile/Photo/Crop.php:211 +#: src/Module/Settings/Profile/Photo/Crop.php:208 msgid "Use Image As Is" msgstr "Utiliser l'image telle quelle" @@ -11199,17 +11205,17 @@ msgstr "L'identifiant d'utilisateur est %d" msgid "Your account has been successfully removed. Bye bye!" msgstr "Votre compte a été supprimé avec succès. Au revoir !" -#: src/Module/Settings/RemoveMe.php:116 +#: src/Module/Settings/RemoveMe.php:114 msgid "Remove My Account" msgstr "Supprimer mon compte" -#: src/Module/Settings/RemoveMe.php:117 +#: src/Module/Settings/RemoveMe.php:115 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Ceci supprimera totalement votre compte. Cette opération est irréversible." -#: src/Module/Settings/RemoveMe.php:122 +#: src/Module/Settings/RemoveMe.php:120 msgid "Please enter your password for verification:" msgstr "Veuillez saisir votre mot de passe pour vérification :" @@ -11604,11 +11610,11 @@ msgstr "Malheureusement, la conversation demandée n'est pas disponible pour vou msgid "Possible reasons include:" msgstr "Les raisons possibles sont :" -#: src/Module/Special/HTTPException.php:64 +#: src/Module/Special/HTTPException.php:65 msgid "Stack trace:" msgstr "Stack trace:" -#: src/Module/Special/HTTPException.php:69 +#: src/Module/Special/HTTPException.php:70 #, php-format msgid "Exception thrown in %s:%d" msgstr "Exception produite dans %s:%d" @@ -12392,221 +12398,221 @@ msgstr "Merci de contacter l’émetteur en répondant à cette publication si v msgid "%s posted an update." msgstr "%s a publié une mise à jour." -#: src/Object/Post.php:124 +#: src/Object/Post.php:125 msgid "Private Message" msgstr "Message privé" -#: src/Object/Post.php:128 +#: src/Object/Post.php:129 msgid "Public Message" msgstr "Message Public" -#: src/Object/Post.php:132 +#: src/Object/Post.php:133 msgid "Unlisted Message" msgstr "Message non référencé" -#: src/Object/Post.php:168 +#: src/Object/Post.php:169 msgid "This entry was edited" msgstr "Cette entrée a été éditée" -#: src/Object/Post.php:196 +#: src/Object/Post.php:197 msgid "Connector Message" msgstr "Message du connecteur" -#: src/Object/Post.php:225 src/Object/Post.php:227 +#: src/Object/Post.php:226 src/Object/Post.php:228 msgid "Edit" msgstr "Éditer" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Delete globally" msgstr "Effacer globalement" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Remove locally" msgstr "Effacer localement" -#: src/Object/Post.php:268 +#: src/Object/Post.php:269 #, php-format msgid "Block %s" msgstr "Bloquer %s" -#: src/Object/Post.php:273 +#: src/Object/Post.php:274 #, php-format msgid "Ignore %s" msgstr "Ignorer %s" -#: src/Object/Post.php:278 +#: src/Object/Post.php:279 #, php-format msgid "Collapse %s" msgstr "Réduire %s" -#: src/Object/Post.php:282 +#: src/Object/Post.php:283 msgid "Report post" msgstr "Signaler la publication" -#: src/Object/Post.php:293 +#: src/Object/Post.php:294 msgid "Save to folder" msgstr "Sauvegarder dans le dossier" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will attend" msgstr "Je vais participer" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will not attend" msgstr "Je ne vais pas participer" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I might attend" msgstr "Je vais peut-être participer" -#: src/Object/Post.php:380 +#: src/Object/Post.php:381 msgid "Ignore thread" msgstr "Ignorer cette conversation" -#: src/Object/Post.php:381 +#: src/Object/Post.php:382 msgid "Unignore thread" msgstr "Ne pas ignorer cette conversation" -#: src/Object/Post.php:382 +#: src/Object/Post.php:383 msgid "Toggle ignore status" msgstr "Commuter le statut de suivi" -#: src/Object/Post.php:392 +#: src/Object/Post.php:393 msgid "Add star" msgstr "Ajouter une étoile" -#: src/Object/Post.php:393 +#: src/Object/Post.php:394 msgid "Remove star" msgstr "Retirer l'étoile" -#: src/Object/Post.php:394 +#: src/Object/Post.php:395 msgid "Toggle star status" msgstr "Commuter l'état de l'étoile" -#: src/Object/Post.php:405 +#: src/Object/Post.php:406 msgid "Pin" msgstr "Épingler" -#: src/Object/Post.php:406 +#: src/Object/Post.php:407 msgid "Unpin" msgstr "Désépingler" -#: src/Object/Post.php:407 +#: src/Object/Post.php:408 msgid "Toggle pin status" msgstr "Commuter le statut de l'épingle" -#: src/Object/Post.php:410 +#: src/Object/Post.php:411 msgid "Pinned" msgstr "Épinglé" -#: src/Object/Post.php:415 +#: src/Object/Post.php:416 msgid "Add tag" msgstr "Ajouter un tag" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote share this" msgstr "Citer et repartager ceci" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote Share" msgstr "Citer et repartager" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare this" msgstr "Partager ceci" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare" msgstr "Partager" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Cancel your Reshare" msgstr "Annuler votre repartage" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Unshare" msgstr "Ne plus partager" -#: src/Object/Post.php:478 +#: src/Object/Post.php:479 #, php-format msgid "%s (Received %s)" msgstr "%s ( Reçu %s)" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Comment this item on your system" msgstr "Commenter ce sujet sur votre instance" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Remote comment" msgstr "Commentaire distant" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via ..." msgstr "Partager par..." -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via external services" msgstr "Partager par des services externes" -#: src/Object/Post.php:513 +#: src/Object/Post.php:514 msgid "Unknown parent" msgstr "Parent inconnu" -#: src/Object/Post.php:517 +#: src/Object/Post.php:518 #, php-format msgid "in reply to %s" msgstr "en réponse à %s" -#: src/Object/Post.php:519 +#: src/Object/Post.php:520 msgid "Parent is probably private or not federated." msgstr "Le parent est probablement privé ou non fédéré." -#: src/Object/Post.php:543 +#: src/Object/Post.php:544 msgid "to" msgstr "à" -#: src/Object/Post.php:544 +#: src/Object/Post.php:545 msgid "via" msgstr "via" -#: src/Object/Post.php:545 +#: src/Object/Post.php:546 msgid "Wall-to-Wall" msgstr "Inter-mur" -#: src/Object/Post.php:546 +#: src/Object/Post.php:547 msgid "via Wall-To-Wall:" msgstr "en Inter-mur :" -#: src/Object/Post.php:599 +#: src/Object/Post.php:600 #, php-format msgid "Reply to %s" msgstr "Répondre à %s" -#: src/Object/Post.php:602 +#: src/Object/Post.php:603 msgid "More" msgstr "Plus" -#: src/Object/Post.php:621 +#: src/Object/Post.php:622 msgid "Notifier task is pending" msgstr "La notification de la tâche est en cours" -#: src/Object/Post.php:622 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is pending" msgstr "La distribution aux serveurs distants est en attente" -#: src/Object/Post.php:623 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is underway" msgstr "La distribution aux serveurs distants est en cours" -#: src/Object/Post.php:624 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is mostly done" msgstr "La distribution aux serveurs distants est presque terminée" -#: src/Object/Post.php:625 +#: src/Object/Post.php:626 msgid "Delivery to remote servers is done" msgstr "La distribution aux serveurs distants est terminée" -#: src/Object/Post.php:647 +#: src/Object/Post.php:648 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -12614,74 +12620,74 @@ msgstr[0] "%d commentaire" msgstr[1] "%d commentaires" msgstr[2] "%d commentaires" -#: src/Object/Post.php:648 +#: src/Object/Post.php:649 msgid "Show more" msgstr "Montrer plus" -#: src/Object/Post.php:649 +#: src/Object/Post.php:650 msgid "Show fewer" msgstr "Montrer moins" -#: src/Object/Post.php:686 +#: src/Object/Post.php:687 #, php-format msgid "Reshared by: %s" msgstr "Partagé par : %s" -#: src/Object/Post.php:691 +#: src/Object/Post.php:692 #, php-format msgid "Viewed by: %s" msgstr "Vu par : %s" -#: src/Object/Post.php:696 +#: src/Object/Post.php:697 #, php-format msgid "Read by: %s" msgstr "Lu par : %s" -#: src/Object/Post.php:701 +#: src/Object/Post.php:702 #, php-format msgid "Liked by: %s" msgstr "Aimé par : %s" -#: src/Object/Post.php:706 +#: src/Object/Post.php:707 #, php-format msgid "Disliked by: %s" msgstr "Pas aimé par : %s" -#: src/Object/Post.php:711 +#: src/Object/Post.php:712 #, php-format msgid "Attended by: %s" msgstr "Y assisteront : %s" -#: src/Object/Post.php:716 +#: src/Object/Post.php:717 #, php-format msgid "Maybe attended by: %s" msgstr "Y assisteront peut-être : %s" -#: src/Object/Post.php:721 +#: src/Object/Post.php:722 #, php-format msgid "Not attended by: %s" msgstr "N'y assisteront pas : %s" -#: src/Object/Post.php:726 +#: src/Object/Post.php:727 #, php-format msgid "Commented by: %s" msgstr "Commenté par : %s" -#: src/Object/Post.php:731 +#: src/Object/Post.php:732 #, php-format msgid "Reacted with %s by: %s" msgstr "La réaction %s a été faite par : %s" -#: src/Object/Post.php:754 +#: src/Object/Post.php:755 #, php-format msgid "Quote shared by: %s" msgstr "Cité et repartagé par : %s" -#: src/Protocol/ActivityPub/Receiver.php:557 +#: src/Protocol/ActivityPub/Receiver.php:558 msgid "Chat" msgstr "Chat" -#: src/Protocol/Delivery.php:530 +#: src/Protocol/Delivery.php:531 msgid "(no subject)" msgstr "(aucun sujet)" @@ -12694,20 +12700,20 @@ msgstr "Le répertoire %s doit être accessible en écriture par le serveur web. msgid "Login failed." msgstr "Échec de connexion." -#: src/Security/Authentication.php:260 +#: src/Security/Authentication.php:261 msgid "Login failed. Please check your credentials." msgstr "Échec d'authentification. Merci de vérifier vos identifiants." -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:374 #, php-format msgid "Welcome %s" msgstr "Bienvenue %s" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:375 msgid "Please upload a profile photo." msgstr "Merci d'illustrer votre profil d'une image." -#: src/Security/OpenWebAuth.php:149 +#: src/Security/OpenWebAuth.php:150 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "%1$s souhaite la bienvenue à %2$s grâce à OpenWebAuth" diff --git a/view/lang/fr/strings.php b/view/lang/fr/strings.php index ba262c13bf..a9bf897cc0 100644 --- a/view/lang/fr/strings.php +++ b/view/lang/fr/strings.php @@ -1639,6 +1639,7 @@ $a->strings['Social Networks'] = 'Réseaux sociaux'; $a->strings['Manage Accounts'] = 'Gérer vos comptes'; $a->strings['Connected apps'] = 'Applications connectées'; $a->strings['Remote servers'] = 'Serveurs distants'; +$a->strings['Import Contacts'] = 'Importer des contacts'; $a->strings['Export personal data'] = 'Exporter'; $a->strings['Remove account'] = 'Supprimer le compte'; $a->strings['This page is missing a url parameter.'] = 'Il manque un paramètre d\'URL à cette adresse.'; @@ -2489,8 +2490,6 @@ $a->strings['Wrong Password.'] = 'Mot de passe erroné.'; $a->strings['Invalid email.'] = 'Courriel invalide.'; $a->strings['Cannot change to that email.'] = 'Ne peut pas changer vers ce courriel.'; $a->strings['Settings were not updated.'] = 'Les paramètres n\'ont pas été mis à jour.'; -$a->strings['Contact CSV file upload error'] = 'Erreur de téléversement du fichier de contact CSV'; -$a->strings['Importing Contacts done'] = 'Import des contacts effectué'; $a->strings['Relocate message has been send to your contacts'] = 'Un message de relocalisation a été envoyé à vos contacts.'; $a->strings['Unable to find your profile. Please contact your admin.'] = 'Impossible de trouver votre profile. Merci de contacter votre administrateur.'; $a->strings['Account for a service that automatically shares content based on user defined channels.'] = 'Compte de service qui partage automatiquement du contenu basés les chaînes de l\'utilisateur'; @@ -2586,9 +2585,6 @@ $a->strings['Show notifications of ignored contacts'] = 'Montrer les notificatio $a->strings['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.'] = 'Par défaut les notifications de vos contacts ignorés sont également ignorées.'; $a->strings['Advanced Account/Page Type Settings'] = 'Paramètres avancés de compte/page'; $a->strings['Change the behaviour of this account for special situations'] = 'Modifier le comportement de ce compte dans certaines situations'; -$a->strings['Import Contacts'] = 'Importer des contacts'; -$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Téléversez un fichier CSV contenant des identifiants de contacts dans la première colonne.'; -$a->strings['Upload File'] = 'Téléverser le fichier'; $a->strings['Relocate'] = 'Relocaliser'; $a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'Si vous avez migré ce profil depuis un autre serveur et que vos contacts ne reçoivent plus vos mises à jour, essayez ce bouton.'; $a->strings['Resend relocate message to contacts'] = 'Renvoyer un message de relocalisation aux contacts.'; @@ -2656,8 +2652,6 @@ $a->strings['API: Automatically links at the end of the post as attached posts'] $a->strings['When activated, added links at the end of the post react the same way as added links in the web interface.'] = 'Quand activé, les liens ajoutés à la fin d\'une publication fonctionnent de la même manière que les liens ajoutés dans l\'interface web.'; $a->strings['Article Mode'] = 'Mode Article'; $a->strings['Controls how posts with titles are transmitted. Mastodon and its forks don\'t display the content of these posts if the post is created in the correct (default) way.'] = 'Contrôle la façon dont les publications avec des titres sont transmises. Mastodon et ses forks n\'affichent pas le contenu de ces publications si la publication est créée de la bonne manière (par défaut).'; -$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Votre ancient compte ActivityPub/GNU Social'; -$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Si vous saisissez votre adresse de compte précédente d\'un réseau basé sur ActivityPub ou GNU Social/Statusnet (au format utilisateur@domaine.tld), vos contacts seront ajoutés autoamtiquement. Le champ sera vidé quand l\'opération sera terminé.'; $a->strings['Email/Mailbox Setup'] = 'Réglages de courriel/boîte à lettre'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Si vous souhaitez communiquer avec vos contacts "courriel" (facultatif), merci de nous indiquer comment vous connecter à votre boîte.'; $a->strings['Last successful email check:'] = 'Dernière vérification réussie des courriels :'; @@ -2671,6 +2665,12 @@ $a->strings['Send public posts to all email contacts:'] = 'Envoyer les publicati $a->strings['Action after import:'] = 'Action après import :'; $a->strings['Move to folder'] = 'Déplacer vers'; $a->strings['Move to folder:'] = 'Déplacer vers :'; +$a->strings['Contact CSV file upload error'] = 'Erreur de téléversement du fichier de contact CSV'; +$a->strings['Importing Contacts done'] = 'Import des contacts effectué'; +$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Téléversez un fichier CSV contenant des identifiants de contacts dans la première colonne.'; +$a->strings['Upload File'] = 'Téléverser le fichier'; +$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Votre ancient compte ActivityPub/GNU Social'; +$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Si vous saisissez votre adresse de compte précédente d\'un réseau basé sur ActivityPub ou GNU Social/Statusnet (au format utilisateur@domaine.tld), vos contacts seront ajoutés autoamtiquement. Le champ sera vidé quand l\'opération sera terminé.'; $a->strings['Delegation successfully granted.'] = 'Délégation accordée avec succès.'; $a->strings['Parent user not found, unavailable or password doesn\'t match.'] = 'Utilisateur parent introuvable, indisponible ou mot de passe incorrect.'; $a->strings['Delegation successfully revoked.'] = 'Délégation retirée avec succès.'; diff --git a/view/lang/gd/messages.po b/view/lang/gd/messages.po index a976d0cfcf..fa14a3a576 100644 --- a/view/lang/gd/messages.po +++ b/view/lang/gd/messages.po @@ -8,7 +8,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: GunChleoc, 2024\n" "Language-Team: Gaelic, Scottish (http://app.transifex.com/Friendica/friendica/language/gd/)\n" @@ -18,34 +18,34 @@ msgstr "" "Language: gd\n" "Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n > 2 && n < 20) ? 2 : 3;\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 "Cha do lorg sinn am post tùsail." -#: mod/item.php:127 +#: mod/item.php:126 msgid "Post updated." msgstr "Chaidh am post ùrachadh." -#: mod/item.php:192 mod/item.php:196 +#: mod/item.php:191 mod/item.php:195 msgid "Item wasn't stored." msgstr "Cha deach an nì a stòradh." -#: mod/item.php:206 +#: mod/item.php:205 msgid "Item couldn't be fetched." msgstr "Cha d’ fhuair sinn grèim air a nì." -#: mod/item.php:250 mod/item.php:254 +#: mod/item.php:249 mod/item.php:253 msgid "Empty post discarded." msgstr "Chaidh post falamh a thilgeil air falbh." -#: 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 "Cha deach an nì a lorg." -#: 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 @@ -56,7 +56,7 @@ msgstr "Cha deach an nì a lorg." #: 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 @@ -65,13 +65,15 @@ msgstr "Cha deach an nì a lorg." #: 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 @@ -80,15 +82,15 @@ msgstr "Cha deach an nì a lorg." msgid "Permission denied." msgstr "Chaidh cead a dhiùltadh." -#: mod/lostpass.php:28 +#: mod/lostpass.php:27 msgid "No valid account found." msgstr "Cha deach cunntas dligheach a lorg." -#: mod/lostpass.php:40 +#: mod/lostpass.php:39 msgid "Password reset request issued. Check your email." msgstr "Chaidh ath-shuidheachadh an fhacail-fhaire iarraidh. Thoir sùil air a’ phost-d agad." -#: mod/lostpass.php:46 +#: mod/lostpass.php:45 #, php-format msgid "" "\n" @@ -104,7 +106,7 @@ msgid "" "\t\tissued this request." msgstr "\n\t\t%1$s, a charaid\n\t\t\tFhuair sinn iarrtas aig “%2$s” o chionn goirid airson facal-faire a’ chunntais agad\n\t\tath-shuidheachadh. Airson an t-iarrtas seo a dhearbhadh, tagh an ceangal dearbhaidh\n\t\tgu h-ìosal no cuir a-steach ann am bàr nan seòladh sa bhrabhsair-lìn agad e.\n\n\t\tMUR an do dh’iarr thu fhèin an t-atharrachadh seo, NA LEAN air a’ cheangal\n\t\ta tha ’ga sholar agus leig seachad agus/no sguab às am post-d seo ’s falbhaidh an ùine air an iarrtas a dh’aithghearr.\n\n\t\tCha dèid am facal-faire agad atharrachadh ach mas urrainn dhuinn dearbhadh gun do\n\t\tdh’iarr thu fhèin seo." -#: mod/lostpass.php:57 +#: mod/lostpass.php:56 #, php-format msgid "" "\n" @@ -121,70 +123,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\n\t\tLean ris a’ cheangal seo a dh’aithghearr a dhearbhadh gur e tusa a bh’ ann:\n\n\t\t%1$s\n\n\t\tGhaibh thu teachdaireachd eile an uairsin sa bheil am facal-faire ùr.\n\t\t’S urrainn dhut am facal-faire sin atharrachadh o dhuilleag roghainnean a’ chunntais agad às dèidh clàradh a-steach.\n\n\t\tSeo am fiosrachadh clàraidh a-steach:\n\n\t\tIonad na làraich:\t%2$s\n\t\tAinm a’ chlàraidh a-steach:\t%3$s" -#: mod/lostpass.php:72 +#: mod/lostpass.php:71 #, php-format msgid "Password reset requested at %s" msgstr "Chaidh ath-shuidheachadh an fhacail-fhaire iarraidh aig %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 "Cha b’ urrainn dhuinn an t-iarrtas a dhearbhadh. (Dh’fhaoidte gun do chuir thu a-null e cheana.) Dh’fhàillig le ath-shuidheachadh an fhacail-fhaire." -#: mod/lostpass.php:101 +#: mod/lostpass.php:100 msgid "Request has expired, please make a new one." msgstr "Dh’fhalbh an ùine air an iarrtas, cruthaich fear ùr." -#: mod/lostpass.php:116 +#: mod/lostpass.php:115 msgid "Forgot your Password?" msgstr "Na dhìochuimhnich thu am facal-faire agad?" -#: 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 "Cuir a-steach ’s a-null an seòladh puist-d agad airson ath-shuidheachadh an fhacail-fhaire agad. Thoir sùil air na puist-d agad an uairsin airson stiùireadh." -#: 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 "Far-ainm no post-d: " -#: mod/lostpass.php:119 +#: mod/lostpass.php:118 msgid "Reset" msgstr "Ath-shuidhich" -#: mod/lostpass.php:134 src/Module/Security/Login.php:161 +#: mod/lostpass.php:133 src/Module/Security/Login.php:161 msgid "Password Reset" msgstr "Ath-shuidheachadh facail-fhaire" -#: mod/lostpass.php:135 +#: mod/lostpass.php:134 msgid "Your password has been reset as requested." msgstr "Chaidh am facal-faire agad ath-shuidheachadh." -#: mod/lostpass.php:136 +#: mod/lostpass.php:135 msgid "Your new password is" msgstr "Seo am facal-faire ùr agad:" -#: mod/lostpass.php:137 +#: mod/lostpass.php:136 msgid "Save or copy your new password - and then" msgstr "Sàbhail no dèan lethbhreac dhen fhacal-fhaire ùr agad. An uairsin," -#: mod/lostpass.php:138 +#: mod/lostpass.php:137 msgid "click here to login" msgstr "briog an-seo gus clàradh a-steach" -#: mod/lostpass.php:139 +#: mod/lostpass.php:138 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "’S urrainn dhut am facal-faire agad atharrachadh o dhuilleag nan Roghainnean às dèidh a’ chlàraidh a-steach." -#: mod/lostpass.php:143 +#: mod/lostpass.php:142 msgid "Your password has been reset." msgstr "Chaidh am facal-faire agad ath-shuidheachadh." -#: mod/lostpass.php:146 +#: mod/lostpass.php:145 #, php-format msgid "" "\n" @@ -195,7 +197,7 @@ msgid "" "\t\t" msgstr "\n\t\t\t%1$s, a charaid,\n\t\t\t\tChaidh am facal-faire agad atharrachadh mar a dh’iarr thu. Cùm\n\t\t\tam fiosrachadh seo sna clàran agad (no atharraich am facal-faire agad sa bhad\n\t\t\tgu rudeigin as urrainn dhut cur ’nad chuimhne).\n\t\t" -#: mod/lostpass.php:152 +#: mod/lostpass.php:151 #, php-format msgid "" "\n" @@ -209,7 +211,7 @@ msgid "" "\t\t" msgstr "\n\t\t\tSeo am fiosrachadh clàraidh a-steach agad:\n\n\t\t\tIonad na làraich:\t%1$s\n\t\t\tAinm clàraidh a-steach:\t%2$s\n\t\t\tFacal-faire:\t%3$s\n\n\t\t\t’S urrainn dhut am facal-faire agad atharrachadh o dhuilleag roghainnean a’ chunntais agad às dèidh a’ chlàraidh a-steach.\n\t\t" -#: mod/lostpass.php:164 +#: mod/lostpass.php:163 #, php-format msgid "Your password has been changed at %s" msgstr "Chaidh am facal-faire agad atharrachadh air %s" @@ -273,11 +275,11 @@ msgstr "Gu:" msgid "Subject:" msgstr "Cuspair:" -#: 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 "An teachdaireachd agad:" -#: 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 "Luchdaich suas dealbh" @@ -286,16 +288,16 @@ msgstr "Luchdaich suas dealbh" msgid "Insert web link" msgstr "Cuir a-steach ceangal-lìn" -#: 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 "Fuirich ort" -#: 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 @@ -303,7 +305,7 @@ msgstr "Fuirich ort" #: 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 @@ -312,7 +314,7 @@ msgstr "Fuirich ort" #: 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" @@ -372,396 +374,396 @@ msgstr[1] "%d theachdaireachd" msgstr[2] "%d teachdaireachdan" msgstr[3] "%d teachdaireachd" -#: mod/notes.php:40 src/Module/BaseProfile.php:93 +#: mod/notes.php:41 src/Module/BaseProfile.php:93 msgid "Personal Notes" msgstr "Nòtaichean pearsanta" -#: mod/notes.php:44 +#: mod/notes.php:45 msgid "Personal notes are visible only by yourself." msgstr "Chan fhaic ach thu fhèin na nòtaichean pearsanta." -#: 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 "Sàbhail" -#: 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 "Cha deach an cleachdaiche a lorg." -#: 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 "Pasgain dhealbhan" -#: 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 "Dealbhan o chionn goirid" -#: 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 "Luchdaich suas dealbhan ùra" -#: 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 "a h-uile duine" -#: mod/photos.php:142 +#: mod/photos.php:140 msgid "Contact information unavailable" msgstr "Chan eil fiosrachadh conaltraidh ri fhaighinn" -#: mod/photos.php:171 +#: mod/photos.php:169 msgid "Album not found." msgstr "Cha deach an t-albam a lorg." -#: mod/photos.php:227 +#: mod/photos.php:225 msgid "Album successfully deleted" msgstr "Chaidh an t-albam a sguabadh às" -#: mod/photos.php:229 +#: mod/photos.php:227 msgid "Album was empty." msgstr "Bha an t-albam falamh." -#: mod/photos.php:260 +#: mod/photos.php:258 msgid "Failed to delete the photo." msgstr "Cha b’ urrainn dhuinn an dealbh a sguabadh às." -#: mod/photos.php:504 +#: mod/photos.php:502 msgid "a photo" msgstr "dealbh" -#: mod/photos.php:504 +#: mod/photos.php:502 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "Chuir %3$s %1$s ’na thaga ri %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 "Chaidh an t-inntrigeadh poblach a dhiùltadh." -#: mod/photos.php:546 +#: mod/photos.php:544 msgid "No photos selected" msgstr "Cha deach dealbh a thaghadh" -#: mod/photos.php:674 +#: mod/photos.php:672 #, php-format msgid "The maximum accepted image size is %s" msgstr "Cha ghabh sinn ri dealbhan nas motha na %s" -#: mod/photos.php:681 +#: mod/photos.php:679 msgid "Upload Photos" msgstr "Luchdaich suas dealbhan" -#: mod/photos.php:685 mod/photos.php:774 +#: mod/photos.php:683 mod/photos.php:772 msgid "New album name: " msgstr "Ainm an albaim ùir: " -#: mod/photos.php:686 +#: mod/photos.php:684 msgid "or select existing album:" msgstr "no tagh albam a tha ann:" -#: mod/photos.php:687 +#: mod/photos.php:685 msgid "Do not show a status post for this upload" msgstr "Na seall post staide dhan luchdadh suas seo" -#: 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 "Ceadan" -#: mod/photos.php:755 +#: mod/photos.php:753 msgid "Do you really want to delete this photo album and all its photos?" msgstr "A bheil thu cinnteach gu bheil thu airson an t-albam seo ’s a h-uile dealbh aige a sguabadh às?" -#: mod/photos.php:756 mod/photos.php:779 +#: mod/photos.php:754 mod/photos.php:777 msgid "Delete Album" msgstr "Sguab às an t-albam" -#: 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 "Sguir dheth" -#: mod/photos.php:783 +#: mod/photos.php:781 msgid "Edit Album" msgstr "Deasaich an t-albam" -#: mod/photos.php:784 +#: mod/photos.php:782 msgid "Drop Album" msgstr "Thoir air falbh an t-albam" -#: mod/photos.php:788 +#: mod/photos.php:786 msgid "Show Newest First" msgstr "Seall an fheadhainn as ùire an toiseach" -#: mod/photos.php:790 +#: mod/photos.php:788 msgid "Show Oldest First" msgstr "Seall an fheadhainn as sine an toiseach" -#: mod/photos.php:811 src/Module/Profile/Photos.php:335 +#: mod/photos.php:809 src/Module/Profile/Photos.php:343 msgid "View Photo" msgstr "Seall an dealbh" -#: mod/photos.php:843 +#: mod/photos.php:841 msgid "Permission denied. Access to this item may be restricted." msgstr "Chaidh cead a dhiùltadh. Dh’fhaoidte gu bheil an t-inntrigeadh dhan nì seo cuingichte." -#: mod/photos.php:845 +#: mod/photos.php:843 msgid "Photo not available" msgstr "Chan eil an dealbhan ri fhaighinn" -#: mod/photos.php:855 +#: mod/photos.php:853 msgid "Do you really want to delete this photo?" msgstr "A bheil thu cinnteach gu bheil thu airson an dealbh seo a sguabadh às?" -#: mod/photos.php:856 mod/photos.php:1056 +#: mod/photos.php:854 mod/photos.php:1054 msgid "Delete Photo" msgstr "Sguab às an dealbh" -#: mod/photos.php:954 +#: mod/photos.php:952 msgid "View photo" msgstr "Seall an dealbh" -#: mod/photos.php:956 +#: mod/photos.php:954 msgid "Edit photo" msgstr "Deasaich an dealbh" -#: mod/photos.php:957 +#: mod/photos.php:955 msgid "Delete photo" msgstr "Sguab às an dealbh" -#: mod/photos.php:958 +#: mod/photos.php:956 msgid "Use as profile photo" msgstr "Cleachd ’na dhealbh pròifile" -#: mod/photos.php:965 +#: mod/photos.php:963 msgid "Private Photo" msgstr "Dealbh prìobhaideach" -#: mod/photos.php:971 +#: mod/photos.php:969 msgid "View Full Size" msgstr "Seall air a làn-mheud" -#: mod/photos.php:1024 +#: mod/photos.php:1022 msgid "Tags: " msgstr "Tagaichean: " -#: mod/photos.php:1027 +#: mod/photos.php:1025 msgid "[Select tags to remove]" msgstr "[Tagh tagaichean gus an toirt air falbh]" -#: mod/photos.php:1042 +#: mod/photos.php:1040 msgid "New album name" msgstr "Ainm albaim ùir" -#: mod/photos.php:1043 +#: mod/photos.php:1041 msgid "Caption" msgstr "Fo-thiotal" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "Add a Tag" msgstr "Cuir taga ris" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Ball-eisimpleir: @aonghas, @Oighrig_Chaimbeul, @seaonaidh@ball-eisimpleir.com, #Leòdhas, #gàirnealaireachd" -#: mod/photos.php:1045 +#: mod/photos.php:1043 msgid "Do not rotate" msgstr "Na cuairtich" -#: mod/photos.php:1046 +#: mod/photos.php:1044 msgid "Rotate CW (right)" msgstr "Cuairtich a’ dol deiseil" -#: mod/photos.php:1047 +#: mod/photos.php:1045 msgid "Rotate CCW (left)" msgstr "Cuairtich a’ dol tuathail" -#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: mod/photos.php:1091 mod/photos.php:1147 mod/photos.php:1227 #: src/Module/Contact.php:600 src/Module/Item/Compose.php:184 -#: src/Object/Post.php:1142 +#: src/Object/Post.php:1143 msgid "This is you" msgstr "Seo thusa" -#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 -#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:598 -#: src/Object/Post.php:1144 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:599 +#: src/Object/Post.php:1145 msgid "Comment" msgstr "Beachd" -#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 -#: src/Content/Conversation.php:401 src/Module/Calendar/Event/Form.php:234 +#: 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 -#: src/Object/Post.php:1158 +#: src/Object/Post.php:1159 msgid "Preview" msgstr "Ro-sheall" -#: mod/photos.php:1098 src/Content/Conversation.php:355 -#: src/Module/Post/Edit.php:121 src/Object/Post.php:1146 +#: mod/photos.php:1096 src/Content/Conversation.php:357 +#: src/Module/Post/Edit.php:121 src/Object/Post.php:1147 msgid "Loading..." msgstr "’Ga luchdadh…" -#: mod/photos.php:1190 src/Content/Conversation.php:1485 -#: src/Object/Post.php:260 +#: mod/photos.php:1188 src/Content/Conversation.php:1487 +#: src/Object/Post.php:261 msgid "Select" msgstr "Tagh" -#: mod/photos.php:1191 src/Content/Conversation.php:1486 -#: 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:233 +#: 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 +#: src/Module/Settings/Connectors.php:226 #: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Sguab às" -#: mod/photos.php:1252 src/Object/Post.php:426 +#: mod/photos.php:1250 src/Object/Post.php:427 msgid "Like" msgstr "’S toigh leam seo" -#: mod/photos.php:1253 src/Object/Post.php:426 +#: mod/photos.php:1251 src/Object/Post.php:427 msgid "I like this (toggle)" msgstr "’S toigh leam seo (toglaich)" -#: mod/photos.php:1254 src/Object/Post.php:427 +#: mod/photos.php:1252 src/Object/Post.php:428 msgid "Dislike" msgstr "Cha toigh leam seo" -#: mod/photos.php:1256 src/Object/Post.php:427 +#: mod/photos.php:1254 src/Object/Post.php:428 msgid "I don't like this (toggle)" msgstr "Cha toigh leam seo (toglaich)" -#: mod/photos.php:1278 +#: mod/photos.php:1276 msgid "Map" msgstr "Mapa" -#: src/App.php:467 +#: src/App.php:255 msgid "Apologies but the website is unavailable at the moment." msgstr "Tha sinn duilich ach chan eil an làrach-lìn ri fhaighinn an-dràsta." -#: src/App/Page.php:237 +#: src/App/Page.php:241 msgid "Delete this item?" msgstr "A bheil thu airson an nì seo a sguabadh às?" -#: src/App/Page.php:238 +#: src/App/Page.php:242 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 "A bheil thu airson an t-ùghdar seo a bhacadh? Chan urrainn dhaibh leantainn ort no na postaichean poblach agad fhaicinn tuilleadh agus chan fhaic thu fhèin na postaichean no na brathan uapa." -#: src/App/Page.php:239 +#: src/App/Page.php:243 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "A bheil thu airson an t-ùghdar seo a leigeil seachad? Chan fhaic thu na postaichean no na brathan uapa." -#: src/App/Page.php:240 +#: src/App/Page.php:244 msgid "Collapse this author's posts?" msgstr "A bheil thu airson postaichean an ùghdair seo a cho-theannachadh?" -#: src/App/Page.php:241 +#: src/App/Page.php:245 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:242 src/Module/Settings/Server/Action.php:47 +#: src/App/Page.php:246 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:244 +#: src/App/Page.php:248 msgid "Like not successful" msgstr "Cha deach leinn a chur ris na h-annsachdan" -#: src/App/Page.php:245 +#: src/App/Page.php:249 msgid "Dislike not successful" msgstr "Cha deach leinn a thoirt air falbh o na h-annsachdan" -#: src/App/Page.php:246 +#: src/App/Page.php:250 msgid "Sharing not successful" msgstr "Cha deach leinn a cho-roinneadh" -#: src/App/Page.php:247 +#: src/App/Page.php:251 msgid "Attendance unsuccessful" msgstr "Cha deach leis an làthaireachd" -#: src/App/Page.php:248 +#: src/App/Page.php:252 msgid "Backend error" msgstr "Mearachd a’ backend" -#: src/App/Page.php:249 +#: src/App/Page.php:253 msgid "Network error" msgstr "Mearachd lìonraidh" -#: src/App/Page.php:252 +#: src/App/Page.php:256 msgid "Drop files here to upload" msgstr "Leig às faidhlichean an-seo gus an luchdadh suas" -#: src/App/Page.php:253 +#: src/App/Page.php:257 msgid "Your browser does not support drag and drop file uploads." msgstr "Cha chuir am brabhsair agad taic ri luchdadh suas fhaidhlichean le slaodadh is leigeil às." -#: src/App/Page.php:254 +#: src/App/Page.php:258 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "Cleachd an t-seann-dòigh airson faidhlichean a luchdadh suas leis an fhoirm gu h-ìosal." -#: src/App/Page.php:255 +#: src/App/Page.php:259 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "Tha am faidhle ro mhòr ({{filesize}}MiB). Meud as motha nam faidhlichean: {{maxFilesize}}MiB." -#: src/App/Page.php:256 +#: src/App/Page.php:260 msgid "You can't upload files of this type." msgstr "Chan urrainn dhut faidhlichean dhen t-seòrsa seo a luchdadh suas." -#: src/App/Page.php:257 +#: src/App/Page.php:261 msgid "Server responded with {{statusCode}} code." msgstr "Dh’fhreagair am frithealaiche le còd {{statusCode}}." -#: src/App/Page.php:258 +#: src/App/Page.php:262 msgid "Cancel upload" msgstr "Sguir dhen luchdadh suas" -#: src/App/Page.php:259 +#: src/App/Page.php:263 msgid "Upload canceled." msgstr "Chaidh sgur dhen luchdadh suas." -#: src/App/Page.php:260 +#: src/App/Page.php:264 msgid "Are you sure you want to cancel this upload?" msgstr "A bheil thu cinnteach gu bheil thu airson sgur dhen luchdadh suas seo?" -#: src/App/Page.php:261 +#: src/App/Page.php:265 msgid "Remove file" msgstr "Thoir am faidhle air falbh" -#: src/App/Page.php:262 +#: src/App/Page.php:266 msgid "You can't upload any more files." msgstr "Chan urrainn dhut barrachd fhaidhlichean a luchdadh suas." -#: src/App/Page.php:346 +#: src/App/Page.php:350 msgid "toggle mobile" msgstr "toglaich mobile" @@ -794,7 +796,7 @@ msgid "All contacts" msgstr "A h-uile neach-aithne" #: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 -#: src/Content/Widget.php:254 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Content/Widget.php:254 src/Core/ACL.php:182 src/Module/Contact.php:395 #: src/Module/Privacy/PermissionTooltip.php:150 #: src/Module/Privacy/PermissionTooltip.php:172 #: src/Module/Settings/Channels.php:146 @@ -836,7 +838,7 @@ msgstr "Cha do lorg sinn neach-aithne nach eil san tasg-lann dhan URL seo (%s)" msgid "The contact entries have been archived" msgstr "Chaidh an luchd-aithne a chur san tasg-lann" -#: src/Console/ClearAvatarCache.php:73 +#: src/Console/ClearAvatarCache.php:74 msgid "" "The avatar cache needs to be disabled in local.config.php to use this " "command." @@ -922,22 +924,22 @@ msgstr "Feumaidh tasgadan nan avatar a bhith an comas mus urrainn dhut an àithn msgid "no resource in photo %s" msgstr "chan eil goireas san dealbh %s" -#: src/Console/MoveToAvatarCache.php:123 +#: src/Console/MoveToAvatarCache.php:127 #, php-format msgid "no photo with id %s" msgstr "chan eil dealbh leis an id %s ann" -#: src/Console/MoveToAvatarCache.php:132 +#: src/Console/MoveToAvatarCache.php:136 #, php-format msgid "no image data for photo with id %s" msgstr "chan eil dàta deilbh dhan dealbh leis an id %s ann" -#: src/Console/MoveToAvatarCache.php:141 +#: src/Console/MoveToAvatarCache.php:145 #, php-format msgid "invalid image for id %s" msgstr "dealbh mì-dhligheach dhan id %s" -#: src/Console/MoveToAvatarCache.php:154 +#: src/Console/MoveToAvatarCache.php:158 #, php-format msgid "Quit on invalid photo %s" msgstr "Fàg an-seo ma tha dealbh %s mì-dhligheach ann" @@ -967,11 +969,14 @@ msgstr "Tha na h-ùrachaidhean air postaichean rin dèiligeadh deiseil." msgid "Enter user nickname: " msgstr "Cuir a-steach far-ainm a’ chleachdaiche: " -#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Console/User.php:168 src/Model/User.php:830 #: src/Module/Api/Twitter/ContactEndpoint.php:62 -#: 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/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/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "Cha deach an cleachdaiche a lorg" @@ -981,12 +986,12 @@ msgid "Enter new password: " msgstr "Cuir a-steach am facal-faire ùr: " #: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 -#: src/Module/Settings/Account.php:59 +#: src/Module/Settings/Account.php:57 msgid "Password update failed. Please try again." msgstr "Dh’fhàillig ùrachadh an fhacail-fhaire. Feuch ris a-rithist." #: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 -#: src/Module/Settings/Account.php:62 +#: src/Module/Settings/Account.php:60 msgid "Password changed." msgstr "Chaidh am facal-faire atharrachadh." @@ -1067,86 +1072,86 @@ msgstr "Gach seachdain" msgid "Monthly" msgstr "Gach mìos" -#: src/Content/ContactSelector.php:118 +#: src/Content/ContactSelector.php:117 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:119 +#: src/Content/ContactSelector.php:118 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:120 +#: src/Content/ContactSelector.php:119 msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:121 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Content/ContactSelector.php:120 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:58 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "Post-d" -#: src/Content/ContactSelector.php:122 src/Module/Debug/Babel.php:273 +#: src/Content/ContactSelector.php:121 src/Module/Debug/Babel.php:273 msgid "Diaspora" msgstr "Diaspora*" -#: src/Content/ContactSelector.php:123 +#: src/Content/ContactSelector.php:122 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:124 +#: src/Content/ContactSelector.php:123 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:125 +#: src/Content/ContactSelector.php:124 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:125 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:126 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:127 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:129 +#: src/Content/ContactSelector.php:128 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:130 +#: src/Content/ContactSelector.php:129 msgid "Discourse" msgstr "Discourse" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:130 msgid "Diaspora Connector" msgstr "Ceangladair diaspora*" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:131 msgid "GNU Social Connector" msgstr "Ceangladair GNU Social" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:132 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:133 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:134 msgid "Tumblr" msgstr "Tumblr" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:135 msgid "Bluesky" msgstr "Bluesky" @@ -1155,16 +1160,16 @@ msgstr "Bluesky" msgid "%s (via %s)" msgstr "%s (slighe %s)" -#: src/Content/Conversation.php:213 +#: src/Content/Conversation.php:215 msgid "and" msgstr "agus" -#: src/Content/Conversation.php:216 +#: src/Content/Conversation.php:218 #, php-format msgid "and %d other people" msgstr "agus %d eile" -#: src/Content/Conversation.php:222 +#: src/Content/Conversation.php:224 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." @@ -1173,7 +1178,7 @@ msgstr[1] "’S toigh le %2$s seo." msgstr[2] "’S toigh le %2$s seo." msgstr[3] "’S toigh le %2$s seo." -#: src/Content/Conversation.php:224 +#: src/Content/Conversation.php:226 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." @@ -1182,7 +1187,7 @@ msgstr[1] "Cha toigh le %2$s seo." msgstr[2] "Cha toigh le %2$s seo." msgstr[3] "Cha toigh le %2$s seo." -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:228 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." @@ -1191,7 +1196,7 @@ msgstr[1] "Bidh %2$s an làthair." msgstr[2] "Bidh %2$s an làthair." msgstr[3] "Bidh %2$s an làthair." -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:230 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." @@ -1200,7 +1205,7 @@ msgstr[1] "Cha bhi %2$s an làthair." msgstr[2] "Cha bhi %2$s an làthair." msgstr[3] "Cha bhi %2$s an làthair." -#: src/Content/Conversation.php:230 +#: src/Content/Conversation.php:232 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." @@ -1209,7 +1214,7 @@ msgstr[1] "’S dòcha gum bi %2$s an làthair." msgstr[2] "’S dòcha gum bi %2$s an làthair." msgstr[3] "’S dòcha gum bi %2$s an làthair." -#: src/Content/Conversation.php:232 +#: src/Content/Conversation.php:234 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." @@ -1218,7 +1223,7 @@ msgstr[1] "Cho-roinn %2$s seo." msgstr[2] "Cho-roinn %2$s seo." msgstr[3] "Cho-roinn %2$s seo." -#: src/Content/Conversation.php:263 +#: src/Content/Conversation.php:265 #, php-format msgid " likes this" msgid_plural " like this" @@ -1227,7 +1232,7 @@ msgstr[1] "’S toigh le seo" msgstr[2] "’S toigh le seo" msgstr[3] "’S toigh le seo" -#: src/Content/Conversation.php:266 +#: src/Content/Conversation.php:268 #, php-format msgid " doesn't like this" msgid_plural " don't like this" @@ -1236,7 +1241,7 @@ msgstr[1] "Cha toigh le seo" msgstr[2] "Cha toigh le seo" msgstr[3] "Cha toigh le seo" -#: src/Content/Conversation.php:269 +#: src/Content/Conversation.php:271 #, php-format msgid " attends" msgid_plural " attend" @@ -1245,7 +1250,7 @@ msgstr[1] "Bidh an làthair" msgstr[2] "Bidh an làthair" msgstr[3] "Bidh an làthair" -#: src/Content/Conversation.php:272 +#: src/Content/Conversation.php:274 #, php-format msgid " doesn't attend" msgid_plural " don't attend" @@ -1254,7 +1259,7 @@ msgstr[1] "Cha bhi an làthair" msgstr[2] "Cha bhi an làthair" msgstr[3] "Cha bhi an làthair" -#: src/Content/Conversation.php:275 +#: src/Content/Conversation.php:277 #, php-format msgid " attends maybe" msgid_plural " attend maybe" @@ -1263,7 +1268,7 @@ msgstr[1] "’S dòcha gum bi an làt msgstr[2] "’S dòcha gum bi an làthair" msgstr[3] "’S dòcha gum bi an làthair" -#: src/Content/Conversation.php:278 +#: src/Content/Conversation.php:280 #, php-format msgid " reshared this" msgid_plural " reshared this" @@ -1272,281 +1277,281 @@ msgstr[1] "Cho-roinn seo" msgstr[2] "Cho-roinn seo" msgstr[3] "Cho-roinn seo" -#: src/Content/Conversation.php:324 +#: src/Content/Conversation.php:326 msgid "Visible to everybody" msgstr "Chì a h-uile duine e" -#: src/Content/Conversation.php:325 src/Module/Item/Compose.php:196 -#: src/Object/Post.php:1157 +#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196 +#: src/Object/Post.php:1158 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Cuir a-steach URL deilbh/video/fuaime/làraich-lìn:" -#: src/Content/Conversation.php:326 +#: src/Content/Conversation.php:328 msgid "Tag term:" msgstr "Teirm tagaidh:" -#: src/Content/Conversation.php:327 src/Module/Filer/SaveTag.php:59 +#: src/Content/Conversation.php:329 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Sàbhail gu pasgan:" -#: src/Content/Conversation.php:328 +#: src/Content/Conversation.php:330 msgid "Where are you right now?" msgstr "Càit a bheil thu an-dràsta?" -#: src/Content/Conversation.php:329 +#: src/Content/Conversation.php:331 msgid "Delete item(s)?" msgstr "An sguab thu seo às?" -#: src/Content/Conversation.php:341 src/Module/Item/Compose.php:171 +#: src/Content/Conversation.php:343 src/Module/Item/Compose.php:171 msgid "Created at" msgstr "Air a chruthachadh" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:353 msgid "New Post" msgstr "Post ùr" -#: src/Content/Conversation.php:354 +#: src/Content/Conversation.php:356 msgid "Share" msgstr "Co-roinn" -#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:123 +#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:123 msgid "upload photo" msgstr "luchdaich suas dealbh" -#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:124 +#: src/Content/Conversation.php:360 src/Module/Post/Edit.php:124 msgid "Attach file" msgstr "Ceangail faidhle ris" -#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:125 +#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:125 msgid "attach file" msgstr "ceangail faidhle ris" -#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:186 -#: src/Module/Post/Edit.php:162 src/Object/Post.php:1147 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1148 msgid "Bold" msgstr "Trom" -#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:187 -#: src/Module/Post/Edit.php:163 src/Object/Post.php:1148 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1149 msgid "Italic" msgstr "Eadailteach" -#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:188 -#: src/Module/Post/Edit.php:164 src/Object/Post.php:1149 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1150 msgid "Underline" msgstr "Loidhne fodha" -#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:189 -#: src/Module/Post/Edit.php:165 src/Object/Post.php:1151 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:165 src/Object/Post.php:1152 msgid "Quote" msgstr "Iomradh" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:166 src/Object/Post.php:1152 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:166 src/Object/Post.php:1153 msgid "Add emojis" msgstr "Cuir Emojis ris" -#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:191 -#: src/Object/Post.php:1150 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Object/Post.php:1151 msgid "Content Warning" msgstr "Rabhadh susbainte" -#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:167 src/Object/Post.php:1153 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:167 src/Object/Post.php:1154 msgid "Code" msgstr "Còd" -#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:193 -#: src/Object/Post.php:1154 +#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1155 msgid "Image" msgstr "Dealbh" -#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:168 src/Object/Post.php:1155 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:168 src/Object/Post.php:1156 msgid "Link" msgstr "Ceangal" -#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:195 -#: src/Module/Post/Edit.php:169 src/Object/Post.php:1156 +#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:169 src/Object/Post.php:1157 msgid "Link or Media" msgstr "Ceangal no meadhan" -#: src/Content/Conversation.php:370 +#: src/Content/Conversation.php:372 msgid "Video" msgstr "Video" -#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:198 +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:198 #: src/Module/Post/Edit.php:132 msgid "Set your location" msgstr "Suidhich d’ ionad" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:133 msgid "set location" msgstr "suidhich d’ ionad" -#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:134 msgid "Clear browser location" msgstr "Falamhaich ionad a’ bhrabhsair" -#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:135 +#: src/Content/Conversation.php:376 src/Module/Post/Edit.php:135 msgid "clear location" msgstr "falamhaich an ionad" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:203 +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:203 #: src/Module/Post/Edit.php:148 msgid "Set title" msgstr "Suidhich an tiotal" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:204 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 #: src/Module/Post/Edit.php:150 msgid "Categories (comma-separated list)" msgstr "Roinnean-seòrsa (liosta sgaraichte le cromagan)." -#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:220 +#: src/Content/Conversation.php:385 src/Module/Item/Compose.php:220 msgid "Scheduled at" msgstr "Air an sgeideal" -#: src/Content/Conversation.php:388 src/Module/Post/Edit.php:137 +#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:137 msgid "Permission settings" msgstr "Roghainnean cead" -#: src/Content/Conversation.php:397 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:399 src/Module/Post/Edit.php:146 msgid "Public post" msgstr "Post poblach" -#: src/Content/Conversation.php:411 src/Content/Widget/VCard.php:121 +#: 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 msgid "Message" msgstr "Teachdaireachd" -#: src/Content/Conversation.php:412 src/Module/Post/Edit.php:173 +#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:173 #: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Brabhsair" -#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:176 +#: src/Content/Conversation.php:416 src/Module/Post/Edit.php:176 msgid "Open Compose page" msgstr "Fosgail duilleag an sgrìobhaidh" -#: src/Content/Conversation.php:581 +#: src/Content/Conversation.php:583 msgid "remove" msgstr "thoir air falbh" -#: src/Content/Conversation.php:585 +#: src/Content/Conversation.php:587 msgid "Delete Selected Items" msgstr "Sguab às na nithean a thagh thu" -#: src/Content/Conversation.php:713 src/Content/Conversation.php:716 -#: src/Content/Conversation.php:719 src/Content/Conversation.php:722 -#: src/Content/Conversation.php:725 +#: 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 #, php-format msgid "You had been addressed (%s)." msgstr "Chaidh d’ ainmeachadh (%s)." -#: src/Content/Conversation.php:728 +#: src/Content/Conversation.php:730 #, php-format msgid "You are following %s." msgstr "Tha thu a’ leantainn air %s." -#: src/Content/Conversation.php:733 +#: src/Content/Conversation.php:735 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:735 +#: src/Content/Conversation.php:737 msgid "You subscribed to one or more tags in this post." msgstr "Dh’fho-sgrìobh thu air taga no dhà sa phost seo." -#: src/Content/Conversation.php:755 +#: src/Content/Conversation.php:757 #, php-format msgid "%s reshared this." msgstr "Cho-roinn %s seo." -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 msgid "Reshared" msgstr "’Ga cho-roinneadh" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 #, php-format msgid "Reshared by %s <%s>" msgstr "’Ga cho-roinneadh le %s <%s>" -#: src/Content/Conversation.php:760 +#: src/Content/Conversation.php:762 #, php-format msgid "%s is participating in this thread." msgstr "Tha %s a’ gabhail pàirt san t-snàithlean seo." -#: src/Content/Conversation.php:763 +#: src/Content/Conversation.php:765 msgid "Stored for general reasons" msgstr "Chaidh a stòradh air adhbharan coitcheann" -#: src/Content/Conversation.php:766 +#: src/Content/Conversation.php:768 msgid "Global post" msgstr "Post co-naisgte" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 msgid "Sent via an relay server" msgstr "Chaidh a chur slighe frithealaiche ath-sheachadain" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "Chaidh a chur slighe frithealaiche ath-sheachadain %s <%s>" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 msgid "Fetched" msgstr "Air fhaighinn" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 #, php-format msgid "Fetched because of %s <%s>" msgstr "Air fhaighinn ri linn %s <%s>" -#: src/Content/Conversation.php:775 +#: src/Content/Conversation.php:777 msgid "Stored because of a child post to complete this thread." msgstr "Chaidh a stòradh air sàilleibh post-cloinne airson an snàithlean iomlain fhaighinn." -#: src/Content/Conversation.php:778 +#: src/Content/Conversation.php:780 msgid "Local delivery" msgstr "Lìbhrigeadh ionadail" -#: src/Content/Conversation.php:781 +#: src/Content/Conversation.php:783 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "Chaidh a stòradh air sàilleibh do ghnìomhachd (’s toigh, beachd, rionnag, …)" -#: src/Content/Conversation.php:784 +#: src/Content/Conversation.php:786 msgid "Distributed" msgstr "Sgaoilte" -#: src/Content/Conversation.php:787 +#: src/Content/Conversation.php:789 msgid "Pushed to us" msgstr "Air a phutadh thugainne" -#: src/Content/Conversation.php:1505 src/Object/Post.php:247 +#: src/Content/Conversation.php:1507 src/Object/Post.php:248 msgid "Pinned item" msgstr "Nì prìnichte" -#: src/Content/Conversation.php:1522 src/Object/Post.php:541 -#: src/Object/Post.php:542 +#: src/Content/Conversation.php:1524 src/Object/Post.php:542 +#: src/Object/Post.php:543 #, php-format msgid "View %s's profile @ %s" msgstr "Seall a’ phròifil aig %s @ %s" -#: src/Content/Conversation.php:1536 src/Object/Post.php:529 +#: src/Content/Conversation.php:1538 src/Object/Post.php:530 msgid "Categories:" msgstr "Roinnean-seòrsa:" -#: src/Content/Conversation.php:1537 src/Object/Post.php:530 +#: src/Content/Conversation.php:1539 src/Object/Post.php:531 msgid "Filed under:" msgstr "Air a chlàradh fo:" -#: src/Content/Conversation.php:1545 src/Object/Post.php:556 +#: src/Content/Conversation.php:1547 src/Object/Post.php:557 #, php-format msgid "%s from %s" msgstr "%s o %s" -#: src/Content/Conversation.php:1561 +#: src/Content/Conversation.php:1563 msgid "View in context" msgstr "Seall le co-theacsa" @@ -1679,7 +1684,7 @@ msgstr "Pearsanta" msgid "Posts that mention or involve you" msgstr "Postaichean le iomradh ort no sa bheil thu an sàs" -#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:398 msgid "Starred" msgstr "Rionnag" @@ -1766,7 +1771,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:552 src/Model/User.php:1390 +#: src/Content/Widget.php:555 src/Model/User.php:1390 msgid "Groups" msgstr "Buidhnean" @@ -1774,7 +1779,7 @@ msgstr "Buidhnean" msgid "Display posts that have been distributed by the selected group." msgstr "" -#: src/Content/Feature.php:117 src/Content/Widget.php:521 +#: src/Content/Feature.php:117 src/Content/Widget.php:524 msgid "Archives" msgstr "Tasg-lannan" @@ -1790,8 +1795,8 @@ msgstr "Pròtacalan" msgid "Display posts with the selected protocols." msgstr "" -#: src/Content/Feature.php:119 src/Content/Widget.php:558 -#: src/Module/Settings/Account.php:429 +#: src/Content/Feature.php:119 src/Content/Widget.php:561 +#: src/Module/Settings/Account.php:391 msgid "Account Types" msgstr "Seòrsaichean chunntasan" @@ -1799,7 +1804,7 @@ msgstr "Seòrsaichean chunntasan" msgid "Display posts done by accounts with the selected account type." msgstr "" -#: src/Content/Feature.php:120 src/Content/Widget.php:607 +#: 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 msgid "Channels" @@ -1825,7 +1830,7 @@ msgstr "Pasganan air an sàbhaladh" msgid "Display a list of folders in which posts are stored." msgstr "" -#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:189 msgid "Own Contacts" msgstr "An luchd-aithne agadsa" @@ -1881,12 +1886,12 @@ msgstr "Leigidh seo le aoighean sùil a thoirt air a’ mhìosachan ’s air na msgid "External link to group" msgstr "Ceangal cèin dhan bhuidheann" -#: src/Content/GroupManager.php:139 src/Content/Widget.php:527 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:530 msgid "show less" msgstr "seall nas lugha dheth" #: src/Content/GroupManager.php:140 src/Content/Widget.php:425 -#: src/Content/Widget.php:528 +#: src/Content/Widget.php:531 msgid "show more" msgstr "seall barrachd dheth" @@ -1894,66 +1899,66 @@ msgstr "seall barrachd dheth" msgid "Create new group" msgstr "Cruthaich buidheann ùr" -#: src/Content/Item.php:317 src/Model/Item.php:3273 +#: src/Content/Item.php:322 src/Model/Item.php:3281 msgid "event" msgstr "tachartas" -#: src/Content/Item.php:320 src/Content/Item.php:330 +#: src/Content/Item.php:325 src/Content/Item.php:335 msgid "status" msgstr "staid" -#: src/Content/Item.php:326 src/Model/Item.php:3275 +#: src/Content/Item.php:331 src/Model/Item.php:3283 #: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "dealbh" -#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 +#: src/Content/Item.php:345 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "Chuir %1$s taga %4$s ri %3$s aig %2$s" -#: src/Content/Item.php:414 view/theme/frio/theme.php:253 +#: src/Content/Item.php:419 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Lean air an t-snàithlean" -#: src/Content/Item.php:415 src/Model/Contact.php:1244 +#: src/Content/Item.php:420 src/Model/Contact.php:1245 msgid "View Status" msgstr "Seall an staid" -#: 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/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 msgid "View Profile" msgstr "Seall a’ phròifil" -#: src/Content/Item.php:417 src/Model/Contact.php:1246 +#: src/Content/Item.php:422 src/Model/Contact.php:1247 msgid "View Photos" msgstr "Seall na dealbhan" -#: src/Content/Item.php:418 src/Model/Contact.php:1213 +#: src/Content/Item.php:423 src/Model/Contact.php:1214 #: src/Model/Profile.php:446 msgid "Network Posts" msgstr "Postaichean lìonraidh" -#: src/Content/Item.php:419 src/Model/Contact.php:1237 -#: src/Model/Contact.php:1248 +#: src/Content/Item.php:424 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1249 msgid "View Contact" msgstr "Seall an neach-aithne" -#: src/Content/Item.php:420 src/Model/Contact.php:1249 +#: src/Content/Item.php:425 src/Model/Contact.php:1250 msgid "Send PM" msgstr "Cuir TPh" -#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Content/Item.php:426 src/Module/Contact.php:449 #: src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:104 -#: src/Module/Moderation/Users/Active.php:123 -#: src/Module/Moderation/Users/Index.php:138 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Index.php:141 msgid "Block" msgstr "Bac" -#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Content/Item.php:427 src/Module/Contact.php:450 #: src/Module/Contact/Profile.php:532 #: src/Module/Notifications/Introductions.php:126 #: src/Module/Notifications/Introductions.php:199 @@ -1961,27 +1966,27 @@ msgstr "Bac" msgid "Ignore" msgstr "Leig seachad" -#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Content/Item.php:428 src/Module/Contact.php:451 #: src/Module/Contact/Profile.php:540 msgid "Collapse" msgstr "Co-theannaich" -#: src/Content/Item.php:424 src/Object/Post.php:288 +#: src/Content/Item.php:429 src/Object/Post.php:289 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 -#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 +#: src/Content/Item.php:433 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:503 msgid "Languages" msgstr "Cànanan" -#: src/Content/Item.php:431 src/Object/Post.php:582 +#: src/Content/Item.php:436 src/Object/Post.php:583 msgid "Search Text" msgstr "" -#: src/Content/Item.php:436 src/Content/Widget.php:66 -#: src/Model/Contact.php:1238 src/Model/Contact.php:1250 +#: src/Content/Item.php:441 src/Content/Widget.php:66 +#: src/Model/Contact.php:1239 src/Model/Contact.php:1251 #: src/Module/Contact/Follow.php:152 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Ceangail ris/Lean air" @@ -1994,7 +1999,7 @@ msgstr "Chan urrainn dhuinn an cleachdaiche fhaighinn dhut." msgid "Nothing new here" msgstr "Chan eil dad ùr an-seo" -#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:64 msgid "Go back" msgstr "Air ais" @@ -2208,7 +2213,7 @@ msgstr "Brathan" msgid "See all notifications" msgstr "Seall gach brath" -#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:226 msgid "Mark as seen" msgstr "Cuir comharra gun deach fhaicinn" @@ -2236,8 +2241,8 @@ msgstr "Cunntasan" msgid "Manage other pages" msgstr "Stiùir duilleagan eile" -#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 -#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:170 +#: 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/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Roghainnean" @@ -2265,10 +2270,10 @@ msgstr "Suidheachadh ’s rèiteachadh na làraich" #: src/Module/Moderation/Blocklist/Server/Index.php:84 #: 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:119 -#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 #: src/Module/Moderation/Users/Deleted.php:66 -#: src/Module/Moderation/Users/Index.php:133 +#: src/Module/Moderation/Users/Index.php:136 msgid "Moderation" msgstr "Maorsainneachd" @@ -2300,33 +2305,33 @@ msgstr "air adhart" msgid "last" msgstr "dhan deireadh" -#: src/Content/Text/BBCode.php:908 +#: src/Content/Text/BBCode.php:903 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:931 src/Model/Item.php:4069 -#: src/Model/Item.php:4075 src/Model/Item.php:4076 +#: src/Content/Text/BBCode.php:926 src/Model/Item.php:4080 +#: src/Model/Item.php:4086 src/Model/Item.php:4087 msgid "Link to source" msgstr "Ceangal dhan tùs" -#: src/Content/Text/BBCode.php:1745 src/Content/Text/HTML.php:892 +#: src/Content/Text/BBCode.php:1740 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Briog ’ga fhosgladh/dhùnadh" -#: src/Content/Text/BBCode.php:1800 +#: src/Content/Text/BBCode.php:1795 msgid "$1 wrote:" msgstr "Sgrìobh $1:" -#: src/Content/Text/BBCode.php:1874 src/Content/Text/BBCode.php:1875 +#: src/Content/Text/BBCode.php:1869 src/Content/Text/BBCode.php:1870 msgid "Encrypted content" msgstr "Susbaint chrioptaichte" -#: src/Content/Text/BBCode.php:2208 +#: src/Content/Text/BBCode.php:2203 msgid "Invalid source protocol" msgstr "Pròtacal tùis mì-dhligheach" -#: src/Content/Text/BBCode.php:2227 +#: src/Content/Text/BBCode.php:2222 msgid "Invalid link protocol" msgstr "Pròtacal ceangail mì-dhligheach" @@ -2381,7 +2386,7 @@ msgid "Examples: Robert Morgenstein, Fishing" msgstr "Mar eisimpleir: Aonghas MacLeòid, iasgach" #: src/Content/Widget.php:68 src/Module/Contact.php:441 -#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 +#: src/Module/Directory.php:82 view/theme/vier/theme.php:185 msgid "Find" msgstr "Lorg" @@ -2402,7 +2407,7 @@ msgstr "Pròifil air thuaiream" msgid "Invite Friends" msgstr "Thoir cuireadh do charaidean" -#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: src/Content/Widget.php:73 src/Module/Directory.php:74 #: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Eòlaire co-naisgte" @@ -2423,7 +2428,7 @@ msgstr "Gu dàimh" msgid "Relationships" msgstr "Dàimhean" -#: src/Content/Widget.php:264 src/Module/Circle.php:280 +#: src/Content/Widget.php:264 src/Module/Circle.php:281 #: src/Module/Contact.php:325 msgid "All Contacts" msgstr "A h-uile neach-aithne" @@ -2449,27 +2454,27 @@ msgstr[1] "%d luchd-aithne an cumantas" msgstr[2] "%d luchd-aithne an cumantas" msgstr[3] "%d luchd-aithne an cumantas" -#: src/Content/Widget.php:529 +#: src/Content/Widget.php:532 msgid "On this date" msgstr "Air an latha seo" -#: src/Content/Widget.php:549 +#: src/Content/Widget.php:552 msgid "Persons" msgstr "Daoine" -#: src/Content/Widget.php:550 +#: src/Content/Widget.php:553 msgid "Organisations" msgstr "Buidhnean" -#: src/Content/Widget.php:551 src/Model/Contact.php:1750 +#: src/Content/Widget.php:554 src/Model/Contact.php:1751 msgid "News" msgstr "Naidheachdan" -#: src/Content/Widget.php:553 +#: src/Content/Widget.php:556 msgid "Relays" msgstr "" -#: src/Content/Widget.php:560 src/Module/Moderation/BaseUsers.php:58 +#: src/Content/Widget.php:563 src/Module/Moderation/BaseUsers.php:58 msgid "All" msgstr "Na h-uile" @@ -2519,12 +2524,12 @@ msgstr[3] "Tagaichean a’ treandadh (san %d uair a thìde seo chaidh)" msgid "More Trending Tags" msgstr "Barrachd thagaichean a’ treandadh" -#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1207 +#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1208 #: src/Model/Profile.php:440 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1211 +#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1212 #: src/Model/Profile.php:444 src/Module/Moderation/Item/Source.php:80 msgid "Mention" msgstr "Iomradh" @@ -2539,10 +2544,10 @@ msgstr "XMPP:" msgid "Matrix:" msgstr "Matrix:" -#: src/Content/Widget/VCard.php:112 src/Model/Event.php:68 -#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: 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:134 src/Module/Notifications/Introductions.php:180 +#: src/Module/Directory.php:133 src/Module/Notifications/Introductions.php:180 #: src/Module/Profile/Profile.php:212 msgid "Location:" msgstr "Ionad:" @@ -2552,75 +2557,75 @@ msgstr "Ionad:" msgid "Network:" msgstr "Lìonra:" -#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1239 -#: src/Model/Contact.php:1251 src/Model/Profile.php:457 +#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1252 src/Model/Profile.php:457 #: src/Module/Contact/Profile.php:476 msgid "Unfollow" msgstr "Na lean tuilleadh" -#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1209 +#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1210 #: src/Model/Profile.php:442 msgid "View group" msgstr "" -#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:260 +#: src/Core/ACL.php:153 src/Module/Profile/Profile.php:260 msgid "Yourself" msgstr "Thu fhèin" -#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Core/ACL.php:189 src/Module/Privacy/PermissionTooltip.php:156 #: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "Co-dhàimhean" -#: src/Core/ACL.php:280 +#: src/Core/ACL.php:281 msgid "Post to Email" msgstr "Postaich dhan phost-d" -#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Core/ACL.php:308 src/Module/Privacy/PermissionTooltip.php:103 #: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "Poblach" -#: src/Core/ACL.php:308 +#: src/Core/ACL.php:309 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 "Thèid an t-susbaint seo a shealltainn dhan luchd-leantainn gu lèir agad agus chithear air duilleagan na coimhearsnachd i agus chì a h-uile duine aig a bheil an ceangal seo i." -#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 +#: src/Core/ACL.php:310 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "Cuingichte/Prìobhaideach" -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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 "Thèid an t-susbaint seo a shealltainn dhan fheadhainn san dàrna bhogsa a-mhàin is chan fhaic an fheadhainn sa bhogsa eile. Cha nochd i gu poblach àite sam bith." -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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 "Tòisich air ainm neach-aithne no cearcall a sgrìobhadh a shealltainn liosta chriathraichte. ’S urrainn dhut iomradh a thoirt air cearcallan sònraichte mar “Luchd-leantainn” no “Co-dhàimhean” cuideachd." -#: src/Core/ACL.php:311 +#: src/Core/ACL.php:312 msgid "Show to:" msgstr "Seall gu:" -#: src/Core/ACL.php:312 +#: src/Core/ACL.php:313 msgid "Except to:" msgstr "Ach gu:" -#: src/Core/ACL.php:313 src/Module/Post/Edit.php:145 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:145 msgid "CC: email addresses" msgstr "CC: seòlaidhean puist-d" -#: src/Core/ACL.php:314 src/Module/Post/Edit.php:151 +#: src/Core/ACL.php:315 src/Module/Post/Edit.php:151 msgid "Example: bob@example.com, mary@example.com" msgstr "Mar eisimpleir: aonghas@ball-eisimpleir.com, oighrig@ball-eisimpleir.com" -#: src/Core/ACL.php:315 +#: src/Core/ACL.php:316 msgid "Connectors" msgstr "Ceangladairean" @@ -2955,176 +2960,176 @@ msgstr "Tha an stòr-dàta ’ga chleachdadh mu thràth." msgid "Could not connect to database." msgstr "Cha b’ urrainn dhuinn ceangal ris an stòr-dàta." -#: src/Core/L10n.php:430 src/Model/Item.php:2316 +#: src/Core/L10n.php:426 src/Model/Item.php:2324 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:437 +#: src/Core/L10n.php:433 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Core/L10n.php:481 src/Model/Event.php:418 #: src/Module/Settings/Display.php:292 msgid "Monday" msgstr "DiLuain" -#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Core/L10n.php:481 src/Model/Event.php:419 #: src/Module/Settings/Display.php:293 msgid "Tuesday" msgstr "DiMàirt" -#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Core/L10n.php:481 src/Model/Event.php:420 #: src/Module/Settings/Display.php:294 msgid "Wednesday" msgstr "DiCiadain" -#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Core/L10n.php:481 src/Model/Event.php:421 #: src/Module/Settings/Display.php:295 msgid "Thursday" msgstr "DiarDaoin" -#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Core/L10n.php:481 src/Model/Event.php:422 #: src/Module/Settings/Display.php:296 msgid "Friday" msgstr "DihAoine" -#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Core/L10n.php:481 src/Model/Event.php:423 #: src/Module/Settings/Display.php:297 msgid "Saturday" msgstr "DiSathairne" -#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Core/L10n.php:481 src/Model/Event.php:417 #: src/Module/Settings/Display.php:291 msgid "Sunday" msgstr "DiDòmhnaich" -#: src/Core/L10n.php:489 src/Model/Event.php:436 +#: src/Core/L10n.php:485 src/Model/Event.php:438 msgid "January" msgstr "Am Faoilleach" -#: src/Core/L10n.php:489 src/Model/Event.php:437 +#: src/Core/L10n.php:485 src/Model/Event.php:439 msgid "February" msgstr "An Gearran" -#: src/Core/L10n.php:489 src/Model/Event.php:438 +#: src/Core/L10n.php:485 src/Model/Event.php:440 msgid "March" msgstr "Am Màrt" -#: src/Core/L10n.php:489 src/Model/Event.php:439 +#: src/Core/L10n.php:485 src/Model/Event.php:441 msgid "April" msgstr "An Giblean" -#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 +#: src/Core/L10n.php:485 src/Core/L10n.php:504 src/Model/Event.php:429 msgid "May" msgstr "An Cèitean" -#: src/Core/L10n.php:489 src/Model/Event.php:440 +#: src/Core/L10n.php:485 src/Model/Event.php:442 msgid "June" msgstr "An t-Ògmhios" -#: src/Core/L10n.php:489 src/Model/Event.php:441 +#: src/Core/L10n.php:485 src/Model/Event.php:443 msgid "July" msgstr "An t-Iuchar" -#: src/Core/L10n.php:489 src/Model/Event.php:442 +#: src/Core/L10n.php:485 src/Model/Event.php:444 msgid "August" msgstr "An Lùnastal" -#: src/Core/L10n.php:489 src/Model/Event.php:443 +#: src/Core/L10n.php:485 src/Model/Event.php:445 msgid "September" msgstr "An t-Sultain" -#: src/Core/L10n.php:489 src/Model/Event.php:444 +#: src/Core/L10n.php:485 src/Model/Event.php:446 msgid "October" msgstr "An Dàmhair" -#: src/Core/L10n.php:489 src/Model/Event.php:445 +#: src/Core/L10n.php:485 src/Model/Event.php:447 msgid "November" msgstr "An t-Samhain" -#: src/Core/L10n.php:489 src/Model/Event.php:446 +#: src/Core/L10n.php:485 src/Model/Event.php:448 msgid "December" msgstr "An Dùbhlachd" -#: src/Core/L10n.php:504 src/Model/Event.php:408 +#: src/Core/L10n.php:500 src/Model/Event.php:410 msgid "Mon" msgstr "DiL" -#: src/Core/L10n.php:504 src/Model/Event.php:409 +#: src/Core/L10n.php:500 src/Model/Event.php:411 msgid "Tue" msgstr "DiM" -#: src/Core/L10n.php:504 src/Model/Event.php:410 +#: src/Core/L10n.php:500 src/Model/Event.php:412 msgid "Wed" msgstr "DiC" -#: src/Core/L10n.php:504 src/Model/Event.php:411 +#: src/Core/L10n.php:500 src/Model/Event.php:413 msgid "Thu" msgstr "Dia" -#: src/Core/L10n.php:504 src/Model/Event.php:412 +#: src/Core/L10n.php:500 src/Model/Event.php:414 msgid "Fri" msgstr "Dih" -#: src/Core/L10n.php:504 src/Model/Event.php:413 +#: src/Core/L10n.php:500 src/Model/Event.php:415 msgid "Sat" msgstr "DiS" -#: src/Core/L10n.php:504 src/Model/Event.php:407 +#: src/Core/L10n.php:500 src/Model/Event.php:409 msgid "Sun" msgstr "DiD" -#: src/Core/L10n.php:508 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:425 msgid "Jan" msgstr "Faoi" -#: src/Core/L10n.php:508 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:426 msgid "Feb" msgstr "Gearr" -#: src/Core/L10n.php:508 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:427 msgid "Mar" msgstr "Màrt" -#: src/Core/L10n.php:508 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:428 msgid "Apr" msgstr "Gibl" -#: src/Core/L10n.php:508 src/Model/Event.php:428 +#: src/Core/L10n.php:504 src/Model/Event.php:430 msgid "Jun" msgstr "Ògmh" -#: src/Core/L10n.php:508 src/Model/Event.php:429 +#: src/Core/L10n.php:504 src/Model/Event.php:431 msgid "Jul" msgstr "Iuch" -#: src/Core/L10n.php:508 src/Model/Event.php:430 +#: src/Core/L10n.php:504 src/Model/Event.php:432 msgid "Aug" msgstr "Lùna" -#: src/Core/L10n.php:508 +#: src/Core/L10n.php:504 msgid "Sep" msgstr "Sult" -#: src/Core/L10n.php:508 src/Model/Event.php:432 +#: src/Core/L10n.php:504 src/Model/Event.php:434 msgid "Oct" msgstr "Dàmh" -#: src/Core/L10n.php:508 src/Model/Event.php:433 +#: src/Core/L10n.php:504 src/Model/Event.php:435 msgid "Nov" msgstr "Samh" -#: src/Core/L10n.php:508 src/Model/Event.php:434 +#: src/Core/L10n.php:504 src/Model/Event.php:436 msgid "Dec" msgstr "Dùbh" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:44 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "Cha ghabh faidhle “%s” an loga a chleachdadh. Cha ghabh logadh a dhèanamh (mearachd: “%s”)" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:67 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" @@ -3316,7 +3321,7 @@ msgstr "cuir ris" msgid "Edit circle" msgstr "Deasaich an cearcall" -#: src/Model/Circle.php:592 src/Module/Circle.php:181 +#: src/Model/Circle.php:592 src/Module/Circle.php:185 msgid "Contacts not in any circle" msgstr "Luchd-aithne gun chearcall" @@ -3324,8 +3329,8 @@ msgstr "Luchd-aithne gun chearcall" msgid "Create a new circle" msgstr "Cruthaich cearcall ùr" -#: src/Model/Circle.php:595 src/Module/Circle.php:166 -#: src/Module/Circle.php:189 src/Module/Circle.php:264 +#: src/Model/Circle.php:595 src/Module/Circle.php:168 +#: src/Module/Circle.php:190 src/Module/Circle.php:265 msgid "Circle Name: " msgstr "Ainm a’ chearcaill: " @@ -3333,247 +3338,247 @@ msgstr "Ainm a’ chearcaill: " msgid "Edit circles" msgstr "Deasaich na cearcallan" -#: src/Model/Contact.php:1258 src/Module/Moderation/Users/Pending.php:88 +#: src/Model/Contact.php:1259 src/Module/Moderation/Users/Pending.php:88 #: src/Module/Notifications/Introductions.php:124 #: src/Module/Notifications/Introductions.php:197 msgid "Approve" msgstr "Aontaich ris" -#: src/Model/Contact.php:1594 src/Model/Contact.php:1666 +#: src/Model/Contact.php:1595 src/Model/Contact.php:1667 #: src/Module/Contact/Profile.php:360 #, php-format msgid "%s has blocked you" msgstr "" -#: src/Model/Contact.php:1746 +#: src/Model/Contact.php:1747 msgid "Organisation" msgstr "Buidheann" -#: src/Model/Contact.php:1754 +#: src/Model/Contact.php:1755 msgid "Group" msgstr "Buidheann" -#: src/Model/Contact.php:1758 src/Module/Moderation/BaseUsers.php:122 +#: src/Model/Contact.php:1759 src/Module/Moderation/BaseUsers.php:122 msgid "Relay" msgstr "Ath-sheachadan" -#: src/Model/Contact.php:3073 +#: src/Model/Contact.php:3085 msgid "Disallowed profile URL." msgstr "URL pròifile mì-dhligheach." -#: src/Model/Contact.php:3078 src/Module/Friendica.php:88 +#: src/Model/Contact.php:3090 src/Module/Friendica.php:88 msgid "Blocked domain" msgstr "Àrainn bhacte" -#: src/Model/Contact.php:3083 +#: src/Model/Contact.php:3095 msgid "Connect URL missing." msgstr "Tha URL a’ cheangail a dhìth." -#: src/Model/Contact.php:3092 +#: src/Model/Contact.php:3104 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Cha b’ urrainn dhuinn an neach-aithne a chur ris. Thoir sùil air teisteas an lìonraidh iomchaidh air duilleag nan “Roghainnean” > “Lìonraidhean sòisealta” agad." -#: src/Model/Contact.php:3110 +#: src/Model/Contact.php:3122 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "Chan eil an lìonra %s air a bheil dùil co-ionnann ris a lìonra %s a tha ann" -#: src/Model/Contact.php:3127 +#: src/Model/Contact.php:3139 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3134 +#: src/Model/Contact.php:3146 msgid "The profile address specified does not provide adequate information." msgstr "Chan eil an seòladh pròifile a shònraich thu a’ solar am fiosrachadh iomchaidh." -#: src/Model/Contact.php:3136 +#: src/Model/Contact.php:3148 msgid "No compatible communication protocols or feeds were discovered." msgstr "Cha do lorg sinn pròtacal conaltraidh no inbhir iomchaidh." -#: src/Model/Contact.php:3139 +#: src/Model/Contact.php:3151 msgid "An author or name was not found." msgstr "Cha deach an t-ùghdar no ainm a lorg." -#: src/Model/Contact.php:3142 +#: src/Model/Contact.php:3154 msgid "No browser URL could be matched to this address." msgstr "Cha b’ urrainn dhuinn URL a’ bhrabhsair a mhaidseadh ris an t-seòladh seo." -#: src/Model/Contact.php:3145 +#: src/Model/Contact.php:3157 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Tha b’ urrainn dhuinn an seòladh-aithne san stoidhle @ a mhaidseadh le pròtacal as aithne dhuinn no neach-aithne puist-d." -#: src/Model/Contact.php:3146 +#: src/Model/Contact.php:3158 msgid "Use mailto: in front of address to force email check." msgstr "Cleachd mailto: ron t-seòladh airson sgrùdadh nam post-d a sparradh." -#: src/Model/Contact.php:3152 +#: src/Model/Contact.php:3164 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Pròifil chuingichte. Chan fhaigh an neach seo brathan dìreach/pearsanta uat." -#: src/Model/Contact.php:3211 +#: src/Model/Contact.php:3223 msgid "Unable to retrieve contact information." msgstr "Cha d’ fhuair sinn grèim air fiosrachadh an neach-aithne." -#: src/Model/Event.php:40 +#: src/Model/Event.php:42 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "l, d F Y \\@ g:i a \\G\\M\\TP (e)" -#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 -#: src/Model/Event.php:928 +#: src/Model/Event.php:63 src/Model/Event.php:80 src/Model/Event.php:457 +#: src/Model/Event.php:929 msgid "Starts:" msgstr "A’ tòiseachadh:" -#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 -#: src/Model/Event.php:932 +#: src/Model/Event.php:66 src/Model/Event.php:86 src/Model/Event.php:458 +#: src/Model/Event.php:933 msgid "Finishes:" msgstr "Thig e gu crìoch:" -#: src/Model/Event.php:405 +#: src/Model/Event.php:407 msgid "all-day" msgstr "fad an latha" -#: src/Model/Event.php:431 +#: src/Model/Event.php:433 msgid "Sept" msgstr "Sult" -#: src/Model/Event.php:448 src/Module/Calendar/Show.php:117 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:117 #: src/Util/Temporal.php:329 msgid "today" msgstr "an-diugh" -#: src/Model/Event.php:449 src/Module/Calendar/Show.php:118 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:118 #: src/Module/Settings/Display.php:302 src/Util/Temporal.php:339 msgid "month" msgstr "mìos" -#: src/Model/Event.php:450 src/Module/Calendar/Show.php:119 +#: src/Model/Event.php:452 src/Module/Calendar/Show.php:119 #: src/Module/Settings/Display.php:303 src/Util/Temporal.php:340 msgid "week" msgstr "seachdain" -#: src/Model/Event.php:451 src/Module/Calendar/Show.php:120 +#: src/Model/Event.php:453 src/Module/Calendar/Show.php:120 #: src/Module/Settings/Display.php:304 src/Util/Temporal.php:341 msgid "day" msgstr "latha" -#: src/Model/Event.php:453 +#: src/Model/Event.php:455 msgid "No events to display" msgstr "Chan eil tachartas ri shealltainn ann" -#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Model/Event.php:504 src/Module/Feed.php:56 #: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "Chaidh an t-inntrigeadh dhan phròifil seo a chuingeachadh." -#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:52 +#: src/Model/Event.php:545 src/Module/Calendar/Event/Show.php:52 msgid "Event not found." msgstr "Cha deach an tachartas a lorg." -#: src/Model/Event.php:623 +#: src/Model/Event.php:624 msgid "l, F j" msgstr "l, j F" -#: src/Model/Event.php:650 +#: src/Model/Event.php:651 msgid "Edit event" msgstr "Deasaich an tachartas" -#: src/Model/Event.php:651 +#: src/Model/Event.php:652 msgid "Duplicate event" msgstr "Dùblaich an tachartas" -#: src/Model/Event.php:652 +#: src/Model/Event.php:653 msgid "Delete event" msgstr "Sguab às an tachartas" -#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 +#: src/Model/Event.php:883 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l, d F Y \\@ g:i a" -#: src/Model/Event.php:883 +#: src/Model/Event.php:884 msgid "D g:i A" msgstr "D g:i a" -#: src/Model/Event.php:884 +#: src/Model/Event.php:885 msgid "g:i A" msgstr "g:i a" -#: src/Model/Event.php:947 src/Model/Event.php:949 +#: src/Model/Event.php:948 src/Model/Event.php:950 msgid "Show map" msgstr "Seall am mapa" -#: src/Model/Event.php:948 +#: src/Model/Event.php:949 msgid "Hide map" msgstr "Falaich am mapa" -#: src/Model/Event.php:1041 +#: src/Model/Event.php:1042 #, php-format msgid "%s's birthday" msgstr "Cò-là breith aig %s" -#: src/Model/Event.php:1042 +#: src/Model/Event.php:1043 #, php-format msgid "Happy Birthday %s" msgstr "Co-là breith sona dhut, %s" -#: src/Model/Item.php:2323 +#: src/Model/Item.php:2331 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2325 +#: src/Model/Item.php:2333 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2328 +#: src/Model/Item.php:2336 #, php-format msgid "" "Detected languages in this post:\n" "%s" msgstr "" -#: src/Model/Item.php:3277 +#: src/Model/Item.php:3285 msgid "activity" msgstr "gnìomhachd" -#: src/Model/Item.php:3279 +#: src/Model/Item.php:3287 msgid "comment" msgstr "beachd" -#: src/Model/Item.php:3282 src/Module/Post/Tag/Add.php:109 +#: src/Model/Item.php:3290 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "post" -#: src/Model/Item.php:3452 +#: src/Model/Item.php:3463 #, php-format msgid "%s is blocked" msgstr "Tha %s ’ga bhacadh" -#: src/Model/Item.php:3454 +#: src/Model/Item.php:3465 #, php-format msgid "%s is ignored" msgstr "Tha %s ’ga leigeil seachad" -#: src/Model/Item.php:3456 +#: src/Model/Item.php:3467 #, php-format msgid "Content from %s is collapsed" msgstr "Tha susbaint o %s ’ga cho-theannachadh" -#: src/Model/Item.php:3460 +#: src/Model/Item.php:3471 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3969 +#: src/Model/Item.php:3980 msgid "bytes" msgstr "baidht" -#: src/Model/Item.php:4000 +#: src/Model/Item.php:4011 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3582,7 +3587,7 @@ msgstr[1] "%2$s (%3$d%%, %1$d bhòt)" msgstr[2] "%2$s (%3$d%%, %1$d bhòtaichean)" msgstr[3] "%2$s (%3$d%%, %1$d bhòt)" -#: src/Model/Item.php:4002 +#: src/Model/Item.php:4013 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3591,7 +3596,7 @@ msgstr[1] "%2$s (%1$d bhòt)" msgstr[2] "%2$s (%1$d bhòtaichean)" msgstr[3] "%2$s (%1$d bhòt)" -#: src/Model/Item.php:4007 +#: src/Model/Item.php:4018 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3600,7 +3605,7 @@ msgstr[1] "Rinn %d bhòtadh. Crìoch a’ chunntais-bheachd: %s" msgstr[2] "Rinn %d bhòtadh. Crìoch a’ chunntais-bheachd: %s" msgstr[3] "Rinn %d bhòtadh. Crìoch a’ chunntais-bheachd: %s" -#: src/Model/Item.php:4009 +#: src/Model/Item.php:4020 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3609,12 +3614,12 @@ msgstr[1] "Rinn %d bhòtadh." msgstr[2] "Rinn %d bhòtadh." msgstr[3] "Rinn %d bhòtadh." -#: src/Model/Item.php:4011 +#: src/Model/Item.php:4022 #, php-format msgid "Poll end: %s" msgstr "Crìoch a’ bhunntais-bheachd:%s" -#: src/Model/Item.php:4052 src/Model/Item.php:4053 +#: src/Model/Item.php:4063 src/Model/Item.php:4064 msgid "View on separate page" msgstr "Seall air duilleag fa leth" @@ -3622,7 +3627,7 @@ msgstr "Seall air duilleag fa leth" msgid "[no subject]" msgstr "[gun chuspair]" -#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 +#: src/Model/Photo.php:1192 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Dealbhan balla" @@ -3635,7 +3640,7 @@ msgstr "Deasaich a’ phròifil" msgid "Change profile photo" msgstr "Atharraich dealbh na pròifil" -#: src/Model/Profile.php:357 src/Module/Directory.php:139 +#: src/Model/Profile.php:357 src/Module/Directory.php:138 #: src/Module/Profile/Profile.php:200 msgid "Homepage:" msgstr "Duilleag-dhachaigh:" @@ -3725,7 +3730,7 @@ msgstr "Cha toigh seo le:" msgid "Title/Description:" msgstr "Tiotal/Tuairisgeul:" -#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:176 +#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:174 #: src/Module/Moderation/Report/Create.php:266 #: src/Module/Moderation/Summary.php:65 msgid "Summary" @@ -3776,59 +3781,59 @@ msgstr "" msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "MEARACHD MHÒR: Dh’fhàillig le gintinn nan iuchraichean tèarainteachd." -#: src/Model/User.php:740 src/Model/User.php:773 +#: src/Model/User.php:739 src/Model/User.php:772 msgid "Login failed" msgstr "Dh’fhàillig leis a’ chlàradh a-steach" -#: src/Model/User.php:805 +#: src/Model/User.php:804 msgid "Not enough information to authenticate" msgstr "Tha fiosrachadh a dhìth dhan dearbhadh" -#: src/Model/User.php:930 +#: src/Model/User.php:929 msgid "Password can't be empty" msgstr "Chan fhaod am facal-faire a bhith bàn" -#: src/Model/User.php:972 +#: src/Model/User.php:971 msgid "Empty passwords are not allowed." msgstr "Chan eil faclan-faire bàna ceadaichte." -#: src/Model/User.php:976 +#: src/Model/User.php:975 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Chaidh am facal-faire ùr fhoillseachadh ann an dumpadh dàta poblach, tagh fear eile." -#: src/Model/User.php:980 +#: src/Model/User.php:979 msgid "The password length is limited to 72 characters." msgstr "Chan fhaod am facal-faire a bhith nas fhaide na 72 caractar." -#: src/Model/User.php:984 +#: src/Model/User.php:983 msgid "The password can't contain white spaces nor accentuated letters" msgstr "Chan fhaod àite bàn no litir le stràc a bhith am broinn an fhacail-fhaire" -#: src/Model/User.php:1193 +#: src/Model/User.php:1192 msgid "Passwords do not match. Password unchanged." msgstr "Chan eil an dà fhacal-faire co-ionnann. Cha deach am facal-faire atharrachadh." -#: src/Model/User.php:1200 +#: src/Model/User.php:1199 msgid "An invitation is required." msgstr "Tha feum air cuireadh." -#: src/Model/User.php:1204 +#: src/Model/User.php:1203 msgid "Invitation could not be verified." msgstr "Cha b’ urrainn dhuinn an cuireadh a dhearbhadh." -#: src/Model/User.php:1212 +#: src/Model/User.php:1211 msgid "Invalid OpenID url" msgstr "URL OpenID mì-dhligheach" -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Thachair sinn ri duilgheadas fhad ’s a bha sinn ’gad clàradh a-steach leis an OpenID a thug thu seachad. Thoir sùil air litreachadh an ID." -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "The error message was:" msgstr "Seo teachdaireachd na mearachd:" @@ -4023,57 +4028,57 @@ msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:51 +#: src/Module/Admin/Addons/Details.php:49 msgid "Addon not found." msgstr "Cha deach an tuilleadan a lorg." -#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 +#: src/Module/Admin/Addons/Details.php:60 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "Tha an tuilleadan %s à comas." -#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 +#: src/Module/Admin/Addons/Details.php:63 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "Tha an tuilleadan %s an comas." -#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Addons/Details.php:72 #: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "Cuir à comas" -#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Addons/Details.php:75 #: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351 msgid "Enable" msgstr "Cuir an comas" -#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Addons/Details.php:95 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:175 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Summary.php:173 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 "Rianachd" -#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/Admin/Addons/Details.php:96 src/Module/Admin/Addons/Index.php:60 #: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:127 msgid "Addons" msgstr "Tuilleadain" -#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Addons/Details.php:97 #: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Toglaich" -#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Addons/Details.php:104 #: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Ùghdar: " -#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Addons/Details.php:105 #: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Neach-glèidhidh: " @@ -4090,9 +4095,10 @@ msgstr "Dh’fhàillig le stàladh an tuilleadain %s." #: 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:545 src/Module/Settings/Addons.php:64 -#: src/Module/Settings/Connectors.php:149 -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Account.php:507 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/Features.php:61 msgid "Save Settings" @@ -4109,62 +4115,62 @@ msgid "" "official addon repository at %1$s." msgstr "" -#: src/Module/Admin/DBSync.php:37 +#: src/Module/Admin/DBSync.php:35 msgid "Update has been marked successful" msgstr "Chaidh comharrachadh gun do soirbhich leis an ùrachadh" -#: src/Module/Admin/DBSync.php:45 +#: src/Module/Admin/DBSync.php:43 #, php-format msgid "Database structure update %s was successfully applied." msgstr "Chaidh ùrachadh %s air structar an stòir-dhàta a chur an sàs." -#: src/Module/Admin/DBSync.php:47 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "Dh’fhàillig an t-ùrachadh %s air structar an stòir-dhàta leis a’ mhearachd seo: %s" -#: src/Module/Admin/DBSync.php:62 +#: src/Module/Admin/DBSync.php:60 #, php-format msgid "Executing %s failed with error: %s" msgstr "Dh’fhàillig gnìomhachadh %s leis a’ chòd mhearachd seo: %s" -#: src/Module/Admin/DBSync.php:64 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Update %s was successfully applied." msgstr "Chaidh ùrachadh %s a chur an sàs." -#: src/Module/Admin/DBSync.php:67 +#: src/Module/Admin/DBSync.php:65 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Cha do thill an t-ùrachadh %s staid. Chan eil fhios an do shoirbhich leis gus nach do shoirbhich." -#: src/Module/Admin/DBSync.php:70 +#: src/Module/Admin/DBSync.php:68 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "Cha robh foincsean ùrachaidh %s eile feumach air gairm ann." -#: src/Module/Admin/DBSync.php:91 +#: src/Module/Admin/DBSync.php:89 msgid "No failed updates." msgstr "Cha do dh’fhàillig le ùrachadh sam bith." -#: src/Module/Admin/DBSync.php:92 +#: src/Module/Admin/DBSync.php:90 msgid "Check database structure" msgstr "Thoir sùil air structar an stòir-dhàta" -#: src/Module/Admin/DBSync.php:96 +#: src/Module/Admin/DBSync.php:94 msgid "Failed Updates" msgstr "Na dh’ùrachaidhean a dh’fhàillig leotha" -#: src/Module/Admin/DBSync.php:97 +#: src/Module/Admin/DBSync.php:95 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Cha ghabh seo a-staigh na h-ùrachaidhean ro 1139 nach do thilleadh staid." -#: src/Module/Admin/DBSync.php:98 +#: src/Module/Admin/DBSync.php:96 msgid "Mark success (if update was manually applied)" msgstr "Cuir comharra gun do shoirbhich leis (ma rinn thu an t-ùrachadh a làimh)" -#: src/Module/Admin/DBSync.php:99 +#: src/Module/Admin/DBSync.php:97 msgid "Attempt to execute this update step automatically" msgstr "Feuch gnìomhachadh a’ cheuma seo dhen ùrachadh gu fèin-obrachail" @@ -5745,12 +5751,12 @@ msgstr "Chan fhaod thu am backend làithreach atharrachadh on a chaidh a shuidhe msgid "Database (legacy)" msgstr "Stòr-dàta (dìleabach)" -#: src/Module/Admin/Summary.php:41 +#: src/Module/Admin/Summary.php:39 #, php-format msgid "Template engine (%s) error: %s" msgstr "Mearachd einnsean teamplaide (%s): %s" -#: src/Module/Admin/Summary.php:45 +#: src/Module/Admin/Summary.php:43 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5761,7 +5767,7 @@ msgid "" " an automatic conversion.
" msgstr "Tha an stòr-dàta agad a’ cleachdadh clàran MyISAM fhathast. Bu chòir dhut seòrsa an einnsein atharrachadh gu InnoDB. Air sgàth ’s gun cleachd Friendica gleusan InnoDB sònraichte san àm ri teachd, bu chòir dhut seo atharrachadh! Faic an treòir a tha cuideachail airson einnseanan nan clàran iompachadh. ’S urrainn dhut cuideachd an àithne php bin/console.php dbstructure toinnodb aig an stàladh agad dhe Friendica a chleachdadh airson iompachadh fèin-obrachail.
" -#: src/Module/Admin/Summary.php:50 +#: src/Module/Admin/Summary.php:48 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5772,7 +5778,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "Tha an stòr-dàta agad a’ cleachdadh clàran InnoDB san fhòrmat faidhle Antelope fhathast. Bu chòir dhut fòrmat nam faidhlichean atharrachadh gu Barracuda. Tha Friendica a’ cleachdadh gleusan nach solair fòrmat Antelope. Faic an treòir a tha cuideachail airson einnseanan nan clàran iompachadh. ’S urrainn dhut cuideachd an àithne php bin/console.php dbstructure toinnodb aig an stàladh agad dhe Friendica a chleachdadh airson iompachadh fèin-obrachail.
" -#: src/Module/Admin/Summary.php:60 +#: src/Module/Admin/Summary.php:58 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5780,46 +5786,46 @@ msgid "" " to %d. See here for more information.
" msgstr "Tha an table_definition_cache agad ro ìosal (%d). Dh’fhaoidte gun adhbharaich seo mearachd “Prepared statement needs to be re-prepared” an stòir-dhàta. Suidhich air %d e air a char as lugha. Seall an-seo airson barrachd fiosrachaidh.
" -#: src/Module/Admin/Summary.php:68 +#: src/Module/Admin/Summary.php:66 #, 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 "Tha tionndadh ùr dhe Friendica ri fhaighinn airson luchdadh a-nuas. ’S e %1$s a tha san tionndadh làithreach agad, ’S e %2$s a tha san tionndadh upstream" -#: src/Module/Admin/Summary.php:76 +#: src/Module/Admin/Summary.php:74 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 "Dh’fhàillig le ùrachadh an stòir-dhàta. Ruith “php bin/console.php dbstructure update” on loidhne-àithne is thoir sùil air na mearachdan a nochdas ma dh’fhaoidte." -#: src/Module/Admin/Summary.php:80 +#: src/Module/Admin/Summary.php:78 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 "Dh’fhàillig leis an ùrachadh mu dheireadh. Ruith “php bin/console.php dbstructure update” on loidhne-àithne is thoir sùil air na mearachdan a nochdas ma dh’fhaoidte. (Faodaidh cuid dhe na mearachdan nochdadh ann am faidhle an loga.)" -#: src/Module/Admin/Summary.php:84 +#: src/Module/Admin/Summary.php:82 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 "Tha innteart system.url a dhìth. Seo suidheachadh air ìre ìosal agus dh’fhaoidte gun adhbharaich seo giùlan air nach robh dùil. Cuir innteart dligheach ris cho luath ’s a ghabhas san fhaidhle config no air an loidhne-àithne!" -#: src/Module/Admin/Summary.php:89 +#: src/Module/Admin/Summary.php:87 msgid "The worker was never executed. Please check your database structure!" msgstr "Cha deach an obair seo a dhèanamh a-riamh. Thoir sùil air structar an stòir-dhàta agad!" -#: src/Module/Admin/Summary.php:91 +#: src/Module/Admin/Summary.php:89 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "Chaidh a obair a dhèanamh aig %s UTC an turas mu dheireadh. Tha seo nas fhaide air ais na uair. Thoir sùil air roghainnean a’ crontab agad." -#: src/Module/Admin/Summary.php:96 +#: src/Module/Admin/Summary.php:94 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5828,7 +5834,7 @@ msgid "" "help with the transition." msgstr "Tha rèiteachadh Friendica ’ga stòradh ann an config/local.config.php a-nis, dèan lethbhreac dhe config/local-sample.config.php is gluais an rèiteachadh agad o .htconfig.php. Faic duilleag taic an rèiteachaidh airson cuideachadh leis a’ ghluasad." -#: src/Module/Admin/Summary.php:100 +#: src/Module/Admin/Summary.php:98 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5837,7 +5843,7 @@ msgid "" "page for help with the transition." msgstr "Tha rèiteachadh Friendica ’ga stòradh ann an config/local.config.php a-nis, dèan lethbhreac dhe config/local-sample.config.php is gluais an rèiteachadh agad o config/local.ini.php. Faic duilleag taic an rèiteachaidh airson cuideachadh leis a’ ghluasad." -#: src/Module/Admin/Summary.php:106 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5845,40 +5851,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "Cha ghabh %s ruigsinn on t-siostam agad. Seo droch-dhuilgheadas leis an rèiteachadh nach leig leis an fhrithealaiche conaltradh le frithealaichean eile. Faic duilleag an stàlaidh airson cuideachadh." -#: src/Module/Admin/Summary.php:130 +#: src/Module/Admin/Summary.php:128 #, 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 "Chaidh an system.basepath aig Friendica ùrachadh o “%s” gu “%s”. Thoir air falbh system.basepath on stòr-dàta agad ach nach biodh diofar eatorra." -#: src/Module/Admin/Summary.php:138 +#: src/Module/Admin/Summary.php:136 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "Tha an system.basepath làithreach “%s” aig Friendica ceàrr is chan eil am faidhle rèiteachaidh “%s” ’ga chleachdadh." -#: src/Module/Admin/Summary.php:146 +#: src/Module/Admin/Summary.php:144 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "Chan eil an system.basepath làithreach “%s” co-ionnan ris an fhaidhle rèiteachaidh “%s”. Càirich an rèiteachadh agad." -#: src/Module/Admin/Summary.php:157 +#: src/Module/Admin/Summary.php:155 msgid "Message queues" msgstr "Ciuthan theachdaireachdan" -#: src/Module/Admin/Summary.php:160 +#: src/Module/Admin/Summary.php:158 msgid "Server Settings" msgstr "Roghainnean an fhrithealaiche" -#: src/Module/Admin/Summary.php:178 +#: src/Module/Admin/Summary.php:176 msgid "Version" msgstr "Tionndadh" -#: src/Module/Admin/Summary.php:182 +#: src/Module/Admin/Summary.php:180 msgid "Active addons" msgstr "Tuilleadain ghnìomhach" @@ -6149,8 +6155,8 @@ msgstr "" msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:134 -#: src/Module/Moderation/Users/Index.php:144 +#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:137 +#: src/Module/Moderation/Users/Index.php:147 msgid "Users" msgstr "Cleachdaichean" @@ -6186,7 +6192,7 @@ msgstr "Còmhraidhean air an tòiseachadh" msgid "Only You Can See This" msgstr "Chan fhaic ach thu fhèin seo" -#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:67 +#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:65 msgid "Scheduled Posts" msgstr "Postaichean air an sgeideal" @@ -6240,7 +6246,7 @@ msgstr "Dearbhadh dà-cheumnach" msgid "Display" msgstr "Sealladh" -#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:195 +#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:189 msgid "Social Networks" msgstr "Lìonraidhean sòisealta" @@ -6256,11 +6262,15 @@ msgstr "Aplacaidean ceangailte" msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:84 +#: src/Module/BaseSettings.php:155 src/Module/Settings/ContactImport.php:109 +msgid "Import Contacts" +msgstr "" + +#: src/Module/BaseSettings.php:162 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Às-phortaich an dàta pearsanta" -#: src/Module/BaseSettings.php:162 +#: src/Module/BaseSettings.php:169 msgid "Remove account" msgstr "Thoir air falbh an cunntas" @@ -6389,8 +6399,8 @@ msgstr "liosta" msgid "Could not create circle." msgstr "Cha b’ urrainn dhuinn an cearcall a chruthachadh." -#: src/Module/Circle.php:54 src/Module/Circle.php:202 -#: src/Module/Circle.php:226 +#: src/Module/Circle.php:54 src/Module/Circle.php:203 +#: src/Module/Circle.php:227 msgid "Circle not found." msgstr "Cha deach an cearcall a lorg." @@ -6398,15 +6408,15 @@ msgstr "Cha deach an cearcall a lorg." msgid "Circle name was not changed." msgstr "Cha deach ainm a’ chearcaill atharrachadh." -#: src/Module/Circle.php:78 +#: src/Module/Circle.php:80 msgid "Unknown circle." msgstr "Cearcall nach aithne dhuinn." -#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Circle.php:86 src/Module/Circle.php:95 #: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 -#: 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/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/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 @@ -6415,75 +6425,75 @@ msgstr "Cearcall nach aithne dhuinn." msgid "Contact not found." msgstr "Cha deach an neach-aithne a lorg." -#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 +#: src/Module/Circle.php:90 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Neach-aithne mì-dhligheach." -#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 +#: src/Module/Circle.php:99 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "Chaidh an neach-aithne a sguabadh às." -#: src/Module/Circle.php:103 +#: src/Module/Circle.php:105 msgid "Unable to add the contact to the circle." msgstr "Cha deach leinn an neach-aithne a chur ris a’ chearcall." -#: src/Module/Circle.php:106 +#: src/Module/Circle.php:108 msgid "Contact successfully added to circle." msgstr "Chaidh an neach-aithne a chur ris a’ chearcall." -#: src/Module/Circle.php:110 +#: src/Module/Circle.php:112 msgid "Unable to remove the contact from the circle." msgstr "Cha deach leinn an neach-aithne a thoirt air falbh on chearcall." -#: src/Module/Circle.php:113 +#: src/Module/Circle.php:115 msgid "Contact successfully removed from circle." msgstr "Chaidh an neach-aithne a thoirt air falbh on chearcall." -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:119 msgid "Bad request." msgstr "Droch-iarrtas." -#: src/Module/Circle.php:158 +#: src/Module/Circle.php:160 msgid "Save Circle" msgstr "Sàbhail an cearcall" -#: src/Module/Circle.php:159 +#: src/Module/Circle.php:161 msgid "Filter" msgstr "Criathrag" -#: src/Module/Circle.php:165 +#: src/Module/Circle.php:167 msgid "Create a circle of contacts/friends." msgstr "Cruthaich cearcall luchd-aithne/charaidean." -#: src/Module/Circle.php:207 +#: src/Module/Circle.php:208 msgid "Unable to remove circle." msgstr "Cha deach leinn an cearcall a thoirt air falbh." -#: src/Module/Circle.php:258 +#: src/Module/Circle.php:259 msgid "Delete Circle" msgstr "Sguab às an cearcall" -#: src/Module/Circle.php:268 +#: src/Module/Circle.php:269 msgid "Edit Circle Name" msgstr "Deasaich ainm a’ chearcaill" -#: src/Module/Circle.php:278 +#: src/Module/Circle.php:279 msgid "Members" msgstr "Buill" -#: src/Module/Circle.php:281 +#: src/Module/Circle.php:282 msgid "Circle is empty" msgstr "Tha an cearcall falamh" -#: src/Module/Circle.php:297 +#: src/Module/Circle.php:298 msgid "Remove contact from circle" msgstr "Thoir air falbh an neach-aithne on chearcall" -#: src/Module/Circle.php:320 +#: src/Module/Circle.php:321 msgid "Click on a contact to add or remove." msgstr "Briog air neach-aithne gus a chur ris no a thoirt air falbh." -#: src/Module/Circle.php:337 +#: src/Module/Circle.php:338 msgid "Add contact to circle" msgstr "Cuir an neach-aithne ris a’ chearcall" @@ -6519,7 +6529,7 @@ msgid "Only show blocked contacts" msgstr "Na seall ach an luchd-aithne bacte" #: src/Module/Contact.php:349 src/Module/Contact.php:421 -#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:386 msgid "Ignored" msgstr "’Ga leigeil seachad" @@ -6570,8 +6580,8 @@ msgstr "Ùraich" #: src/Module/Contact.php:449 src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:105 -#: src/Module/Moderation/Users/Blocked.php:124 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Blocked.php:127 +#: src/Module/Moderation/Users/Index.php:143 msgid "Unblock" msgstr "Dì-bhac" @@ -6647,12 +6657,12 @@ msgstr "Air ais gu deasaiche an neach-aithne" #: 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:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:56 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Ainm" @@ -7227,11 +7237,11 @@ msgstr "" msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:190 +#: src/Module/Conversation/Timeline.php:193 msgid "Include" msgstr "Gabh a-staigh" -#: src/Module/Conversation/Timeline.php:191 +#: src/Module/Conversation/Timeline.php:194 msgid "Hide" msgstr "Falaich" @@ -7502,19 +7512,19 @@ msgstr "Diagnosachd Webfinger" msgid "Lookup address:" msgstr "Rannsaich an seòladh:" -#: src/Module/Directory.php:61 +#: src/Module/Directory.php:60 msgid "No entries (some entries may be hidden)." msgstr "Gun innteart (’s dòcha gu bheil cuid a dh’innteartan falaichte)." -#: src/Module/Directory.php:77 +#: src/Module/Directory.php:76 msgid "Find on this site" msgstr "Lorg air an làrach seo" -#: src/Module/Directory.php:79 +#: src/Module/Directory.php:78 msgid "Results for:" msgstr "Toraidhean airson:" -#: src/Module/Directory.php:81 +#: src/Module/Directory.php:80 msgid "Site Directory" msgstr "Eòlaire na làraich" @@ -7767,29 +7777,29 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Tadhail air duilleag a’ chlàraidh aig an nòd Friendica ùr agad agus clàraich mar cleachdaiche ùr. Thoir an aire gun cleachd thu an aon seòladh puist-d ’s a chuir thu a-steach mar phost-d an rianaire. Bheir seo inntrigeadh do phanail na rianachd dhut." -#: src/Module/Invite.php:43 +#: src/Module/Invite.php:42 msgid "Total invitation limit exceeded." msgstr "Chaidh thu thairis air crìoch nan cuiridhean iomlan." -#: src/Module/Invite.php:68 +#: src/Module/Invite.php:67 #, php-format msgid "%s : Not a valid email address." msgstr "%s : Chan e seòladh puist-d dligheach a tha seo." -#: src/Module/Invite.php:94 +#: src/Module/Invite.php:93 msgid "Please join us on Friendica" msgstr "Thig cuide rinn air Friendica" -#: src/Module/Invite.php:103 +#: src/Module/Invite.php:102 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Chaidh thu thairis air crìoch nan cuiridhean. Cuir fios gu rianaire na làraich agad." -#: src/Module/Invite.php:107 +#: src/Module/Invite.php:106 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Dh’fhàillig libhrigeadh na teachdaireachd." -#: src/Module/Invite.php:111 +#: src/Module/Invite.php:110 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." @@ -7798,11 +7808,11 @@ msgstr[1] "Chaidh %d theachdaireachd a chur." msgstr[2] "Chaidh %d teachdaireachdan a chur." msgstr[3] "Chaidh %d teachdaireachd a chur." -#: src/Module/Invite.php:129 +#: src/Module/Invite.php:127 msgid "You have no more invitations available" msgstr "Chan eil barrachd cuiridhean ri fhaighinn dhut" -#: src/Module/Invite.php:136 +#: src/Module/Invite.php:134 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7810,14 +7820,14 @@ msgid "" " other social networks." msgstr "Tadhail air %s airson liosta de làraichean poblach far an urrainn dhut ballrachd fhaighinn. ’S urrainn dhan a h-uile ball Friendica air làraichean eile ceangal ri chèile agus ri buill iomadh lìonra sòisealta eile." -#: src/Module/Invite.php:138 +#: src/Module/Invite.php:136 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Airson gabhail ris a’ chuireadh seo, tadhail air %s is clàraich air no air làrach-lìn Friendica poblach sam bith eile." -#: src/Module/Invite.php:139 +#: src/Module/Invite.php:137 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7826,48 +7836,48 @@ msgid "" "sites you can join." msgstr "Tha na làraichean Friendica uile co-naisgte ri chèile ach an cruthaich iad lìon sòisealta mòr aig a bheil prìobhaideachd phisichte ’s a tha fo smachd nam ball aige fhèin. ’S urrainn dhaibh ceangal a dhèanamh ri iomadh lìonra sòisealta tradaiseanta. Faic %s airson liosta de làraichean Friendica eile far an urrainn dhut ballrachd fhaighinn." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:141 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Tha sinn duilich. Cha deach an siostam rèiteachadh aig an àm seo airson ceangal ri làraichean poblach eile no cuiridhean ballrachd a chur." -#: src/Module/Invite.php:146 +#: src/Module/Invite.php:144 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 "Tha na làraichean Friendica uile co-naisgte ri chèile ach an cruthaich iad lìon sòisealta mòr aig a bheil prìobhaideachd phisichte ’s a tha fo smachd nam ball aige fhèin. ’S urrainn dhaibh ceangal a dhèanamh ri iomadh lìonra sòisealta tradaiseanta." -#: src/Module/Invite.php:145 +#: src/Module/Invite.php:143 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "Airson gabhail ris a’ chuireadh seo, tadhail air %s is clàraich ann." -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:151 msgid "Send invitations" msgstr "Cuir cuiridhean" -#: src/Module/Invite.php:154 +#: src/Module/Invite.php:152 msgid "Enter email addresses, one per line:" msgstr "Cuir seòlaidhean puist-d a-steach, gach fear air loidhne fa leth:" -#: src/Module/Invite.php:158 +#: src/Module/Invite.php:156 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Tha fàilte chridheil romhad airson tighinn cruinn còmhla rium-sa is dlùth-charaidean eile air Friendica – agus airson ar cuideachadh ach an cruthaich sinn lìon sòisealta nas fheàrr." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "You will need to supply this invitation code: $invite_code" msgstr "Bidh agad ris an còd cuiridh seo a sholar: $invite_code" -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Nuair a bhios tu air do chlàradh, dèan ceangal rium le duilleag na pròifil agam air:" -#: src/Module/Invite.php:162 +#: src/Module/Invite.php:160 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" @@ -7969,12 +7979,12 @@ msgid "File upload failed." msgstr "Dh’fhàillig luchdadh suas an fhaidhle." #: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 -#: src/Module/Profile/Photos.php:204 +#: src/Module/Profile/Photos.php:212 #: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Cha b’ urrainn dhuinn an dealbh a phròiseasadh." -#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:224 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:232 #: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Dh’fhàillig le luchdadh suas an deilbh." @@ -8007,23 +8017,23 @@ msgstr "Air a sguabadh às" msgid "List of pending user deletions" msgstr "Liosta nan cleachdaichean rin sguabadh às" -#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:469 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:431 msgid "Normal Account Page" msgstr "Duilleag àbhaisteach a’ chunntais" -#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:476 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:438 msgid "Soapbox Page" msgstr "Duilleag cùbaid deasbaid" -#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:483 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:445 msgid "Public Group" msgstr "Buidheann poblach" -#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:490 +#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:452 msgid "Public Group - Restricted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:497 +#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:459 msgid "Automatic Friend Page" msgstr "Duilleag caraide fhèin-obrachail" @@ -8032,22 +8042,22 @@ msgid "Private Group" msgstr "Buidheann prìobhaideach" #: src/Module/Moderation/BaseUsers.php:118 -#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:440 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:402 msgid "Personal Page" msgstr "Duilleag phearsanta" #: src/Module/Moderation/BaseUsers.php:119 -#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:447 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:409 msgid "Organisation Page" msgstr "Duilleag buidhinn" #: src/Module/Moderation/BaseUsers.php:120 -#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:454 +#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:416 msgid "News Page" msgstr "Duilleag naidheachdan" #: src/Module/Moderation/BaseUsers.php:121 -#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:461 +#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:423 msgid "Community Group" msgstr "Buidheann coimhearsnachd" @@ -8079,9 +8089,9 @@ msgid "Block Remote Contact" msgstr "Bac an neach-aithne cèin" #: src/Module/Moderation/Blocklist/Contact.php:102 -#: 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/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:138 #: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "tagh a h-uile" @@ -8434,9 +8444,9 @@ msgid "Tag" msgstr "Taga" #: src/Module/Moderation/Item/Source.php:77 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 -#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 +#: src/Module/Moderation/Users/Index.php:129 msgid "Type" msgstr "Seòrsa" @@ -8703,7 +8713,7 @@ msgstr[3] "" msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:418 +#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:380 msgid "Channel Relay" msgstr "" @@ -8726,11 +8736,11 @@ msgstr[2] "Chaidh %s cleachdaichean a bhacadh" msgstr[3] "Chaidh %s cleachdaiche a bhacadh" #: src/Module/Moderation/Users/Active.php:37 -#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Active.php:74 #: src/Module/Moderation/Users/Blocked.php:37 -#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Blocked.php:74 #: src/Module/Moderation/Users/Index.php:44 -#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Index.php:81 msgid "You can't remove yourself" msgstr "Chan urrainn dhut thu fhèin a thoirt air falbh" @@ -8745,81 +8755,81 @@ msgstr[1] "Chaidh %s chleachdaiche a sguabadh às" msgstr[2] "Chaidh %s cleachdaichean a sguabadh às" msgstr[3] "Chaidh %s cleachdaiche a sguabadh às" -#: src/Module/Moderation/Users/Active.php:69 -#: src/Module/Moderation/Users/Blocked.php:69 -#: src/Module/Moderation/Users/Index.php:76 +#: src/Module/Moderation/Users/Active.php:72 +#: src/Module/Moderation/Users/Blocked.php:72 +#: src/Module/Moderation/Users/Index.php:79 #, php-format msgid "User \"%s\" deleted" msgstr "Chaidh an cleachdaiche “%s” a sguabadh às" -#: src/Module/Moderation/Users/Active.php:79 -#: src/Module/Moderation/Users/Index.php:86 +#: src/Module/Moderation/Users/Active.php:82 +#: src/Module/Moderation/Users/Index.php:89 #, php-format msgid "User \"%s\" blocked" msgstr "Chaidh an chleachdaiche “%s” a bhacadh" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Register date" msgstr "Ceann-là a’ chlàraidh" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last login" msgstr "An clàradh a-steach mu dheireadh" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last public item" msgstr "An nì poblach mu dheireadh" -#: src/Module/Moderation/Users/Active.php:120 +#: src/Module/Moderation/Users/Active.php:123 msgid "Active Accounts" msgstr "Cunntasan gnìomhach" -#: src/Module/Moderation/Users/Active.php:124 -#: src/Module/Moderation/Users/Blocked.php:123 -#: src/Module/Moderation/Users/Index.php:139 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "User blocked" msgstr "Chaidh an cleachdaiche a bhacadh" -#: src/Module/Moderation/Users/Active.php:125 -#: src/Module/Moderation/Users/Blocked.php:125 -#: src/Module/Moderation/Users/Index.php:141 +#: src/Module/Moderation/Users/Active.php:128 +#: src/Module/Moderation/Users/Blocked.php:128 +#: src/Module/Moderation/Users/Index.php:144 msgid "Site admin" msgstr "Rianaire na làraich" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:142 +#: src/Module/Moderation/Users/Active.php:129 +#: src/Module/Moderation/Users/Blocked.php:129 +#: src/Module/Moderation/Users/Index.php:145 msgid "Account expired" msgstr "Dh’fhalbh an ùine air a’ chunntas" -#: src/Module/Moderation/Users/Active.php:127 -#: src/Module/Moderation/Users/Index.php:145 +#: src/Module/Moderation/Users/Active.php:130 +#: src/Module/Moderation/Users/Index.php:148 msgid "Create a new user" msgstr "Cruthaich cleachdaiche ùr" -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:132 -#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:154 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Thèid na cleachdaichean a thagh thu a sguabadh às!\\n\\nThèid a h-uile càil a phostaich na cleachdaichean seo air an làrach seo a sguabadh às gu buan!\\n\\nA bheil thu cinnteach?" -#: src/Module/Moderation/Users/Active.php:134 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:155 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" @@ -8835,13 +8845,13 @@ msgstr[1] "Chaidh %s chleachdaiche a dhì-bhacadh" msgstr[2] "Chaidh %s cleachdaichean a dhì-bhacadh" msgstr[3] "Chaidh %s cleachdaiche a dhì-bhacadh" -#: src/Module/Moderation/Users/Blocked.php:78 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Blocked.php:81 +#: src/Module/Moderation/Users/Index.php:95 #, php-format msgid "User \"%s\" unblocked" msgstr "Chaidh an cleachdaiche “%s” a dhì-bhacadh" -#: src/Module/Moderation/Users/Blocked.php:120 +#: src/Module/Moderation/Users/Blocked.php:123 msgid "Blocked Users" msgstr "Cleachdaichean bacte" @@ -8874,11 +8884,11 @@ msgid "Users awaiting permanent deletion" msgstr "Cleachdaichean a’ feitheamh air sguabadh às buan" #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:149 msgid "Permanent deletion" msgstr "Sguabadh às buan" -#: src/Module/Moderation/Users/Index.php:136 +#: src/Module/Moderation/Users/Index.php:139 msgid "User waiting for permanent deletion" msgstr "Cleachdaiche a’ feitheamh sguabadh às buan" @@ -9047,7 +9057,7 @@ msgstr "Cuir lethbhreac dhen chòd dearbhaidh seo san aplacaid agad is dùin an msgid "Invalid data or unknown client" msgstr "Dàta mì-dhligheach no cliant nach aithne dhuinn" -#: src/Module/OAuth/Token.php:91 +#: src/Module/OAuth/Token.php:73 msgid "Unsupported or missing grant type" msgstr "Seòrsa ceadachaidh gun taic ris no a dhìth" @@ -9099,7 +9109,7 @@ msgstr "chaidh a leigeil seachad" msgid "Keep this window open until done." msgstr "Cùm an uinneag seo fosgailte gus am bi e deiseil." -#: src/Module/OpenSearch.php:57 +#: src/Module/OpenSearch.php:55 #, php-format msgid "Search in Friendica %s" msgstr "" @@ -9113,12 +9123,12 @@ msgstr "Chan eil an dealbh ri fhaighinn." msgid "The Photo with id %s is not available." msgstr "Chan eil an dealbh air a bheil an id %s ri fhaighinn." -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:178 #, php-format msgid "Invalid external resource with url %s." msgstr "Goireas mì-dhligheach air an taobh a-muigh leis an url %s." -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:180 #, php-format msgid "Invalid photo with id %s." msgstr "Dealbh mì-dhligheach air a bheil an id %s." @@ -9151,15 +9161,15 @@ msgstr "Cuir a-steach ceangal fuaime" msgid "audio link" msgstr "ceangal fuaime" -#: src/Module/Post/Tag/Remove.php:92 +#: src/Module/Post/Tag/Remove.php:93 msgid "Remove Item Tag" msgstr "Thoir air falbh taga an nì" -#: src/Module/Post/Tag/Remove.php:93 +#: src/Module/Post/Tag/Remove.php:94 msgid "Select a tag to remove: " msgstr "Tagh taga gus a thoirt air falbh: " -#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Post/Tag/Remove.php:95 #: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Thoir air falbh" @@ -9238,32 +9248,32 @@ msgstr "Na beachdan aig %s" msgid "%s's timeline" msgstr "An loidhne-ama aig %s" -#: src/Module/Profile/Photos.php:153 src/Module/Profile/Photos.php:156 -#: src/Module/Profile/Photos.php:181 +#: src/Module/Profile/Photos.php:157 src/Module/Profile/Photos.php:160 +#: src/Module/Profile/Photos.php:189 #: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "Tha an dealbh nas motha na tha ceadaichte dhe %s" -#: src/Module/Profile/Photos.php:159 +#: src/Module/Profile/Photos.php:163 msgid "Image upload didn't complete, please try again" msgstr "Cha deach luchdadh suas an deilbh a choileanadh, feuch ris a-rithist" -#: src/Module/Profile/Photos.php:162 +#: src/Module/Profile/Photos.php:166 msgid "Image file is missing" msgstr "Tha faidhle an deilbh a dhìth" -#: src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:171 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "Cha ghabh am frithealaiche ri luchdadh suas deilbh ùir aig an àm seo, cuir fios gun rianaire agad" -#: src/Module/Profile/Photos.php:189 +#: src/Module/Profile/Photos.php:197 msgid "Image file is empty." msgstr "Tha faidhle an deilbh falamh." -#: src/Module/Profile/Photos.php:341 +#: src/Module/Profile/Photos.php:349 msgid "View Album" msgstr "Seall an t-albam" @@ -9381,15 +9391,15 @@ msgid "" "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:69 +#: src/Module/Profile/Schedule.php:67 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:70 +#: src/Module/Profile/Schedule.php:68 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:71 +#: src/Module/Profile/Schedule.php:69 msgid "Remove post" msgstr "" @@ -9454,7 +9464,7 @@ msgid "Please repeat your e-mail address:" msgstr "" #: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:551 +#: src/Module/Settings/Account.php:513 msgid "New Password:" msgstr "" @@ -9463,7 +9473,7 @@ 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:552 +#: src/Module/Settings/Account.php:514 msgid "Confirm:" msgstr "" @@ -9647,20 +9657,20 @@ msgstr "" msgid "OpenID protocol error. No ID returned" msgstr "" -#: src/Module/Security/OpenID.php:76 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "" -#: src/Module/Security/OpenID.php:78 +#: src/Module/Security/OpenID.php:80 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:51 +#: src/Module/Settings/Account.php:49 msgid "Passwords do not match." msgstr "" @@ -9669,7 +9679,7 @@ msgid "Password does not need changing." msgstr "" #: src/Module/Security/PasswordTooLong.php:63 -#: src/Module/Settings/Account.php:65 +#: src/Module/Settings/Account.php:63 msgid "Password unchanged." msgstr "" @@ -9689,24 +9699,24 @@ msgid "Update Password" msgstr "" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Current Password:" msgstr "" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Your current password to confirm the changes" msgstr "" #: src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:537 +#: src/Module/Settings/Account.php:499 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:538 +#: src/Module/Settings/Account.php:500 msgid "Password length is limited to 72 characters." msgstr "" @@ -9810,129 +9820,121 @@ msgstr "" msgid "Verify code and complete login" msgstr "" -#: src/Module/Settings/Account.php:80 +#: src/Module/Settings/Account.php:78 msgid "Please use a shorter name." msgstr "" -#: src/Module/Settings/Account.php:83 +#: src/Module/Settings/Account.php:81 msgid "Name too short." msgstr "" -#: src/Module/Settings/Account.php:92 +#: src/Module/Settings/Account.php:90 msgid "Wrong Password." msgstr "" -#: src/Module/Settings/Account.php:97 +#: src/Module/Settings/Account.php:95 msgid "Invalid email." msgstr "" -#: src/Module/Settings/Account.php:101 +#: src/Module/Settings/Account.php:99 msgid "Cannot change to that email." msgstr "" -#: 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 +#: 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 msgid "Settings were not updated." msgstr "" -#: src/Module/Settings/Account.php:331 -msgid "Contact CSV file upload error" -msgstr "" - -#: src/Module/Settings/Account.php:350 -msgid "Importing Contacts done" -msgstr "" - -#: src/Module/Settings/Account.php:363 +#: src/Module/Settings/Account.php:325 msgid "Relocate message has been send to your contacts" msgstr "Chaidh teachdaireachd mun imrich a chur dhan luchd-aithne agad" -#: src/Module/Settings/Account.php:380 +#: src/Module/Settings/Account.php:342 msgid "Unable to find your profile. Please contact your admin." msgstr "" -#: src/Module/Settings/Account.php:420 +#: src/Module/Settings/Account.php:382 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:430 +#: src/Module/Settings/Account.php:392 msgid "Personal Page Subtypes" msgstr "" -#: src/Module/Settings/Account.php:431 +#: src/Module/Settings/Account.php:393 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:442 +#: src/Module/Settings/Account.php:404 msgid "Account for a personal profile." msgstr "" -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:411 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:456 +#: src/Module/Settings/Account.php:418 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:463 +#: src/Module/Settings/Account.php:425 msgid "Account for community discussions." msgstr "" -#: src/Module/Settings/Account.php:471 +#: src/Module/Settings/Account.php:433 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Cunntas do phròifil phearsanta àbhaisteach a dh’iarras aontachadh a làimh air “Caraidean” is “Luchd-leantainn”." -#: src/Module/Settings/Account.php:478 +#: src/Module/Settings/Account.php:440 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:485 +#: src/Module/Settings/Account.php:447 msgid "Automatically approves all contact requests." msgstr "" -#: src/Module/Settings/Account.php:492 +#: src/Module/Settings/Account.php:454 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:499 +#: src/Module/Settings/Account.php:461 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "" -#: src/Module/Settings/Account.php:504 +#: src/Module/Settings/Account.php:466 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:506 +#: src/Module/Settings/Account.php:468 msgid "Requires manual approval of contact requests." msgstr "Feumaidh tu aontachadh ri iarrtasan luchd-aithne a làimh." -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "OpenID:" msgstr "" -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "(Optional) Allow this OpenID to login to this account." msgstr "" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9940,94 +9942,94 @@ msgid "" " system settings." msgstr "" -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:491 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Thèid a’ phròifil agad fhoillseachadh sna h-eòlairean cho-naisgte aig Friendica cuideachd (m.e. %s)." -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:504 msgid "Account Settings" msgstr "" -#: src/Module/Settings/Account.php:543 +#: src/Module/Settings/Account.php:505 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: src/Module/Settings/Account.php:550 +#: src/Module/Settings/Account.php:512 msgid "Password Settings" msgstr "" -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Leave password fields blank unless changing" msgstr "" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Password:" msgstr "" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:557 +#: src/Module/Settings/Account.php:519 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:559 +#: src/Module/Settings/Account.php:521 msgid "Basic Settings" msgstr "" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:522 #: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:523 msgid "Email Address:" msgstr "" -#: src/Module/Settings/Account.php:562 +#: src/Module/Settings/Account.php:524 msgid "Your Timezone:" msgstr "" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "Your Language:" msgstr "" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "" -#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Account.php:526 msgid "Default Post Location:" msgstr "" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:527 msgid "Use Browser Location:" msgstr "" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:529 msgid "Security and Privacy Settings" msgstr "" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "Maximum Friend Requests/Day:" msgstr "" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "(to prevent spam abuse)" msgstr "" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 msgid "Allow your profile to be searchable globally?" msgstr "An gabh a’ phròifil agad a lorg gu co-naisgte?" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 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 " @@ -10035,43 +10037,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 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:573 +#: src/Module/Settings/Account.php:535 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:535 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:574 +#: src/Module/Settings/Account.php:536 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:536 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:575 +#: src/Module/Settings/Account.php:537 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:537 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 " @@ -10079,227 +10081,213 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "Allow friends to post to your profile page?" msgstr "" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "’S urrainn dhan luchd-aithne agad postaichean a sgrìobhadh air balla do phròifile. Thèid na postaichean sin a sgaoileadh dhan luchd-aithne agad" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Allow friends to tag your posts?" msgstr "" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Your contacts can add additional tags to your posts." msgstr "" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:540 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:541 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:542 msgid "Default Post Permissions" msgstr "" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:546 msgid "Expiration settings" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "Automatically expire posts after this many days:" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "Expire starred posts" msgstr "Falbhaidh an ùine air postaichean le rionnag riutha" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Nuair a bhios rionnag ri post, chan fhalbh an ùine orra. Sgrìobhaidh an roghainn seo thairis air a’ ghiùlan sin." -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 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:592 +#: src/Module/Settings/Account.php:554 msgid "Notification Settings" msgstr "" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:555 msgid "Send a notification email when:" msgstr "" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:556 msgid "You receive an introduction" msgstr "Fhuair thu cur an aithne" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:557 msgid "Your introductions are confirmed" msgstr "Chaidh na cuir an aithne agad a dhearbhadh" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:558 msgid "Someone writes on your profile wall" msgstr "" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:559 msgid "Someone writes a followup comment" msgstr "" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:560 msgid "You receive a private message" msgstr "" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:561 msgid "You receive a friend suggestion" msgstr "" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:562 msgid "You are tagged in a post" msgstr "" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:564 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:565 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:566 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:567 msgid "Someone liked your content" msgstr "’S toigh le cuideigin an t-susbaint agad" -#: src/Module/Settings/Account.php:605 src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:567 src/Module/Settings/Account.php:568 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:568 msgid "Someone shared your content" msgstr "Cho-roinn cuideigin an t-susbaint agad" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:569 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:570 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:571 msgid "Someone commented in a thread where you interacted" msgstr "Chuir cuideigin beachd ri snàithlean san do rinn thu co-luadar" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Activate desktop notifications" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Show desktop popup on new notifications" msgstr "" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:577 msgid "Text-only notification emails" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:579 msgid "Send text only notification emails, without the html part" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:583 msgid "Show detailled notifications" msgstr "" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:585 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:589 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:591 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:632 +#: src/Module/Settings/Account.php:594 msgid "Advanced Account/Page Type Settings" msgstr "" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:595 msgid "Change the behaviour of this account for special situations" msgstr "" -#: src/Module/Settings/Account.php:636 -msgid "Import Contacts" -msgstr "" - -#: src/Module/Settings/Account.php:637 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "" - -#: src/Module/Settings/Account.php:638 -msgid "Upload File" -msgstr "" - -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:598 msgid "Relocate" msgstr "Imrich" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:599 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:643 +#: src/Module/Settings/Account.php:600 msgid "Resend relocate message to contacts" msgstr "Cuir teachdaireachd mun imrich dhan neach-aithne" @@ -10464,214 +10452,232 @@ msgstr "" msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:108 +#: src/Module/Settings/Connectors.php:107 msgid "Failed to connect with email account using the settings provided." msgstr "Cha deach leinn ceangal a dhèanamh leis a’ chunntas puist-d a’ cleachdadh nan roghainnean a chaidh a thoirt seachad." -#: src/Module/Settings/Connectors.php:155 -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:150 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora* (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:149 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:150 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:161 msgid "Email access is disabled on this site." msgstr "Tha an t-inntrigeadh le post-d à comas dhan làrach seo." -#: src/Module/Settings/Connectors.php:182 -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:176 +#: src/Module/Settings/Connectors.php:226 msgid "None" msgstr "Chan eil gin" -#: src/Module/Settings/Connectors.php:186 +#: src/Module/Settings/Connectors.php:180 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "" -#: src/Module/Settings/Connectors.php:187 +#: src/Module/Settings/Connectors.php:181 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "" -#: src/Module/Settings/Connectors.php:188 +#: src/Module/Settings/Connectors.php:182 msgid "Embed the title in the body" msgstr "" -#: src/Module/Settings/Connectors.php:199 +#: src/Module/Settings/Connectors.php:193 msgid "General Social Media Settings" msgstr "Roghainnean coitcheann nam meadhanan sòisealta" -#: src/Module/Settings/Connectors.php:202 +#: src/Module/Settings/Connectors.php:196 msgid "Followed content scope" msgstr "Farsaingeachd na susbainte air a leanas tu" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:198 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "Nochdaidh na còmhraidhean sa ghabh an fheadhainn air a leanas tu pàirt ach nach do thòisich iad fhèin air an loidhne-ama agad a ghnàth. ’S urrainn dhut seo a chur dheth no a leudachadh ach an nochd na còmhraidhean far an toigh leis an fheadhainn air a leanas tu post." -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:200 msgid "Only conversations my follows started" msgstr "Na còmhraidhean a thòisich cuideigin air a leanas mi a-mhàin" -#: src/Module/Settings/Connectors.php:207 +#: src/Module/Settings/Connectors.php:201 msgid "Conversations my follows started or commented on (default)" msgstr "Na còmhraidhean a thòisich cuideigin air a leanas mi no a chuir iad beachd riutha (bun-roghainn)" -#: src/Module/Settings/Connectors.php:208 +#: src/Module/Settings/Connectors.php:202 msgid "Any conversation my follows interacted with, including likes" msgstr "Còmhradh sam bith leis an do rinn cuideigin air a leanas mi co-luadar, a’ gabhail a-staigh nas toigh leotha" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "Enable intelligent shortening" msgstr "Cuir an giorrachadh tapaidh an comas" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "Mar as àbhaist, feuchaidh an siostam gun dèid an ceangal as fheàrr a lorg gus a chur ri postaichean giorraichte. Ma tha seo à comas, tomhaidh gach post giorraichte ris a’ phost tùsail air friendica an-còmhnaidh." -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "Enable simple text shortening" msgstr "Cuir an comas giorrachadh teacsa sìmplidh" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "Mar as àbhaist, giorraichidh an siostam na postaichean aig an ath earrann. Ma tha an roghainn seo an comas, giorraichidh an siostam an teacsa aig crìoch nan caractaran ceadaichte." -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "Attach the link title" msgstr "Cuir tiotal a’ cheangail ris" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Nuair a bhios seo an gnìomh, thèid tiotal a’ cheangail a chur ris mar tiotal air postaichean gu diaspora*. Tha seo as fheumaile dhan luchd-aithne “remote-self” a cho-roinneas susbaint inbhir." -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "Nuair a bhios seo an gnìomh, bidh an t-aon ghiùlan aig ceanglaichean a thèid a chur ri bonn puist ’s a tha aig ceanglaichean a thèid a chur ris san eadar-aghaidh-lìn." -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "Article Mode" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "" -#: src/Module/Settings/Connectors.php:218 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "An cunntas ActivityPub/GNU Social dìleabach agad" - -#: src/Module/Settings/Connectors.php:218 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "Ma chuireas tu ainm seann-chunntais ris o shiostam stèidhichte air ActivityPub no ainm do chunntais GNU Social/Statusnet an-seo (san fhòrmat cleachdaiche@àrainn.tld), thèid an luchd-aithne agad a chur ris gu fèin-obrachail. Thèid an raon fhalamhachadh nuair a bhios sin deiseil." - -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:215 msgid "Email/Mailbox Setup" msgstr "Suidheachadh a’ phuist-d/a’ bhogsa-phuist" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:216 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Ma tha thu airson an t-seirbheis seo a chleachdadh airson conaltradh le luchd-aithne air a’ post-d (gu roghainneil), sònraich an dòigh air a nì thu ceangal leis a’ bhogsa-phuist agad." -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:217 msgid "Last successful email check:" msgstr "An turas mu dheireadh a chaidh leinn sùil a thoirt air a’ phost-d:" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:219 msgid "IMAP server name:" msgstr "Ainm frithealaiche IMAP:" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:220 msgid "IMAP port:" msgstr "Port IMAP:" -#: src/Module/Settings/Connectors.php:228 +#: src/Module/Settings/Connectors.php:221 msgid "Security:" msgstr "Tèarainteachd:" -#: src/Module/Settings/Connectors.php:229 +#: src/Module/Settings/Connectors.php:222 msgid "Email login name:" msgstr "Ainm clàradh a-steach a’ phuist-d:" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:223 msgid "Email password:" msgstr "Facal-faire a’ phuist-d:" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:224 msgid "Reply-to address:" msgstr "An seòladh Freagairt-gu:" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:225 msgid "Send public posts to all email contacts:" msgstr "Cuir postaichean poblach dhan a h-uile neach-aithne puist-d:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Action after import:" msgstr "Gnìomh às dèid an ion-phortaidh:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Move to folder" msgstr "Gluais gu pasgan" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:227 msgid "Move to folder:" msgstr "Gluais gu pasgan:" +#: src/Module/Settings/ContactImport.php:63 +msgid "Contact CSV file upload error" +msgstr "" + +#: src/Module/Settings/ContactImport.php:82 +msgid "Importing Contacts done" +msgstr "" + +#: src/Module/Settings/ContactImport.php:112 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "" + +#: src/Module/Settings/ContactImport.php:113 +msgid "Upload File" +msgstr "" + +#: src/Module/Settings/ContactImport.php:115 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "An cunntas ActivityPub/GNU Social dìleabach agad" + +#: src/Module/Settings/ContactImport.php:115 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "Ma chuireas tu ainm seann-chunntais ris o shiostam stèidhichte air ActivityPub no ainm do chunntais GNU Social/Statusnet an-seo (san fhòrmat cleachdaiche@àrainn.tld), thèid an luchd-aithne agad a chur ris gu fèin-obrachail. Thèid an raon fhalamhachadh nuair a bhios sin deiseil." + #: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "Chaidh neach-ionaid a dhèanamh dheth." @@ -11122,42 +11128,42 @@ msgstr "" msgid "(Used for searching profiles, never shown to others)" msgstr "" -#: 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/Crop.php:90 +#: src/Module/Settings/Profile/Photo/Crop.php:108 +#: src/Module/Settings/Profile/Photo/Crop.php:126 #: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:136 +#: src/Module/Settings/Profile/Photo/Crop.php:133 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:141 +#: src/Module/Settings/Profile/Photo/Crop.php:138 msgid "Unable to process image" msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:157 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:182 +#: src/Module/Settings/Profile/Photo/Crop.php:179 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:208 -#: src/Module/Settings/Profile/Photo/Crop.php:212 +#: src/Module/Settings/Profile/Photo/Crop.php:205 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Crop Image" msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:209 +#: src/Module/Settings/Profile/Photo/Crop.php:206 msgid "Please adjust the image cropping for optimum viewing." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:211 +#: src/Module/Settings/Profile/Photo/Crop.php:208 msgid "Use Image As Is" msgstr "" @@ -11228,17 +11234,17 @@ msgstr "’S e %d ID a’ chleachdaiche" msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:116 +#: src/Module/Settings/RemoveMe.php:114 msgid "Remove My Account" msgstr "Thoir air falbh an cunntas agam" -#: src/Module/Settings/RemoveMe.php:117 +#: src/Module/Settings/RemoveMe.php:115 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Bheir seo air falbh an cunntas agad gu tur. Nuair a bhios sin air a thachairt, cha ghabh aiseag." -#: src/Module/Settings/RemoveMe.php:122 +#: src/Module/Settings/RemoveMe.php:120 msgid "Please enter your password for verification:" msgstr "Cuir a-steach am facal-faire agad airson a dhearbhadh:" @@ -11633,11 +11639,11 @@ msgstr "" msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:64 +#: src/Module/Special/HTTPException.php:65 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:69 +#: src/Module/Special/HTTPException.php:70 #, php-format msgid "Exception thrown in %s:%d" msgstr "" @@ -12422,221 +12428,221 @@ msgstr "" msgid "%s posted an update." msgstr "" -#: src/Object/Post.php:124 +#: src/Object/Post.php:125 msgid "Private Message" msgstr "Teachdaireachd phrìobhaideach" -#: src/Object/Post.php:128 +#: src/Object/Post.php:129 msgid "Public Message" msgstr "Teachdaireachd phoblach" -#: src/Object/Post.php:132 +#: src/Object/Post.php:133 msgid "Unlisted Message" msgstr "Teachdaireachd fhalaichte o liostaichean" -#: src/Object/Post.php:168 +#: src/Object/Post.php:169 msgid "This entry was edited" msgstr "Chaidh an nì seo a dheasachadh" -#: src/Object/Post.php:196 +#: src/Object/Post.php:197 msgid "Connector Message" msgstr "Teachdaireachd ceangladair" -#: src/Object/Post.php:225 src/Object/Post.php:227 +#: src/Object/Post.php:226 src/Object/Post.php:228 msgid "Edit" msgstr "Deasaich" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Delete globally" msgstr "Sguab às sa cho-nasgadh" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Remove locally" msgstr "Thoir air falbh gu h-ionadail" -#: src/Object/Post.php:268 +#: src/Object/Post.php:269 #, php-format msgid "Block %s" msgstr "Bac %s" -#: src/Object/Post.php:273 +#: src/Object/Post.php:274 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:278 +#: src/Object/Post.php:279 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:282 +#: src/Object/Post.php:283 msgid "Report post" msgstr "" -#: src/Object/Post.php:293 +#: src/Object/Post.php:294 msgid "Save to folder" msgstr "Sàbhail gu pasgan" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will attend" msgstr "Bidh mi an làthair" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will not attend" msgstr "Cha bhi mi ann" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I might attend" msgstr "Dh’fhaoidte gum bi mi an làthair" -#: src/Object/Post.php:380 +#: src/Object/Post.php:381 msgid "Ignore thread" msgstr "Leig seachad an snàithlean" -#: src/Object/Post.php:381 +#: src/Object/Post.php:382 msgid "Unignore thread" msgstr "Na leig seachad an snàithlean tuilleadh" -#: src/Object/Post.php:382 +#: src/Object/Post.php:383 msgid "Toggle ignore status" msgstr "Toglaich staid na leigeil seachad" -#: src/Object/Post.php:392 +#: src/Object/Post.php:393 msgid "Add star" msgstr "Cuir rionnag ris" -#: src/Object/Post.php:393 +#: src/Object/Post.php:394 msgid "Remove star" msgstr "Thoir an rionnag air falbh" -#: src/Object/Post.php:394 +#: src/Object/Post.php:395 msgid "Toggle star status" msgstr "Toglaich staid na rionnaige" -#: src/Object/Post.php:405 +#: src/Object/Post.php:406 msgid "Pin" msgstr "Prìnich" -#: src/Object/Post.php:406 +#: src/Object/Post.php:407 msgid "Unpin" msgstr "Dì-phrìnich" -#: src/Object/Post.php:407 +#: src/Object/Post.php:408 msgid "Toggle pin status" msgstr "Toglaich staid a’ phrìneachaidh" -#: src/Object/Post.php:410 +#: src/Object/Post.php:411 msgid "Pinned" msgstr "Prìnichte" -#: src/Object/Post.php:415 +#: src/Object/Post.php:416 msgid "Add tag" msgstr "Cuir taga ris" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote share this" msgstr "Co-roinn seo le iomradh" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote Share" msgstr "Iomradh" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare this" msgstr "Co-roinn seo às ùr" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare" msgstr "Co-roinn" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Cancel your Reshare" msgstr "Sguir dhen cho-roinneadh agad" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Unshare" msgstr "Na co-roinn" -#: src/Object/Post.php:478 +#: src/Object/Post.php:479 #, php-format msgid "%s (Received %s)" msgstr "%s (air fhaighinn %s)" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Comment this item on your system" msgstr "Thoir beachd ris an nì seo san t-siostam agad" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Remote comment" msgstr "Beachd cèin" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via ..." msgstr "Co-roinn slighe…" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via external services" msgstr "Co-roinn slighe seirbheise cèine" -#: src/Object/Post.php:513 +#: src/Object/Post.php:514 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:517 +#: src/Object/Post.php:518 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:519 +#: src/Object/Post.php:520 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:543 +#: src/Object/Post.php:544 msgid "to" msgstr "gu" -#: src/Object/Post.php:544 +#: src/Object/Post.php:545 msgid "via" msgstr "slighe" -#: src/Object/Post.php:545 +#: src/Object/Post.php:546 msgid "Wall-to-Wall" msgstr "Balla gu balla" -#: src/Object/Post.php:546 +#: src/Object/Post.php:547 msgid "via Wall-To-Wall:" msgstr "slighe balla bu balla:" -#: src/Object/Post.php:599 +#: src/Object/Post.php:600 #, php-format msgid "Reply to %s" msgstr "Freagair gu %s" -#: src/Object/Post.php:602 +#: src/Object/Post.php:603 msgid "More" msgstr "Barrachd" -#: src/Object/Post.php:621 +#: src/Object/Post.php:622 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:622 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:623 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:624 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:625 +#: src/Object/Post.php:626 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:647 +#: src/Object/Post.php:648 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -12645,74 +12651,74 @@ msgstr[1] "%d bheachd" msgstr[2] "%d beachdan" msgstr[3] "%d beachd" -#: src/Object/Post.php:648 +#: src/Object/Post.php:649 msgid "Show more" msgstr "Seall barrachd dheth" -#: src/Object/Post.php:649 +#: src/Object/Post.php:650 msgid "Show fewer" msgstr "Seall nas lugha dheth" -#: src/Object/Post.php:686 +#: src/Object/Post.php:687 #, php-format msgid "Reshared by: %s" msgstr "’Ga cho-roinneadh le: %s " -#: src/Object/Post.php:691 +#: src/Object/Post.php:692 #, php-format msgid "Viewed by: %s" msgstr "Air a choimhead air le: %s" -#: src/Object/Post.php:696 +#: src/Object/Post.php:697 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:701 +#: src/Object/Post.php:702 #, php-format msgid "Liked by: %s" msgstr "’S toil le %s seo" -#: src/Object/Post.php:706 +#: src/Object/Post.php:707 #, php-format msgid "Disliked by: %s" msgstr "Cha toil le %s seo" -#: src/Object/Post.php:711 +#: src/Object/Post.php:712 #, php-format msgid "Attended by: %s" msgstr "An làthair: %s" -#: src/Object/Post.php:716 +#: src/Object/Post.php:717 #, php-format msgid "Maybe attended by: %s" msgstr "An làthair ’s dòcha: %s" -#: src/Object/Post.php:721 +#: src/Object/Post.php:722 #, php-format msgid "Not attended by: %s" msgstr "Gun a bhith an làthair: %s" -#: src/Object/Post.php:726 +#: src/Object/Post.php:727 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:731 +#: src/Object/Post.php:732 #, php-format msgid "Reacted with %s by: %s" msgstr "Chaidh freagairt le %s le: %s" -#: src/Object/Post.php:754 +#: src/Object/Post.php:755 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:557 +#: src/Protocol/ActivityPub/Receiver.php:558 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:530 +#: src/Protocol/Delivery.php:531 msgid "(no subject)" msgstr "(gun chuspair)" @@ -12725,20 +12731,20 @@ msgstr "Ceumaidh cead sgrìobhaidh dhan phasgan %s a bhith aig an fhrithealaiche msgid "Login failed." msgstr "Dh’fhàillig leis a’ chlàradh a-steach." -#: src/Security/Authentication.php:260 +#: src/Security/Authentication.php:261 msgid "Login failed. Please check your credentials." msgstr "Dh’fhàillig leis a’ chlàradh a-steach. Thoir sùil air an teisteas agad." -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:374 #, php-format msgid "Welcome %s" msgstr "Fàilte ort, %s" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:375 msgid "Please upload a profile photo." msgstr "An luchdaich thu suas dealbh pròifile?" -#: src/Security/OpenWebAuth.php:149 +#: src/Security/OpenWebAuth.php:150 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: Tha %1$s a’ cur fàilte air %2$s" diff --git a/view/lang/gd/strings.php b/view/lang/gd/strings.php index 9f9b10d701..7eb6707696 100644 --- a/view/lang/gd/strings.php +++ b/view/lang/gd/strings.php @@ -2208,8 +2208,6 @@ $a->strings['Normally the system shortens posts at the next line feed. If this o $a->strings['Attach the link title'] = 'Cuir tiotal a’ cheangail ris'; $a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'Nuair a bhios seo an gnìomh, thèid tiotal a’ cheangail a chur ris mar tiotal air postaichean gu diaspora*. Tha seo as fheumaile dhan luchd-aithne “remote-self” a cho-roinneas susbaint inbhir.'; $a->strings['When activated, added links at the end of the post react the same way as added links in the web interface.'] = 'Nuair a bhios seo an gnìomh, bidh an t-aon ghiùlan aig ceanglaichean a thèid a chur ri bonn puist ’s a tha aig ceanglaichean a thèid a chur ris san eadar-aghaidh-lìn.'; -$a->strings['Your legacy ActivityPub/GNU Social account'] = 'An cunntas ActivityPub/GNU Social dìleabach agad'; -$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Ma chuireas tu ainm seann-chunntais ris o shiostam stèidhichte air ActivityPub no ainm do chunntais GNU Social/Statusnet an-seo (san fhòrmat cleachdaiche@àrainn.tld), thèid an luchd-aithne agad a chur ris gu fèin-obrachail. Thèid an raon fhalamhachadh nuair a bhios sin deiseil.'; $a->strings['Email/Mailbox Setup'] = 'Suidheachadh a’ phuist-d/a’ bhogsa-phuist'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Ma tha thu airson an t-seirbheis seo a chleachdadh airson conaltradh le luchd-aithne air a’ post-d (gu roghainneil), sònraich an dòigh air a nì thu ceangal leis a’ bhogsa-phuist agad.'; $a->strings['Last successful email check:'] = 'An turas mu dheireadh a chaidh leinn sùil a thoirt air a’ phost-d:'; @@ -2223,6 +2221,8 @@ $a->strings['Send public posts to all email contacts:'] = 'Cuir postaichean pobl $a->strings['Action after import:'] = 'Gnìomh às dèid an ion-phortaidh:'; $a->strings['Move to folder'] = 'Gluais gu pasgan'; $a->strings['Move to folder:'] = 'Gluais gu pasgan:'; +$a->strings['Your legacy ActivityPub/GNU Social account'] = 'An cunntas ActivityPub/GNU Social dìleabach agad'; +$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Ma chuireas tu ainm seann-chunntais ris o shiostam stèidhichte air ActivityPub no ainm do chunntais GNU Social/Statusnet an-seo (san fhòrmat cleachdaiche@àrainn.tld), thèid an luchd-aithne agad a chur ris gu fèin-obrachail. Thèid an raon fhalamhachadh nuair a bhios sin deiseil.'; $a->strings['Delegation successfully granted.'] = 'Chaidh neach-ionaid a dhèanamh dheth.'; $a->strings['Delegation successfully revoked.'] = 'Chaidh ceadan neach-ionaid a thoirt air falbh.'; $a->strings['Delegated administrators can view but not change delegation permissions.'] = 'Chì rianairean a tha ’nan luchd-ionaid na ceadan ach chan urrainn dhaibh an atharrachadh.'; diff --git a/view/lang/hu/messages.po b/view/lang/hu/messages.po index bf8fc9fccd..abbcdb4fac 100644 --- a/view/lang/hu/messages.po +++ b/view/lang/hu/messages.po @@ -13,7 +13,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: Balázs Úr, 2020-2024\n" "Language-Team: Hungarian (http://app.transifex.com/Friendica/friendica/language/hu/)\n" @@ -23,34 +23,34 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\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 "Nem lehet megtalálni az eredeti bejegyzést." -#: mod/item.php:127 +#: mod/item.php:126 msgid "Post updated." msgstr "Bejegyzés frissítve." -#: mod/item.php:192 mod/item.php:196 +#: mod/item.php:191 mod/item.php:195 msgid "Item wasn't stored." msgstr "Az elem nem lett eltárolva." -#: mod/item.php:206 +#: mod/item.php:205 msgid "Item couldn't be fetched." msgstr "Az elemet nem sikerült lekérni." -#: mod/item.php:250 mod/item.php:254 +#: mod/item.php:249 mod/item.php:253 msgid "Empty post discarded." msgstr "Az üres bejegyzés elvetve." -#: 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 "Az elem nem található." -#: 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 @@ -61,7 +61,7 @@ msgstr "Az elem nem található." #: 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 @@ -70,13 +70,15 @@ msgstr "Az elem nem található." #: 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 @@ -85,15 +87,15 @@ msgstr "Az elem nem található." msgid "Permission denied." msgstr "Hozzáférés megtagadva." -#: mod/lostpass.php:28 +#: mod/lostpass.php:27 msgid "No valid account found." msgstr "Nem található érvényes fiók." -#: mod/lostpass.php:40 +#: mod/lostpass.php:39 msgid "Password reset request issued. Check your email." msgstr "A jelszó-visszaállítási kérés el lett küldve. Nézze meg a leveleit." -#: mod/lostpass.php:46 +#: mod/lostpass.php:45 #, php-format msgid "" "\n" @@ -109,7 +111,7 @@ msgid "" "\t\tissued this request." msgstr "\n\t\tKedves %1$s!\n\t\t\tNemrég kérés érkezett a „%2$s” oldalról a fiókja jelszavának\n\t\tvisszaállítására. A kérés megerősítése érdekében kattintson a lenti\n\t\tellenőrző hivatkozásra, vagy illessze be a webböngészője címsávjába.\n\n\t\tHa NEM Ön kérte ezt a változtatást, akkor NE kövesse a megadott\n\t\thivatkozást, illetve hagyja figyelmen kívül és/vagy törölje ezt az\n\t\te-mailt. A kérés hamarosan le fog járni.\n\n\t\tA jelszava nem lesz megváltoztatva, hacsak nem tudjuk ellenőrizni, hogy\n\t\tÖn indította ezt a kérést." -#: mod/lostpass.php:57 +#: mod/lostpass.php:56 #, php-format msgid "" "\n" @@ -126,70 +128,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\n\t\tKövesse ezt a hivatkozást a személyazonossága ellenőrzéséhez:\n\n\t\t%1$s\n\n\t\tEzután kapni fog egy követő üzenetet, amely az új jelszavát tartalmazza.\n\t\tA jelszót a fiókja beállításainak oldalán változtathatja meg, miután bejelentkezett.\n\n\t\tA bejelentkezés részletei a következők:\n\n\t\tOldal címe:\t%2$s\n\t\tBejelentkezési név:\t%3$s" -#: mod/lostpass.php:72 +#: mod/lostpass.php:71 #, php-format msgid "Password reset requested at %s" msgstr "Jelszó-visszaállítás kérve itt: %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 "A kérést nem sikerült ellenőrizni (lehet, hogy korábban már elküldte). A jelszó-visszaállítás sikertelen." -#: mod/lostpass.php:101 +#: mod/lostpass.php:100 msgid "Request has expired, please make a new one." msgstr "A kérés lejárt, készítsen egy újat." -#: mod/lostpass.php:116 +#: mod/lostpass.php:115 msgid "Forgot your Password?" msgstr "Elfelejtette a jelszavát?" -#: 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 "Adja meg az e-mail-címét, és küldje el a jelszó-visszaállítás kéréséhez. Azután nézze meg a postafiókját a további utasításokért." -#: 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 "Becenév vagy e-mail-cím: " -#: mod/lostpass.php:119 +#: mod/lostpass.php:118 msgid "Reset" msgstr "Visszaállítás" -#: mod/lostpass.php:134 src/Module/Security/Login.php:161 +#: mod/lostpass.php:133 src/Module/Security/Login.php:161 msgid "Password Reset" msgstr "Jelszó visszaállítása" -#: mod/lostpass.php:135 +#: mod/lostpass.php:134 msgid "Your password has been reset as requested." msgstr "A jelszava vissza lett állítva a kérés alapján." -#: mod/lostpass.php:136 +#: mod/lostpass.php:135 msgid "Your new password is" msgstr "Az új jelszava" -#: mod/lostpass.php:137 +#: mod/lostpass.php:136 msgid "Save or copy your new password - and then" msgstr "Mentse el vagy másolja le az új jelszavát – majd" -#: mod/lostpass.php:138 +#: mod/lostpass.php:137 msgid "click here to login" msgstr "kattintson ide a bejelentkezéshez" -#: mod/lostpass.php:139 +#: mod/lostpass.php:138 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "A jelszava megváltoztatható a Beállítások oldalon, miután sikeresen bejelentkezett." -#: mod/lostpass.php:143 +#: mod/lostpass.php:142 msgid "Your password has been reset." msgstr "A jelszava vissza lett állítva." -#: mod/lostpass.php:146 +#: mod/lostpass.php:145 #, php-format msgid "" "\n" @@ -200,7 +202,7 @@ msgid "" "\t\t" msgstr "\n\t\t\tKedves %1$s!\n\t\t\t\tA jelszava vissza lett állítva a kérés alapján. Őrizze meg ezt az\n\t\t\tinformációt a feljegyzéséhez (vagy változtassa meg a jelszót azonnal\n\t\t\tvalami olyanra, amelyre emlékezni fog).\n\t\t" -#: mod/lostpass.php:152 +#: mod/lostpass.php:151 #, php-format msgid "" "\n" @@ -214,7 +216,7 @@ msgid "" "\t\t" msgstr "\n\t\t\tA bejelentkezés részletei a következők:\n\n\t\t\tOldal címe:\t%1$s\n\t\t\tBejelentkezési név:\t%2$s\n\t\t\tJelszó:\t%3$s\n\n\t\t\tMegváltoztathatja a jelszót a fiókbeállítások oldalon, miután bejelentkezett.\n\t\t" -#: mod/lostpass.php:164 +#: mod/lostpass.php:163 #, php-format msgid "Your password has been changed at %s" msgstr "A jelszava meg lett változtatva itt: %s" @@ -278,11 +280,11 @@ msgstr "Címzett:" msgid "Subject:" msgstr "Tárgy:" -#: 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 "Az üzenete:" -#: 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 "Fénykép feltöltése" @@ -291,16 +293,16 @@ msgstr "Fénykép feltöltése" msgid "Insert web link" msgstr "Webhivatkozás beszúrása" -#: 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 "Kis türelmet" -#: 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 @@ -308,7 +310,7 @@ msgstr "Kis türelmet" #: 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 @@ -317,7 +319,7 @@ msgstr "Kis türelmet" #: 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" @@ -375,396 +377,396 @@ msgid_plural "%d messages" msgstr[0] "%d üzenet" msgstr[1] "%d üzenet" -#: mod/notes.php:40 src/Module/BaseProfile.php:93 +#: mod/notes.php:41 src/Module/BaseProfile.php:93 msgid "Personal Notes" msgstr "Személyes jegyzetek" -#: mod/notes.php:44 +#: mod/notes.php:45 msgid "Personal notes are visible only by yourself." msgstr "A személyes jegyzetek csak az Ön számára láthatók." -#: 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 "Mentés" -#: 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 "A felhasználó nem található." -#: 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 "Fényképalbumok" -#: 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 "Legutóbbi fényképek" -#: 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 "Új fényképek feltöltése" -#: 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 "mindenki" -#: mod/photos.php:142 +#: mod/photos.php:140 msgid "Contact information unavailable" msgstr "A partner információi nem érhetők el" -#: mod/photos.php:171 +#: mod/photos.php:169 msgid "Album not found." msgstr "Az album nem található." -#: mod/photos.php:227 +#: mod/photos.php:225 msgid "Album successfully deleted" msgstr "Az album sikeresen törölve" -#: mod/photos.php:229 +#: mod/photos.php:227 msgid "Album was empty." msgstr "Az album üres volt." -#: mod/photos.php:260 +#: mod/photos.php:258 msgid "Failed to delete the photo." msgstr "Nem sikerült törölni a fényképet." -#: mod/photos.php:504 +#: mod/photos.php:502 msgid "a photo" msgstr "egy fényképen" -#: mod/photos.php:504 +#: mod/photos.php:502 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s meg lett jelölve %2$s %3$s által" -#: 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 "Nyilvános hozzáférés megtagadva." -#: mod/photos.php:546 +#: mod/photos.php:544 msgid "No photos selected" msgstr "Nincsenek fényképek kijelölve" -#: mod/photos.php:674 +#: mod/photos.php:672 #, php-format msgid "The maximum accepted image size is %s" msgstr "A legnagyobb elfogadott képméret %s" -#: mod/photos.php:681 +#: mod/photos.php:679 msgid "Upload Photos" msgstr "Fényképek feltöltése" -#: mod/photos.php:685 mod/photos.php:774 +#: mod/photos.php:683 mod/photos.php:772 msgid "New album name: " msgstr "Új album neve: " -#: mod/photos.php:686 +#: mod/photos.php:684 msgid "or select existing album:" msgstr "vagy meglévő album kiválasztása:" -#: mod/photos.php:687 +#: mod/photos.php:685 msgid "Do not show a status post for this upload" msgstr "Ne jelenítsen meg állapotbejegyzést ehhez a feltöltéshez" -#: 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 "Jogosultságok" -#: mod/photos.php:755 +#: mod/photos.php:753 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Valóban törölni szeretné ezt a fényképalbumot és az összes fényképét?" -#: mod/photos.php:756 mod/photos.php:779 +#: mod/photos.php:754 mod/photos.php:777 msgid "Delete Album" msgstr "Album törlése" -#: 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 "Mégse" -#: mod/photos.php:783 +#: mod/photos.php:781 msgid "Edit Album" msgstr "Album szerkesztése" -#: mod/photos.php:784 +#: mod/photos.php:782 msgid "Drop Album" msgstr "Album eldobása" -#: mod/photos.php:788 +#: mod/photos.php:786 msgid "Show Newest First" msgstr "Legújabb megjelenítése először" -#: mod/photos.php:790 +#: mod/photos.php:788 msgid "Show Oldest First" msgstr "Legrégebbi megjelenítése először" -#: mod/photos.php:811 src/Module/Profile/Photos.php:335 +#: mod/photos.php:809 src/Module/Profile/Photos.php:343 msgid "View Photo" msgstr "Fénykép megtekintése" -#: mod/photos.php:843 +#: mod/photos.php:841 msgid "Permission denied. Access to this item may be restricted." msgstr "Hozzáférés megtagadva. Az elemhez való hozzáférés korlátozva lehet." -#: mod/photos.php:845 +#: mod/photos.php:843 msgid "Photo not available" msgstr "A fénykép nem érhető el" -#: mod/photos.php:855 +#: mod/photos.php:853 msgid "Do you really want to delete this photo?" msgstr "Valóban törölni szeretné ezt a fényképet?" -#: mod/photos.php:856 mod/photos.php:1056 +#: mod/photos.php:854 mod/photos.php:1054 msgid "Delete Photo" msgstr "Fénykép törlése" -#: mod/photos.php:954 +#: mod/photos.php:952 msgid "View photo" msgstr "Fénykép megtekintése" -#: mod/photos.php:956 +#: mod/photos.php:954 msgid "Edit photo" msgstr "Fénykép szerkesztése" -#: mod/photos.php:957 +#: mod/photos.php:955 msgid "Delete photo" msgstr "Fénykép törlése" -#: mod/photos.php:958 +#: mod/photos.php:956 msgid "Use as profile photo" msgstr "Használat profilfényképként" -#: mod/photos.php:965 +#: mod/photos.php:963 msgid "Private Photo" msgstr "Személyes fénykép" -#: mod/photos.php:971 +#: mod/photos.php:969 msgid "View Full Size" msgstr "Teljes méret megtekintése" -#: mod/photos.php:1024 +#: mod/photos.php:1022 msgid "Tags: " msgstr "Címkék: " -#: mod/photos.php:1027 +#: mod/photos.php:1025 msgid "[Select tags to remove]" msgstr "[Eltávolítandó címkék kiválasztása]" -#: mod/photos.php:1042 +#: mod/photos.php:1040 msgid "New album name" msgstr "Új album neve" -#: mod/photos.php:1043 +#: mod/photos.php:1041 msgid "Caption" msgstr "Felirat" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "Add a Tag" msgstr "Címke hozzáadása" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Példa: @bob, @Barbara_Jensen, @jim@example.com, #Budapest, #kemping" -#: mod/photos.php:1045 +#: mod/photos.php:1043 msgid "Do not rotate" msgstr "Ne forgassa el" -#: mod/photos.php:1046 +#: mod/photos.php:1044 msgid "Rotate CW (right)" msgstr "Forgatás jobbra" -#: mod/photos.php:1047 +#: mod/photos.php:1045 msgid "Rotate CCW (left)" msgstr "Forgatás balra" -#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: mod/photos.php:1091 mod/photos.php:1147 mod/photos.php:1227 #: src/Module/Contact.php:600 src/Module/Item/Compose.php:184 -#: src/Object/Post.php:1142 +#: src/Object/Post.php:1143 msgid "This is you" msgstr "Ez Ön" -#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 -#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:598 -#: src/Object/Post.php:1144 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:599 +#: src/Object/Post.php:1145 msgid "Comment" msgstr "Hozzászólás" -#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 -#: src/Content/Conversation.php:401 src/Module/Calendar/Event/Form.php:234 +#: 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 -#: src/Object/Post.php:1158 +#: src/Object/Post.php:1159 msgid "Preview" msgstr "Előnézet" -#: mod/photos.php:1098 src/Content/Conversation.php:355 -#: src/Module/Post/Edit.php:121 src/Object/Post.php:1146 +#: mod/photos.php:1096 src/Content/Conversation.php:357 +#: src/Module/Post/Edit.php:121 src/Object/Post.php:1147 msgid "Loading..." msgstr "Betöltés…" -#: mod/photos.php:1190 src/Content/Conversation.php:1485 -#: src/Object/Post.php:260 +#: mod/photos.php:1188 src/Content/Conversation.php:1487 +#: src/Object/Post.php:261 msgid "Select" msgstr "Kiválasztás" -#: mod/photos.php:1191 src/Content/Conversation.php:1486 -#: 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:233 +#: 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 +#: src/Module/Settings/Connectors.php:226 #: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Törlés" -#: mod/photos.php:1252 src/Object/Post.php:426 +#: mod/photos.php:1250 src/Object/Post.php:427 msgid "Like" msgstr "Tetszik" -#: mod/photos.php:1253 src/Object/Post.php:426 +#: mod/photos.php:1251 src/Object/Post.php:427 msgid "I like this (toggle)" msgstr "Ezt kedvelem (átváltás)" -#: mod/photos.php:1254 src/Object/Post.php:427 +#: mod/photos.php:1252 src/Object/Post.php:428 msgid "Dislike" msgstr "Nem tetszik" -#: mod/photos.php:1256 src/Object/Post.php:427 +#: mod/photos.php:1254 src/Object/Post.php:428 msgid "I don't like this (toggle)" msgstr "Ezt nem kedvelem (átváltás)" -#: mod/photos.php:1278 +#: mod/photos.php:1276 msgid "Map" msgstr "Térkép" -#: src/App.php:467 +#: src/App.php:255 msgid "Apologies but the website is unavailable at the moment." msgstr "Elnézést, de a weboldal jelenleg nem érhető el." -#: src/App/Page.php:237 +#: src/App/Page.php:241 msgid "Delete this item?" msgstr "Törli ezt az elemet?" -#: src/App/Page.php:238 +#: src/App/Page.php:242 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 "Tiltja ezt a szerzőt? Nem lesz képes követni Önt, és a nyilvános bejegyzéseit sem látja, valamint Ön sem lesz képes megtekinteni az ő bejegyzéseit és értesítéseit." -#: src/App/Page.php:239 +#: src/App/Page.php:243 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "Mellőzi ezt a szerzőt? Nem lesz képes megtekinteni az ő bejegyzéseit és értesítéseit." -#: src/App/Page.php:240 +#: src/App/Page.php:244 msgid "Collapse this author's posts?" msgstr "Összecsukja ennek a szerzőnek a bejegyzéseit?" -#: src/App/Page.php:241 +#: src/App/Page.php:245 msgid "Ignore this author's server?" msgstr "Mellőzi ennek a szerzőnek a kiszolgálóját?" -#: src/App/Page.php:242 src/Module/Settings/Server/Action.php:47 +#: src/App/Page.php:246 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 "Nem fog látni semmilyen tartalmat erről a kiszolgálóról, beleértve a hálózat oldalon, a közösségi oldalakon és az egyéni beszélgetésekben lévő újra megosztásokat is." -#: src/App/Page.php:244 +#: src/App/Page.php:248 msgid "Like not successful" msgstr "A kedvelés sikertelen" -#: src/App/Page.php:245 +#: src/App/Page.php:249 msgid "Dislike not successful" msgstr "A nem kedvelés sikertelen" -#: src/App/Page.php:246 +#: src/App/Page.php:250 msgid "Sharing not successful" msgstr "A megosztás sikertelen" -#: src/App/Page.php:247 +#: src/App/Page.php:251 msgid "Attendance unsuccessful" msgstr "A részvétel sikertelen" -#: src/App/Page.php:248 +#: src/App/Page.php:252 msgid "Backend error" msgstr "Háttérprogram hiba" -#: src/App/Page.php:249 +#: src/App/Page.php:253 msgid "Network error" msgstr "Hálózati hiba" -#: src/App/Page.php:252 +#: src/App/Page.php:256 msgid "Drop files here to upload" msgstr "Dobja ide a fájlokat a feltöltéséhez" -#: src/App/Page.php:253 +#: src/App/Page.php:257 msgid "Your browser does not support drag and drop file uploads." msgstr "A böngészője nem támogatja a fogd és vidd fájlfeltöltéseket." -#: src/App/Page.php:254 +#: src/App/Page.php:258 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "Használja az alábbi tartalék űrlapot a fájlok feltöltéséhez, mint a régi időkben." -#: src/App/Page.php:255 +#: src/App/Page.php:259 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "A fájl túl nagy ({{filesize}} MiB). A legnagyobb fájlméret: {{maxFilesize}} MiB." -#: src/App/Page.php:256 +#: src/App/Page.php:260 msgid "You can't upload files of this type." msgstr "Nem tud ilyen típusú fájlokat feltölteni." -#: src/App/Page.php:257 +#: src/App/Page.php:261 msgid "Server responded with {{statusCode}} code." msgstr "A kiszolgáló {{statusCode}} állapotkóddal válaszolt." -#: src/App/Page.php:258 +#: src/App/Page.php:262 msgid "Cancel upload" msgstr "Feltöltés megszakítása" -#: src/App/Page.php:259 +#: src/App/Page.php:263 msgid "Upload canceled." msgstr "A feltöltés megszakítva." -#: src/App/Page.php:260 +#: src/App/Page.php:264 msgid "Are you sure you want to cancel this upload?" msgstr "Biztosan meg szeretné szakítani ezt a feltöltést?" -#: src/App/Page.php:261 +#: src/App/Page.php:265 msgid "Remove file" msgstr "Fájl eltávolítása" -#: src/App/Page.php:262 +#: src/App/Page.php:266 msgid "You can't upload any more files." msgstr "Nem tud több fájlt feltölteni." -#: src/App/Page.php:346 +#: src/App/Page.php:350 msgid "toggle mobile" msgstr "váltás mobilra" @@ -797,7 +799,7 @@ msgid "All contacts" msgstr "Összes partner" #: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 -#: src/Content/Widget.php:254 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Content/Widget.php:254 src/Core/ACL.php:182 src/Module/Contact.php:395 #: src/Module/Privacy/PermissionTooltip.php:150 #: src/Module/Privacy/PermissionTooltip.php:172 #: src/Module/Settings/Channels.php:146 @@ -839,7 +841,7 @@ msgstr "Nem sikerült találni egyetlen archiválatlan partnerbejegyzést sem er msgid "The contact entries have been archived" msgstr "A partnerbejegyzések archiválva lettek" -#: src/Console/ClearAvatarCache.php:73 +#: src/Console/ClearAvatarCache.php:74 msgid "" "The avatar cache needs to be disabled in local.config.php to use this " "command." @@ -925,22 +927,22 @@ msgstr "A profilkép gyorsítótárának engedélyezve kell lennie a parancs has msgid "no resource in photo %s" msgstr "nincs erőforrás a(z) %s fényképen" -#: src/Console/MoveToAvatarCache.php:123 +#: src/Console/MoveToAvatarCache.php:127 #, php-format msgid "no photo with id %s" msgstr "nincs %s azonosítóval rendelkező fénykép" -#: src/Console/MoveToAvatarCache.php:132 +#: src/Console/MoveToAvatarCache.php:136 #, php-format msgid "no image data for photo with id %s" msgstr "nincsenek képadatok a(z) %s azonosítóval rendelkező fényképnél" -#: src/Console/MoveToAvatarCache.php:141 +#: src/Console/MoveToAvatarCache.php:145 #, php-format msgid "invalid image for id %s" msgstr "érvénytelen kép a(z) %s azonosítónál" -#: src/Console/MoveToAvatarCache.php:154 +#: src/Console/MoveToAvatarCache.php:158 #, php-format msgid "Quit on invalid photo %s" msgstr "Kilépés az érvénytelen %s fényképnél" @@ -970,11 +972,14 @@ msgstr "Az összes függőben lévő bejegyzésfrissítés kész." msgid "Enter user nickname: " msgstr "Felhasználó becenevének megadása: " -#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Console/User.php:168 src/Model/User.php:830 #: src/Module/Api/Twitter/ContactEndpoint.php:62 -#: 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/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/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "A felhasználó nem található" @@ -984,12 +989,12 @@ msgid "Enter new password: " msgstr "Új jelszó megadása: " #: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 -#: src/Module/Settings/Account.php:59 +#: src/Module/Settings/Account.php:57 msgid "Password update failed. Please try again." msgstr "A jelszó frissítése sikertelen. Próbálja újra." #: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 -#: src/Module/Settings/Account.php:62 +#: src/Module/Settings/Account.php:60 msgid "Password changed." msgstr "A jelszó megváltoztatva." @@ -1070,86 +1075,86 @@ msgstr "Hetente" msgid "Monthly" msgstr "Havonta" -#: src/Content/ContactSelector.php:118 +#: src/Content/ContactSelector.php:117 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:119 +#: src/Content/ContactSelector.php:118 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:120 +#: src/Content/ContactSelector.php:119 msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:121 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Content/ContactSelector.php:120 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:58 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "E-mail" -#: src/Content/ContactSelector.php:122 src/Module/Debug/Babel.php:273 +#: src/Content/ContactSelector.php:121 src/Module/Debug/Babel.php:273 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:123 +#: src/Content/ContactSelector.php:122 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:124 +#: src/Content/ContactSelector.php:123 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:125 +#: src/Content/ContactSelector.php:124 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:125 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:126 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:127 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:129 +#: src/Content/ContactSelector.php:128 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:130 +#: src/Content/ContactSelector.php:129 msgid "Discourse" msgstr "Discourse" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:130 msgid "Diaspora Connector" msgstr "Diaspora összekötő" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:131 msgid "GNU Social Connector" msgstr "GNU Social összekötő" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:132 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:133 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:134 msgid "Tumblr" msgstr "Tumblr" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:135 msgid "Bluesky" msgstr "Bluesky" @@ -1158,374 +1163,374 @@ msgstr "Bluesky" msgid "%s (via %s)" msgstr "%s (ezen keresztül: %s)" -#: src/Content/Conversation.php:213 +#: src/Content/Conversation.php:215 msgid "and" msgstr "és" -#: src/Content/Conversation.php:216 +#: src/Content/Conversation.php:218 #, php-format msgid "and %d other people" msgstr "és %d más személy" -#: src/Content/Conversation.php:222 +#: src/Content/Conversation.php:224 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." msgstr[0] "%2$s kedveli ezt." msgstr[1] "%2$s kedveli ezt." -#: src/Content/Conversation.php:224 +#: src/Content/Conversation.php:226 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." msgstr[0] "%2$s nem kedveli ezt." msgstr[1] "%2$s nem kedveli ezt." -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:228 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." msgstr[0] "%2$s részt vesz." msgstr[1] "%2$s részt vesz." -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:230 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." msgstr[0] "%2$s nem vesz részt." msgstr[1] "%2$s nem vesz részt." -#: src/Content/Conversation.php:230 +#: src/Content/Conversation.php:232 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." msgstr[0] "%2$s talán részt vesz." msgstr[1] "%2$s talán részt vesz." -#: src/Content/Conversation.php:232 +#: src/Content/Conversation.php:234 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." msgstr[0] "%2$s újra megosztotta ezt." msgstr[1] "%2$s újra megosztotta ezt." -#: src/Content/Conversation.php:263 +#: src/Content/Conversation.php:265 #, php-format msgid " likes this" msgid_plural " like this" msgstr[0] " kedveli ezt" msgstr[1] " kedveli ezt" -#: src/Content/Conversation.php:266 +#: src/Content/Conversation.php:268 #, php-format msgid " doesn't like this" msgid_plural " don't like this" msgstr[0] " nem kedveli ezt" msgstr[1] " nem kedveli ezt" -#: src/Content/Conversation.php:269 +#: src/Content/Conversation.php:271 #, php-format msgid " attends" msgid_plural " attend" msgstr[0] " részt vesz" msgstr[1] " részt vesz" -#: src/Content/Conversation.php:272 +#: src/Content/Conversation.php:274 #, php-format msgid " doesn't attend" msgid_plural " don't attend" msgstr[0] " nem vesz részt" msgstr[1] " nem vesz részt" -#: src/Content/Conversation.php:275 +#: src/Content/Conversation.php:277 #, php-format msgid " attends maybe" msgid_plural " attend maybe" msgstr[0] " talán részt vesz" msgstr[1] " talán részt vesz" -#: src/Content/Conversation.php:278 +#: src/Content/Conversation.php:280 #, php-format msgid " reshared this" msgid_plural " reshared this" msgstr[0] " újra megosztotta ezt" msgstr[1] " újra megosztotta ezt" -#: src/Content/Conversation.php:324 +#: src/Content/Conversation.php:326 msgid "Visible to everybody" msgstr "Látható mindenkinek" -#: src/Content/Conversation.php:325 src/Module/Item/Compose.php:196 -#: src/Object/Post.php:1157 +#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196 +#: src/Object/Post.php:1158 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Írjon be egy kép, videó, hang vagy weboldal URL-t:" -#: src/Content/Conversation.php:326 +#: src/Content/Conversation.php:328 msgid "Tag term:" msgstr "Címkézési kifejezés:" -#: src/Content/Conversation.php:327 src/Module/Filer/SaveTag.php:59 +#: src/Content/Conversation.php:329 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Mentés mappába:" -#: src/Content/Conversation.php:328 +#: src/Content/Conversation.php:330 msgid "Where are you right now?" msgstr "Hol van most éppen?" -#: src/Content/Conversation.php:329 +#: src/Content/Conversation.php:331 msgid "Delete item(s)?" msgstr "Törli az elemeket?" -#: src/Content/Conversation.php:341 src/Module/Item/Compose.php:171 +#: src/Content/Conversation.php:343 src/Module/Item/Compose.php:171 msgid "Created at" msgstr "Létrehozva" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:353 msgid "New Post" msgstr "Új bejegyzés" -#: src/Content/Conversation.php:354 +#: src/Content/Conversation.php:356 msgid "Share" msgstr "Megosztás" -#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:123 +#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:123 msgid "upload photo" msgstr "fénykép feltöltése" -#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:124 +#: src/Content/Conversation.php:360 src/Module/Post/Edit.php:124 msgid "Attach file" msgstr "Fájl csatolása" -#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:125 +#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:125 msgid "attach file" msgstr "fájl csatolása" -#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:186 -#: src/Module/Post/Edit.php:162 src/Object/Post.php:1147 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1148 msgid "Bold" msgstr "Félkövér" -#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:187 -#: src/Module/Post/Edit.php:163 src/Object/Post.php:1148 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1149 msgid "Italic" msgstr "Dőlt" -#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:188 -#: src/Module/Post/Edit.php:164 src/Object/Post.php:1149 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1150 msgid "Underline" msgstr "Aláhúzott" -#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:189 -#: src/Module/Post/Edit.php:165 src/Object/Post.php:1151 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:165 src/Object/Post.php:1152 msgid "Quote" msgstr "Idézet" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:166 src/Object/Post.php:1152 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:166 src/Object/Post.php:1153 msgid "Add emojis" msgstr "Emodzsik hozzáadása" -#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:191 -#: src/Object/Post.php:1150 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Object/Post.php:1151 msgid "Content Warning" msgstr "Tartalom figyelmeztetés" -#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:167 src/Object/Post.php:1153 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:167 src/Object/Post.php:1154 msgid "Code" msgstr "Kód" -#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:193 -#: src/Object/Post.php:1154 +#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1155 msgid "Image" msgstr "Kép" -#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:168 src/Object/Post.php:1155 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:168 src/Object/Post.php:1156 msgid "Link" msgstr "Hivatkozás" -#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:195 -#: src/Module/Post/Edit.php:169 src/Object/Post.php:1156 +#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:169 src/Object/Post.php:1157 msgid "Link or Media" msgstr "Hivatkozás vagy média" -#: src/Content/Conversation.php:370 +#: src/Content/Conversation.php:372 msgid "Video" msgstr "Videó" -#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:198 +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:198 #: src/Module/Post/Edit.php:132 msgid "Set your location" msgstr "Az Ön helyének beállítása" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:133 msgid "set location" msgstr "hely beállítása" -#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:134 msgid "Clear browser location" msgstr "Böngésző helyének törlése" -#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:135 +#: src/Content/Conversation.php:376 src/Module/Post/Edit.php:135 msgid "clear location" msgstr "hely törlése" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:203 +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:203 #: src/Module/Post/Edit.php:148 msgid "Set title" msgstr "Cím beállítása" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:204 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 #: src/Module/Post/Edit.php:150 msgid "Categories (comma-separated list)" msgstr "Kategóriák (vesszővel elválasztott lista)" -#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:220 +#: src/Content/Conversation.php:385 src/Module/Item/Compose.php:220 msgid "Scheduled at" msgstr "Ütemezve ekkor" -#: src/Content/Conversation.php:388 src/Module/Post/Edit.php:137 +#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:137 msgid "Permission settings" msgstr "Jogosultsági beállítások" -#: src/Content/Conversation.php:397 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:399 src/Module/Post/Edit.php:146 msgid "Public post" msgstr "Nyilvános bejegyzés" -#: src/Content/Conversation.php:411 src/Content/Widget/VCard.php:121 +#: 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 msgid "Message" msgstr "Üzenet" -#: src/Content/Conversation.php:412 src/Module/Post/Edit.php:173 +#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:173 #: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Böngésző" -#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:176 +#: src/Content/Conversation.php:416 src/Module/Post/Edit.php:176 msgid "Open Compose page" msgstr "Írás oldal megnyitása" -#: src/Content/Conversation.php:581 +#: src/Content/Conversation.php:583 msgid "remove" msgstr "eltávolítás" -#: src/Content/Conversation.php:585 +#: src/Content/Conversation.php:587 msgid "Delete Selected Items" msgstr "Kijelölt elemek törlése" -#: src/Content/Conversation.php:713 src/Content/Conversation.php:716 -#: src/Content/Conversation.php:719 src/Content/Conversation.php:722 -#: src/Content/Conversation.php:725 +#: 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 #, php-format msgid "You had been addressed (%s)." msgstr "Önt megszólították (%s)." -#: src/Content/Conversation.php:728 +#: src/Content/Conversation.php:730 #, php-format msgid "You are following %s." msgstr "Ön követi őt: %s." -#: src/Content/Conversation.php:733 +#: src/Content/Conversation.php:735 #, php-format msgid "You subscribed to %s." msgstr "Ön feliratkozott erre: %s." -#: src/Content/Conversation.php:735 +#: src/Content/Conversation.php:737 msgid "You subscribed to one or more tags in this post." msgstr "Ön feliratkozott egy vagy több címkére ebben a bejegyzésben." -#: src/Content/Conversation.php:755 +#: src/Content/Conversation.php:757 #, php-format msgid "%s reshared this." msgstr "%s újra megosztotta ezt." -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 msgid "Reshared" msgstr "Újra megosztva" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 #, php-format msgid "Reshared by %s <%s>" msgstr "%s <%s> újra megosztotta" -#: src/Content/Conversation.php:760 +#: src/Content/Conversation.php:762 #, php-format msgid "%s is participating in this thread." msgstr "%s részt vesz ebben a szálban." -#: src/Content/Conversation.php:763 +#: src/Content/Conversation.php:765 msgid "Stored for general reasons" msgstr "Általános okokból tárolva" -#: src/Content/Conversation.php:766 +#: src/Content/Conversation.php:768 msgid "Global post" msgstr "Globális bejegyzés" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 msgid "Sent via an relay server" msgstr "Elküldve egy továbbító kiszolgálón keresztül" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "Elküldve a(z) %s <%s> továbbító kiszolgálón keresztül" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 msgid "Fetched" msgstr "Lekérve" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 #, php-format msgid "Fetched because of %s <%s>" msgstr "Lekérve %s <%s> miatt" -#: src/Content/Conversation.php:775 +#: src/Content/Conversation.php:777 msgid "Stored because of a child post to complete this thread." msgstr "Eltárolva egy gyermekbejegyzés miatt, hogy befejezze ezt a szálat." -#: src/Content/Conversation.php:778 +#: src/Content/Conversation.php:780 msgid "Local delivery" msgstr "Helyi kézbesítés" -#: src/Content/Conversation.php:781 +#: src/Content/Conversation.php:783 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "Eltárolva az Ön tevékenysége miatt (kedvelés, hozzászólás, csillagozás stb.)" -#: src/Content/Conversation.php:784 +#: src/Content/Conversation.php:786 msgid "Distributed" msgstr "Elosztott" -#: src/Content/Conversation.php:787 +#: src/Content/Conversation.php:789 msgid "Pushed to us" msgstr "Leküldve nekünk" -#: src/Content/Conversation.php:1505 src/Object/Post.php:247 +#: src/Content/Conversation.php:1507 src/Object/Post.php:248 msgid "Pinned item" msgstr "Kitűzött elem" -#: src/Content/Conversation.php:1522 src/Object/Post.php:541 -#: src/Object/Post.php:542 +#: src/Content/Conversation.php:1524 src/Object/Post.php:542 +#: src/Object/Post.php:543 #, php-format msgid "View %s's profile @ %s" msgstr "%s profiljának megtekintése ezen: %s" -#: src/Content/Conversation.php:1536 src/Object/Post.php:529 +#: src/Content/Conversation.php:1538 src/Object/Post.php:530 msgid "Categories:" msgstr "Kategóriák:" -#: src/Content/Conversation.php:1537 src/Object/Post.php:530 +#: src/Content/Conversation.php:1539 src/Object/Post.php:531 msgid "Filed under:" msgstr "Iktatva itt:" -#: src/Content/Conversation.php:1545 src/Object/Post.php:556 +#: src/Content/Conversation.php:1547 src/Object/Post.php:557 #, php-format msgid "%s from %s" msgstr "%s tőle: %s" -#: src/Content/Conversation.php:1561 +#: src/Content/Conversation.php:1563 msgid "View in context" msgstr "Megtekintés környezetben" @@ -1658,7 +1663,7 @@ msgstr "Személyes" msgid "Posts that mention or involve you" msgstr "Bejegyzések, amelyek említik vagy tartalmazzák Önt" -#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:398 msgid "Starred" msgstr "Csillagozott" @@ -1745,7 +1750,7 @@ msgstr "Azon bejegyzések megjelenítése, amelyeket a kiválasztott kör fiókj #: 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:552 src/Model/User.php:1390 +#: src/Content/Widget.php:555 src/Model/User.php:1390 msgid "Groups" msgstr "Csoportok" @@ -1753,7 +1758,7 @@ msgstr "Csoportok" msgid "Display posts that have been distributed by the selected group." msgstr "Azon bejegyzések megjelenítése, amelyeket a kiválasztott csoport terjeszt." -#: src/Content/Feature.php:117 src/Content/Widget.php:521 +#: src/Content/Feature.php:117 src/Content/Widget.php:524 msgid "Archives" msgstr "Archívumok" @@ -1769,8 +1774,8 @@ msgstr "Protokollok" msgid "Display posts with the selected protocols." msgstr "A kiválasztott protokollokkal rendelkező bejegyzések megjelenítése." -#: src/Content/Feature.php:119 src/Content/Widget.php:558 -#: src/Module/Settings/Account.php:429 +#: src/Content/Feature.php:119 src/Content/Widget.php:561 +#: src/Module/Settings/Account.php:391 msgid "Account Types" msgstr "Fióktípusok" @@ -1778,7 +1783,7 @@ msgstr "Fióktípusok" msgid "Display posts done by accounts with the selected account type." msgstr "A kiválasztott fióktípussal rendelkező fiókok által készített bejegyzések megjelenítése." -#: src/Content/Feature.php:120 src/Content/Widget.php:607 +#: 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 msgid "Channels" @@ -1804,7 +1809,7 @@ msgstr "Mentett mappák" msgid "Display a list of folders in which posts are stored." msgstr "Azon mappák listájának megjelenítése, amelyekben bejegyzések vannak tárolva." -#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:189 msgid "Own Contacts" msgstr "Saját partnerek" @@ -1860,12 +1865,12 @@ msgstr "Lehetővé teszi a névtelen látogatók számára a naptára és a nyil msgid "External link to group" msgstr "Külső hivatkozás a csoporthoz" -#: src/Content/GroupManager.php:139 src/Content/Widget.php:527 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:530 msgid "show less" msgstr "kevesebb megjelenítése" #: src/Content/GroupManager.php:140 src/Content/Widget.php:425 -#: src/Content/Widget.php:528 +#: src/Content/Widget.php:531 msgid "show more" msgstr "több megjelenítése" @@ -1873,66 +1878,66 @@ msgstr "több megjelenítése" msgid "Create new group" msgstr "Új csoport létrehozása" -#: src/Content/Item.php:317 src/Model/Item.php:3273 +#: src/Content/Item.php:322 src/Model/Item.php:3281 msgid "event" msgstr "esemény" -#: src/Content/Item.php:320 src/Content/Item.php:330 +#: src/Content/Item.php:325 src/Content/Item.php:335 msgid "status" msgstr "állapot" -#: src/Content/Item.php:326 src/Model/Item.php:3275 +#: src/Content/Item.php:331 src/Model/Item.php:3283 #: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "fénykép" -#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 +#: src/Content/Item.php:345 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s megjelölte %2$s %3$s vele: %4$s" -#: src/Content/Item.php:414 view/theme/frio/theme.php:253 +#: src/Content/Item.php:419 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Szál követése" -#: src/Content/Item.php:415 src/Model/Contact.php:1244 +#: src/Content/Item.php:420 src/Model/Contact.php:1245 msgid "View Status" msgstr "Állapot megtekintése" -#: 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/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 msgid "View Profile" msgstr "Profil megtekintése" -#: src/Content/Item.php:417 src/Model/Contact.php:1246 +#: src/Content/Item.php:422 src/Model/Contact.php:1247 msgid "View Photos" msgstr "Fényképek megtekintése" -#: src/Content/Item.php:418 src/Model/Contact.php:1213 +#: src/Content/Item.php:423 src/Model/Contact.php:1214 #: src/Model/Profile.php:446 msgid "Network Posts" msgstr "Hálózati bejegyzések" -#: src/Content/Item.php:419 src/Model/Contact.php:1237 -#: src/Model/Contact.php:1248 +#: src/Content/Item.php:424 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1249 msgid "View Contact" msgstr "Partner megtekintése" -#: src/Content/Item.php:420 src/Model/Contact.php:1249 +#: src/Content/Item.php:425 src/Model/Contact.php:1250 msgid "Send PM" msgstr "Személyes üzenet küldése" -#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Content/Item.php:426 src/Module/Contact.php:449 #: src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:104 -#: src/Module/Moderation/Users/Active.php:123 -#: src/Module/Moderation/Users/Index.php:138 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Index.php:141 msgid "Block" msgstr "Tiltás" -#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Content/Item.php:427 src/Module/Contact.php:450 #: src/Module/Contact/Profile.php:532 #: src/Module/Notifications/Introductions.php:126 #: src/Module/Notifications/Introductions.php:199 @@ -1940,27 +1945,27 @@ msgstr "Tiltás" msgid "Ignore" msgstr "Mellőzés" -#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Content/Item.php:428 src/Module/Contact.php:451 #: src/Module/Contact/Profile.php:540 msgid "Collapse" msgstr "Összecsukás" -#: src/Content/Item.php:424 src/Object/Post.php:288 +#: src/Content/Item.php:429 src/Object/Post.php:289 #, php-format msgid "Ignore %s server" msgstr "A(z) %s kiszolgáló mellőzése" -#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 -#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 +#: src/Content/Item.php:433 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:503 msgid "Languages" msgstr "Nyelvek" -#: src/Content/Item.php:431 src/Object/Post.php:582 +#: src/Content/Item.php:436 src/Object/Post.php:583 msgid "Search Text" msgstr "Szöveg keresése" -#: src/Content/Item.php:436 src/Content/Widget.php:66 -#: src/Model/Contact.php:1238 src/Model/Contact.php:1250 +#: src/Content/Item.php:441 src/Content/Widget.php:66 +#: src/Model/Contact.php:1239 src/Model/Contact.php:1251 #: src/Module/Contact/Follow.php:152 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Kapcsolódás vagy követés" @@ -1973,7 +1978,7 @@ msgstr "Nem lehet lekérni a felhasználót." msgid "Nothing new here" msgstr "Semmi új nincs itt" -#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:64 msgid "Go back" msgstr "Vissza" @@ -2187,7 +2192,7 @@ msgstr "Értesítések" msgid "See all notifications" msgstr "Összes értesítés megtekintése" -#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:226 msgid "Mark as seen" msgstr "Megjelölés olvasottként" @@ -2215,8 +2220,8 @@ msgstr "Fiókok" msgid "Manage other pages" msgstr "Más oldalak kezelése" -#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 -#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:170 +#: 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/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Beállítások" @@ -2244,10 +2249,10 @@ msgstr "Oldal beállítása és konfigurálás" #: src/Module/Moderation/Blocklist/Server/Index.php:84 #: 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:119 -#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 #: src/Module/Moderation/Users/Deleted.php:66 -#: src/Module/Moderation/Users/Index.php:133 +#: src/Module/Moderation/Users/Index.php:136 msgid "Moderation" msgstr "Moderálás" @@ -2279,33 +2284,33 @@ msgstr "következő" msgid "last" msgstr "utolsó" -#: src/Content/Text/BBCode.php:908 +#: src/Content/Text/BBCode.php:903 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:931 src/Model/Item.php:4069 -#: src/Model/Item.php:4075 src/Model/Item.php:4076 +#: src/Content/Text/BBCode.php:926 src/Model/Item.php:4080 +#: src/Model/Item.php:4086 src/Model/Item.php:4087 msgid "Link to source" msgstr "Hivatkozás a forráshoz" -#: src/Content/Text/BBCode.php:1745 src/Content/Text/HTML.php:892 +#: src/Content/Text/BBCode.php:1740 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Kattintson a megnyitáshoz vagy bezáráshoz" -#: src/Content/Text/BBCode.php:1800 +#: src/Content/Text/BBCode.php:1795 msgid "$1 wrote:" msgstr "$1 írta:" -#: src/Content/Text/BBCode.php:1874 src/Content/Text/BBCode.php:1875 +#: src/Content/Text/BBCode.php:1869 src/Content/Text/BBCode.php:1870 msgid "Encrypted content" msgstr "Titkosított tartalom" -#: src/Content/Text/BBCode.php:2208 +#: src/Content/Text/BBCode.php:2203 msgid "Invalid source protocol" msgstr "Érvénytelen forrásprotokoll" -#: src/Content/Text/BBCode.php:2227 +#: src/Content/Text/BBCode.php:2222 msgid "Invalid link protocol" msgstr "Érvénytelen hivatkozási protokoll" @@ -2358,7 +2363,7 @@ msgid "Examples: Robert Morgenstein, Fishing" msgstr "Példák: Szabó János, Halászat" #: src/Content/Widget.php:68 src/Module/Contact.php:441 -#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 +#: src/Module/Directory.php:82 view/theme/vier/theme.php:185 msgid "Find" msgstr "Keresés" @@ -2379,7 +2384,7 @@ msgstr "Véletlen profil" msgid "Invite Friends" msgstr "Ismerősök meghívása" -#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: src/Content/Widget.php:73 src/Module/Directory.php:74 #: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Globális könyvtár" @@ -2400,7 +2405,7 @@ msgstr "Nincs kapcsolat" msgid "Relationships" msgstr "Kapcsolatok" -#: src/Content/Widget.php:264 src/Module/Circle.php:280 +#: src/Content/Widget.php:264 src/Module/Circle.php:281 #: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Összes partner" @@ -2424,27 +2429,27 @@ msgid_plural "%d contacts in common" msgstr[0] "%d partner közös" msgstr[1] "%d partner közös" -#: src/Content/Widget.php:529 +#: src/Content/Widget.php:532 msgid "On this date" msgstr "Ezen a napon" -#: src/Content/Widget.php:549 +#: src/Content/Widget.php:552 msgid "Persons" msgstr "Személyek" -#: src/Content/Widget.php:550 +#: src/Content/Widget.php:553 msgid "Organisations" msgstr "Szervezetek" -#: src/Content/Widget.php:551 src/Model/Contact.php:1750 +#: src/Content/Widget.php:554 src/Model/Contact.php:1751 msgid "News" msgstr "Hírek" -#: src/Content/Widget.php:553 +#: src/Content/Widget.php:556 msgid "Relays" msgstr "Továbbítók" -#: src/Content/Widget.php:560 src/Module/Moderation/BaseUsers.php:58 +#: src/Content/Widget.php:563 src/Module/Moderation/BaseUsers.php:58 msgid "All" msgstr "Összes" @@ -2490,12 +2495,12 @@ msgstr[1] "Népszerű címkék (legutóbbi %d óra)" msgid "More Trending Tags" msgstr "További népszerű címkék" -#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1207 +#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1208 #: src/Model/Profile.php:440 msgid "Post to group" msgstr "Beküldés csoportba" -#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1211 +#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1212 #: src/Model/Profile.php:444 src/Module/Moderation/Item/Source.php:80 msgid "Mention" msgstr "Említés" @@ -2510,10 +2515,10 @@ msgstr "XMPP:" msgid "Matrix:" msgstr "Mátrix:" -#: src/Content/Widget/VCard.php:112 src/Model/Event.php:68 -#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: 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:134 src/Module/Notifications/Introductions.php:180 +#: src/Module/Directory.php:133 src/Module/Notifications/Introductions.php:180 #: src/Module/Profile/Profile.php:212 msgid "Location:" msgstr "Hely:" @@ -2523,75 +2528,75 @@ msgstr "Hely:" msgid "Network:" msgstr "Hálózat:" -#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1239 -#: src/Model/Contact.php:1251 src/Model/Profile.php:457 +#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1252 src/Model/Profile.php:457 #: src/Module/Contact/Profile.php:476 msgid "Unfollow" msgstr "Követés megszüntetése" -#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1209 +#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1210 #: src/Model/Profile.php:442 msgid "View group" msgstr "Csoport megtekintése" -#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:260 +#: src/Core/ACL.php:153 src/Module/Profile/Profile.php:260 msgid "Yourself" msgstr "Önmaga" -#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Core/ACL.php:189 src/Module/Privacy/PermissionTooltip.php:156 #: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "Kölcsönösen ismerősök" -#: src/Core/ACL.php:280 +#: src/Core/ACL.php:281 msgid "Post to Email" msgstr "Beküldés e-mailbe" -#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Core/ACL.php:308 src/Module/Privacy/PermissionTooltip.php:103 #: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "Nyilvános" -#: src/Core/ACL.php:308 +#: src/Core/ACL.php:309 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 "Ez a tartalom meg fog jelenni az összes követőjének, és látható lesz a közösségi oldalakon, valamint bárki számára a hivatkozásával." -#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 +#: src/Core/ACL.php:310 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "Korlátozott vagy személyes" -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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 "Ez a tartalom csak az első mezőben lévő embereknek fog megjelenni, kivéve a második mezőben említett embereknek. Nem jelenik meg sehol sem nyilvánosan." -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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 "Kezdje el gépelni egy partner vagy kör nevét egy szűrt lista megjelenítéséhez. Megemlítheti a „Követők” és a „Kölcsönösen ismerősök” különleges köröket is." -#: src/Core/ACL.php:311 +#: src/Core/ACL.php:312 msgid "Show to:" msgstr "Megjelenítés nekik:" -#: src/Core/ACL.php:312 +#: src/Core/ACL.php:313 msgid "Except to:" msgstr "Kivéve nekik:" -#: src/Core/ACL.php:313 src/Module/Post/Edit.php:145 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:145 msgid "CC: email addresses" msgstr "Másolat: e-mail-címek" -#: src/Core/ACL.php:314 src/Module/Post/Edit.php:151 +#: src/Core/ACL.php:315 src/Module/Post/Edit.php:151 msgid "Example: bob@example.com, mary@example.com" msgstr "Példa: bob@example.com, mary@example.com" -#: src/Core/ACL.php:315 +#: src/Core/ACL.php:316 msgid "Connectors" msgstr "Összekötők" @@ -2926,176 +2931,176 @@ msgstr "Az adatbázis már használatban van." msgid "Could not connect to database." msgstr "Nem sikerült kapcsolódni az adatbázishoz." -#: src/Core/L10n.php:430 src/Model/Item.php:2316 +#: src/Core/L10n.php:426 src/Model/Item.php:2324 msgid "Undetermined" msgstr "Nem meghatározott" -#: src/Core/L10n.php:437 +#: src/Core/L10n.php:433 #, php-format msgid "%s (%s)" msgstr "%s (%s)" -#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Core/L10n.php:481 src/Model/Event.php:418 #: src/Module/Settings/Display.php:292 msgid "Monday" msgstr "Hétfő" -#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Core/L10n.php:481 src/Model/Event.php:419 #: src/Module/Settings/Display.php:293 msgid "Tuesday" msgstr "Kedd" -#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Core/L10n.php:481 src/Model/Event.php:420 #: src/Module/Settings/Display.php:294 msgid "Wednesday" msgstr "Szerda" -#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Core/L10n.php:481 src/Model/Event.php:421 #: src/Module/Settings/Display.php:295 msgid "Thursday" msgstr "Csütörtök" -#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Core/L10n.php:481 src/Model/Event.php:422 #: src/Module/Settings/Display.php:296 msgid "Friday" msgstr "Péntek" -#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Core/L10n.php:481 src/Model/Event.php:423 #: src/Module/Settings/Display.php:297 msgid "Saturday" msgstr "Szombat" -#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Core/L10n.php:481 src/Model/Event.php:417 #: src/Module/Settings/Display.php:291 msgid "Sunday" msgstr "Vasárnap" -#: src/Core/L10n.php:489 src/Model/Event.php:436 +#: src/Core/L10n.php:485 src/Model/Event.php:438 msgid "January" msgstr "Január" -#: src/Core/L10n.php:489 src/Model/Event.php:437 +#: src/Core/L10n.php:485 src/Model/Event.php:439 msgid "February" msgstr "Február" -#: src/Core/L10n.php:489 src/Model/Event.php:438 +#: src/Core/L10n.php:485 src/Model/Event.php:440 msgid "March" msgstr "Március" -#: src/Core/L10n.php:489 src/Model/Event.php:439 +#: src/Core/L10n.php:485 src/Model/Event.php:441 msgid "April" msgstr "Április" -#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 +#: src/Core/L10n.php:485 src/Core/L10n.php:504 src/Model/Event.php:429 msgid "May" msgstr "Május" -#: src/Core/L10n.php:489 src/Model/Event.php:440 +#: src/Core/L10n.php:485 src/Model/Event.php:442 msgid "June" msgstr "Június" -#: src/Core/L10n.php:489 src/Model/Event.php:441 +#: src/Core/L10n.php:485 src/Model/Event.php:443 msgid "July" msgstr "Július" -#: src/Core/L10n.php:489 src/Model/Event.php:442 +#: src/Core/L10n.php:485 src/Model/Event.php:444 msgid "August" msgstr "Augusztus" -#: src/Core/L10n.php:489 src/Model/Event.php:443 +#: src/Core/L10n.php:485 src/Model/Event.php:445 msgid "September" msgstr "Szeptember" -#: src/Core/L10n.php:489 src/Model/Event.php:444 +#: src/Core/L10n.php:485 src/Model/Event.php:446 msgid "October" msgstr "Október" -#: src/Core/L10n.php:489 src/Model/Event.php:445 +#: src/Core/L10n.php:485 src/Model/Event.php:447 msgid "November" msgstr "November" -#: src/Core/L10n.php:489 src/Model/Event.php:446 +#: src/Core/L10n.php:485 src/Model/Event.php:448 msgid "December" msgstr "December" -#: src/Core/L10n.php:504 src/Model/Event.php:408 +#: src/Core/L10n.php:500 src/Model/Event.php:410 msgid "Mon" msgstr "Hét" -#: src/Core/L10n.php:504 src/Model/Event.php:409 +#: src/Core/L10n.php:500 src/Model/Event.php:411 msgid "Tue" msgstr "Ked" -#: src/Core/L10n.php:504 src/Model/Event.php:410 +#: src/Core/L10n.php:500 src/Model/Event.php:412 msgid "Wed" msgstr "Sze" -#: src/Core/L10n.php:504 src/Model/Event.php:411 +#: src/Core/L10n.php:500 src/Model/Event.php:413 msgid "Thu" msgstr "Csü" -#: src/Core/L10n.php:504 src/Model/Event.php:412 +#: src/Core/L10n.php:500 src/Model/Event.php:414 msgid "Fri" msgstr "Pén" -#: src/Core/L10n.php:504 src/Model/Event.php:413 +#: src/Core/L10n.php:500 src/Model/Event.php:415 msgid "Sat" msgstr "Szo" -#: src/Core/L10n.php:504 src/Model/Event.php:407 +#: src/Core/L10n.php:500 src/Model/Event.php:409 msgid "Sun" msgstr "Vas" -#: src/Core/L10n.php:508 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:425 msgid "Jan" msgstr "Jan" -#: src/Core/L10n.php:508 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:426 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:508 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:427 msgid "Mar" msgstr "Már" -#: src/Core/L10n.php:508 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:428 msgid "Apr" msgstr "Ápr" -#: src/Core/L10n.php:508 src/Model/Event.php:428 +#: src/Core/L10n.php:504 src/Model/Event.php:430 msgid "Jun" msgstr "Jún" -#: src/Core/L10n.php:508 src/Model/Event.php:429 +#: src/Core/L10n.php:504 src/Model/Event.php:431 msgid "Jul" msgstr "Júl" -#: src/Core/L10n.php:508 src/Model/Event.php:430 +#: src/Core/L10n.php:504 src/Model/Event.php:432 msgid "Aug" msgstr "Aug" -#: src/Core/L10n.php:508 +#: src/Core/L10n.php:504 msgid "Sep" msgstr "Sze" -#: src/Core/L10n.php:508 src/Model/Event.php:432 +#: src/Core/L10n.php:504 src/Model/Event.php:434 msgid "Oct" msgstr "Okt" -#: src/Core/L10n.php:508 src/Model/Event.php:433 +#: src/Core/L10n.php:504 src/Model/Event.php:435 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:508 src/Model/Event.php:434 +#: src/Core/L10n.php:504 src/Model/Event.php:436 msgid "Dec" msgstr "Dec" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:44 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "A(z) „%s” naplófájl nem használható. Nem lehetséges a naplózás (hiba: „%s”)." -#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:67 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" @@ -3287,7 +3292,7 @@ msgstr "hozzáadás" msgid "Edit circle" msgstr "Kör szerkesztése" -#: src/Model/Circle.php:592 src/Module/Circle.php:181 +#: src/Model/Circle.php:592 src/Module/Circle.php:185 msgid "Contacts not in any circle" msgstr "Egyetlen körben sem lévő partnerek" @@ -3295,8 +3300,8 @@ msgstr "Egyetlen körben sem lévő partnerek" msgid "Create a new circle" msgstr "Új kör létrehozása" -#: src/Model/Circle.php:595 src/Module/Circle.php:166 -#: src/Module/Circle.php:189 src/Module/Circle.php:264 +#: src/Model/Circle.php:595 src/Module/Circle.php:168 +#: src/Module/Circle.php:190 src/Module/Circle.php:265 msgid "Circle Name: " msgstr "Kör neve: " @@ -3304,280 +3309,280 @@ msgstr "Kör neve: " msgid "Edit circles" msgstr "Körök szerkesztése" -#: src/Model/Contact.php:1258 src/Module/Moderation/Users/Pending.php:88 +#: src/Model/Contact.php:1259 src/Module/Moderation/Users/Pending.php:88 #: src/Module/Notifications/Introductions.php:124 #: src/Module/Notifications/Introductions.php:197 msgid "Approve" msgstr "Jóváhagyás" -#: src/Model/Contact.php:1594 src/Model/Contact.php:1666 +#: src/Model/Contact.php:1595 src/Model/Contact.php:1667 #: src/Module/Contact/Profile.php:360 #, php-format msgid "%s has blocked you" msgstr "%s letiltotta Önt" -#: src/Model/Contact.php:1746 +#: src/Model/Contact.php:1747 msgid "Organisation" msgstr "Szervezet" -#: src/Model/Contact.php:1754 +#: src/Model/Contact.php:1755 msgid "Group" msgstr "Csoport" -#: src/Model/Contact.php:1758 src/Module/Moderation/BaseUsers.php:122 +#: src/Model/Contact.php:1759 src/Module/Moderation/BaseUsers.php:122 msgid "Relay" msgstr "Továbbítás" -#: src/Model/Contact.php:3073 +#: src/Model/Contact.php:3085 msgid "Disallowed profile URL." msgstr "Nem engedélyezett profil URL." -#: src/Model/Contact.php:3078 src/Module/Friendica.php:88 +#: src/Model/Contact.php:3090 src/Module/Friendica.php:88 msgid "Blocked domain" msgstr "Tiltott tartomány" -#: src/Model/Contact.php:3083 +#: src/Model/Contact.php:3095 msgid "Connect URL missing." msgstr "A kapcsolódási URL hiányzik." -#: src/Model/Contact.php:3092 +#: src/Model/Contact.php:3104 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "A partnert nem sikerült hozzáadni. Ellenőrizze a hozzá tartozó hálózat hitelesítési adatait a Beállítások → Közösségi hálózatok oldalon." -#: src/Model/Contact.php:3110 +#: src/Model/Contact.php:3122 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "A várt %s hálózat nem egyezik a tényleges %s hálózattal" -#: src/Model/Contact.php:3127 +#: src/Model/Contact.php:3139 msgid "This seems to be a relay account. They can't be followed by users." msgstr "Úgy tűnik, hogy ez egy továbbító fiók. Ezeket nem követhetik a felhasználók." -#: src/Model/Contact.php:3134 +#: src/Model/Contact.php:3146 msgid "The profile address specified does not provide adequate information." msgstr "A megadott profilcím nem biztosít elegendő információt." -#: src/Model/Contact.php:3136 +#: src/Model/Contact.php:3148 msgid "No compatible communication protocols or feeds were discovered." msgstr "Nem lettek megfelelő kommunikációs protokollok vagy hírforrások felfedezve." -#: src/Model/Contact.php:3139 +#: src/Model/Contact.php:3151 msgid "An author or name was not found." msgstr "Egy szerző vagy név nem található." -#: src/Model/Contact.php:3142 +#: src/Model/Contact.php:3154 msgid "No browser URL could be matched to this address." msgstr "Egyetlen böngésző URL-t sem sikerült illeszteni ehhez a címhez." -#: src/Model/Contact.php:3145 +#: src/Model/Contact.php:3157 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Nem lehet illeszteni @-stílusú személyazonosság-címet egy ismert protokollal vagy e-mailes partnerrel." -#: src/Model/Contact.php:3146 +#: src/Model/Contact.php:3158 msgid "Use mailto: in front of address to force email check." msgstr "Használja a mailto: előtagot a cím előtt az e-mail-ellenőrzés kényszerítéséhez." -#: src/Model/Contact.php:3152 +#: src/Model/Contact.php:3164 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Korlátozott profil. Ez a személy nem lesz képes közvetlen vagy személyes értesítéseket fogadni Öntől." -#: src/Model/Contact.php:3211 +#: src/Model/Contact.php:3223 msgid "Unable to retrieve contact information." msgstr "Nem lehet lekérni a partner információit." -#: src/Model/Event.php:40 +#: src/Model/Event.php:42 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "Y. F j., l, H:i \\G\\M\\TP (e)" -#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 -#: src/Model/Event.php:928 +#: src/Model/Event.php:63 src/Model/Event.php:80 src/Model/Event.php:457 +#: src/Model/Event.php:929 msgid "Starts:" msgstr "Kezdődik:" -#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 -#: src/Model/Event.php:932 +#: src/Model/Event.php:66 src/Model/Event.php:86 src/Model/Event.php:458 +#: src/Model/Event.php:933 msgid "Finishes:" msgstr "Befejeződik:" -#: src/Model/Event.php:405 +#: src/Model/Event.php:407 msgid "all-day" msgstr "egész nap" -#: src/Model/Event.php:431 +#: src/Model/Event.php:433 msgid "Sept" msgstr "Szept" -#: src/Model/Event.php:448 src/Module/Calendar/Show.php:117 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:117 #: src/Util/Temporal.php:329 msgid "today" msgstr "ma" -#: src/Model/Event.php:449 src/Module/Calendar/Show.php:118 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:118 #: src/Module/Settings/Display.php:302 src/Util/Temporal.php:339 msgid "month" msgstr "hónap" -#: src/Model/Event.php:450 src/Module/Calendar/Show.php:119 +#: src/Model/Event.php:452 src/Module/Calendar/Show.php:119 #: src/Module/Settings/Display.php:303 src/Util/Temporal.php:340 msgid "week" msgstr "hét" -#: src/Model/Event.php:451 src/Module/Calendar/Show.php:120 +#: src/Model/Event.php:453 src/Module/Calendar/Show.php:120 #: src/Module/Settings/Display.php:304 src/Util/Temporal.php:341 msgid "day" msgstr "nap" -#: src/Model/Event.php:453 +#: src/Model/Event.php:455 msgid "No events to display" msgstr "Nincsenek megjelenítendő események" -#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Model/Event.php:504 src/Module/Feed.php:56 #: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "A profilhoz való hozzáférés korlátozva lett." -#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:52 +#: src/Model/Event.php:545 src/Module/Calendar/Event/Show.php:52 msgid "Event not found." msgstr "Az esemény nem található." -#: src/Model/Event.php:623 +#: src/Model/Event.php:624 msgid "l, F j" msgstr "F j., l" -#: src/Model/Event.php:650 +#: src/Model/Event.php:651 msgid "Edit event" msgstr "Esemény szerkesztése" -#: src/Model/Event.php:651 +#: src/Model/Event.php:652 msgid "Duplicate event" msgstr "Esemény kettőzése" -#: src/Model/Event.php:652 +#: src/Model/Event.php:653 msgid "Delete event" msgstr "Esemény törlése" -#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 +#: src/Model/Event.php:883 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "Y. F j., l, H:i" -#: src/Model/Event.php:883 +#: src/Model/Event.php:884 msgid "D g:i A" msgstr "D H:i" -#: src/Model/Event.php:884 +#: src/Model/Event.php:885 msgid "g:i A" msgstr "H:i" -#: src/Model/Event.php:947 src/Model/Event.php:949 +#: src/Model/Event.php:948 src/Model/Event.php:950 msgid "Show map" msgstr "Térkép megjelenítése" -#: src/Model/Event.php:948 +#: src/Model/Event.php:949 msgid "Hide map" msgstr "Térkép elrejtése" -#: src/Model/Event.php:1041 +#: src/Model/Event.php:1042 #, php-format msgid "%s's birthday" msgstr "%s születésnapja" -#: src/Model/Event.php:1042 +#: src/Model/Event.php:1043 #, php-format msgid "Happy Birthday %s" msgstr "Boldog születésnapot, %s" -#: src/Model/Item.php:2323 +#: src/Model/Item.php:2331 #, php-format msgid "%s (%s - %s): %s" msgstr "%s (%s – %s): %s" -#: src/Model/Item.php:2325 +#: src/Model/Item.php:2333 #, php-format msgid "%s (%s): %s" msgstr "%s (%s): %s" -#: src/Model/Item.php:2328 +#: src/Model/Item.php:2336 #, php-format msgid "" "Detected languages in this post:\n" "%s" msgstr "A bejegyzésben felismert nyelvek:\n%s" -#: src/Model/Item.php:3277 +#: src/Model/Item.php:3285 msgid "activity" msgstr "tevékenység" -#: src/Model/Item.php:3279 +#: src/Model/Item.php:3287 msgid "comment" msgstr "hozzászólás" -#: src/Model/Item.php:3282 src/Module/Post/Tag/Add.php:109 +#: src/Model/Item.php:3290 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "bejegyzés" -#: src/Model/Item.php:3452 +#: src/Model/Item.php:3463 #, php-format msgid "%s is blocked" msgstr "%s tiltva van" -#: src/Model/Item.php:3454 +#: src/Model/Item.php:3465 #, php-format msgid "%s is ignored" msgstr "%s mellőzve van" -#: src/Model/Item.php:3456 +#: src/Model/Item.php:3467 #, php-format msgid "Content from %s is collapsed" msgstr "A(z) %s helyről származó tartalom összecsukva" -#: src/Model/Item.php:3460 +#: src/Model/Item.php:3471 msgid "Sensitive content" msgstr "Érzékeny tartalom" -#: src/Model/Item.php:3969 +#: src/Model/Item.php:3980 msgid "bytes" msgstr "bájt" -#: src/Model/Item.php:4000 +#: src/Model/Item.php:4011 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" msgstr[0] "%2$s (%3$d%%, %1$d szavazat)" msgstr[1] "%2$s (%3$d%%, %1$d szavazat)" -#: src/Model/Item.php:4002 +#: src/Model/Item.php:4013 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "%2$s (%1$d szavazat)" msgstr[1] "%2$s (%1$d szavazat)" -#: src/Model/Item.php:4007 +#: src/Model/Item.php:4018 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "%d szavazó. A szavazás vége: %s" msgstr[1] "%d szavazó. A szavazás vége: %s" -#: src/Model/Item.php:4009 +#: src/Model/Item.php:4020 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "%d szavazó." msgstr[1] "%d szavazó." -#: src/Model/Item.php:4011 +#: src/Model/Item.php:4022 #, php-format msgid "Poll end: %s" msgstr "Szavazás vége: %s" -#: src/Model/Item.php:4052 src/Model/Item.php:4053 +#: src/Model/Item.php:4063 src/Model/Item.php:4064 msgid "View on separate page" msgstr "Megtekintés külön oldalon" @@ -3585,7 +3590,7 @@ msgstr "Megtekintés külön oldalon" msgid "[no subject]" msgstr "[nincs tárgy]" -#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 +#: src/Model/Photo.php:1192 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Falfényképek" @@ -3598,7 +3603,7 @@ msgstr "Profil szerkesztése" msgid "Change profile photo" msgstr "Profilfénykép megváltoztatása" -#: src/Model/Profile.php:357 src/Module/Directory.php:139 +#: src/Model/Profile.php:357 src/Module/Directory.php:138 #: src/Module/Profile/Profile.php:200 msgid "Homepage:" msgstr "Honlap:" @@ -3688,7 +3693,7 @@ msgstr "Nem kedvelések:" msgid "Title/Description:" msgstr "Cím vagy leírás:" -#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:176 +#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:174 #: src/Module/Moderation/Report/Create.php:266 #: src/Module/Moderation/Summary.php:65 msgid "Summary" @@ -3739,59 +3744,59 @@ msgstr "Felelős fiók: %s" msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "SÚLYOS HIBA: a biztonsági kulcsok előállítása nem sikerült." -#: src/Model/User.php:740 src/Model/User.php:773 +#: src/Model/User.php:739 src/Model/User.php:772 msgid "Login failed" msgstr "Bejelentkezés sikertelen" -#: src/Model/User.php:805 +#: src/Model/User.php:804 msgid "Not enough information to authenticate" msgstr "Nincs elegendő információ a hitelesítéshez" -#: src/Model/User.php:930 +#: src/Model/User.php:929 msgid "Password can't be empty" msgstr "A jelszó nem lehet üres" -#: src/Model/User.php:972 +#: src/Model/User.php:971 msgid "Empty passwords are not allowed." msgstr "Az üres jelszavak nem megengedettek." -#: src/Model/User.php:976 +#: src/Model/User.php:975 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Az új jelszót közzétették egy nyilvános adattárban. Válasszon egy másikat." -#: src/Model/User.php:980 +#: src/Model/User.php:979 msgid "The password length is limited to 72 characters." msgstr "A jelszó hossza 72 karakterre van korlátozva." -#: src/Model/User.php:984 +#: src/Model/User.php:983 msgid "The password can't contain white spaces nor accentuated letters" msgstr "A jelszó nem tartalmazhat üres karaktereket vagy ékezetes betűket" -#: src/Model/User.php:1193 +#: src/Model/User.php:1192 msgid "Passwords do not match. Password unchanged." msgstr "A jelszavak nem egyeznek. A jelszó változatlan maradt." -#: src/Model/User.php:1200 +#: src/Model/User.php:1199 msgid "An invitation is required." msgstr "Egy meghívás szükséges." -#: src/Model/User.php:1204 +#: src/Model/User.php:1203 msgid "Invitation could not be verified." msgstr "A meghívást nem sikerült ellenőrizni." -#: src/Model/User.php:1212 +#: src/Model/User.php:1211 msgid "Invalid OpenID url" msgstr "Érvénytelen OpenID URL" -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Problémába ütköztünk a megadott OpenID-val történő bejelentkezés közben. Ellenőrizze az azonosító helyesírását." -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "The error message was:" msgstr "A hibaüzenet ez volt:" @@ -3982,57 +3987,57 @@ msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "A meghatalmazásokkal rendelkező felhasználót nem lehet eltávolítani, először távolítsa el a meghatalmazott felhasználókat" -#: src/Module/Admin/Addons/Details.php:51 +#: src/Module/Admin/Addons/Details.php:49 msgid "Addon not found." msgstr "A bővítmény nem található." -#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 +#: src/Module/Admin/Addons/Details.php:60 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "A(z) „%s” bővítmény letiltva." -#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 +#: src/Module/Admin/Addons/Details.php:63 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "A(z) „%s” bővítmény engedélyezve." -#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Addons/Details.php:72 #: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "Letiltás" -#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Addons/Details.php:75 #: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351 msgid "Enable" msgstr "Engedélyezés" -#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Addons/Details.php:95 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:175 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Summary.php:173 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 "Adminisztráció" -#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/Admin/Addons/Details.php:96 src/Module/Admin/Addons/Index.php:60 #: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:127 msgid "Addons" msgstr "Bővítmények" -#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Addons/Details.php:97 #: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Átváltás" -#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Addons/Details.php:104 #: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Szerző: " -#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Addons/Details.php:105 #: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Karbantartó: " @@ -4049,9 +4054,10 @@ msgstr "A(z) „%s” bővítmény telepítése sikertelen." #: 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:545 src/Module/Settings/Addons.php:64 -#: src/Module/Settings/Connectors.php:149 -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Account.php:507 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/Features.php:61 msgid "Save Settings" @@ -4068,62 +4074,62 @@ msgid "" "official addon repository at %1$s." msgstr "Jelenleg nem érhetők el bővítmények az Ön csomópontján. A hivatalos bővítménytároló megtalálható a %1$s oldalon." -#: src/Module/Admin/DBSync.php:37 +#: src/Module/Admin/DBSync.php:35 msgid "Update has been marked successful" msgstr "A frissítés sikeresen meg lett jelölve" -#: src/Module/Admin/DBSync.php:45 +#: src/Module/Admin/DBSync.php:43 #, php-format msgid "Database structure update %s was successfully applied." msgstr "A(z) %s adatbázisszerkezet-frissítés sikeresen alkalmazva." -#: src/Module/Admin/DBSync.php:47 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "A(z) %s adatbázisszerkezet-frissítés végrehajtása meghiúsult ezzel a hibával: %s" -#: src/Module/Admin/DBSync.php:62 +#: src/Module/Admin/DBSync.php:60 #, php-format msgid "Executing %s failed with error: %s" msgstr "A(z) %s végrehajtása meghiúsult ezzel a hibával: %s" -#: src/Module/Admin/DBSync.php:64 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Update %s was successfully applied." msgstr "A(z) %s frissítés sikeresen alkalmazva." -#: src/Module/Admin/DBSync.php:67 +#: src/Module/Admin/DBSync.php:65 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "A(z) %s frissítés nem adott vissza állapotot. Nem tudni, hogy sikerült-e." -#: src/Module/Admin/DBSync.php:70 +#: src/Module/Admin/DBSync.php:68 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "Nem volt további frissítési funkció, %s amelyet meg kellett hívni." -#: src/Module/Admin/DBSync.php:91 +#: src/Module/Admin/DBSync.php:89 msgid "No failed updates." msgstr "Nincsenek sikertelen frissítések." -#: src/Module/Admin/DBSync.php:92 +#: src/Module/Admin/DBSync.php:90 msgid "Check database structure" msgstr "Adatbázis-szerkezet ellenőrzése" -#: src/Module/Admin/DBSync.php:96 +#: src/Module/Admin/DBSync.php:94 msgid "Failed Updates" msgstr "Sikertelen frissítések" -#: src/Module/Admin/DBSync.php:97 +#: src/Module/Admin/DBSync.php:95 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Ez nem tartalmazza az 1139 előtti frissítéseket, amelyek nem adtak vissza állapotot." -#: src/Module/Admin/DBSync.php:98 +#: src/Module/Admin/DBSync.php:96 msgid "Mark success (if update was manually applied)" msgstr "Megjelölés sikeresként (ha a frissítés kézzel lett alkalmazva)" -#: src/Module/Admin/DBSync.php:99 +#: src/Module/Admin/DBSync.php:97 msgid "Attempt to execute this update step automatically" msgstr "Próbálja meg automatikusan végrehajtani ezt a frissítési lépést" @@ -5688,12 +5694,12 @@ msgstr "A jelenlegi háttérprogram megváltoztatása tiltva van, mivel azt egy msgid "Database (legacy)" msgstr "Adatbázis (örökölt)" -#: src/Module/Admin/Summary.php:41 +#: src/Module/Admin/Summary.php:39 #, php-format msgid "Template engine (%s) error: %s" msgstr "Sablonmotor (%s) hiba: %s" -#: src/Module/Admin/Summary.php:45 +#: src/Module/Admin/Summary.php:43 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5704,7 +5710,7 @@ msgid "" " an automatic conversion.
" msgstr "Az adatbázisa még mindig MyISAM táblákkal fut. Meg kell változtatnia a motor típusát InnoDB-re. Mivel a Friendica a jövőben olyan funkciókat fog használni, amely csak InnoDB használatával érhető el, ezért meg kell változtatnia! Nézze meg ezt az útmutatót, amely hasznos lehet a táblamotorok átalakításához. Használhatja a Friendica telepítésének php bin/console.php dbstructure toinnodb parancsát is az automatikus átalakításhoz.
" -#: src/Module/Admin/Summary.php:50 +#: src/Module/Admin/Summary.php:48 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5715,7 +5721,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "Az adatbázisa még mindig Antelope fájlformátumban lévő InnoDB táblákkal fut. Meg kell változtatnia a fájlformátumot Barracudára. A Friendica olyan funkciókat használ, amelyeket az Antelope fájlformátum nem biztosít. Nézze meg ezt az útmutatót, amely hasznos lehet a táblamotorok átalakításához. Használhatja a Friendica telepítésének php bin/console.php dbstructure toinnodb parancsát is az automatikus átalakításhoz.
" -#: src/Module/Admin/Summary.php:60 +#: src/Module/Admin/Summary.php:58 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5723,46 +5729,46 @@ msgid "" " to %d. See here for more information.
" msgstr "A table_definition_cache értéke túl alacsony (%d). Ez a „Prepared statement needs to be re-prepared” adatbázishibához vezethet. Állítsa legalább %d értékre. További információkért nézze meg ezt.
" -#: src/Module/Admin/Summary.php:68 +#: src/Module/Admin/Summary.php:66 #, 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 "Elérhető a Friendica új verziója a letöltéshez. A jelenlegi verziója %1$s, a távoli verzió %2$s." -#: src/Module/Admin/Summary.php:76 +#: src/Module/Admin/Summary.php:74 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 "Az adatbázis frissítése sikertelen. Futtassa a „php bin/console.php dbstructure update” parancsot a parancssorból, és nézze meg a hibákat, amelyek esetleg megjelennek." -#: src/Module/Admin/Summary.php:80 +#: src/Module/Admin/Summary.php:78 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 "A legutóbbi frissítés sikertelen. Futtassa a „php bin/console.php dbstructure update” parancsot a parancssorból, és nézze meg a hibákat, amelyek esetleg megjelennek (néhány hiba valószínűleg a naplófájlban lesz)." -#: src/Module/Admin/Summary.php:84 +#: src/Module/Admin/Summary.php:82 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 "A system.url bejegyzés hiányzik. Ez egy alacsony szintű beállítás, és váratlan viselkedéshez vezethet. Adjon meg egy érvényes bejegyzést a lehető leghamarabb a beállítófájlban vagy konzolparancsonként!" -#: src/Module/Admin/Summary.php:89 +#: src/Module/Admin/Summary.php:87 msgid "The worker was never executed. Please check your database structure!" msgstr "A feldolgozó sosem lett végrehajtva. Ellenőrizze az adatbázis szerkezetét!" -#: src/Module/Admin/Summary.php:91 +#: src/Module/Admin/Summary.php:89 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "Az utolsó feldolgozó-végrehajtás ideje %s volt (UTC szerint). Ez régebbi mint egy óra. Ellenőrizze a cron-feladat beállításait." -#: src/Module/Admin/Summary.php:96 +#: src/Module/Admin/Summary.php:94 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5771,7 +5777,7 @@ msgid "" "help with the transition." msgstr "A Friendica beállításai most a „config/local.config.php” fájlban vannak eltárolva. Másolja le a „config/local-sample.config.php” fájlt, és helyezze át a beállításokat a .htconfig.php fájlból. Az átvitelhez való segítségért nézze meg a beállítások súgóoldalát." -#: src/Module/Admin/Summary.php:100 +#: src/Module/Admin/Summary.php:98 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5780,7 +5786,7 @@ msgid "" "page for help with the transition." msgstr "A Friendica beállításai most a „config/local.config.php” fájlban vannak eltárolva. Másolja le a „config/local-sample.config.php” fájlt, és helyezze át a beállításokat a config/local.ini.php fájlból. Az átvitelhez való segítségért nézze meg a beállítások súgóoldalát." -#: src/Module/Admin/Summary.php:106 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5788,40 +5794,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "A %s nem érhető el a rendszeréről. Ez súlyos beállítási probléma, amely megakadályozza a kiszolgálók közti kommunikációt. Nézze meg a telepítési oldalt a segítségért." -#: src/Module/Admin/Summary.php:130 +#: src/Module/Admin/Summary.php:128 #, 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 "A Friendica „system.basepath” beállítása frissítve lett „%s” értékről „%s” értékre. Távolítsa el a „system.basepath” beállítást az adatbázisából az eltérések elkerüléséhez." -#: src/Module/Admin/Summary.php:138 +#: src/Module/Admin/Summary.php:136 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "A Friendica jelenlegi „system.basepath” értéke („%s”) hibás, és a(z) „%s” beállítófájl nincs használva." -#: src/Module/Admin/Summary.php:146 +#: src/Module/Admin/Summary.php:144 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "A Friendica jelenlegi „system.basepath” értéke („%s”) nem azonos a(z) „%s” beállítófájlban lévővel. Javítsa a beállításokat." -#: src/Module/Admin/Summary.php:157 +#: src/Module/Admin/Summary.php:155 msgid "Message queues" msgstr "Üzenet várakozási sorai" -#: src/Module/Admin/Summary.php:160 +#: src/Module/Admin/Summary.php:158 msgid "Server Settings" msgstr "Kiszolgálóbeállítások" -#: src/Module/Admin/Summary.php:178 +#: src/Module/Admin/Summary.php:176 msgid "Version" msgstr "Verzió" -#: src/Module/Admin/Summary.php:182 +#: src/Module/Admin/Summary.php:180 msgid "Active addons" msgstr "Bekapcsolt bővítmények" @@ -6086,8 +6092,8 @@ msgstr "Az alkezelt fiókok nem férhetnek hozzá a moderálási oldalakhoz. Jel msgid "Reports" msgstr "Jelentések" -#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:134 -#: src/Module/Moderation/Users/Index.php:144 +#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:137 +#: src/Module/Moderation/Users/Index.php:147 msgid "Users" msgstr "Felhasználók" @@ -6123,7 +6129,7 @@ msgstr "Beszélgetések elkezdve" msgid "Only You Can See This" msgstr "Csak Ön láthatja ezt" -#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:67 +#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:65 msgid "Scheduled Posts" msgstr "Ütemezett bejegyzések" @@ -6175,7 +6181,7 @@ msgstr "Kétlépcsős hitelesítés" msgid "Display" msgstr "Megjelenítés" -#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:195 +#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:189 msgid "Social Networks" msgstr "Közösségi hálózatok" @@ -6191,11 +6197,15 @@ msgstr "Kapcsolt alkalmazások" msgid "Remote servers" msgstr "Távoli kiszolgálók" -#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:84 +#: src/Module/BaseSettings.php:155 src/Module/Settings/ContactImport.php:109 +msgid "Import Contacts" +msgstr "Partnerek importálása" + +#: src/Module/BaseSettings.php:162 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Személyes adatok exportálása" -#: src/Module/BaseSettings.php:162 +#: src/Module/BaseSettings.php:169 msgid "Remove account" msgstr "Fiók eltávolítása" @@ -6324,8 +6334,8 @@ msgstr "lista" msgid "Could not create circle." msgstr "Nem sikerült létrehozni a kört." -#: src/Module/Circle.php:54 src/Module/Circle.php:202 -#: src/Module/Circle.php:226 +#: src/Module/Circle.php:54 src/Module/Circle.php:203 +#: src/Module/Circle.php:227 msgid "Circle not found." msgstr "A kör nem található." @@ -6333,15 +6343,15 @@ msgstr "A kör nem található." msgid "Circle name was not changed." msgstr "A kör neve nem változott meg." -#: src/Module/Circle.php:78 +#: src/Module/Circle.php:80 msgid "Unknown circle." msgstr "Ismeretlen kör." -#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Circle.php:86 src/Module/Circle.php:95 #: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 -#: 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/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/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 @@ -6350,75 +6360,75 @@ msgstr "Ismeretlen kör." msgid "Contact not found." msgstr "A partner nem található." -#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 +#: src/Module/Circle.php:90 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Érvénytelen partner." -#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 +#: src/Module/Circle.php:99 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "A partner törölve." -#: src/Module/Circle.php:103 +#: src/Module/Circle.php:105 msgid "Unable to add the contact to the circle." msgstr "Nem lehet hozzáadni a partnert a körhöz." -#: src/Module/Circle.php:106 +#: src/Module/Circle.php:108 msgid "Contact successfully added to circle." msgstr "A partner sikeresen hozzáadva a körhöz." -#: src/Module/Circle.php:110 +#: src/Module/Circle.php:112 msgid "Unable to remove the contact from the circle." msgstr "Nem lehet eltávolítani a partnert a körből." -#: src/Module/Circle.php:113 +#: src/Module/Circle.php:115 msgid "Contact successfully removed from circle." msgstr "A partner sikeresen eltávolítva a körből." -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:119 msgid "Bad request." msgstr "Hibás kérés." -#: src/Module/Circle.php:158 +#: src/Module/Circle.php:160 msgid "Save Circle" msgstr "Kör mentése" -#: src/Module/Circle.php:159 +#: src/Module/Circle.php:161 msgid "Filter" msgstr "Szűrő" -#: src/Module/Circle.php:165 +#: src/Module/Circle.php:167 msgid "Create a circle of contacts/friends." msgstr "Partnerek vagy ismerősök körének létrehozása." -#: src/Module/Circle.php:207 +#: src/Module/Circle.php:208 msgid "Unable to remove circle." msgstr "Nem lehet eltávolítani a kört." -#: src/Module/Circle.php:258 +#: src/Module/Circle.php:259 msgid "Delete Circle" msgstr "Kör törlése" -#: src/Module/Circle.php:268 +#: src/Module/Circle.php:269 msgid "Edit Circle Name" msgstr "Kör nevének szerkesztése" -#: src/Module/Circle.php:278 +#: src/Module/Circle.php:279 msgid "Members" msgstr "Tagok" -#: src/Module/Circle.php:281 +#: src/Module/Circle.php:282 msgid "Circle is empty" msgstr "A kör üres" -#: src/Module/Circle.php:297 +#: src/Module/Circle.php:298 msgid "Remove contact from circle" msgstr "Partner eltávolítása a körből" -#: src/Module/Circle.php:320 +#: src/Module/Circle.php:321 msgid "Click on a contact to add or remove." msgstr "Kattintson egy partnerre a hozzáadáshoz vagy eltávolításhoz." -#: src/Module/Circle.php:337 +#: src/Module/Circle.php:338 msgid "Add contact to circle" msgstr "Partner hozzáadása a körhöz" @@ -6452,7 +6462,7 @@ msgid "Only show blocked contacts" msgstr "Csak a tiltott partnerek megjelenítése" #: src/Module/Contact.php:349 src/Module/Contact.php:421 -#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:386 msgid "Ignored" msgstr "Mellőzve" @@ -6503,8 +6513,8 @@ msgstr "Frissítés" #: src/Module/Contact.php:449 src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:105 -#: src/Module/Moderation/Users/Blocked.php:124 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Blocked.php:127 +#: src/Module/Moderation/Users/Index.php:143 msgid "Unblock" msgstr "Tiltás feloldása" @@ -6580,12 +6590,12 @@ msgstr "Visszatérés a partnerszerkesztőhöz" #: 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:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:56 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Név" @@ -7150,11 +7160,11 @@ msgstr "Hiba %d (%s) az idővonal lekérése során." msgid "Network feed not available." msgstr "A hálózati hírforrás nem érhető el." -#: src/Module/Conversation/Timeline.php:190 +#: src/Module/Conversation/Timeline.php:193 msgid "Include" msgstr "Tartalmazás" -#: src/Module/Conversation/Timeline.php:191 +#: src/Module/Conversation/Timeline.php:194 msgid "Hide" msgstr "Elrejtés" @@ -7423,19 +7433,19 @@ msgstr "WebFinger diagnosztika" msgid "Lookup address:" msgstr "Keresési cím:" -#: src/Module/Directory.php:61 +#: src/Module/Directory.php:60 msgid "No entries (some entries may be hidden)." msgstr "Nincsenek bejegyzések (néhány bejegyzés rejtve lehet)." -#: src/Module/Directory.php:77 +#: src/Module/Directory.php:76 msgid "Find on this site" msgstr "Keresés ezen az oldalon" -#: src/Module/Directory.php:79 +#: src/Module/Directory.php:78 msgid "Results for:" msgstr "Találat erre:" -#: src/Module/Directory.php:81 +#: src/Module/Directory.php:80 msgid "Site Directory" msgstr "Oldal könyvtára" @@ -7688,40 +7698,40 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Menjen az új Friendica csomópont regisztrációs oldalára, és regisztráljon új felhasználóként. Ne felejtse el ugyanazt az e-mail-címet használni, mint amelyet adminisztrátori e-mail-címként adott meg. Ez lehetővé fogja tenni az oldal adminisztrátori paneljére történő belépést." -#: src/Module/Invite.php:43 +#: src/Module/Invite.php:42 msgid "Total invitation limit exceeded." msgstr "Az összes meghívás korlátja túllépve." -#: src/Module/Invite.php:68 +#: src/Module/Invite.php:67 #, php-format msgid "%s : Not a valid email address." msgstr "%s: nem érvényes e-mail-cím." -#: src/Module/Invite.php:94 +#: src/Module/Invite.php:93 msgid "Please join us on Friendica" msgstr "Csatlakozzon hozzánk a Friendica hálózatán" -#: src/Module/Invite.php:103 +#: src/Module/Invite.php:102 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "A meghíváskorlát túllépve. Vegye fel a kapcsolatot az oldal adminisztrátorával." -#: src/Module/Invite.php:107 +#: src/Module/Invite.php:106 #, php-format msgid "%s : Message delivery failed." msgstr "%s: az üzenetkézbesítés sikertelen." -#: src/Module/Invite.php:111 +#: src/Module/Invite.php:110 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%d üzenet elküldve." msgstr[1] "%d üzenet elküldve." -#: src/Module/Invite.php:129 +#: src/Module/Invite.php:127 msgid "You have no more invitations available" msgstr "Nincs több elérhető meghívása" -#: src/Module/Invite.php:136 +#: src/Module/Invite.php:134 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7729,14 +7739,14 @@ msgid "" " other social networks." msgstr "Látogassa meg a %s oldalt azon nyilvános oldalak listájáért, amelyekhez csatlakozhat. A egyéb oldalakon lévő Friendica-tagok mindegyike tud egymással kapcsolódni, valamint számos más közösségi hálózat tagjaival is." -#: src/Module/Invite.php:138 +#: src/Module/Invite.php:136 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "A meghívás elfogadásához látogasson el és regisztráljon a(z) %s címen vagy bármely más nyilvános Friendica weboldalon." -#: src/Module/Invite.php:139 +#: src/Module/Invite.php:137 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7745,48 +7755,48 @@ msgid "" "sites you can join." msgstr "A Friendica oldalak mindegyike össze van kapcsolva, hogy egy hatalmas, fokozott magánszféra-védelemmel ellátott közösségi hálót hozzanak létre, amelyet a tagjai birtokolnak és vezérelnek. A tagok képesek sok hagyományos közösségi hálózathoz is kapcsolódni. Nézze meg a(z) %s oldalt azon alternatív Friendica oldalak listájáért, amelyekhez csatlakozhat." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:141 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Elnézést kérünk. Ez a rendszer jelenleg nem úgy van beállítva, hogy más nyilvános oldalakhoz kapcsolódjon vagy tagokat hívjon meg." -#: src/Module/Invite.php:146 +#: src/Module/Invite.php:144 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 "A Friendica oldalak mindegyike össze van kapcsolva, hogy egy hatalmas, fokozott magánszféra-védelemmel ellátott közösségi hálót hozzanak létre, amelyet a tagjai birtokolnak és vezérelnek. A tagok képesek sok hagyományos közösségi hálózathoz is kapcsolódni." -#: src/Module/Invite.php:145 +#: src/Module/Invite.php:143 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "A meghívás elfogadásához látogasson el és regisztráljon a(z) %s címen." -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:151 msgid "Send invitations" msgstr "Meghívások küldése" -#: src/Module/Invite.php:154 +#: src/Module/Invite.php:152 msgid "Enter email addresses, one per line:" msgstr "Adja meg az e-mail-címeket, soronként egyet:" -#: src/Module/Invite.php:158 +#: src/Module/Invite.php:156 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Szeretettel meghívom Önt, hogy csatlakozzon hozzám és más közeli ismerősökhöz a Friendica hálózatán – és segítsen nekünk egy jobb közösségi hálót létrehozni." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "You will need to supply this invitation code: $invite_code" msgstr "Meg kell majd adnia ezt a meghívási kódot: $invite_code" -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Miután regisztrált, lépjen velem kapcsolatba a profiloldalamon keresztül itt:" -#: src/Module/Invite.php:162 +#: src/Module/Invite.php:160 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" @@ -7888,12 +7898,12 @@ msgid "File upload failed." msgstr "A fájl feltöltése sikertelen." #: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 -#: src/Module/Profile/Photos.php:204 +#: src/Module/Profile/Photos.php:212 #: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Nem lehet feldolgozni a képet." -#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:224 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:232 #: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "A kép feltöltése sikertelen." @@ -7926,23 +7936,23 @@ msgstr "Törölve" msgid "List of pending user deletions" msgstr "Függőben lévő felhasználó-törlések listája" -#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:469 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:431 msgid "Normal Account Page" msgstr "Normál fiókoldal" -#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:476 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:438 msgid "Soapbox Page" msgstr "Szappantartó oldal" -#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:483 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:445 msgid "Public Group" msgstr "Nyilvános csoport" -#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:490 +#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:452 msgid "Public Group - Restricted" msgstr "Nyilvános csoport – korlátozott" -#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:497 +#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:459 msgid "Automatic Friend Page" msgstr "Automatikus ismerős oldal" @@ -7951,22 +7961,22 @@ msgid "Private Group" msgstr "Személyes csoport" #: src/Module/Moderation/BaseUsers.php:118 -#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:440 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:402 msgid "Personal Page" msgstr "Személyes oldal" #: src/Module/Moderation/BaseUsers.php:119 -#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:447 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:409 msgid "Organisation Page" msgstr "Szervezeti oldal" #: src/Module/Moderation/BaseUsers.php:120 -#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:454 +#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:416 msgid "News Page" msgstr "Hírek oldal" #: src/Module/Moderation/BaseUsers.php:121 -#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:461 +#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:423 msgid "Community Group" msgstr "Közösségi csoport" @@ -7996,9 +8006,9 @@ msgid "Block Remote Contact" msgstr "Távoli partner tiltása" #: src/Module/Moderation/Blocklist/Contact.php:102 -#: 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/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:138 #: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "összes kijelölése" @@ -8339,9 +8349,9 @@ msgid "Tag" msgstr "Címke" #: src/Module/Moderation/Item/Source.php:77 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 -#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 +#: src/Module/Moderation/Users/Index.php:129 msgid "Type" msgstr "Típus" @@ -8606,7 +8616,7 @@ msgstr[1] "%s jelentés összesen" msgid "URL of the reported contact." msgstr "A jelentett partner URL-je." -#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:418 +#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:380 msgid "Channel Relay" msgstr "Csatornatovábbítás" @@ -8627,11 +8637,11 @@ msgstr[0] "%s felhasználó tiltva" msgstr[1] "%s felhasználó tiltva" #: src/Module/Moderation/Users/Active.php:37 -#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Active.php:74 #: src/Module/Moderation/Users/Blocked.php:37 -#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Blocked.php:74 #: src/Module/Moderation/Users/Index.php:44 -#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Index.php:81 msgid "You can't remove yourself" msgstr "Nem távolíthatja el önmagát" @@ -8644,81 +8654,81 @@ msgid_plural "%s users deleted" msgstr[0] "%s felhasználó törölve" msgstr[1] "%s felhasználó törölve" -#: src/Module/Moderation/Users/Active.php:69 -#: src/Module/Moderation/Users/Blocked.php:69 -#: src/Module/Moderation/Users/Index.php:76 +#: src/Module/Moderation/Users/Active.php:72 +#: src/Module/Moderation/Users/Blocked.php:72 +#: src/Module/Moderation/Users/Index.php:79 #, php-format msgid "User \"%s\" deleted" msgstr "„%s” felhasználó törölve" -#: src/Module/Moderation/Users/Active.php:79 -#: src/Module/Moderation/Users/Index.php:86 +#: src/Module/Moderation/Users/Active.php:82 +#: src/Module/Moderation/Users/Index.php:89 #, php-format msgid "User \"%s\" blocked" msgstr "„%s” felhasználó tiltva" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Register date" msgstr "Regisztráció dátuma" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last login" msgstr "Utolsó bejelentkezés" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last public item" msgstr "Utolsó nyilvános elem" -#: src/Module/Moderation/Users/Active.php:120 +#: src/Module/Moderation/Users/Active.php:123 msgid "Active Accounts" msgstr "Aktív fiókok" -#: src/Module/Moderation/Users/Active.php:124 -#: src/Module/Moderation/Users/Blocked.php:123 -#: src/Module/Moderation/Users/Index.php:139 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "User blocked" msgstr "Felhasználó tiltva" -#: src/Module/Moderation/Users/Active.php:125 -#: src/Module/Moderation/Users/Blocked.php:125 -#: src/Module/Moderation/Users/Index.php:141 +#: src/Module/Moderation/Users/Active.php:128 +#: src/Module/Moderation/Users/Blocked.php:128 +#: src/Module/Moderation/Users/Index.php:144 msgid "Site admin" msgstr "Oldal adminisztrátor" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:142 +#: src/Module/Moderation/Users/Active.php:129 +#: src/Module/Moderation/Users/Blocked.php:129 +#: src/Module/Moderation/Users/Index.php:145 msgid "Account expired" msgstr "A fiók lejárt" -#: src/Module/Moderation/Users/Active.php:127 -#: src/Module/Moderation/Users/Index.php:145 +#: src/Module/Moderation/Users/Active.php:130 +#: src/Module/Moderation/Users/Index.php:148 msgid "Create a new user" msgstr "Új felhasználó létrehozása" -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:132 -#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:154 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "A kijelölt felhasználók törölve lesznek!\\n\\nMinden, amit ezek a felhasználók erre az oldalra beküldtek, véglegesen törölve lesz!\\n\\nBiztos benne?" -#: src/Module/Moderation/Users/Active.php:134 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:155 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" @@ -8732,13 +8742,13 @@ msgid_plural "%s users unblocked" msgstr[0] "%s felhasználó tiltása feloldva" msgstr[1] "%s felhasználó tiltása feloldva" -#: src/Module/Moderation/Users/Blocked.php:78 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Blocked.php:81 +#: src/Module/Moderation/Users/Index.php:95 #, php-format msgid "User \"%s\" unblocked" msgstr "„%s” felhasználó tiltása feloldva" -#: src/Module/Moderation/Users/Blocked.php:120 +#: src/Module/Moderation/Users/Blocked.php:123 msgid "Blocked Users" msgstr "Tiltott felhasználók" @@ -8771,11 +8781,11 @@ msgid "Users awaiting permanent deletion" msgstr "Végleges törlésre váró felhasználók" #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:149 msgid "Permanent deletion" msgstr "Végleges törlés" -#: src/Module/Moderation/Users/Index.php:136 +#: src/Module/Moderation/Users/Index.php:139 msgid "User waiting for permanent deletion" msgstr "Végleges törlésre váró felhasználó" @@ -8940,7 +8950,7 @@ msgstr "Másolja be a következő hitelesítési kódot az alkalmazásába, és msgid "Invalid data or unknown client" msgstr "Érvénytelen adatok vagy ismeretlen ügyfél" -#: src/Module/OAuth/Token.php:91 +#: src/Module/OAuth/Token.php:73 msgid "Unsupported or missing grant type" msgstr "Nem támogatott vagy hiányzó felhatalmazástípus" @@ -8992,7 +9002,7 @@ msgstr "mellőzve" msgid "Keep this window open until done." msgstr "Tartsa nyitva ezt az ablakot, amíg el nem készül." -#: src/Module/OpenSearch.php:57 +#: src/Module/OpenSearch.php:55 #, php-format msgid "Search in Friendica %s" msgstr "Keresés itt: Friendica %s" @@ -9006,12 +9016,12 @@ msgstr "A fénykép nem érhető el." msgid "The Photo with id %s is not available." msgstr "A(z) %s azonosítóval rendelkező fénykép nem érhető el." -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:178 #, php-format msgid "Invalid external resource with url %s." msgstr "Érvénytelen külső erőforrás a(z) %s URL-lel." -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:180 #, php-format msgid "Invalid photo with id %s." msgstr "Érvénytelen %s azonosítóval rendelkező fénykép." @@ -9044,15 +9054,15 @@ msgstr "Hanghivatkozás beszúrása" msgid "audio link" msgstr "hanghivatkozás" -#: src/Module/Post/Tag/Remove.php:92 +#: src/Module/Post/Tag/Remove.php:93 msgid "Remove Item Tag" msgstr "Elem címkéjének eltávolítása" -#: src/Module/Post/Tag/Remove.php:93 +#: src/Module/Post/Tag/Remove.php:94 msgid "Select a tag to remove: " msgstr "Eltávolítandó címke kiválasztása: " -#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Post/Tag/Remove.php:95 #: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Eltávolítás" @@ -9131,32 +9141,32 @@ msgstr "%s hozzászólásai" msgid "%s's timeline" msgstr "%s idővonala" -#: src/Module/Profile/Photos.php:153 src/Module/Profile/Photos.php:156 -#: src/Module/Profile/Photos.php:181 +#: src/Module/Profile/Photos.php:157 src/Module/Profile/Photos.php:160 +#: src/Module/Profile/Photos.php:189 #: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "A kép meghaladja a beállított %s méretkorlátot" -#: src/Module/Profile/Photos.php:159 +#: src/Module/Profile/Photos.php:163 msgid "Image upload didn't complete, please try again" msgstr "A kép feltöltése nem fejeződött be, próbálja újra" -#: src/Module/Profile/Photos.php:162 +#: src/Module/Profile/Photos.php:166 msgid "Image file is missing" msgstr "A képfájl hiányzik" -#: src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:171 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "A kiszolgáló jelenleg nem tud új fájlfeltöltést fogadni, vegye fel a kapcsolatot a rendszergazdával" -#: src/Module/Profile/Photos.php:189 +#: src/Module/Profile/Photos.php:197 msgid "Image file is empty." msgstr "A képfájl üres." -#: src/Module/Profile/Photos.php:341 +#: src/Module/Profile/Photos.php:349 msgid "View Album" msgstr "Album megtekintése" @@ -9272,15 +9282,15 @@ msgid "" "content from anonymous visitors." msgstr "Ez a profil korlátozva lett, ami megakadályozza, hogy a névtelen látogatók hozzáférjenek a nyilvános tartalmához." -#: src/Module/Profile/Schedule.php:69 +#: src/Module/Profile/Schedule.php:67 msgid "Scheduled" msgstr "Ütemezett" -#: src/Module/Profile/Schedule.php:70 +#: src/Module/Profile/Schedule.php:68 msgid "Content" msgstr "Tartalom" -#: src/Module/Profile/Schedule.php:71 +#: src/Module/Profile/Schedule.php:69 msgid "Remove post" msgstr "Bejegyzés eltávolítása" @@ -9345,7 +9355,7 @@ msgid "Please repeat your e-mail address:" msgstr "Ismételje meg az e-mail-címét:" #: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:551 +#: src/Module/Settings/Account.php:513 msgid "New Password:" msgstr "Új jelszó:" @@ -9354,7 +9364,7 @@ msgid "Leave empty for an auto generated password." msgstr "Hagyja üresen egy automatikusan előállított jelszóhoz." #: src/Module/Register.php:157 src/Module/Security/PasswordTooLong.php:87 -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Confirm:" msgstr "Megerősítés:" @@ -9538,20 +9548,20 @@ msgstr "Kijelentkezve." msgid "OpenID protocol error. No ID returned" msgstr "OpenID protokollhiba. Nem lett azonosító visszaadva" -#: src/Module/Security/OpenID.php:76 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "A fiók nem található. Jelentkezzen be a meglévő fiókjába, hogy hozzáadja az OpenID-t ahhoz." -#: src/Module/Security/OpenID.php:78 +#: src/Module/Security/OpenID.php:80 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "A fiók nem található. Regisztráljon új fiókot vagy jelentkezzen be a meglévő fiókjába, hogy hozzáadja az OpenID-t ahhoz." #: src/Module/Security/PasswordTooLong.php:43 -#: src/Module/Settings/Account.php:51 +#: src/Module/Settings/Account.php:49 msgid "Passwords do not match." msgstr "A jelszavak nem egyeznek." @@ -9560,7 +9570,7 @@ msgid "Password does not need changing." msgstr "A jelszót nem kell megváltoztatni." #: src/Module/Security/PasswordTooLong.php:63 -#: src/Module/Settings/Account.php:65 +#: src/Module/Settings/Account.php:63 msgid "Password unchanged." msgstr "A jelszó nincs megváltoztatva." @@ -9580,24 +9590,24 @@ msgid "Update Password" msgstr "Jelszó frissítése" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Current Password:" msgstr "Jelenlegi jelszó:" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Your current password to confirm the changes" msgstr "A jelenlegi jelszava a változtatások megerősítéséhez" #: src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:537 +#: src/Module/Settings/Account.php:499 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " "spaces and accentuated letters." msgstr "Az engedélyezett karakterek az a-z, A-Z, 0-9 tartományokban lévők és a különleges karakterek, kivéve az üres karaktereket és az ékezetes betűket." #: src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:538 +#: src/Module/Settings/Account.php:500 msgid "Password length is limited to 72 characters." msgstr "A jelszó hossza 72 karakterre van korlátozva." @@ -9701,129 +9711,121 @@ msgstr "Adjon meg egy kódot a hitelesítő alkalmazásából" msgid "Verify code and complete login" msgstr "Kód ellenőrzése és a bejelentkezés befejezése" -#: src/Module/Settings/Account.php:80 +#: src/Module/Settings/Account.php:78 msgid "Please use a shorter name." msgstr "Használjon rövidebb nevet." -#: src/Module/Settings/Account.php:83 +#: src/Module/Settings/Account.php:81 msgid "Name too short." msgstr "A név túl rövid." -#: src/Module/Settings/Account.php:92 +#: src/Module/Settings/Account.php:90 msgid "Wrong Password." msgstr "Hibás jelszó." -#: src/Module/Settings/Account.php:97 +#: src/Module/Settings/Account.php:95 msgid "Invalid email." msgstr "Érvénytelen e-mail-cím." -#: src/Module/Settings/Account.php:101 +#: src/Module/Settings/Account.php:99 msgid "Cannot change to that email." msgstr "Nem lehet megváltoztatni arra az e-mail-címre." -#: 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 +#: 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 msgid "Settings were not updated." msgstr "A beállítások nem lettek frissítve." -#: src/Module/Settings/Account.php:331 -msgid "Contact CSV file upload error" -msgstr "Partner CSV-fájl feltöltési hiba" - -#: src/Module/Settings/Account.php:350 -msgid "Importing Contacts done" -msgstr "A partnerek importálása kész" - -#: src/Module/Settings/Account.php:363 +#: src/Module/Settings/Account.php:325 msgid "Relocate message has been send to your contacts" msgstr "Az áthelyezési üzenet el lett küldve a partnereknek" -#: src/Module/Settings/Account.php:380 +#: src/Module/Settings/Account.php:342 msgid "Unable to find your profile. Please contact your admin." msgstr "Nem található a profilja. Vegye fel a kapcsolatot a rendszergazdával." -#: src/Module/Settings/Account.php:420 +#: src/Module/Settings/Account.php:382 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "Fiók egy olyan szolgáltatáshoz, amely automatikusan megosztja a tartalmat a felhasználó által meghatározott csatornák alapján." -#: src/Module/Settings/Account.php:430 +#: src/Module/Settings/Account.php:392 msgid "Personal Page Subtypes" msgstr "Személyes oldal altípusai" -#: src/Module/Settings/Account.php:431 +#: src/Module/Settings/Account.php:393 msgid "Community Group Subtypes" msgstr "Közösségi csoport altípusai" -#: src/Module/Settings/Account.php:442 +#: src/Module/Settings/Account.php:404 msgid "Account for a personal profile." msgstr "Egy személyes profil fiókja." -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:411 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Egy szervezet fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például a „követőket”." -#: src/Module/Settings/Account.php:456 +#: src/Module/Settings/Account.php:418 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Egy hírportál fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például a „követőket”." -#: src/Module/Settings/Account.php:463 +#: src/Module/Settings/Account.php:425 msgid "Account for community discussions." msgstr "Közösségi beszélgetések fiókja." -#: src/Module/Settings/Account.php:471 +#: src/Module/Settings/Account.php:433 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Egy szokásos személyes profil fiókja, amely az „ismerősök” és a „követők” kézi jóváhagyását igényli." -#: src/Module/Settings/Account.php:478 +#: src/Module/Settings/Account.php:440 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Egy nyilvános profil fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például a „követőket”." -#: src/Module/Settings/Account.php:485 +#: src/Module/Settings/Account.php:447 msgid "Automatically approves all contact requests." msgstr "Automatikusan jóváhagyja az összes partnerkérést." -#: src/Module/Settings/Account.php:492 +#: src/Module/Settings/Account.php:454 msgid "Contact requests have to be manually approved." msgstr "A partnerkéréseket kézzel kell jóváhagyni." -#: src/Module/Settings/Account.php:499 +#: src/Module/Settings/Account.php:461 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Egy népszerű profil fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például az „ismerősöket”." -#: src/Module/Settings/Account.php:504 +#: src/Module/Settings/Account.php:466 msgid "Private Group [Experimental]" msgstr "Személyes csoport [kísérleti]" -#: src/Module/Settings/Account.php:506 +#: src/Module/Settings/Account.php:468 msgid "Requires manual approval of contact requests." msgstr "A partnerkérések kézi jóváhagyását igényli." -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Kihagyható) Lehetővé teszi ezen OpenID számára, hogy bejelentkezzen ebbe a fiókba." -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 msgid "Publish your profile in your local site directory?" msgstr "Közzéteszi a profilját a helyi oldal könyvtárában?" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9831,94 +9833,94 @@ msgid "" " system settings." msgstr "A profilja közzé lesz téve ennek a csomópontnak a helyi könyvtárában. A profilrészletei esetleg nyilvánosan láthatóak lehetnek a rendszerbeállításoktól függően." -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:491 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "A profilja közzé lesz téve a globális Friendica könyvtárakban is (például itt: %s)." -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:504 msgid "Account Settings" msgstr "Fiókbeállítások" -#: src/Module/Settings/Account.php:543 +#: src/Module/Settings/Account.php:505 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Az Ön személyazonosság-címe „%s” vagy „%s”." -#: src/Module/Settings/Account.php:550 +#: src/Module/Settings/Account.php:512 msgid "Password Settings" msgstr "Jelszóbeállítások" -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Leave password fields blank unless changing" msgstr "Hagyja üresen a jelszómezőket, különben megváltozik" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Password:" msgstr "Jelszó:" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Your current password to confirm the changes of the email address" msgstr "A jelenlegi jelszava az e-mail-címe megváltoztatásának megerősítéséhez" -#: src/Module/Settings/Account.php:557 +#: src/Module/Settings/Account.php:519 msgid "Delete OpenID URL" msgstr "OpenID URL törlése" -#: src/Module/Settings/Account.php:559 +#: src/Module/Settings/Account.php:521 msgid "Basic Settings" msgstr "Alapvető beállítások" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:522 #: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "Megjelenített név:" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:523 msgid "Email Address:" msgstr "E-mail-cím:" -#: src/Module/Settings/Account.php:562 +#: src/Module/Settings/Account.php:524 msgid "Your Timezone:" msgstr "Az Ön időzónája:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "Your Language:" msgstr "Az Ön nyelve:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Annak a nyelvnek a beállítása, amelyet a Friendica felületének megjelenítéséhez és a levelek küldéséhez használunk" -#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Account.php:526 msgid "Default Post Location:" msgstr "Alapértelmezett bejegyzésküldési hely:" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:527 msgid "Use Browser Location:" msgstr "Böngésző helyének használata:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:529 msgid "Security and Privacy Settings" msgstr "Biztonsági és adatvédelmi beállítások" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "Maximum Friend Requests/Day:" msgstr "Legtöbb ismerőskérés naponta:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "(to prevent spam abuse)" msgstr "(a kéretlen üzenettel való visszaélés elkerüléséhez)" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 msgid "Allow your profile to be searchable globally?" msgstr "Engedélyezi, hogy a profilja globálisan kereshető legyen?" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 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 " @@ -9926,43 +9928,43 @@ msgid "" "indexed or not." msgstr "Akkor kapcsolja be ezt a beállítást, ha azt szeretné, hogy mások egyszerűen megtalálják és kövessék Önt. A profilja kereshető lesz a távoli rendszereken. Ez a beállítás azt is meghatározza, hogy a Friendica tájékoztatja-e a keresőmotorokat arról, hogy a profilját indexelni kell-e vagy sem." -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Elrejti a partnerlistáját vagy ismerőslistáját a profilja megtekintői elől?" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "A partnereinek listája a profiloldalán van megjelenítve. Kapcsolja be ezt a beállítást, hogy letiltsa a partnerlistája megjelenítését." -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:535 msgid "Hide your public content from anonymous viewers" msgstr "Nyilvános tartalom elrejtése a névtelen megtekintők elől" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:535 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 "A névtelen látogatók csak az alapvető profilrészleteit fogják látni. A nyilvános bejegyzései és válaszai továbbra is szabadon elérhetőek lesznek a követői távoli kiszolgálóin és a továbbítókon keresztül." -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:536 msgid "Make public posts unlisted" msgstr "Nyilvános bejegyzések felsorolatlanná tétele" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:536 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 "A nyilvános bejegyzései nem fognak megjelenni a közösségi oldalakon vagy a keresési találatokban, és nem lesznek elküldve az átjátszó kiszolgálóknak. Azonban továbbra is megjelenhetnek a nyilvános hírforrásokban a távoli kiszolgálókon." -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:537 msgid "Make all posted pictures accessible" msgstr "Az összes beküldött fénykép elérhetővé tétele" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:537 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 " @@ -9970,227 +9972,213 @@ msgid "" "public on your photo albums though." msgstr "Ez a beállítás elérhetővé tesz minden egyes beküldött fényképet a közvetlen hivatkozáson keresztül. Ez egy kerülőmegoldás arra a problémára, hogy a legtöbb más hálózat nem tudja kezelni a fényképek jogosultságait. A nem nyilvános fényképek továbbra sem lesznek láthatóak a nyilvánosság számára a fényképalbumán keresztül." -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "Allow friends to post to your profile page?" msgstr "Engedélyezi az ismerősöknek, hogy beküldjenek a profiloldalára?" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "A partnerei bejegyzéseket írhatnak az Ön profilfalára. Ezek a bejegyzések továbbítva lesznek a partnereinek." -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Allow friends to tag your posts?" msgstr "Engedélyezi az ismerőseinek, hogy címkézzék a bejegyzéseit?" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Your contacts can add additional tags to your posts." msgstr "A partnerei további címkéket adhatnak a bejegyzéseihez." -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:540 msgid "Default privacy circle for new contacts" msgstr "Alapértelmezett adatvédelmi kör az új partnerekhez" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:541 msgid "Default privacy circle for new group contacts" msgstr "Alapértelmezett adatvédelmi kör az új csoportpartnerekhez" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:542 msgid "Default Post Permissions" msgstr "Alapértelmezett bejegyzés-jogosultságok" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:546 msgid "Expiration settings" msgstr "Lejárati jogosultságok" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "Automatically expire posts after this many days:" msgstr "Bejegyzések automatikus lejárata ennyi nap után:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Ha üres, akkor a bejegyzések nem járnak le. A lejárt bejegyzések törölve lesznek." -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "Expire posts" msgstr "Bejegyzések lejárata" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "When activated, posts and comments will be expired." msgstr "Ha be van kapcsolva, akkor a bejegyzések és a hozzászólások le fognak járni." -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "Expire personal notes" msgstr "Személyes jegyzetek lejárata" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Ha be van kapcsolva, akkor a profiloldalán lévő személyes jegyzetek le fognak járni." -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "Expire starred posts" msgstr "Csillagozott bejegyzések lejárata" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "A bejegyzések csillagozása megakadályozza azok lejáratát. Ez a viselkedés felülírható ezzel a beállítással." -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 msgid "Only expire posts by others" msgstr "Csak a másoktól származó bejegyzések lejárata" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Ha be van kapcsolva, akkor a saját bejegyzései sosem járnak le. Ekkor a fenti beállítás csak azokra a bejegyzésekre érvényes, amelyeket megkap." -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:554 msgid "Notification Settings" msgstr "Értesítési beállítások" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:555 msgid "Send a notification email when:" msgstr "Értesítési e-mail küldése a következő esetekben:" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:556 msgid "You receive an introduction" msgstr "Egy bemutatkozást fogad" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:557 msgid "Your introductions are confirmed" msgstr "A bemutatkozásait jóváhagyták" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:558 msgid "Someone writes on your profile wall" msgstr "Valaki ír a profilfalára" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:559 msgid "Someone writes a followup comment" msgstr "Valaki egy követő hozzászólást ír" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:560 msgid "You receive a private message" msgstr "Személyes üzenetet kap" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:561 msgid "You receive a friend suggestion" msgstr "Ismerősajánlást kap" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:562 msgid "You are tagged in a post" msgstr "Megjelölték egy bejegyzésben" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:564 msgid "Create a desktop notification when:" msgstr "Asztali értesítés létrehozása ekkor:" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:565 msgid "Someone tagged you" msgstr "Valaki megjelölte Önt" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:566 msgid "Someone directly commented on your post" msgstr "Valaki közvetlenül hozzászólt a bejegyzéséhez" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:567 msgid "Someone liked your content" msgstr "Valaki kedvelte az Ön tartalmát" -#: src/Module/Settings/Account.php:605 src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:567 src/Module/Settings/Account.php:568 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "Csak akkor engedélyezhető, ha a közvetlen hozzászólási értesítés engedélyezve van." -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:568 msgid "Someone shared your content" msgstr "Valaki megosztotta az Ön tartalmát" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:569 msgid "Someone commented in your thread" msgstr "Valaki hozzászólt az Ön szálában" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:570 msgid "Someone commented in a thread where you commented" msgstr "Valaki hozzászólt egy olyan szálban, ahol Ön hozzászólt" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:571 msgid "Someone commented in a thread where you interacted" msgstr "Valaki hozzászólt egy olyan szálban, ahol Ön interakcióba került" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Activate desktop notifications" msgstr "Asztali értesítések bekapcsolása" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Show desktop popup on new notifications" msgstr "Felugró üzenet megjelenítése az asztalon új értesítések esetén." -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:577 msgid "Text-only notification emails" msgstr "Csak szöveges értesítési e-mailek" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:579 msgid "Send text only notification emails, without the html part" msgstr "Csak szöveges értesítési e-mailek küldése a HTML rész nélkül." -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:583 msgid "Show detailled notifications" msgstr "Részletes értesítések megjelenítése" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:585 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Alapértelmezetten az értesítések elemenként egyetlen értesítésbe vannak összevonva. Ha engedélyezve van, akkor minden értesítés megjelenik." -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:589 msgid "Show notifications of ignored contacts" msgstr "Mellőzött partnerek értesítéseinek megjelenítése" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:591 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 "Nem látja a mellőzött partnerektől érkező bejegyzéseket. Viszont továbbra is látja a hozzászólásaikat. Ez a beállítás azt vezérli, hogy továbbra is szeretne-e olyan normál értesítéseket kapni vagy sem, amelyeket mellőzött partnerek okoznak." -#: src/Module/Settings/Account.php:632 +#: src/Module/Settings/Account.php:594 msgid "Advanced Account/Page Type Settings" msgstr "Speciális fióktípus vagy oldaltípus beállítások" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:595 msgid "Change the behaviour of this account for special situations" msgstr "A fiók viselkedésének megváltoztatása bizonyos helyzetekre." -#: src/Module/Settings/Account.php:636 -msgid "Import Contacts" -msgstr "Partnerek importálása" - -#: src/Module/Settings/Account.php:637 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "Töltsön fel egy olyan CSV-fájlt, amely a követett fiókok kezelőjét tartalmazza az első oszlopban, ahogy a régi fiókból exportálta." - -#: src/Module/Settings/Account.php:638 -msgid "Upload File" -msgstr "Fájl feltöltése" - -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:598 msgid "Relocate" msgstr "Áthelyezés" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:599 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 "Ha áthelyezte ezt a profilt egy másik kiszolgálóról, és néhány partnere nem kapta meg a frissítéseket, akkor próbálja meg megnyomni ezt a gombot." -#: src/Module/Settings/Account.php:643 +#: src/Module/Settings/Account.php:600 msgid "Resend relocate message to contacts" msgstr "Áthelyezési üzenet küldése a partnereknek" @@ -10355,214 +10343,232 @@ msgstr "Bejegyzés törlése a csatornalistáról" msgid "Delete entry from the channel list?" msgstr "Törli a bejegyzést a csatornalistáról?" -#: src/Module/Settings/Connectors.php:108 +#: src/Module/Settings/Connectors.php:107 msgid "Failed to connect with email account using the settings provided." msgstr "Nem sikerült kapcsolódni a megadott beállításokat használó e-mail-fiókkal." -#: src/Module/Settings/Connectors.php:155 -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:150 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:149 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "A(z) %s összekapcsolhatóságának beépített támogatása engedélyezve" -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:150 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "A(z) %s összekapcsolhatóságának beépített támogatása letiltva" -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:161 msgid "Email access is disabled on this site." msgstr "Az e-mailes hozzáférés le van tiltva ezen az oldalon." -#: src/Module/Settings/Connectors.php:182 -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:176 +#: src/Module/Settings/Connectors.php:226 msgid "None" msgstr "Nincs" -#: src/Module/Settings/Connectors.php:186 +#: src/Module/Settings/Connectors.php:180 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "Alapértelmezett (a Mastodon megjeleníti a címet és a bejegyzésre mutató hivatkozást)" -#: src/Module/Settings/Connectors.php:187 +#: src/Module/Settings/Connectors.php:181 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "Az összefoglaló használata (a Mastodon és néhányan egyéb tartalomfigyelmeztetésként fogja kezelni)" -#: src/Module/Settings/Connectors.php:188 +#: src/Module/Settings/Connectors.php:182 msgid "Embed the title in the body" msgstr "A cím beágyazása a törzsbe" -#: src/Module/Settings/Connectors.php:199 +#: src/Module/Settings/Connectors.php:193 msgid "General Social Media Settings" msgstr "Általános közösségimédia-beállítások" -#: src/Module/Settings/Connectors.php:202 +#: src/Module/Settings/Connectors.php:196 msgid "Followed content scope" msgstr "Követett tartalom hatóköre" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:198 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "Alapértelmezetten az idővonalán megjelennek azok a beszélgetések, amelyekben a követői részt vettek, de nem ők indították el. Ezt a viselkedést kikapcsolhatja, vagy kiterjesztheti azokra a beszélgetésekre, amelyekben a követőinek tetszett egy bejegyzés." -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:200 msgid "Only conversations my follows started" msgstr "Csak a követőim által indított beszélgetések" -#: src/Module/Settings/Connectors.php:207 +#: src/Module/Settings/Connectors.php:201 msgid "Conversations my follows started or commented on (default)" msgstr "A követőim által indított vagy hozzászólt beszélgetések (alapértelmezett)" -#: src/Module/Settings/Connectors.php:208 +#: src/Module/Settings/Connectors.php:202 msgid "Any conversation my follows interacted with, including likes" msgstr "A követőim által interakcióba került beszélgetések, beleértve a kedveléseket is" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "Collapse sensitive posts" msgstr "Érzékeny bejegyzések összecsukása" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "Ha egy bejegyzés „érzékenyként” van jelölve, akkor az összecsukott állapotban jelenik meg, ha ez a beállítás engedélyezve van." -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "Enable intelligent shortening" msgstr "Intelligens rövidítés engedélyezése" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "Általában a rendszer megpróbálja megkeresni a legjobb hivatkozást a rövidített bejegyzésekhez történő hozzáadáshoz. Ha le van tiltva, akkor minden egyes rövidített bejegyzés mindig az eredeti Friendica bejegyzésre fog mutatni." -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "Enable simple text shortening" msgstr "Egyszerű szövegrövidítés engedélyezése" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "Általában a rendszer lerövidíti a bejegyzéseket a következő soremelésnél. Ha ez a beállítás engedélyezve van, akkor a rendszer a legnagyobb karakterkorlátnál fogja rövidíteni a szöveget." -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "Attach the link title" msgstr "A hivatkozás címének csatolása" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Ha be van kapcsolva, akkor a csatolt hivatkozás címe címként lesz hozzáadva a Diaspora hálózatra küldött bejegyzéseknél. Ez többnyire az olyan „távoli önmaga” partnerekkel hasznos, amelyek megosztják a hírforrás tartalmát." -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "API: Use spoiler field as title" msgstr "API: a spoiler mező használata címként" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "Ha aktiválva van, akkor az API-ban lévő „spoiler_text” mező lesz használva az önálló bejegyzések címeként. Ha ki van kapcsolva, akkor a spoiler szövegéhez lesz használva. A megjegyzéseknél mindig a spoiler szövegéhez lesz használva." -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "API: Automatically links at the end of the post as attached posts" msgstr "API: automatikusan a bejegyzés végéhez kapcsolja csatolt bejegyzésként" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "Ha aktiválva van, akkor a bejegyzés végéhez hozzáadott hivatkozások ugyanúgy reagálnak, mint a webes felületen hozzáadott hivatkozások." -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "Article Mode" msgstr "Cikk mód" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "Azt vezérli, hogy a címekkel rendelkező bejegyzések hogyan kerülnek továbbításra. A Mastodon és elágaztatásai nem jelenítik meg ezeknek a bejegyzéseknek a tartalmát, ha a bejegyzést a megfelelő (alapértelmezett) módon hozták létre." -#: src/Module/Settings/Connectors.php:218 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "Az örökölt ActivityPub/GNU Social fiókja" - -#: src/Module/Settings/Connectors.php:218 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "Ha megadja itt a régi, egy ActivityPub alapú rendszerből származó fiókja nevét, illetve a GNU Social vagy Statusnet fiókja nevét (felhasználó@tartomány.tld formátumban), akkor a partnerei automatikusan hozzá lesznek adva. A mező ki lesz ürítve, ha elkészült." - -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:215 msgid "Email/Mailbox Setup" msgstr "E-mail vagy postafiók-beállítások" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:216 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Ha e-mailes partnerekkel szeretne kommunikálni ezen szolgáltatás használatával (opcionális), akkor adja meg, hogy hogyan kell kapcsolódni a postafiókjához." -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:217 msgid "Last successful email check:" msgstr "Legutóbbi sikeres e-mail-ellenőrzés:" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:219 msgid "IMAP server name:" msgstr "IMAP-kiszolgáló neve:" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:220 msgid "IMAP port:" msgstr "IMAP port:" -#: src/Module/Settings/Connectors.php:228 +#: src/Module/Settings/Connectors.php:221 msgid "Security:" msgstr "Biztonság:" -#: src/Module/Settings/Connectors.php:229 +#: src/Module/Settings/Connectors.php:222 msgid "Email login name:" msgstr "E-mail bejelentkezési neve:" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:223 msgid "Email password:" msgstr "E-mail jelszava:" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:224 msgid "Reply-to address:" msgstr "Válaszcím:" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:225 msgid "Send public posts to all email contacts:" msgstr "Nyilvános bejegyzések küldése az összes e-mail partnernek:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Action after import:" msgstr "Importálás utáni művelet:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Move to folder" msgstr "Áthelyezés mappába" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:227 msgid "Move to folder:" msgstr "Áthelyezés mappába:" +#: src/Module/Settings/ContactImport.php:63 +msgid "Contact CSV file upload error" +msgstr "Partner CSV-fájl feltöltési hiba" + +#: src/Module/Settings/ContactImport.php:82 +msgid "Importing Contacts done" +msgstr "A partnerek importálása kész" + +#: src/Module/Settings/ContactImport.php:112 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "Töltsön fel egy olyan CSV-fájlt, amely a követett fiókok kezelőjét tartalmazza az első oszlopban, ahogy a régi fiókból exportálta." + +#: src/Module/Settings/ContactImport.php:113 +msgid "Upload File" +msgstr "Fájl feltöltése" + +#: src/Module/Settings/ContactImport.php:115 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "Az örökölt ActivityPub/GNU Social fiókja" + +#: src/Module/Settings/ContactImport.php:115 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "Ha megadja itt a régi, egy ActivityPub alapú rendszerből származó fiókja nevét, illetve a GNU Social vagy Statusnet fiókja nevét (felhasználó@tartomány.tld formátumban), akkor a partnerei automatikusan hozzá lesznek adva. A mező ki lesz ürítve, ha elkészült." + #: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "A meghatalmazás sikeresen megadva." @@ -11013,42 +11019,42 @@ msgstr "Személyes kulcsszavak:" msgid "(Used for searching profiles, never shown to others)" msgstr "(Profilok kereséséhez lesz használva, sosem látható másoknak)" -#: 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/Crop.php:90 +#: src/Module/Settings/Profile/Photo/Crop.php:108 +#: src/Module/Settings/Profile/Photo/Crop.php:126 #: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "A kép méretének csökkentése [%s] sikertelen." -#: src/Module/Settings/Profile/Photo/Crop.php:136 +#: src/Module/Settings/Profile/Photo/Crop.php:133 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Töltse újra az oldalt a Shift billentyű lenyomása közben, vagy törölje a böngésző gyorsítótárát, ha az új fénykép nem jelenik meg azonnal." -#: src/Module/Settings/Profile/Photo/Crop.php:141 +#: src/Module/Settings/Profile/Photo/Crop.php:138 msgid "Unable to process image" msgstr "Nem lehet feldolgozni a képet" -#: src/Module/Settings/Profile/Photo/Crop.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:157 msgid "Photo not found." msgstr "A fénykép nem található." -#: src/Module/Settings/Profile/Photo/Crop.php:182 +#: src/Module/Settings/Profile/Photo/Crop.php:179 msgid "Profile picture successfully updated." msgstr "A profilfénykép sikeresen frissítve." -#: src/Module/Settings/Profile/Photo/Crop.php:208 -#: src/Module/Settings/Profile/Photo/Crop.php:212 +#: src/Module/Settings/Profile/Photo/Crop.php:205 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Crop Image" msgstr "Kép levágása" -#: src/Module/Settings/Profile/Photo/Crop.php:209 +#: src/Module/Settings/Profile/Photo/Crop.php:206 msgid "Please adjust the image cropping for optimum viewing." msgstr "Igazítsa a kép levágását az optimális megtekintéshez." -#: src/Module/Settings/Profile/Photo/Crop.php:211 +#: src/Module/Settings/Profile/Photo/Crop.php:208 msgid "Use Image As Is" msgstr "Kép használata, ahogy van" @@ -11119,17 +11125,17 @@ msgstr "A felhasználó-azonosító %d" msgid "Your account has been successfully removed. Bye bye!" msgstr "A fiókja sikeresen el lett távolítva. Viszlát!" -#: src/Module/Settings/RemoveMe.php:116 +#: src/Module/Settings/RemoveMe.php:114 msgid "Remove My Account" msgstr "Saját fiók eltávolítása" -#: src/Module/Settings/RemoveMe.php:117 +#: src/Module/Settings/RemoveMe.php:115 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Ez teljesen el fogja távolítani a fiókját. Miután ez megtörtént, nem lesz visszaállítható." -#: src/Module/Settings/RemoveMe.php:122 +#: src/Module/Settings/RemoveMe.php:120 msgid "Please enter your password for verification:" msgstr "Adja meg a jelszavát az ellenőrzéshez:" @@ -11524,11 +11530,11 @@ msgstr "Sajnos a kért beszélgetés nem érhető el az Ön számára." msgid "Possible reasons include:" msgstr "A lehetséges okok a következők:" -#: src/Module/Special/HTTPException.php:64 +#: src/Module/Special/HTTPException.php:65 msgid "Stack trace:" msgstr "Veremkiíratás:" -#: src/Module/Special/HTTPException.php:69 +#: src/Module/Special/HTTPException.php:70 #, php-format msgid "Exception thrown in %s:%d" msgstr "Kivétel történt itt: %s:%d" @@ -12311,295 +12317,295 @@ msgstr "Vegye fel a kapcsolatot a küldővel erre a bejegyzésre válaszolva, ha msgid "%s posted an update." msgstr "%s frissítést küldött." -#: src/Object/Post.php:124 +#: src/Object/Post.php:125 msgid "Private Message" msgstr "Személyes üzenet" -#: src/Object/Post.php:128 +#: src/Object/Post.php:129 msgid "Public Message" msgstr "Nyilvános üzenet" -#: src/Object/Post.php:132 +#: src/Object/Post.php:133 msgid "Unlisted Message" msgstr "Listázatlan üzenet" -#: src/Object/Post.php:168 +#: src/Object/Post.php:169 msgid "This entry was edited" msgstr "Ezt a bejegyzést szerkesztették" -#: src/Object/Post.php:196 +#: src/Object/Post.php:197 msgid "Connector Message" msgstr "Csatlakozóüzenet" -#: src/Object/Post.php:225 src/Object/Post.php:227 +#: src/Object/Post.php:226 src/Object/Post.php:228 msgid "Edit" msgstr "Szerkesztés" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Delete globally" msgstr "Törlés globálisan" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Remove locally" msgstr "Eltávolítás helyileg" -#: src/Object/Post.php:268 +#: src/Object/Post.php:269 #, php-format msgid "Block %s" msgstr "%s tiltása" -#: src/Object/Post.php:273 +#: src/Object/Post.php:274 #, php-format msgid "Ignore %s" msgstr "%s mellőzése" -#: src/Object/Post.php:278 +#: src/Object/Post.php:279 #, php-format msgid "Collapse %s" msgstr "%s összecsukása" -#: src/Object/Post.php:282 +#: src/Object/Post.php:283 msgid "Report post" msgstr "Bejegyzés jelentése" -#: src/Object/Post.php:293 +#: src/Object/Post.php:294 msgid "Save to folder" msgstr "Mentés mappába" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will attend" msgstr "Részt veszek" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will not attend" msgstr "Nem veszek részt" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I might attend" msgstr "Talán részt veszek" -#: src/Object/Post.php:380 +#: src/Object/Post.php:381 msgid "Ignore thread" msgstr "Szál mellőzése" -#: src/Object/Post.php:381 +#: src/Object/Post.php:382 msgid "Unignore thread" msgstr "Szál mellőzésének megszüntetése" -#: src/Object/Post.php:382 +#: src/Object/Post.php:383 msgid "Toggle ignore status" msgstr "Mellőzési állapot átváltása" -#: src/Object/Post.php:392 +#: src/Object/Post.php:393 msgid "Add star" msgstr "Csillag hozzáadása" -#: src/Object/Post.php:393 +#: src/Object/Post.php:394 msgid "Remove star" msgstr "Csillag eltávolítása" -#: src/Object/Post.php:394 +#: src/Object/Post.php:395 msgid "Toggle star status" msgstr "Csillagállapot átváltása" -#: src/Object/Post.php:405 +#: src/Object/Post.php:406 msgid "Pin" msgstr "Kitűzés" -#: src/Object/Post.php:406 +#: src/Object/Post.php:407 msgid "Unpin" msgstr "Kitűzés megszüntetése" -#: src/Object/Post.php:407 +#: src/Object/Post.php:408 msgid "Toggle pin status" msgstr "Kitűzés állapotának átváltása" -#: src/Object/Post.php:410 +#: src/Object/Post.php:411 msgid "Pinned" msgstr "Kitűzve" -#: src/Object/Post.php:415 +#: src/Object/Post.php:416 msgid "Add tag" msgstr "Címke hozzáadása" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote share this" msgstr "Idézett megosztás" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote Share" msgstr "Idézett megosztás" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare this" msgstr "Újra megosztás" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare" msgstr "Újra megosztás" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Cancel your Reshare" msgstr "Újra megosztás megszakítása" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Unshare" msgstr "Megosztás megszüntetése" -#: src/Object/Post.php:478 +#: src/Object/Post.php:479 #, php-format msgid "%s (Received %s)" msgstr "%s (fogadva: %s)" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Comment this item on your system" msgstr "Hozzászólás az elemhez a saját rendszerén" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Remote comment" msgstr "Távoli hozzászólás" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via ..." msgstr "Megosztás ezen keresztül…" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via external services" msgstr "Megosztás külső szolgáltatásokon keresztül" -#: src/Object/Post.php:513 +#: src/Object/Post.php:514 msgid "Unknown parent" msgstr "Ismeretlen szülő" -#: src/Object/Post.php:517 +#: src/Object/Post.php:518 #, php-format msgid "in reply to %s" msgstr "válasz a következőre: %s" -#: src/Object/Post.php:519 +#: src/Object/Post.php:520 msgid "Parent is probably private or not federated." msgstr "A szülő valószínűleg személyes vagy nem föderált." -#: src/Object/Post.php:543 +#: src/Object/Post.php:544 msgid "to" msgstr "ide:" -#: src/Object/Post.php:544 +#: src/Object/Post.php:545 msgid "via" msgstr "ezen keresztül:" -#: src/Object/Post.php:545 +#: src/Object/Post.php:546 msgid "Wall-to-Wall" msgstr "Falról-falra" -#: src/Object/Post.php:546 +#: src/Object/Post.php:547 msgid "via Wall-To-Wall:" msgstr "falról-falra szolgáltatáson keresztül:" -#: src/Object/Post.php:599 +#: src/Object/Post.php:600 #, php-format msgid "Reply to %s" msgstr "Válasz erre: %s" -#: src/Object/Post.php:602 +#: src/Object/Post.php:603 msgid "More" msgstr "Több" -#: src/Object/Post.php:621 +#: src/Object/Post.php:622 msgid "Notifier task is pending" msgstr "Az értesítőfeladat függőben van" -#: src/Object/Post.php:622 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is pending" msgstr "A távoli kiszolgálókra történő kézbesítés függőben van" -#: src/Object/Post.php:623 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is underway" msgstr "A távoli kiszolgálókra történő kézbesítés úton van" -#: src/Object/Post.php:624 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is mostly done" msgstr "A távoli kiszolgálókra történő kézbesítés többnyire készen van" -#: src/Object/Post.php:625 +#: src/Object/Post.php:626 msgid "Delivery to remote servers is done" msgstr "A távoli kiszolgálókra történő kézbesítés készen van" -#: src/Object/Post.php:647 +#: src/Object/Post.php:648 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d hozzászólás" msgstr[1] "%d hozzászólás" -#: src/Object/Post.php:648 +#: src/Object/Post.php:649 msgid "Show more" msgstr "Több megjelenítése" -#: src/Object/Post.php:649 +#: src/Object/Post.php:650 msgid "Show fewer" msgstr "Kevesebb megjelenítése" -#: src/Object/Post.php:686 +#: src/Object/Post.php:687 #, php-format msgid "Reshared by: %s" msgstr "Újra megosztotta: %s" -#: src/Object/Post.php:691 +#: src/Object/Post.php:692 #, php-format msgid "Viewed by: %s" msgstr "Megtekintette: %s" -#: src/Object/Post.php:696 +#: src/Object/Post.php:697 #, php-format msgid "Read by: %s" msgstr "Olvasta: %s" -#: src/Object/Post.php:701 +#: src/Object/Post.php:702 #, php-format msgid "Liked by: %s" msgstr "Kedvelte: %s" -#: src/Object/Post.php:706 +#: src/Object/Post.php:707 #, php-format msgid "Disliked by: %s" msgstr "Nem kedvelte: %s" -#: src/Object/Post.php:711 +#: src/Object/Post.php:712 #, php-format msgid "Attended by: %s" msgstr "Részt vett: %s" -#: src/Object/Post.php:716 +#: src/Object/Post.php:717 #, php-format msgid "Maybe attended by: %s" msgstr "Talán részt vett: %s" -#: src/Object/Post.php:721 +#: src/Object/Post.php:722 #, php-format msgid "Not attended by: %s" msgstr "Nem vett részt: %s" -#: src/Object/Post.php:726 +#: src/Object/Post.php:727 #, php-format msgid "Commented by: %s" msgstr "Hozzászólt: %s" -#: src/Object/Post.php:731 +#: src/Object/Post.php:732 #, php-format msgid "Reacted with %s by: %s" msgstr "Reagált ezzel: %s: %s" -#: src/Object/Post.php:754 +#: src/Object/Post.php:755 #, php-format msgid "Quote shared by: %s" msgstr "Idézetten osztott meg: %s" -#: src/Protocol/ActivityPub/Receiver.php:557 +#: src/Protocol/ActivityPub/Receiver.php:558 msgid "Chat" msgstr "Csevegés" -#: src/Protocol/Delivery.php:530 +#: src/Protocol/Delivery.php:531 msgid "(no subject)" msgstr "(nincs tárgy)" @@ -12612,20 +12618,20 @@ msgstr "A „%s” mappának írhatónak kell lennie a webkiszolgáló által." msgid "Login failed." msgstr "Bejelentkezés sikertelen." -#: src/Security/Authentication.php:260 +#: src/Security/Authentication.php:261 msgid "Login failed. Please check your credentials." msgstr "Bejelentkezés sikertelen. Ellenőrizze a hitelesítési adatait." -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:374 #, php-format msgid "Welcome %s" msgstr "Üdvözöljük, %s!" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:375 msgid "Please upload a profile photo." msgstr "Töltsön fel egy profilfényképet." -#: src/Security/OpenWebAuth.php:149 +#: src/Security/OpenWebAuth.php:150 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s üdvözli őt: %2$s" diff --git a/view/lang/hu/strings.php b/view/lang/hu/strings.php index 45f89241be..eed6eb7483 100644 --- a/view/lang/hu/strings.php +++ b/view/lang/hu/strings.php @@ -1618,6 +1618,7 @@ $a->strings['Social Networks'] = 'Közösségi hálózatok'; $a->strings['Manage Accounts'] = 'Fiókok kezelése'; $a->strings['Connected apps'] = 'Kapcsolt alkalmazások'; $a->strings['Remote servers'] = 'Távoli kiszolgálók'; +$a->strings['Import Contacts'] = 'Partnerek importálása'; $a->strings['Export personal data'] = 'Személyes adatok exportálása'; $a->strings['Remove account'] = 'Fiók eltávolítása'; $a->strings['This page is missing a url parameter.'] = 'Erről az oldalról hiányzik egy URL paraméter.'; @@ -2446,8 +2447,6 @@ $a->strings['Wrong Password.'] = 'Hibás jelszó.'; $a->strings['Invalid email.'] = 'Érvénytelen e-mail-cím.'; $a->strings['Cannot change to that email.'] = 'Nem lehet megváltoztatni arra az e-mail-címre.'; $a->strings['Settings were not updated.'] = 'A beállítások nem lettek frissítve.'; -$a->strings['Contact CSV file upload error'] = 'Partner CSV-fájl feltöltési hiba'; -$a->strings['Importing Contacts done'] = 'A partnerek importálása kész'; $a->strings['Relocate message has been send to your contacts'] = 'Az áthelyezési üzenet el lett küldve a partnereknek'; $a->strings['Unable to find your profile. Please contact your admin.'] = 'Nem található a profilja. Vegye fel a kapcsolatot a rendszergazdával.'; $a->strings['Account for a service that automatically shares content based on user defined channels.'] = 'Fiók egy olyan szolgáltatáshoz, amely automatikusan megosztja a tartalmat a felhasználó által meghatározott csatornák alapján.'; @@ -2543,9 +2542,6 @@ $a->strings['Show notifications of ignored contacts'] = 'Mellőzött partnerek $a->strings['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.'] = 'Nem látja a mellőzött partnerektől érkező bejegyzéseket. Viszont továbbra is látja a hozzászólásaikat. Ez a beállítás azt vezérli, hogy továbbra is szeretne-e olyan normál értesítéseket kapni vagy sem, amelyeket mellőzött partnerek okoznak.'; $a->strings['Advanced Account/Page Type Settings'] = 'Speciális fióktípus vagy oldaltípus beállítások'; $a->strings['Change the behaviour of this account for special situations'] = 'A fiók viselkedésének megváltoztatása bizonyos helyzetekre.'; -$a->strings['Import Contacts'] = 'Partnerek importálása'; -$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Töltsön fel egy olyan CSV-fájlt, amely a követett fiókok kezelőjét tartalmazza az első oszlopban, ahogy a régi fiókból exportálta.'; -$a->strings['Upload File'] = 'Fájl feltöltése'; $a->strings['Relocate'] = 'Áthelyezés'; $a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'Ha áthelyezte ezt a profilt egy másik kiszolgálóról, és néhány partnere nem kapta meg a frissítéseket, akkor próbálja meg megnyomni ezt a gombot.'; $a->strings['Resend relocate message to contacts'] = 'Áthelyezési üzenet küldése a partnereknek'; @@ -2613,8 +2609,6 @@ $a->strings['API: Automatically links at the end of the post as attached posts'] $a->strings['When activated, added links at the end of the post react the same way as added links in the web interface.'] = 'Ha aktiválva van, akkor a bejegyzés végéhez hozzáadott hivatkozások ugyanúgy reagálnak, mint a webes felületen hozzáadott hivatkozások.'; $a->strings['Article Mode'] = 'Cikk mód'; $a->strings['Controls how posts with titles are transmitted. Mastodon and its forks don\'t display the content of these posts if the post is created in the correct (default) way.'] = 'Azt vezérli, hogy a címekkel rendelkező bejegyzések hogyan kerülnek továbbításra. A Mastodon és elágaztatásai nem jelenítik meg ezeknek a bejegyzéseknek a tartalmát, ha a bejegyzést a megfelelő (alapértelmezett) módon hozták létre.'; -$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Az örökölt ActivityPub/GNU Social fiókja'; -$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Ha megadja itt a régi, egy ActivityPub alapú rendszerből származó fiókja nevét, illetve a GNU Social vagy Statusnet fiókja nevét (felhasználó@tartomány.tld formátumban), akkor a partnerei automatikusan hozzá lesznek adva. A mező ki lesz ürítve, ha elkészült.'; $a->strings['Email/Mailbox Setup'] = 'E-mail vagy postafiók-beállítások'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Ha e-mailes partnerekkel szeretne kommunikálni ezen szolgáltatás használatával (opcionális), akkor adja meg, hogy hogyan kell kapcsolódni a postafiókjához.'; $a->strings['Last successful email check:'] = 'Legutóbbi sikeres e-mail-ellenőrzés:'; @@ -2628,6 +2622,12 @@ $a->strings['Send public posts to all email contacts:'] = 'Nyilvános bejegyzés $a->strings['Action after import:'] = 'Importálás utáni művelet:'; $a->strings['Move to folder'] = 'Áthelyezés mappába'; $a->strings['Move to folder:'] = 'Áthelyezés mappába:'; +$a->strings['Contact CSV file upload error'] = 'Partner CSV-fájl feltöltési hiba'; +$a->strings['Importing Contacts done'] = 'A partnerek importálása kész'; +$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Töltsön fel egy olyan CSV-fájlt, amely a követett fiókok kezelőjét tartalmazza az első oszlopban, ahogy a régi fiókból exportálta.'; +$a->strings['Upload File'] = 'Fájl feltöltése'; +$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Az örökölt ActivityPub/GNU Social fiókja'; +$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Ha megadja itt a régi, egy ActivityPub alapú rendszerből származó fiókja nevét, illetve a GNU Social vagy Statusnet fiókja nevét (felhasználó@tartomány.tld formátumban), akkor a partnerei automatikusan hozzá lesznek adva. A mező ki lesz ürítve, ha elkészült.'; $a->strings['Delegation successfully granted.'] = 'A meghatalmazás sikeresen megadva.'; $a->strings['Parent user not found, unavailable or password doesn\'t match.'] = 'A fölérendelt felhasználó nem található, nem érhető el vagy a jelszó nem egyezik.'; $a->strings['Delegation successfully revoked.'] = 'A meghatalmazás sikeresen visszavonva.'; diff --git a/view/lang/is/messages.po b/view/lang/is/messages.po index 6f569f26d4..0b3660736b 100644 --- a/view/lang/is/messages.po +++ b/view/lang/is/messages.po @@ -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: Sveinn í Felli , 2014,2016,2018\n" "Language-Team: Icelandic (http://app.transifex.com/Friendica/friendica/language/is/)\n" @@ -26,34 +26,34 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\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 "Ekki tókst að finna upphaflega færslu." -#: 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 "Tóm færsla eytt." -#: 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 "Atriði fannst ekki." -#: 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 "Atriði fannst ekki." #: 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 "Atriði fannst ekki." #: 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 "Atriði fannst ekki." msgid "Permission denied." msgstr "Heimild ekki veitt." -#: mod/lostpass.php:28 +#: mod/lostpass.php:27 msgid "No valid account found." msgstr "Engin gildur aðgangur fannst." -#: mod/lostpass.php:40 +#: mod/lostpass.php:39 msgid "Password reset request issued. Check your email." msgstr "Gefin var beiðni um breytingu á lykilorði. Opnaðu tölvupóstinn þinn." -#: mod/lostpass.php:46 +#: mod/lostpass.php:45 #, php-format msgid "" "\n" @@ -112,7 +114,7 @@ msgid "" "\t\tissued this request." msgstr "" -#: mod/lostpass.php:57 +#: mod/lostpass.php:56 #, php-format msgid "" "\n" @@ -129,70 +131,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "" -#: mod/lostpass.php:72 +#: mod/lostpass.php:71 #, php-format msgid "Password reset requested at %s" msgstr "Beðið var um endurstillingu lykilorðs %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 "Ekki var hægt að sannreyna beiðni. (Það getur verið að þú hafir þegar verið búin/n að senda hana.) Endurstilling á lykilorði tókst ekki." -#: 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 "Gleymdir þú lykilorði þínu?" -#: 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 "Sláðu inn tölvupóstfangið þitt til að endurstilla aðgangsorðið og fá leiðbeiningar sendar með tölvupósti." -#: 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 "Gælunafn eða tölvupóstfang: " -#: mod/lostpass.php:119 +#: mod/lostpass.php:118 msgid "Reset" msgstr "Endurstilla" -#: mod/lostpass.php:134 src/Module/Security/Login.php:161 +#: mod/lostpass.php:133 src/Module/Security/Login.php:161 msgid "Password Reset" msgstr "Endurstilling aðgangsorðs" -#: mod/lostpass.php:135 +#: mod/lostpass.php:134 msgid "Your password has been reset as requested." msgstr "Aðgangsorðið þitt hefur verið endurstilt." -#: mod/lostpass.php:136 +#: mod/lostpass.php:135 msgid "Your new password is" msgstr "Nýja aðgangsorð þitt er " -#: mod/lostpass.php:137 +#: mod/lostpass.php:136 msgid "Save or copy your new password - and then" msgstr "Vistaðu eða afritaðu nýja aðgangsorðið - og" -#: mod/lostpass.php:138 +#: mod/lostpass.php:137 msgid "click here to login" msgstr "smelltu síðan hér til að skrá þig inn" -#: mod/lostpass.php:139 +#: mod/lostpass.php:138 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Þú getur breytt aðgangsorðinu þínu á Stillingar síðunni eftir að þú hefur skráð þig inn." -#: 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 "" -#: mod/lostpass.php:152 +#: mod/lostpass.php:151 #, php-format msgid "" "\n" @@ -217,7 +219,7 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:164 +#: mod/lostpass.php:163 #, php-format msgid "Your password has been changed at %s" msgstr "Aðgangsorðinu þínu var breytt í %s" @@ -281,11 +283,11 @@ msgstr "Til:" msgid "Subject:" msgstr "Efni:" -#: 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 "Skilaboðin:" -#: 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 "Hlaða upp mynd" @@ -294,16 +296,16 @@ msgstr "Hlaða upp mynd" msgid "Insert web link" msgstr "Setja inn vefslóð" -#: 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 "Hinkraðu aðeins" -#: 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 "Hinkraðu aðeins" #: 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 "Hinkraðu aðeins" #: 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" @@ -378,396 +380,396 @@ msgid_plural "%d messages" msgstr[0] "%d skilaboð" msgstr[1] "%d skilaboð" -#: mod/notes.php:40 src/Module/BaseProfile.php:93 +#: mod/notes.php:41 src/Module/BaseProfile.php:93 msgid "Personal Notes" msgstr "Persónulegar glósur" -#: 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 "Vista" -#: 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 "Myndabækur" -#: 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 "Nýlegar myndir" -#: 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 "Hlaða upp nýjum myndum" -#: 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 "allir" -#: mod/photos.php:142 +#: mod/photos.php:140 msgid "Contact information unavailable" msgstr "Tengiliða upplýsingar ekki til" -#: mod/photos.php:171 +#: mod/photos.php:169 msgid "Album not found." msgstr "Myndabók finnst ekki." -#: 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 "mynd" -#: mod/photos.php:504 +#: mod/photos.php:502 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s var merkt í %2$s af %3$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 "Opinber aðgangur ekki veittur." -#: mod/photos.php:546 +#: mod/photos.php:544 msgid "No photos selected" msgstr "Engar myndir valdar" -#: mod/photos.php:674 +#: mod/photos.php:672 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:681 +#: mod/photos.php:679 msgid "Upload Photos" msgstr "Hlaða upp myndum" -#: mod/photos.php:685 mod/photos.php:774 +#: mod/photos.php:683 mod/photos.php:772 msgid "New album name: " msgstr "Nýtt nafn myndbókar:" -#: 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 "Ekki sýna færslu fyrir þessari upphölun" -#: 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 "Aðgangsheimildir" -#: 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 "Fjarlægja myndabók" -#: 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 "Hætta við" -#: mod/photos.php:783 +#: mod/photos.php:781 msgid "Edit Album" msgstr "Breyta myndbók" -#: 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 "Birta nýjast fyrst" -#: mod/photos.php:790 +#: mod/photos.php:788 msgid "Show Oldest First" msgstr "Birta elsta fyrst" -#: mod/photos.php:811 src/Module/Profile/Photos.php:335 +#: mod/photos.php:809 src/Module/Profile/Photos.php:343 msgid "View Photo" msgstr "Skoða mynd" -#: mod/photos.php:843 +#: mod/photos.php:841 msgid "Permission denied. Access to this item may be restricted." msgstr "Aðgangi hafnað. Aðgangur að þessum hlut kann að vera skertur." -#: mod/photos.php:845 +#: mod/photos.php:843 msgid "Photo not available" msgstr "Mynd ekki til" -#: 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 "Fjarlægja mynd" -#: mod/photos.php:954 +#: mod/photos.php:952 msgid "View photo" msgstr "Birta mynd" -#: mod/photos.php:956 +#: mod/photos.php:954 msgid "Edit photo" msgstr "Breyta mynd" -#: mod/photos.php:957 +#: mod/photos.php:955 msgid "Delete photo" msgstr "" -#: mod/photos.php:958 +#: mod/photos.php:956 msgid "Use as profile photo" msgstr "Nota sem forsíðu mynd" -#: mod/photos.php:965 +#: mod/photos.php:963 msgid "Private Photo" msgstr "" -#: mod/photos.php:971 +#: mod/photos.php:969 msgid "View Full Size" msgstr "Skoða í fullri stærð" -#: mod/photos.php:1024 +#: mod/photos.php:1022 msgid "Tags: " msgstr "Merki:" -#: mod/photos.php:1027 +#: mod/photos.php:1025 msgid "[Select tags to remove]" msgstr "" -#: mod/photos.php:1042 +#: mod/photos.php:1040 msgid "New album name" msgstr "Nýtt nafn myndbókar" -#: mod/photos.php:1043 +#: mod/photos.php:1041 msgid "Caption" msgstr "Yfirskrift" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "Add a Tag" msgstr "Bæta við merki" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Til dæmis: @bob, @Barbara_Jensen, @jim@example.com, #Reykjavík #tjalda" -#: mod/photos.php:1045 +#: mod/photos.php:1043 msgid "Do not rotate" msgstr "Ekki snúa" -#: mod/photos.php:1046 +#: mod/photos.php:1044 msgid "Rotate CW (right)" msgstr "Snúa réttsælis (hægri)" -#: mod/photos.php:1047 +#: mod/photos.php:1045 msgid "Rotate CCW (left)" msgstr "Snúa rangsælis (vinstri)" -#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: mod/photos.php:1091 mod/photos.php:1147 mod/photos.php:1227 #: src/Module/Contact.php:600 src/Module/Item/Compose.php:184 -#: src/Object/Post.php:1142 +#: src/Object/Post.php:1143 msgid "This is you" msgstr "Þetta ert þú" -#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 -#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:598 -#: src/Object/Post.php:1144 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:599 +#: src/Object/Post.php:1145 msgid "Comment" msgstr "Athugasemd" -#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 -#: src/Content/Conversation.php:401 src/Module/Calendar/Event/Form.php:234 +#: 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 -#: src/Object/Post.php:1158 +#: src/Object/Post.php:1159 msgid "Preview" msgstr "Forskoðun" -#: mod/photos.php:1098 src/Content/Conversation.php:355 -#: src/Module/Post/Edit.php:121 src/Object/Post.php:1146 +#: mod/photos.php:1096 src/Content/Conversation.php:357 +#: src/Module/Post/Edit.php:121 src/Object/Post.php:1147 msgid "Loading..." msgstr "" -#: mod/photos.php:1190 src/Content/Conversation.php:1485 -#: src/Object/Post.php:260 +#: mod/photos.php:1188 src/Content/Conversation.php:1487 +#: src/Object/Post.php:261 msgid "Select" msgstr "Velja" -#: mod/photos.php:1191 src/Content/Conversation.php:1486 -#: 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:233 +#: 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 +#: src/Module/Settings/Connectors.php:226 #: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Eyða" -#: mod/photos.php:1252 src/Object/Post.php:426 +#: mod/photos.php:1250 src/Object/Post.php:427 msgid "Like" msgstr "" -#: mod/photos.php:1253 src/Object/Post.php:426 +#: mod/photos.php:1251 src/Object/Post.php:427 msgid "I like this (toggle)" msgstr "Mér líkar þetta (kveikja/slökkva)" -#: mod/photos.php:1254 src/Object/Post.php:427 +#: mod/photos.php:1252 src/Object/Post.php:428 msgid "Dislike" msgstr "" -#: mod/photos.php:1256 src/Object/Post.php:427 +#: mod/photos.php:1254 src/Object/Post.php:428 msgid "I don't like this (toggle)" msgstr "Mér líkar þetta ekki (kveikja/slökkva)" -#: mod/photos.php:1278 +#: mod/photos.php:1276 msgid "Map" msgstr "Landakort" -#: src/App.php:467 +#: src/App.php:255 msgid "Apologies but the website is unavailable at the moment." msgstr "" -#: src/App/Page.php:237 +#: src/App/Page.php:241 msgid "Delete this item?" msgstr "Eyða þessu atriði?" -#: src/App/Page.php:238 +#: src/App/Page.php:242 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:239 +#: src/App/Page.php:243 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:240 +#: src/App/Page.php:244 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:241 +#: src/App/Page.php:245 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:242 src/Module/Settings/Server/Action.php:47 +#: src/App/Page.php:246 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:244 +#: src/App/Page.php:248 msgid "Like not successful" msgstr "" -#: src/App/Page.php:245 +#: src/App/Page.php:249 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:246 +#: src/App/Page.php:250 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:247 +#: src/App/Page.php:251 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:248 +#: src/App/Page.php:252 msgid "Backend error" msgstr "" -#: src/App/Page.php:249 +#: src/App/Page.php:253 msgid "Network error" msgstr "" -#: src/App/Page.php:252 +#: src/App/Page.php:256 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:257 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:254 +#: src/App/Page.php:258 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:255 +#: src/App/Page.php:259 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:256 +#: src/App/Page.php:260 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:261 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:262 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:263 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:264 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:265 msgid "Remove file" msgstr "" -#: src/App/Page.php:262 +#: src/App/Page.php:266 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:346 +#: src/App/Page.php:350 msgid "toggle mobile" msgstr "" @@ -800,7 +802,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:181 src/Module/Contact.php:395 +#: src/Content/Widget.php:254 src/Core/ACL.php:182 src/Module/Contact.php:395 #: src/Module/Privacy/PermissionTooltip.php:150 #: src/Module/Privacy/PermissionTooltip.php:172 #: src/Module/Settings/Channels.php:146 @@ -842,7 +844,7 @@ msgstr "" msgid "The contact entries have been archived" msgstr "" -#: src/Console/ClearAvatarCache.php:73 +#: src/Console/ClearAvatarCache.php:74 msgid "" "The avatar cache needs to be disabled in local.config.php to use this " "command." @@ -928,22 +930,22 @@ msgstr "" msgid "no resource in photo %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:123 +#: src/Console/MoveToAvatarCache.php:127 #, php-format msgid "no photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:132 +#: src/Console/MoveToAvatarCache.php:136 #, php-format msgid "no image data for photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:141 +#: src/Console/MoveToAvatarCache.php:145 #, php-format msgid "invalid image for id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:154 +#: src/Console/MoveToAvatarCache.php:158 #, php-format msgid "Quit on invalid photo %s" msgstr "" @@ -973,11 +975,14 @@ msgstr "" msgid "Enter user nickname: " msgstr "" -#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Console/User.php:168 src/Model/User.php:830 #: src/Module/Api/Twitter/ContactEndpoint.php:62 -#: 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/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/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "Notandi fannst ekki" @@ -987,12 +992,12 @@ msgid "Enter new password: " msgstr "Settu inn nýtt lykilorð: " #: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 -#: src/Module/Settings/Account.php:59 +#: src/Module/Settings/Account.php:57 msgid "Password update failed. Please try again." msgstr "Uppfærsla á aðgangsorði tókst ekki. Reyndu aftur." #: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 -#: src/Module/Settings/Account.php:62 +#: src/Module/Settings/Account.php:60 msgid "Password changed." msgstr "Aðgangsorði breytt." @@ -1073,86 +1078,86 @@ msgstr "Vikulega" msgid "Monthly" msgstr "Mánaðarlega" -#: src/Content/ContactSelector.php:118 +#: src/Content/ContactSelector.php:117 msgid "DFRN" msgstr "" -#: src/Content/ContactSelector.php:119 +#: src/Content/ContactSelector.php:118 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:120 +#: src/Content/ContactSelector.php:119 msgid "RSS/Atom" msgstr "RSS / Atom" -#: src/Content/ContactSelector.php:121 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Content/ContactSelector.php:120 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:58 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "Tölvupóstur" -#: src/Content/ContactSelector.php:122 src/Module/Debug/Babel.php:273 +#: src/Content/ContactSelector.php:121 src/Module/Debug/Babel.php:273 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:123 +#: src/Content/ContactSelector.php:122 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:124 +#: src/Content/ContactSelector.php:123 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:125 +#: src/Content/ContactSelector.php:124 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:125 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:126 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:127 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:129 +#: src/Content/ContactSelector.php:128 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:130 +#: src/Content/ContactSelector.php:129 msgid "Discourse" msgstr "" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:130 msgid "Diaspora Connector" msgstr "Diaspora tenging" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:131 msgid "GNU Social Connector" msgstr "GNU Social tenging" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:132 msgid "ActivityPub" msgstr "" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:133 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:134 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:135 msgid "Bluesky" msgstr "" @@ -1161,374 +1166,374 @@ msgstr "" msgid "%s (via %s)" msgstr "" -#: src/Content/Conversation.php:213 +#: src/Content/Conversation.php:215 msgid "and" msgstr "og" -#: src/Content/Conversation.php:216 +#: src/Content/Conversation.php:218 #, php-format msgid "and %d other people" msgstr "og %d öðrum" -#: src/Content/Conversation.php:222 +#: src/Content/Conversation.php:224 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:224 +#: src/Content/Conversation.php:226 #, 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:226 +#: src/Content/Conversation.php:228 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:230 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:230 +#: src/Content/Conversation.php:232 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:232 +#: src/Content/Conversation.php:234 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:263 +#: src/Content/Conversation.php:265 #, php-format msgid " likes this" msgid_plural " like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:266 +#: src/Content/Conversation.php:268 #, php-format msgid " doesn't like this" msgid_plural " don't like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:269 +#: src/Content/Conversation.php:271 #, php-format msgid " attends" msgid_plural " attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:272 +#: src/Content/Conversation.php:274 #, php-format msgid " doesn't attend" msgid_plural " don't attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:275 +#: src/Content/Conversation.php:277 #, php-format msgid " attends maybe" msgid_plural " attend maybe" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:278 +#: src/Content/Conversation.php:280 #, php-format msgid " reshared this" msgid_plural " reshared this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:324 +#: src/Content/Conversation.php:326 msgid "Visible to everybody" msgstr "Sjáanlegt öllum" -#: src/Content/Conversation.php:325 src/Module/Item/Compose.php:196 -#: src/Object/Post.php:1157 +#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196 +#: src/Object/Post.php:1158 msgid "Please enter a image/video/audio/webpage URL:" msgstr "" -#: src/Content/Conversation.php:326 +#: src/Content/Conversation.php:328 msgid "Tag term:" msgstr "Merka með:" -#: src/Content/Conversation.php:327 src/Module/Filer/SaveTag.php:59 +#: src/Content/Conversation.php:329 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Vista í möppu:" -#: src/Content/Conversation.php:328 +#: src/Content/Conversation.php:330 msgid "Where are you right now?" msgstr "Hvar ert þú núna?" -#: src/Content/Conversation.php:329 +#: src/Content/Conversation.php:331 msgid "Delete item(s)?" msgstr "Eyða atriði/atriðum?" -#: src/Content/Conversation.php:341 src/Module/Item/Compose.php:171 +#: src/Content/Conversation.php:343 src/Module/Item/Compose.php:171 msgid "Created at" msgstr "" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:353 msgid "New Post" msgstr "Ný færsla" -#: src/Content/Conversation.php:354 +#: src/Content/Conversation.php:356 msgid "Share" msgstr "Deila" -#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:123 +#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:123 msgid "upload photo" msgstr "Hlaða upp mynd" -#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:124 +#: src/Content/Conversation.php:360 src/Module/Post/Edit.php:124 msgid "Attach file" msgstr "Bæta við skrá" -#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:125 +#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:125 msgid "attach file" msgstr "Hengja skrá við" -#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:186 -#: src/Module/Post/Edit.php:162 src/Object/Post.php:1147 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1148 msgid "Bold" msgstr "Feitletrað" -#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:187 -#: src/Module/Post/Edit.php:163 src/Object/Post.php:1148 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1149 msgid "Italic" msgstr "Skáletrað" -#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:188 -#: src/Module/Post/Edit.php:164 src/Object/Post.php:1149 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1150 msgid "Underline" msgstr "Undirstrikað" -#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:189 -#: src/Module/Post/Edit.php:165 src/Object/Post.php:1151 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:165 src/Object/Post.php:1152 msgid "Quote" msgstr "Gæsalappir" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:166 src/Object/Post.php:1152 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:166 src/Object/Post.php:1153 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:191 -#: src/Object/Post.php:1150 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Object/Post.php:1151 msgid "Content Warning" msgstr "" -#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:167 src/Object/Post.php:1153 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:167 src/Object/Post.php:1154 msgid "Code" msgstr "Kóði" -#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:193 -#: src/Object/Post.php:1154 +#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1155 msgid "Image" msgstr "Mynd" -#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:168 src/Object/Post.php:1155 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:168 src/Object/Post.php:1156 msgid "Link" msgstr "Tengill" -#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:195 -#: src/Module/Post/Edit.php:169 src/Object/Post.php:1156 +#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:169 src/Object/Post.php:1157 msgid "Link or Media" msgstr "" -#: src/Content/Conversation.php:370 +#: src/Content/Conversation.php:372 msgid "Video" msgstr "" -#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:198 +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:198 #: src/Module/Post/Edit.php:132 msgid "Set your location" msgstr "Veldu staðsetningu þína" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:133 msgid "set location" msgstr "stilla staðsetningu" -#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:134 msgid "Clear browser location" msgstr "Hreinsa staðsetningu í vafra" -#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:135 +#: src/Content/Conversation.php:376 src/Module/Post/Edit.php:135 msgid "clear location" msgstr "hreinsa staðsetningu" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:203 +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:203 #: src/Module/Post/Edit.php:148 msgid "Set title" msgstr "Setja titil" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:204 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 #: src/Module/Post/Edit.php:150 msgid "Categories (comma-separated list)" msgstr "Flokkar (listi aðskilinn með kommum)" -#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:220 +#: src/Content/Conversation.php:385 src/Module/Item/Compose.php:220 msgid "Scheduled at" msgstr "" -#: src/Content/Conversation.php:388 src/Module/Post/Edit.php:137 +#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:137 msgid "Permission settings" msgstr "Stillingar aðgangsheimilda" -#: src/Content/Conversation.php:397 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:399 src/Module/Post/Edit.php:146 msgid "Public post" msgstr "Opinber færsla" -#: src/Content/Conversation.php:411 src/Content/Widget/VCard.php:121 +#: 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 msgid "Message" msgstr "Skilaboð" -#: src/Content/Conversation.php:412 src/Module/Post/Edit.php:173 +#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:173 #: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Vafri" -#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:176 +#: src/Content/Conversation.php:416 src/Module/Post/Edit.php:176 msgid "Open Compose page" msgstr "" -#: src/Content/Conversation.php:581 +#: src/Content/Conversation.php:583 msgid "remove" msgstr "fjarlægja" -#: src/Content/Conversation.php:585 +#: src/Content/Conversation.php:587 msgid "Delete Selected Items" msgstr "Eyða völdum færslum" -#: src/Content/Conversation.php:713 src/Content/Conversation.php:716 -#: src/Content/Conversation.php:719 src/Content/Conversation.php:722 -#: src/Content/Conversation.php:725 +#: 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 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: src/Content/Conversation.php:728 +#: src/Content/Conversation.php:730 #, php-format msgid "You are following %s." msgstr "" -#: src/Content/Conversation.php:733 +#: src/Content/Conversation.php:735 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:735 +#: src/Content/Conversation.php:737 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:755 +#: src/Content/Conversation.php:757 #, php-format msgid "%s reshared this." msgstr "" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 msgid "Reshared" msgstr "" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 #, php-format msgid "Reshared by %s <%s>" msgstr "" -#: src/Content/Conversation.php:760 +#: src/Content/Conversation.php:762 #, php-format msgid "%s is participating in this thread." msgstr "" -#: src/Content/Conversation.php:763 +#: src/Content/Conversation.php:765 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:766 +#: src/Content/Conversation.php:768 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 msgid "Fetched" msgstr "" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 #, php-format msgid "Fetched because of %s <%s>" msgstr "" -#: src/Content/Conversation.php:775 +#: src/Content/Conversation.php:777 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:778 +#: src/Content/Conversation.php:780 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:781 +#: src/Content/Conversation.php:783 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:784 +#: src/Content/Conversation.php:786 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:787 +#: src/Content/Conversation.php:789 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1505 src/Object/Post.php:247 +#: src/Content/Conversation.php:1507 src/Object/Post.php:248 msgid "Pinned item" msgstr "" -#: src/Content/Conversation.php:1522 src/Object/Post.php:541 -#: src/Object/Post.php:542 +#: src/Content/Conversation.php:1524 src/Object/Post.php:542 +#: src/Object/Post.php:543 #, php-format msgid "View %s's profile @ %s" msgstr "Birta forsíðu %s hjá %s" -#: src/Content/Conversation.php:1536 src/Object/Post.php:529 +#: src/Content/Conversation.php:1538 src/Object/Post.php:530 msgid "Categories:" msgstr "Flokkar:" -#: src/Content/Conversation.php:1537 src/Object/Post.php:530 +#: src/Content/Conversation.php:1539 src/Object/Post.php:531 msgid "Filed under:" msgstr "Skráð undir:" -#: src/Content/Conversation.php:1545 src/Object/Post.php:556 +#: src/Content/Conversation.php:1547 src/Object/Post.php:557 #, php-format msgid "%s from %s" msgstr "%s til %s" -#: src/Content/Conversation.php:1561 +#: src/Content/Conversation.php:1563 msgid "View in context" msgstr "Birta í samhengi" @@ -1661,7 +1666,7 @@ msgstr "Einka" msgid "Posts that mention or involve you" msgstr "Færslur sem tengjast þér" -#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:398 msgid "Starred" msgstr "Stjörnumerkt" @@ -1748,7 +1753,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:552 src/Model/User.php:1390 +#: src/Content/Widget.php:555 src/Model/User.php:1390 msgid "Groups" msgstr "" @@ -1756,7 +1761,7 @@ msgstr "" msgid "Display posts that have been distributed by the selected group." msgstr "" -#: src/Content/Feature.php:117 src/Content/Widget.php:521 +#: src/Content/Feature.php:117 src/Content/Widget.php:524 msgid "Archives" msgstr "Safnskrár" @@ -1772,8 +1777,8 @@ msgstr "" msgid "Display posts with the selected protocols." msgstr "" -#: src/Content/Feature.php:119 src/Content/Widget.php:558 -#: src/Module/Settings/Account.php:429 +#: src/Content/Feature.php:119 src/Content/Widget.php:561 +#: src/Module/Settings/Account.php:391 msgid "Account Types" msgstr "Gerðir notendaaðganga" @@ -1781,7 +1786,7 @@ msgstr "Gerðir notendaaðganga" msgid "Display posts done by accounts with the selected account type." msgstr "" -#: src/Content/Feature.php:120 src/Content/Widget.php:607 +#: 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 msgid "Channels" @@ -1807,7 +1812,7 @@ msgstr "Vistaðar möppur" msgid "Display a list of folders in which posts are stored." msgstr "" -#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:189 msgid "Own Contacts" msgstr "" @@ -1863,12 +1868,12 @@ msgstr "" msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:139 src/Content/Widget.php:527 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:530 msgid "show less" msgstr "" #: src/Content/GroupManager.php:140 src/Content/Widget.php:425 -#: src/Content/Widget.php:528 +#: src/Content/Widget.php:531 msgid "show more" msgstr "birta meira" @@ -1876,66 +1881,66 @@ msgstr "birta meira" msgid "Create new group" msgstr "" -#: src/Content/Item.php:317 src/Model/Item.php:3273 +#: src/Content/Item.php:322 src/Model/Item.php:3281 msgid "event" msgstr "atburður" -#: src/Content/Item.php:320 src/Content/Item.php:330 +#: src/Content/Item.php:325 src/Content/Item.php:335 msgid "status" msgstr "staða" -#: src/Content/Item.php:326 src/Model/Item.php:3275 +#: src/Content/Item.php:331 src/Model/Item.php:3283 #: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "mynd" -#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 +#: src/Content/Item.php:345 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s merkti %2$s's %3$s með %4$s" -#: src/Content/Item.php:414 view/theme/frio/theme.php:253 +#: src/Content/Item.php:419 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Fylgja þræði" -#: src/Content/Item.php:415 src/Model/Contact.php:1244 +#: src/Content/Item.php:420 src/Model/Contact.php:1245 msgid "View Status" msgstr "Skoða stöðu" -#: 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/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 msgid "View Profile" msgstr "Skoða forsíðu" -#: src/Content/Item.php:417 src/Model/Contact.php:1246 +#: src/Content/Item.php:422 src/Model/Contact.php:1247 msgid "View Photos" msgstr "Skoða myndir" -#: src/Content/Item.php:418 src/Model/Contact.php:1213 +#: src/Content/Item.php:423 src/Model/Contact.php:1214 #: src/Model/Profile.php:446 msgid "Network Posts" msgstr "Færslur á neti" -#: src/Content/Item.php:419 src/Model/Contact.php:1237 -#: src/Model/Contact.php:1248 +#: src/Content/Item.php:424 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1249 msgid "View Contact" msgstr "Skoða tengilið" -#: src/Content/Item.php:420 src/Model/Contact.php:1249 +#: src/Content/Item.php:425 src/Model/Contact.php:1250 msgid "Send PM" msgstr "Senda einkaboð" -#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Content/Item.php:426 src/Module/Contact.php:449 #: src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:104 -#: src/Module/Moderation/Users/Active.php:123 -#: src/Module/Moderation/Users/Index.php:138 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Index.php:141 msgid "Block" msgstr "Útiloka" -#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Content/Item.php:427 src/Module/Contact.php:450 #: src/Module/Contact/Profile.php:532 #: src/Module/Notifications/Introductions.php:126 #: src/Module/Notifications/Introductions.php:199 @@ -1943,27 +1948,27 @@ msgstr "Útiloka" msgid "Ignore" msgstr "Hunsa" -#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Content/Item.php:428 src/Module/Contact.php:451 #: src/Module/Contact/Profile.php:540 msgid "Collapse" msgstr "" -#: src/Content/Item.php:424 src/Object/Post.php:288 +#: src/Content/Item.php:429 src/Object/Post.php:289 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 -#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 +#: src/Content/Item.php:433 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:503 msgid "Languages" msgstr "" -#: src/Content/Item.php:431 src/Object/Post.php:582 +#: src/Content/Item.php:436 src/Object/Post.php:583 msgid "Search Text" msgstr "" -#: src/Content/Item.php:436 src/Content/Widget.php:66 -#: src/Model/Contact.php:1238 src/Model/Contact.php:1250 +#: src/Content/Item.php:441 src/Content/Widget.php:66 +#: src/Model/Contact.php:1239 src/Model/Contact.php:1251 #: src/Module/Contact/Follow.php:152 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Tengjast/fylgja" @@ -1976,7 +1981,7 @@ msgstr "" msgid "Nothing new here" msgstr "Ekkert nýtt hér" -#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:64 msgid "Go back" msgstr "" @@ -2190,7 +2195,7 @@ msgstr "Tilkynningar" msgid "See all notifications" msgstr "Sjá allar tilkynningar" -#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:226 msgid "Mark as seen" msgstr "Merka sem séð" @@ -2218,8 +2223,8 @@ msgstr "" msgid "Manage other pages" msgstr "Sýsla með aðrar síður" -#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 -#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:170 +#: 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/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Stillingar" @@ -2247,10 +2252,10 @@ msgstr "Uppsetning og stillingar vefsvæðis" #: src/Module/Moderation/Blocklist/Server/Index.php:84 #: 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:119 -#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 #: src/Module/Moderation/Users/Deleted.php:66 -#: src/Module/Moderation/Users/Index.php:133 +#: src/Module/Moderation/Users/Index.php:136 msgid "Moderation" msgstr "" @@ -2282,33 +2287,33 @@ msgstr "næsta" msgid "last" msgstr "síðasta" -#: src/Content/Text/BBCode.php:908 +#: src/Content/Text/BBCode.php:903 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:931 src/Model/Item.php:4069 -#: src/Model/Item.php:4075 src/Model/Item.php:4076 +#: src/Content/Text/BBCode.php:926 src/Model/Item.php:4080 +#: src/Model/Item.php:4086 src/Model/Item.php:4087 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1745 src/Content/Text/HTML.php:892 +#: src/Content/Text/BBCode.php:1740 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Smelltu til að opna/loka" -#: src/Content/Text/BBCode.php:1800 +#: src/Content/Text/BBCode.php:1795 msgid "$1 wrote:" msgstr "$1 skrifaði:" -#: src/Content/Text/BBCode.php:1874 src/Content/Text/BBCode.php:1875 +#: src/Content/Text/BBCode.php:1869 src/Content/Text/BBCode.php:1870 msgid "Encrypted content" msgstr "Dulritað efni" -#: src/Content/Text/BBCode.php:2208 +#: src/Content/Text/BBCode.php:2203 msgid "Invalid source protocol" msgstr "" -#: src/Content/Text/BBCode.php:2227 +#: src/Content/Text/BBCode.php:2222 msgid "Invalid link protocol" msgstr "" @@ -2361,7 +2366,7 @@ msgid "Examples: Robert Morgenstein, Fishing" msgstr "Dæmi: Jón Jónsson, Veiði" #: src/Content/Widget.php:68 src/Module/Contact.php:441 -#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 +#: src/Module/Directory.php:82 view/theme/vier/theme.php:185 msgid "Find" msgstr "Finna" @@ -2382,7 +2387,7 @@ msgstr "Forsíða af handahófi" msgid "Invite Friends" msgstr "Bjóða vinum aðgang" -#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: src/Content/Widget.php:73 src/Module/Directory.php:74 #: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Alheimstengiliðaskrá" @@ -2403,7 +2408,7 @@ msgstr "" msgid "Relationships" msgstr "" -#: src/Content/Widget.php:264 src/Module/Circle.php:280 +#: src/Content/Widget.php:264 src/Module/Circle.php:281 #: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Allir tengiliðir" @@ -2427,27 +2432,27 @@ msgid_plural "%d contacts in common" msgstr[0] "%d tengiliður sameiginlegur" msgstr[1] "%d tengiliðir sameiginlegir" -#: src/Content/Widget.php:529 +#: src/Content/Widget.php:532 msgid "On this date" msgstr "" -#: src/Content/Widget.php:549 +#: src/Content/Widget.php:552 msgid "Persons" msgstr "" -#: src/Content/Widget.php:550 +#: src/Content/Widget.php:553 msgid "Organisations" msgstr "" -#: src/Content/Widget.php:551 src/Model/Contact.php:1750 +#: src/Content/Widget.php:554 src/Model/Contact.php:1751 msgid "News" msgstr "Fréttir" -#: src/Content/Widget.php:553 +#: src/Content/Widget.php:556 msgid "Relays" msgstr "" -#: src/Content/Widget.php:560 src/Module/Moderation/BaseUsers.php:58 +#: src/Content/Widget.php:563 src/Module/Moderation/BaseUsers.php:58 msgid "All" msgstr "" @@ -2493,12 +2498,12 @@ msgstr[1] "" msgid "More Trending Tags" msgstr "" -#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1207 +#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1208 #: src/Model/Profile.php:440 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1211 +#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1212 #: src/Model/Profile.php:444 src/Module/Moderation/Item/Source.php:80 msgid "Mention" msgstr "" @@ -2513,10 +2518,10 @@ msgstr "XMPP:" msgid "Matrix:" msgstr "" -#: src/Content/Widget/VCard.php:112 src/Model/Event.php:68 -#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: 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:134 src/Module/Notifications/Introductions.php:180 +#: src/Module/Directory.php:133 src/Module/Notifications/Introductions.php:180 #: src/Module/Profile/Profile.php:212 msgid "Location:" msgstr "Staðsetning:" @@ -2526,75 +2531,75 @@ msgstr "Staðsetning:" msgid "Network:" msgstr "Netkerfi:" -#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1239 -#: src/Model/Contact.php:1251 src/Model/Profile.php:457 +#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1252 src/Model/Profile.php:457 #: src/Module/Contact/Profile.php:476 msgid "Unfollow" msgstr "" -#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1209 +#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1210 #: src/Model/Profile.php:442 msgid "View group" msgstr "" -#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:260 +#: src/Core/ACL.php:153 src/Module/Profile/Profile.php:260 msgid "Yourself" msgstr "" -#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Core/ACL.php:189 src/Module/Privacy/PermissionTooltip.php:156 #: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "" -#: src/Core/ACL.php:280 +#: src/Core/ACL.php:281 msgid "Post to Email" msgstr "Senda skilaboð á tölvupóst" -#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Core/ACL.php:308 src/Module/Privacy/PermissionTooltip.php:103 #: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "" -#: src/Core/ACL.php:308 +#: src/Core/ACL.php:309 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:309 src/Module/Privacy/PermissionTooltip.php:105 +#: src/Core/ACL.php:310 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "" -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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:310 +#: src/Core/ACL.php:311 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:311 +#: src/Core/ACL.php:312 msgid "Show to:" msgstr "" -#: src/Core/ACL.php:312 +#: src/Core/ACL.php:313 msgid "Except to:" msgstr "" -#: src/Core/ACL.php:313 src/Module/Post/Edit.php:145 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:145 msgid "CC: email addresses" msgstr "CC: tölvupóstfang" -#: src/Core/ACL.php:314 src/Module/Post/Edit.php:151 +#: src/Core/ACL.php:315 src/Module/Post/Edit.php:151 msgid "Example: bob@example.com, mary@example.com" msgstr "Dæmi: bibbi@vefur.is, mgga@vefur.is" -#: src/Core/ACL.php:315 +#: src/Core/ACL.php:316 msgid "Connectors" msgstr "" @@ -2929,176 +2934,176 @@ msgstr "Gagnagrunnur er þegar í notkun." msgid "Could not connect to database." msgstr "Gat ekki tengst gagnagrunn." -#: src/Core/L10n.php:430 src/Model/Item.php:2316 +#: src/Core/L10n.php:426 src/Model/Item.php:2324 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:437 +#: src/Core/L10n.php:433 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Core/L10n.php:481 src/Model/Event.php:418 #: src/Module/Settings/Display.php:292 msgid "Monday" msgstr "Mánudagur" -#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Core/L10n.php:481 src/Model/Event.php:419 #: src/Module/Settings/Display.php:293 msgid "Tuesday" msgstr "Þriðjudagur" -#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Core/L10n.php:481 src/Model/Event.php:420 #: src/Module/Settings/Display.php:294 msgid "Wednesday" msgstr "Miðvikudagur" -#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Core/L10n.php:481 src/Model/Event.php:421 #: src/Module/Settings/Display.php:295 msgid "Thursday" msgstr "Fimmtudagur" -#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Core/L10n.php:481 src/Model/Event.php:422 #: src/Module/Settings/Display.php:296 msgid "Friday" msgstr "Föstudagur" -#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Core/L10n.php:481 src/Model/Event.php:423 #: src/Module/Settings/Display.php:297 msgid "Saturday" msgstr "Laugardagur" -#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Core/L10n.php:481 src/Model/Event.php:417 #: src/Module/Settings/Display.php:291 msgid "Sunday" msgstr "Sunnudagur" -#: src/Core/L10n.php:489 src/Model/Event.php:436 +#: src/Core/L10n.php:485 src/Model/Event.php:438 msgid "January" msgstr "Janúar" -#: src/Core/L10n.php:489 src/Model/Event.php:437 +#: src/Core/L10n.php:485 src/Model/Event.php:439 msgid "February" msgstr "Febrúar" -#: src/Core/L10n.php:489 src/Model/Event.php:438 +#: src/Core/L10n.php:485 src/Model/Event.php:440 msgid "March" msgstr "Mars" -#: src/Core/L10n.php:489 src/Model/Event.php:439 +#: src/Core/L10n.php:485 src/Model/Event.php:441 msgid "April" msgstr "Apríl" -#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 +#: src/Core/L10n.php:485 src/Core/L10n.php:504 src/Model/Event.php:429 msgid "May" msgstr "Maí" -#: src/Core/L10n.php:489 src/Model/Event.php:440 +#: src/Core/L10n.php:485 src/Model/Event.php:442 msgid "June" msgstr "Júní" -#: src/Core/L10n.php:489 src/Model/Event.php:441 +#: src/Core/L10n.php:485 src/Model/Event.php:443 msgid "July" msgstr "Júlí" -#: src/Core/L10n.php:489 src/Model/Event.php:442 +#: src/Core/L10n.php:485 src/Model/Event.php:444 msgid "August" msgstr "Ágúst" -#: src/Core/L10n.php:489 src/Model/Event.php:443 +#: src/Core/L10n.php:485 src/Model/Event.php:445 msgid "September" msgstr "September" -#: src/Core/L10n.php:489 src/Model/Event.php:444 +#: src/Core/L10n.php:485 src/Model/Event.php:446 msgid "October" msgstr "Október" -#: src/Core/L10n.php:489 src/Model/Event.php:445 +#: src/Core/L10n.php:485 src/Model/Event.php:447 msgid "November" msgstr "Nóvember" -#: src/Core/L10n.php:489 src/Model/Event.php:446 +#: src/Core/L10n.php:485 src/Model/Event.php:448 msgid "December" msgstr "Desember" -#: src/Core/L10n.php:504 src/Model/Event.php:408 +#: src/Core/L10n.php:500 src/Model/Event.php:410 msgid "Mon" msgstr "Mán" -#: src/Core/L10n.php:504 src/Model/Event.php:409 +#: src/Core/L10n.php:500 src/Model/Event.php:411 msgid "Tue" msgstr "Þri" -#: src/Core/L10n.php:504 src/Model/Event.php:410 +#: src/Core/L10n.php:500 src/Model/Event.php:412 msgid "Wed" msgstr "Mið" -#: src/Core/L10n.php:504 src/Model/Event.php:411 +#: src/Core/L10n.php:500 src/Model/Event.php:413 msgid "Thu" msgstr "Fim" -#: src/Core/L10n.php:504 src/Model/Event.php:412 +#: src/Core/L10n.php:500 src/Model/Event.php:414 msgid "Fri" msgstr "Fös" -#: src/Core/L10n.php:504 src/Model/Event.php:413 +#: src/Core/L10n.php:500 src/Model/Event.php:415 msgid "Sat" msgstr "Lau" -#: src/Core/L10n.php:504 src/Model/Event.php:407 +#: src/Core/L10n.php:500 src/Model/Event.php:409 msgid "Sun" msgstr "Sun" -#: src/Core/L10n.php:508 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:425 msgid "Jan" msgstr "Jan" -#: src/Core/L10n.php:508 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:426 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:508 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:427 msgid "Mar" msgstr "Mar" -#: src/Core/L10n.php:508 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:428 msgid "Apr" msgstr "Apr" -#: src/Core/L10n.php:508 src/Model/Event.php:428 +#: src/Core/L10n.php:504 src/Model/Event.php:430 msgid "Jun" msgstr "Jún" -#: src/Core/L10n.php:508 src/Model/Event.php:429 +#: src/Core/L10n.php:504 src/Model/Event.php:431 msgid "Jul" msgstr "Júl" -#: src/Core/L10n.php:508 src/Model/Event.php:430 +#: src/Core/L10n.php:504 src/Model/Event.php:432 msgid "Aug" msgstr "Ágú" -#: src/Core/L10n.php:508 +#: src/Core/L10n.php:504 msgid "Sep" msgstr "sep" -#: src/Core/L10n.php:508 src/Model/Event.php:432 +#: src/Core/L10n.php:504 src/Model/Event.php:434 msgid "Oct" msgstr "Okt" -#: src/Core/L10n.php:508 src/Model/Event.php:433 +#: src/Core/L10n.php:504 src/Model/Event.php:435 msgid "Nov" msgstr "Nóv" -#: src/Core/L10n.php:508 src/Model/Event.php:434 +#: src/Core/L10n.php:504 src/Model/Event.php:436 msgid "Dec" msgstr "Des" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:44 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:67 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" @@ -3290,7 +3295,7 @@ msgstr "bæta við" msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:592 src/Module/Circle.php:181 +#: src/Model/Circle.php:592 src/Module/Circle.php:185 msgid "Contacts not in any circle" msgstr "" @@ -3298,8 +3303,8 @@ msgstr "" msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:595 src/Module/Circle.php:166 -#: src/Module/Circle.php:189 src/Module/Circle.php:264 +#: src/Model/Circle.php:595 src/Module/Circle.php:168 +#: src/Module/Circle.php:190 src/Module/Circle.php:265 msgid "Circle Name: " msgstr "" @@ -3307,280 +3312,280 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1258 src/Module/Moderation/Users/Pending.php:88 +#: src/Model/Contact.php:1259 src/Module/Moderation/Users/Pending.php:88 #: src/Module/Notifications/Introductions.php:124 #: src/Module/Notifications/Introductions.php:197 msgid "Approve" msgstr "Samþykkja" -#: src/Model/Contact.php:1594 src/Model/Contact.php:1666 +#: src/Model/Contact.php:1595 src/Model/Contact.php:1667 #: src/Module/Contact/Profile.php:360 #, php-format msgid "%s has blocked you" msgstr "" -#: src/Model/Contact.php:1746 +#: src/Model/Contact.php:1747 msgid "Organisation" msgstr "" -#: src/Model/Contact.php:1754 +#: src/Model/Contact.php:1755 msgid "Group" msgstr "" -#: src/Model/Contact.php:1758 src/Module/Moderation/BaseUsers.php:122 +#: src/Model/Contact.php:1759 src/Module/Moderation/BaseUsers.php:122 msgid "Relay" msgstr "" -#: src/Model/Contact.php:3073 +#: src/Model/Contact.php:3085 msgid "Disallowed profile URL." msgstr "Óleyfileg forsíðu slóð." -#: src/Model/Contact.php:3078 src/Module/Friendica.php:88 +#: src/Model/Contact.php:3090 src/Module/Friendica.php:88 msgid "Blocked domain" msgstr "Útilokað lén" -#: src/Model/Contact.php:3083 +#: src/Model/Contact.php:3095 msgid "Connect URL missing." msgstr "Tengislóð vantar." -#: src/Model/Contact.php:3092 +#: src/Model/Contact.php:3104 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Contact.php:3110 +#: src/Model/Contact.php:3122 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3127 +#: src/Model/Contact.php:3139 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3134 +#: src/Model/Contact.php:3146 msgid "The profile address specified does not provide adequate information." msgstr "Uppgefin forsíðuslóð inniheldur ekki nægilegar upplýsingar." -#: src/Model/Contact.php:3136 +#: src/Model/Contact.php:3148 msgid "No compatible communication protocols or feeds were discovered." msgstr "Engir samhæfðir samskiptastaðlar né fréttastraumar fundust." -#: src/Model/Contact.php:3139 +#: src/Model/Contact.php:3151 msgid "An author or name was not found." msgstr "Höfundur eða nafn fannst ekki." -#: src/Model/Contact.php:3142 +#: src/Model/Contact.php:3154 msgid "No browser URL could be matched to this address." msgstr "Engin vefslóð passaði við þetta vistfang." -#: src/Model/Contact.php:3145 +#: src/Model/Contact.php:3157 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "" -#: src/Model/Contact.php:3146 +#: src/Model/Contact.php:3158 msgid "Use mailto: in front of address to force email check." msgstr "" -#: src/Model/Contact.php:3152 +#: src/Model/Contact.php:3164 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Takmörkuð forsíða. Þessi tengiliður mun ekki getað tekið á móti beinum/einka tilkynningum frá þér." -#: src/Model/Contact.php:3211 +#: src/Model/Contact.php:3223 msgid "Unable to retrieve contact information." msgstr "Ekki hægt að sækja tengiliðs upplýsingar." -#: src/Model/Event.php:40 +#: src/Model/Event.php:42 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 -#: src/Model/Event.php:928 +#: src/Model/Event.php:63 src/Model/Event.php:80 src/Model/Event.php:457 +#: src/Model/Event.php:929 msgid "Starts:" msgstr "Byrjar:" -#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 -#: src/Model/Event.php:932 +#: src/Model/Event.php:66 src/Model/Event.php:86 src/Model/Event.php:458 +#: src/Model/Event.php:933 msgid "Finishes:" msgstr "Endar:" -#: src/Model/Event.php:405 +#: src/Model/Event.php:407 msgid "all-day" msgstr "allan-daginn" -#: src/Model/Event.php:431 +#: src/Model/Event.php:433 msgid "Sept" msgstr "Sept" -#: src/Model/Event.php:448 src/Module/Calendar/Show.php:117 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:117 #: src/Util/Temporal.php:329 msgid "today" msgstr "í dag" -#: src/Model/Event.php:449 src/Module/Calendar/Show.php:118 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:118 #: src/Module/Settings/Display.php:302 src/Util/Temporal.php:339 msgid "month" msgstr "mánuður" -#: src/Model/Event.php:450 src/Module/Calendar/Show.php:119 +#: src/Model/Event.php:452 src/Module/Calendar/Show.php:119 #: src/Module/Settings/Display.php:303 src/Util/Temporal.php:340 msgid "week" msgstr "vika" -#: src/Model/Event.php:451 src/Module/Calendar/Show.php:120 +#: src/Model/Event.php:453 src/Module/Calendar/Show.php:120 #: src/Module/Settings/Display.php:304 src/Util/Temporal.php:341 msgid "day" msgstr "dagur" -#: src/Model/Event.php:453 +#: src/Model/Event.php:455 msgid "No events to display" msgstr "Engir atburðir til að birta" -#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Model/Event.php:504 src/Module/Feed.php:56 #: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "Aðgangur að þessari forsíðu hefur verið heftur." -#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:52 +#: src/Model/Event.php:545 src/Module/Calendar/Event/Show.php:52 msgid "Event not found." msgstr "" -#: src/Model/Event.php:623 +#: src/Model/Event.php:624 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:650 +#: src/Model/Event.php:651 msgid "Edit event" msgstr "Breyta atburð" -#: src/Model/Event.php:651 +#: src/Model/Event.php:652 msgid "Duplicate event" msgstr "Tvítaka atburð" -#: src/Model/Event.php:652 +#: src/Model/Event.php:653 msgid "Delete event" msgstr "Eyða atburði" -#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 +#: src/Model/Event.php:883 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:883 +#: src/Model/Event.php:884 msgid "D g:i A" msgstr "D g:i A" -#: src/Model/Event.php:884 +#: src/Model/Event.php:885 msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:947 src/Model/Event.php:949 +#: src/Model/Event.php:948 src/Model/Event.php:950 msgid "Show map" msgstr "Birta kort" -#: src/Model/Event.php:948 +#: src/Model/Event.php:949 msgid "Hide map" msgstr "Fela kort" -#: src/Model/Event.php:1041 +#: src/Model/Event.php:1042 #, php-format msgid "%s's birthday" msgstr "Afmælisdagur %s" -#: src/Model/Event.php:1042 +#: src/Model/Event.php:1043 #, php-format msgid "Happy Birthday %s" msgstr "Til hamingju með afmælið %s" -#: src/Model/Item.php:2323 +#: src/Model/Item.php:2331 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2325 +#: src/Model/Item.php:2333 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2328 +#: src/Model/Item.php:2336 #, php-format msgid "" "Detected languages in this post:\n" "%s" msgstr "" -#: src/Model/Item.php:3277 +#: src/Model/Item.php:3285 msgid "activity" msgstr "virkni" -#: src/Model/Item.php:3279 +#: src/Model/Item.php:3287 msgid "comment" msgstr "" -#: src/Model/Item.php:3282 src/Module/Post/Tag/Add.php:109 +#: src/Model/Item.php:3290 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "senda" -#: src/Model/Item.php:3452 +#: src/Model/Item.php:3463 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3454 +#: src/Model/Item.php:3465 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3456 +#: src/Model/Item.php:3467 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3460 +#: src/Model/Item.php:3471 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3969 +#: src/Model/Item.php:3980 msgid "bytes" msgstr "bæti" -#: src/Model/Item.php:4000 +#: src/Model/Item.php:4011 #, 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:4002 +#: src/Model/Item.php:4013 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:4007 +#: src/Model/Item.php:4018 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:4009 +#: src/Model/Item.php:4020 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:4011 +#: src/Model/Item.php:4022 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:4052 src/Model/Item.php:4053 +#: src/Model/Item.php:4063 src/Model/Item.php:4064 msgid "View on separate page" msgstr "Skoða á sérstakri síðu" @@ -3588,7 +3593,7 @@ msgstr "Skoða á sérstakri síðu" msgid "[no subject]" msgstr "[ekkert efni]" -#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 +#: src/Model/Photo.php:1192 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Veggmyndir" @@ -3601,7 +3606,7 @@ msgstr "Breyta forsíðu" msgid "Change profile photo" msgstr "Breyta forsíðumynd" -#: src/Model/Profile.php:357 src/Module/Directory.php:139 +#: src/Model/Profile.php:357 src/Module/Directory.php:138 #: src/Module/Profile/Profile.php:200 msgid "Homepage:" msgstr "Heimasíða:" @@ -3691,7 +3696,7 @@ msgstr "Mislíkar:" msgid "Title/Description:" msgstr "Starfsheiti/Lýsing:" -#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:176 +#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:174 #: src/Module/Moderation/Report/Create.php:266 #: src/Module/Moderation/Summary.php:65 msgid "Summary" @@ -3742,59 +3747,59 @@ msgstr "" msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "VERULEGA ALVARLEG VILLA: Stofnun á öryggislyklum tókst ekki." -#: src/Model/User.php:740 src/Model/User.php:773 +#: src/Model/User.php:739 src/Model/User.php:772 msgid "Login failed" msgstr "Innskráning mistókst" -#: src/Model/User.php:805 +#: src/Model/User.php:804 msgid "Not enough information to authenticate" msgstr "" -#: src/Model/User.php:930 +#: src/Model/User.php:929 msgid "Password can't be empty" msgstr "Lykilorð getur ekki verið autt" -#: src/Model/User.php:972 +#: src/Model/User.php:971 msgid "Empty passwords are not allowed." msgstr "" -#: src/Model/User.php:976 +#: src/Model/User.php:975 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "" -#: src/Model/User.php:980 +#: src/Model/User.php:979 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:984 +#: src/Model/User.php:983 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1193 +#: src/Model/User.php:1192 msgid "Passwords do not match. Password unchanged." msgstr "Aðgangsorð ber ekki saman. Aðgangsorð óbreytt." -#: src/Model/User.php:1200 +#: src/Model/User.php:1199 msgid "An invitation is required." msgstr "Boðskort er skilyrði." -#: src/Model/User.php:1204 +#: src/Model/User.php:1203 msgid "Invitation could not be verified." msgstr "Ekki hægt að sannreyna boðskort." -#: src/Model/User.php:1212 +#: src/Model/User.php:1211 msgid "Invalid OpenID url" msgstr "OpenID slóð ekki til" -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 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:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "The error message was:" msgstr "Villumeldingin var:" @@ -3985,57 +3990,57 @@ msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:51 +#: src/Module/Admin/Addons/Details.php:49 msgid "Addon not found." msgstr "" -#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 +#: src/Module/Admin/Addons/Details.php:60 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "" -#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 +#: src/Module/Admin/Addons/Details.php:63 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "" -#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Addons/Details.php:72 #: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "Gera óvirkt" -#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Addons/Details.php:75 #: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351 msgid "Enable" msgstr "Virkja" -#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Addons/Details.php:95 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:175 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Summary.php:173 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 "Stjórnun" -#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/Admin/Addons/Details.php:96 src/Module/Admin/Addons/Index.php:60 #: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:127 msgid "Addons" msgstr "Forritsviðbætur" -#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Addons/Details.php:97 #: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Skipta" -#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Addons/Details.php:104 #: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Höfundur:" -#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Addons/Details.php:105 #: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Umsjónarmaður: " @@ -4052,9 +4057,10 @@ 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:545 src/Module/Settings/Addons.php:64 -#: src/Module/Settings/Connectors.php:149 -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Account.php:507 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/Features.php:61 msgid "Save Settings" @@ -4071,62 +4077,62 @@ msgid "" "official addon repository at %1$s." msgstr "" -#: src/Module/Admin/DBSync.php:37 +#: src/Module/Admin/DBSync.php:35 msgid "Update has been marked successful" msgstr "Uppfærsla merkt sem tókst" -#: src/Module/Admin/DBSync.php:45 +#: src/Module/Admin/DBSync.php:43 #, php-format msgid "Database structure update %s was successfully applied." msgstr "" -#: src/Module/Admin/DBSync.php:47 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:62 +#: src/Module/Admin/DBSync.php:60 #, php-format msgid "Executing %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:64 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Update %s was successfully applied." msgstr "Uppfærsla %s framkvæmd." -#: src/Module/Admin/DBSync.php:67 +#: src/Module/Admin/DBSync.php:65 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Uppfærsla %s skilaði ekki gildi. Óvíst hvort tókst." -#: src/Module/Admin/DBSync.php:70 +#: src/Module/Admin/DBSync.php:68 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "" -#: src/Module/Admin/DBSync.php:91 +#: src/Module/Admin/DBSync.php:89 msgid "No failed updates." msgstr "Engar uppfærslur mistókust." -#: src/Module/Admin/DBSync.php:92 +#: src/Module/Admin/DBSync.php:90 msgid "Check database structure" msgstr "" -#: src/Module/Admin/DBSync.php:96 +#: src/Module/Admin/DBSync.php:94 msgid "Failed Updates" msgstr "Uppfærslur sem mistókust" -#: src/Module/Admin/DBSync.php:97 +#: src/Module/Admin/DBSync.php:95 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Þetta á ekki við uppfærslur fyrir 1139, þær skiluðu ekki lokastöðu." -#: src/Module/Admin/DBSync.php:98 +#: src/Module/Admin/DBSync.php:96 msgid "Mark success (if update was manually applied)" msgstr "Merkja sem tókst (ef uppfærsla var framkvæmd handvirkt)" -#: src/Module/Admin/DBSync.php:99 +#: src/Module/Admin/DBSync.php:97 msgid "Attempt to execute this update step automatically" msgstr "Framkvæma þessa uppfærslu sjálfkrafa" @@ -5691,12 +5697,12 @@ msgstr "" msgid "Database (legacy)" msgstr "" -#: src/Module/Admin/Summary.php:41 +#: src/Module/Admin/Summary.php:39 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:45 +#: src/Module/Admin/Summary.php:43 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5707,7 +5713,7 @@ msgid "" " an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:50 +#: src/Module/Admin/Summary.php:48 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5718,7 +5724,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:60 +#: src/Module/Admin/Summary.php:58 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5726,46 +5732,46 @@ msgid "" " to %d. See here for more information.
" msgstr "" -#: src/Module/Admin/Summary.php:68 +#: src/Module/Admin/Summary.php:66 #, 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:76 +#: src/Module/Admin/Summary.php:74 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:80 +#: src/Module/Admin/Summary.php:78 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:84 +#: src/Module/Admin/Summary.php:82 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:89 +#: src/Module/Admin/Summary.php:87 msgid "The worker was never executed. Please check your database structure!" msgstr "" -#: src/Module/Admin/Summary.php:91 +#: src/Module/Admin/Summary.php:89 #, 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:96 +#: src/Module/Admin/Summary.php:94 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5774,7 +5780,7 @@ msgid "" "help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:100 +#: src/Module/Admin/Summary.php:98 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5783,7 +5789,7 @@ msgid "" "page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:106 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5791,40 +5797,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "" -#: src/Module/Admin/Summary.php:130 +#: src/Module/Admin/Summary.php:128 #, 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:138 +#: src/Module/Admin/Summary.php:136 #, 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:146 +#: src/Module/Admin/Summary.php:144 #, 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:157 +#: src/Module/Admin/Summary.php:155 msgid "Message queues" msgstr "" -#: src/Module/Admin/Summary.php:160 +#: src/Module/Admin/Summary.php:158 msgid "Server Settings" msgstr "" -#: src/Module/Admin/Summary.php:178 +#: src/Module/Admin/Summary.php:176 msgid "Version" msgstr "Útgáfunúmer" -#: src/Module/Admin/Summary.php:182 +#: src/Module/Admin/Summary.php:180 msgid "Active addons" msgstr "" @@ -6089,8 +6095,8 @@ msgstr "" msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:134 -#: src/Module/Moderation/Users/Index.php:144 +#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:137 +#: src/Module/Moderation/Users/Index.php:147 msgid "Users" msgstr "Notendur" @@ -6126,7 +6132,7 @@ msgstr "" msgid "Only You Can See This" msgstr "Aðeins þú sérð þetta" -#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:67 +#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:65 msgid "Scheduled Posts" msgstr "" @@ -6178,7 +6184,7 @@ msgstr "" msgid "Display" msgstr "Birting" -#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:195 +#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:189 msgid "Social Networks" msgstr "Samfélagsnet" @@ -6194,11 +6200,15 @@ msgstr "Tengd forrit" msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:84 +#: src/Module/BaseSettings.php:155 src/Module/Settings/ContactImport.php:109 +msgid "Import Contacts" +msgstr "" + +#: src/Module/BaseSettings.php:162 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Sækja persónuleg gögn" -#: src/Module/BaseSettings.php:162 +#: src/Module/BaseSettings.php:169 msgid "Remove account" msgstr "Henda tengilið" @@ -6327,8 +6337,8 @@ msgstr "listi" msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:54 src/Module/Circle.php:202 -#: src/Module/Circle.php:226 +#: src/Module/Circle.php:54 src/Module/Circle.php:203 +#: src/Module/Circle.php:227 msgid "Circle not found." msgstr "" @@ -6336,15 +6346,15 @@ msgstr "" msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:78 +#: src/Module/Circle.php:80 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Circle.php:86 src/Module/Circle.php:95 #: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 -#: 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/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/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 @@ -6353,75 +6363,75 @@ msgstr "" msgid "Contact not found." msgstr "Tengiliður fannst ekki." -#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 +#: src/Module/Circle.php:90 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Ógildur tengiliður." -#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 +#: src/Module/Circle.php:99 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "" -#: src/Module/Circle.php:103 +#: src/Module/Circle.php:105 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:106 +#: src/Module/Circle.php:108 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:110 +#: src/Module/Circle.php:112 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:113 +#: src/Module/Circle.php:115 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:119 msgid "Bad request." msgstr "" -#: src/Module/Circle.php:158 +#: src/Module/Circle.php:160 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:159 +#: src/Module/Circle.php:161 msgid "Filter" msgstr "" -#: src/Module/Circle.php:165 +#: src/Module/Circle.php:167 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:207 +#: src/Module/Circle.php:208 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:258 +#: src/Module/Circle.php:259 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:268 +#: src/Module/Circle.php:269 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:278 +#: src/Module/Circle.php:279 msgid "Members" msgstr "Meðlimir" -#: src/Module/Circle.php:281 +#: src/Module/Circle.php:282 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:297 +#: src/Module/Circle.php:298 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:320 +#: src/Module/Circle.php:321 msgid "Click on a contact to add or remove." msgstr "Ýttu á tengilið til að bæta við hóp eða taka úr hóp." -#: src/Module/Circle.php:337 +#: src/Module/Circle.php:338 msgid "Add contact to circle" msgstr "" @@ -6455,7 +6465,7 @@ msgid "Only show blocked contacts" msgstr "" #: src/Module/Contact.php:349 src/Module/Contact.php:421 -#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:386 msgid "Ignored" msgstr "Hunsa" @@ -6506,8 +6516,8 @@ msgstr "Uppfæra" #: src/Module/Contact.php:449 src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:105 -#: src/Module/Moderation/Users/Blocked.php:124 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Blocked.php:127 +#: src/Module/Moderation/Users/Index.php:143 msgid "Unblock" msgstr "Afbanna" @@ -6583,12 +6593,12 @@ msgstr "Fara til baka í tengiliðasýsl" #: 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:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:56 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Nafn" @@ -7153,11 +7163,11 @@ msgstr "" msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:190 +#: src/Module/Conversation/Timeline.php:193 msgid "Include" msgstr "" -#: src/Module/Conversation/Timeline.php:191 +#: src/Module/Conversation/Timeline.php:194 msgid "Hide" msgstr "" @@ -7426,19 +7436,19 @@ msgstr "" msgid "Lookup address:" msgstr "" -#: src/Module/Directory.php:61 +#: src/Module/Directory.php:60 msgid "No entries (some entries may be hidden)." msgstr "Engar færslur (sumar geta verið faldar)." -#: src/Module/Directory.php:77 +#: src/Module/Directory.php:76 msgid "Find on this site" msgstr "Leita á þessum vef" -#: src/Module/Directory.php:79 +#: src/Module/Directory.php:78 msgid "Results for:" msgstr "Niðurstöður fyrir:" -#: src/Module/Directory.php:81 +#: src/Module/Directory.php:80 msgid "Site Directory" msgstr "Skrá yfir tengiliði á þessum vef" @@ -7691,40 +7701,40 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "" -#: src/Module/Invite.php:43 +#: src/Module/Invite.php:42 msgid "Total invitation limit exceeded." msgstr "" -#: src/Module/Invite.php:68 +#: src/Module/Invite.php:67 #, php-format msgid "%s : Not a valid email address." msgstr "%s : Ekki gilt tölvupóstfang." -#: src/Module/Invite.php:94 +#: src/Module/Invite.php:93 msgid "Please join us on Friendica" msgstr "Komdu í hópinn á Friendica" -#: src/Module/Invite.php:103 +#: src/Module/Invite.php:102 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: src/Module/Invite.php:107 +#: src/Module/Invite.php:106 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Skilaboð komust ekki til skila." -#: src/Module/Invite.php:111 +#: src/Module/Invite.php:110 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%d skilaboð send." msgstr[1] "%d skilaboð send" -#: src/Module/Invite.php:129 +#: src/Module/Invite.php:127 msgid "You have no more invitations available" msgstr "Þú hefur ekki fleiri boðskort." -#: src/Module/Invite.php:136 +#: src/Module/Invite.php:134 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7732,14 +7742,14 @@ msgid "" " other social networks." msgstr "" -#: src/Module/Invite.php:138 +#: src/Module/Invite.php:136 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "" -#: src/Module/Invite.php:139 +#: src/Module/Invite.php:137 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7748,48 +7758,48 @@ msgid "" "sites you can join." msgstr "" -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:141 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "" -#: src/Module/Invite.php:146 +#: src/Module/Invite.php:144 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:145 +#: src/Module/Invite.php:143 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "" -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:151 msgid "Send invitations" msgstr "Senda kynningar" -#: src/Module/Invite.php:154 +#: src/Module/Invite.php:152 msgid "Enter email addresses, one per line:" msgstr "Settu inn tölvupóstföng, eitt í hverja línu:" -#: src/Module/Invite.php:158 +#: src/Module/Invite.php:156 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:160 +#: src/Module/Invite.php:158 msgid "You will need to supply this invitation code: $invite_code" msgstr "Þú þarft að nota eftirfarandi boðskorta auðkenni: $invite_code" -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Þegar þú hefur nýskráð þig, hafðu samband við mig gegnum síðuna mína á:" -#: src/Module/Invite.php:162 +#: src/Module/Invite.php:160 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" @@ -7891,12 +7901,12 @@ msgid "File upload failed." msgstr "Skráar upphlöðun mistókst." #: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 -#: src/Module/Profile/Photos.php:204 +#: src/Module/Profile/Photos.php:212 #: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Ekki mögulegt afgreiða mynd" -#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:224 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:232 #: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Ekki hægt að hlaða upp mynd." @@ -7929,23 +7939,23 @@ msgstr "" msgid "List of pending user deletions" msgstr "" -#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:469 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:431 msgid "Normal Account Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:476 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:438 msgid "Soapbox Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:483 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:445 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:490 +#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:452 msgid "Public Group - Restricted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:497 +#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:459 msgid "Automatic Friend Page" msgstr "" @@ -7954,22 +7964,22 @@ msgid "Private Group" msgstr "" #: src/Module/Moderation/BaseUsers.php:118 -#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:440 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:402 msgid "Personal Page" msgstr "" #: src/Module/Moderation/BaseUsers.php:119 -#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:447 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:409 msgid "Organisation Page" msgstr "" #: src/Module/Moderation/BaseUsers.php:120 -#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:454 +#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:416 msgid "News Page" msgstr "" #: src/Module/Moderation/BaseUsers.php:121 -#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:461 +#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:423 msgid "Community Group" msgstr "" @@ -7999,9 +8009,9 @@ msgid "Block Remote Contact" msgstr "Útiloka fjartengdan tengilið" #: src/Module/Moderation/Blocklist/Contact.php:102 -#: 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/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:138 #: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "velja alla" @@ -8342,9 +8352,9 @@ msgid "Tag" msgstr "" #: src/Module/Moderation/Item/Source.php:77 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 -#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 +#: src/Module/Moderation/Users/Index.php:129 msgid "Type" msgstr "Tegund" @@ -8609,7 +8619,7 @@ msgstr[1] "" msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:418 +#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:380 msgid "Channel Relay" msgstr "" @@ -8630,11 +8640,11 @@ msgstr[0] "" msgstr[1] "" #: src/Module/Moderation/Users/Active.php:37 -#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Active.php:74 #: src/Module/Moderation/Users/Blocked.php:37 -#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Blocked.php:74 #: src/Module/Moderation/Users/Index.php:44 -#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Index.php:81 msgid "You can't remove yourself" msgstr "" @@ -8647,81 +8657,81 @@ msgid_plural "%s users deleted" msgstr[0] "%s notanda eytt" msgstr[1] "%s notendum eytt" -#: src/Module/Moderation/Users/Active.php:69 -#: src/Module/Moderation/Users/Blocked.php:69 -#: src/Module/Moderation/Users/Index.php:76 +#: src/Module/Moderation/Users/Active.php:72 +#: src/Module/Moderation/Users/Blocked.php:72 +#: src/Module/Moderation/Users/Index.php:79 #, php-format msgid "User \"%s\" deleted" msgstr "" -#: src/Module/Moderation/Users/Active.php:79 -#: src/Module/Moderation/Users/Index.php:86 +#: src/Module/Moderation/Users/Active.php:82 +#: src/Module/Moderation/Users/Index.php:89 #, php-format msgid "User \"%s\" blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Register date" msgstr "Skráningardagur" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last login" msgstr "Síðast innskráður" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last public item" msgstr "" -#: src/Module/Moderation/Users/Active.php:120 +#: src/Module/Moderation/Users/Active.php:123 msgid "Active Accounts" msgstr "" -#: src/Module/Moderation/Users/Active.php:124 -#: src/Module/Moderation/Users/Blocked.php:123 -#: src/Module/Moderation/Users/Index.php:139 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "User blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:125 -#: src/Module/Moderation/Users/Blocked.php:125 -#: src/Module/Moderation/Users/Index.php:141 +#: src/Module/Moderation/Users/Active.php:128 +#: src/Module/Moderation/Users/Blocked.php:128 +#: src/Module/Moderation/Users/Index.php:144 msgid "Site admin" msgstr "Vefstjóri" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:142 +#: src/Module/Moderation/Users/Active.php:129 +#: src/Module/Moderation/Users/Blocked.php:129 +#: src/Module/Moderation/Users/Index.php:145 msgid "Account expired" msgstr "Notandaaðgangur útrunninn" -#: src/Module/Moderation/Users/Active.php:127 -#: src/Module/Moderation/Users/Index.php:145 +#: src/Module/Moderation/Users/Active.php:130 +#: src/Module/Moderation/Users/Index.php:148 msgid "Create a new user" msgstr "" -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:132 -#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:154 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Valdir notendur verður eytt!\\n\\nAllt sem þessir notendur hafa deilt á þessum vef verður varanlega eytt!\\n\\nErtu alveg viss?" -#: src/Module/Moderation/Users/Active.php:134 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:155 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" @@ -8735,13 +8745,13 @@ msgid_plural "%s users unblocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Blocked.php:78 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Blocked.php:81 +#: src/Module/Moderation/Users/Index.php:95 #, php-format msgid "User \"%s\" unblocked" msgstr "" -#: src/Module/Moderation/Users/Blocked.php:120 +#: src/Module/Moderation/Users/Blocked.php:123 msgid "Blocked Users" msgstr "" @@ -8774,11 +8784,11 @@ msgid "Users awaiting permanent deletion" msgstr "" #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:149 msgid "Permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Index.php:136 +#: src/Module/Moderation/Users/Index.php:139 msgid "User waiting for permanent deletion" msgstr "" @@ -8943,7 +8953,7 @@ msgstr "" msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:91 +#: src/Module/OAuth/Token.php:73 msgid "Unsupported or missing grant type" msgstr "" @@ -8995,7 +9005,7 @@ msgstr "hunsað" msgid "Keep this window open until done." msgstr "Halda þessum glugga opnum þar til öllu er lokið." -#: src/Module/OpenSearch.php:57 +#: src/Module/OpenSearch.php:55 #, php-format msgid "Search in Friendica %s" msgstr "" @@ -9009,12 +9019,12 @@ msgstr "" msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:178 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:180 #, php-format msgid "Invalid photo with id %s." msgstr "" @@ -9047,15 +9057,15 @@ msgstr "Setja inn slóð á hljóðskrá" msgid "audio link" msgstr "slóð á hljóðskrá" -#: src/Module/Post/Tag/Remove.php:92 +#: src/Module/Post/Tag/Remove.php:93 msgid "Remove Item Tag" msgstr "Fjarlægja merki " -#: src/Module/Post/Tag/Remove.php:93 +#: src/Module/Post/Tag/Remove.php:94 msgid "Select a tag to remove: " msgstr "Veldu merki til að fjarlægja:" -#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Post/Tag/Remove.php:95 #: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Fjarlægja" @@ -9134,32 +9144,32 @@ msgstr "Athugasemdir frá %s" msgid "%s's timeline" msgstr "Tímalína fyrir %s" -#: src/Module/Profile/Photos.php:153 src/Module/Profile/Photos.php:156 -#: src/Module/Profile/Photos.php:181 +#: src/Module/Profile/Photos.php:157 src/Module/Profile/Photos.php:160 +#: src/Module/Profile/Photos.php:189 #: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "" -#: src/Module/Profile/Photos.php:159 +#: src/Module/Profile/Photos.php:163 msgid "Image upload didn't complete, please try again" msgstr "" -#: src/Module/Profile/Photos.php:162 +#: src/Module/Profile/Photos.php:166 msgid "Image file is missing" msgstr "Myndskrá vantar" -#: src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:171 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "" -#: src/Module/Profile/Photos.php:189 +#: src/Module/Profile/Photos.php:197 msgid "Image file is empty." msgstr "Mynda skrá er tóm." -#: src/Module/Profile/Photos.php:341 +#: src/Module/Profile/Photos.php:349 msgid "View Album" msgstr "Skoða myndabók" @@ -9275,15 +9285,15 @@ msgid "" "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:69 +#: src/Module/Profile/Schedule.php:67 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:70 +#: src/Module/Profile/Schedule.php:68 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:71 +#: src/Module/Profile/Schedule.php:69 msgid "Remove post" msgstr "" @@ -9348,7 +9358,7 @@ msgid "Please repeat your e-mail address:" msgstr "" #: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:551 +#: src/Module/Settings/Account.php:513 msgid "New Password:" msgstr "Nýtt aðgangsorð:" @@ -9357,7 +9367,7 @@ 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:552 +#: src/Module/Settings/Account.php:514 msgid "Confirm:" msgstr "Staðfesta:" @@ -9541,20 +9551,20 @@ msgstr "Skráður út." msgid "OpenID protocol error. No ID returned" msgstr "" -#: src/Module/Security/OpenID.php:76 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "" -#: src/Module/Security/OpenID.php:78 +#: src/Module/Security/OpenID.php:80 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:51 +#: src/Module/Settings/Account.php:49 msgid "Passwords do not match." msgstr "" @@ -9563,7 +9573,7 @@ msgid "Password does not need changing." msgstr "" #: src/Module/Security/PasswordTooLong.php:63 -#: src/Module/Settings/Account.php:65 +#: src/Module/Settings/Account.php:63 msgid "Password unchanged." msgstr "" @@ -9583,24 +9593,24 @@ msgid "Update Password" msgstr "" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Current Password:" msgstr "Núverandi lykilorð:" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Your current password to confirm the changes" msgstr "" #: src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:537 +#: src/Module/Settings/Account.php:499 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:538 +#: src/Module/Settings/Account.php:500 msgid "Password length is limited to 72 characters." msgstr "" @@ -9704,129 +9714,121 @@ msgstr "" msgid "Verify code and complete login" msgstr "" -#: src/Module/Settings/Account.php:80 +#: src/Module/Settings/Account.php:78 msgid "Please use a shorter name." msgstr "" -#: src/Module/Settings/Account.php:83 +#: src/Module/Settings/Account.php:81 msgid "Name too short." msgstr "" -#: src/Module/Settings/Account.php:92 +#: src/Module/Settings/Account.php:90 msgid "Wrong Password." msgstr "" -#: src/Module/Settings/Account.php:97 +#: src/Module/Settings/Account.php:95 msgid "Invalid email." msgstr "Ógilt tölvupóstfang." -#: src/Module/Settings/Account.php:101 +#: src/Module/Settings/Account.php:99 msgid "Cannot change to that email." msgstr "" -#: 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 +#: 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 msgid "Settings were not updated." msgstr "" -#: src/Module/Settings/Account.php:331 -msgid "Contact CSV file upload error" -msgstr "" - -#: src/Module/Settings/Account.php:350 -msgid "Importing Contacts done" -msgstr "" - -#: src/Module/Settings/Account.php:363 +#: src/Module/Settings/Account.php:325 msgid "Relocate message has been send to your contacts" msgstr "" -#: src/Module/Settings/Account.php:380 +#: src/Module/Settings/Account.php:342 msgid "Unable to find your profile. Please contact your admin." msgstr "" -#: src/Module/Settings/Account.php:420 +#: src/Module/Settings/Account.php:382 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:430 +#: src/Module/Settings/Account.php:392 msgid "Personal Page Subtypes" msgstr "" -#: src/Module/Settings/Account.php:431 +#: src/Module/Settings/Account.php:393 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:442 +#: src/Module/Settings/Account.php:404 msgid "Account for a personal profile." msgstr "" -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:411 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:456 +#: src/Module/Settings/Account.php:418 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:463 +#: src/Module/Settings/Account.php:425 msgid "Account for community discussions." msgstr "" -#: src/Module/Settings/Account.php:471 +#: src/Module/Settings/Account.php:433 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:478 +#: src/Module/Settings/Account.php:440 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:485 +#: src/Module/Settings/Account.php:447 msgid "Automatically approves all contact requests." msgstr "" -#: src/Module/Settings/Account.php:492 +#: src/Module/Settings/Account.php:454 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:499 +#: src/Module/Settings/Account.php:461 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "" -#: src/Module/Settings/Account.php:504 +#: src/Module/Settings/Account.php:466 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:506 +#: src/Module/Settings/Account.php:468 msgid "Requires manual approval of contact requests." msgstr "" -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Valfrjálst) Leyfa þessu OpenID til að auðkennast sem þessi notandi." -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9834,94 +9836,94 @@ msgid "" " system settings." msgstr "" -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:491 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "" -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:504 msgid "Account Settings" msgstr "Stillingar aðgangs" -#: src/Module/Settings/Account.php:543 +#: src/Module/Settings/Account.php:505 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: src/Module/Settings/Account.php:550 +#: src/Module/Settings/Account.php:512 msgid "Password Settings" msgstr "Stillingar aðgangsorða" -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Leave password fields blank unless changing" msgstr "Hafðu aðgangsorða svæði tóm nema þegar verið er að breyta" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Password:" msgstr "Lykilorð:" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:557 +#: src/Module/Settings/Account.php:519 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:559 +#: src/Module/Settings/Account.php:521 msgid "Basic Settings" msgstr "Grunnstillingar" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:522 #: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:523 msgid "Email Address:" msgstr "Tölvupóstfang:" -#: src/Module/Settings/Account.php:562 +#: src/Module/Settings/Account.php:524 msgid "Your Timezone:" msgstr "Þitt tímabelti:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "Your Language:" msgstr "Tungumálið þitt:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "" -#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Account.php:526 msgid "Default Post Location:" msgstr "Sjálfgefin staðsetning færslu:" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:527 msgid "Use Browser Location:" msgstr "Nota vafra staðsetningu:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:529 msgid "Security and Privacy Settings" msgstr "Öryggis og friðhelgistillingar" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "Maximum Friend Requests/Day:" msgstr "Hámarks vinabeiðnir á dag:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "(to prevent spam abuse)" msgstr "(til að koma í veg fyrir rusl misnotkun)" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 msgid "Allow your profile to be searchable globally?" msgstr "" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 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 " @@ -9929,43 +9931,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 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:573 +#: src/Module/Settings/Account.php:535 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:535 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:574 +#: src/Module/Settings/Account.php:536 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:536 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:575 +#: src/Module/Settings/Account.php:537 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:537 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 " @@ -9973,227 +9975,213 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "Allow friends to post to your profile page?" msgstr "Leyfa vinum að deila á forsíðuna þína?" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Allow friends to tag your posts?" msgstr "Leyfa vinum að merkja færslurnar þínar?" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Your contacts can add additional tags to your posts." msgstr "" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:540 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:541 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:542 msgid "Default Post Permissions" msgstr "Sjálfgefnar aðgangstýring á færslum" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:546 msgid "Expiration settings" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "Automatically expire posts after this many days:" msgstr "Sjálfkrafa fyrna færslu eftir hvað marga daga:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Tómar færslur renna ekki út. Útrunnum færslum er eytt" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "Expire starred posts" msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 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:592 +#: src/Module/Settings/Account.php:554 msgid "Notification Settings" msgstr "Stillingar á tilkynningum" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:555 msgid "Send a notification email when:" msgstr "Senda tilkynningapóst þegar:" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:556 msgid "You receive an introduction" msgstr "Þú færð kynningu" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:557 msgid "Your introductions are confirmed" msgstr "Kynningarnar þínar eru samþykktar" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:558 msgid "Someone writes on your profile wall" msgstr "Einhver skrifar á vegginn þinn" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:559 msgid "Someone writes a followup comment" msgstr "Einhver skrifar athugasemd á færslu hjá þér" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:560 msgid "You receive a private message" msgstr "Þú færð einkaskilaboð" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:561 msgid "You receive a friend suggestion" msgstr "Þér hefur borist vina uppástunga" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:562 msgid "You are tagged in a post" msgstr "Þú varst merkt(ur) í færslu" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:564 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:565 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:566 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:567 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:605 src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:567 src/Module/Settings/Account.php:568 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:568 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:569 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:570 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:571 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Activate desktop notifications" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Show desktop popup on new notifications" msgstr "" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:577 msgid "Text-only notification emails" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:579 msgid "Send text only notification emails, without the html part" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:583 msgid "Show detailled notifications" msgstr "" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:585 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:589 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:591 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:632 +#: src/Module/Settings/Account.php:594 msgid "Advanced Account/Page Type Settings" msgstr "" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:595 msgid "Change the behaviour of this account for special situations" msgstr "" -#: src/Module/Settings/Account.php:636 -msgid "Import Contacts" -msgstr "" - -#: src/Module/Settings/Account.php:637 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "" - -#: src/Module/Settings/Account.php:638 -msgid "Upload File" -msgstr "" - -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:598 msgid "Relocate" msgstr "Endurstaðsetja" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:599 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:643 +#: src/Module/Settings/Account.php:600 msgid "Resend relocate message to contacts" msgstr "" @@ -10358,214 +10346,232 @@ msgstr "" msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:108 +#: src/Module/Settings/Connectors.php:107 msgid "Failed to connect with email account using the settings provided." msgstr "Ekki tókst að tengjast við pósthólf með stillingum sem uppgefnar eru." -#: src/Module/Settings/Connectors.php:155 -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:150 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:149 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:150 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:161 msgid "Email access is disabled on this site." msgstr "Slökkt hefur verið á tölvupóst aðgang á þessum þjón." -#: src/Module/Settings/Connectors.php:182 -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:176 +#: src/Module/Settings/Connectors.php:226 msgid "None" msgstr "Ekkert" -#: src/Module/Settings/Connectors.php:186 +#: src/Module/Settings/Connectors.php:180 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "" -#: src/Module/Settings/Connectors.php:187 +#: src/Module/Settings/Connectors.php:181 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "" -#: src/Module/Settings/Connectors.php:188 +#: src/Module/Settings/Connectors.php:182 msgid "Embed the title in the body" msgstr "" -#: src/Module/Settings/Connectors.php:199 +#: src/Module/Settings/Connectors.php:193 msgid "General Social Media Settings" msgstr "Almennar stillingar samfélagsmiðla" -#: src/Module/Settings/Connectors.php:202 +#: src/Module/Settings/Connectors.php:196 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:198 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:200 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:207 +#: src/Module/Settings/Connectors.php:201 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:208 +#: src/Module/Settings/Connectors.php:202 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "Attach the link title" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "Article Mode" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "" -#: src/Module/Settings/Connectors.php:218 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "" - -#: src/Module/Settings/Connectors.php:218 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "" - -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:215 msgid "Email/Mailbox Setup" msgstr "Tölvupóstur stilling" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:216 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Ef þú villt hafa samskipti við tölvupóststengiliði með þessari þjónustu (valfrjálst), skilgreindu þá hvernig á að tengjast póstfanginu þínu." -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:217 msgid "Last successful email check:" msgstr "Síðasta prófun á tölvupóstfangi:" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:219 msgid "IMAP server name:" msgstr "IMAP þjónn:" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:220 msgid "IMAP port:" msgstr "IMAP port:" -#: src/Module/Settings/Connectors.php:228 +#: src/Module/Settings/Connectors.php:221 msgid "Security:" msgstr "Öryggi:" -#: src/Module/Settings/Connectors.php:229 +#: src/Module/Settings/Connectors.php:222 msgid "Email login name:" msgstr "Notandanafn tölvupóstfangs:" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:223 msgid "Email password:" msgstr "Lykilorð tölvupóstfangs:" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:224 msgid "Reply-to address:" msgstr "Svarpóstfang:" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:225 msgid "Send public posts to all email contacts:" msgstr "Senda opinberar færslur á alla tölvupóst viðtakendur:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Action after import:" msgstr "" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Move to folder" msgstr "Flytja yfir í skrásafn" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:227 msgid "Move to folder:" msgstr "Flytja yfir í skrásafn:" +#: src/Module/Settings/ContactImport.php:63 +msgid "Contact CSV file upload error" +msgstr "" + +#: src/Module/Settings/ContactImport.php:82 +msgid "Importing Contacts done" +msgstr "" + +#: src/Module/Settings/ContactImport.php:112 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "" + +#: src/Module/Settings/ContactImport.php:113 +msgid "Upload File" +msgstr "" + +#: src/Module/Settings/ContactImport.php:115 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "" + +#: src/Module/Settings/ContactImport.php:115 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "" + #: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "" @@ -11016,42 +11022,42 @@ msgstr "Einka leitarorð:" msgid "(Used for searching profiles, never shown to others)" msgstr "(Notað við leit að öðrum notendum, aldrei sýnt öðrum)" -#: 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/Crop.php:90 +#: src/Module/Settings/Profile/Photo/Crop.php:108 +#: src/Module/Settings/Profile/Photo/Crop.php:126 #: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Myndar minnkun [%s] tókst ekki." -#: src/Module/Settings/Profile/Photo/Crop.php:136 +#: src/Module/Settings/Profile/Photo/Crop.php:133 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Ýta þarf á " -#: src/Module/Settings/Profile/Photo/Crop.php:141 +#: src/Module/Settings/Profile/Photo/Crop.php:138 msgid "Unable to process image" msgstr "Ekki tókst að vinna mynd" -#: src/Module/Settings/Profile/Photo/Crop.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:157 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:182 +#: src/Module/Settings/Profile/Photo/Crop.php:179 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:208 -#: src/Module/Settings/Profile/Photo/Crop.php:212 +#: src/Module/Settings/Profile/Photo/Crop.php:205 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Crop Image" msgstr "Skera af mynd" -#: src/Module/Settings/Profile/Photo/Crop.php:209 +#: src/Module/Settings/Profile/Photo/Crop.php:206 msgid "Please adjust the image cropping for optimum viewing." msgstr "Stilltu afskurð fyrir besta birtingu." -#: src/Module/Settings/Profile/Photo/Crop.php:211 +#: src/Module/Settings/Profile/Photo/Crop.php:208 msgid "Use Image As Is" msgstr "" @@ -11122,17 +11128,17 @@ msgstr "" msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:116 +#: src/Module/Settings/RemoveMe.php:114 msgid "Remove My Account" msgstr "Eyða þessum notanda" -#: src/Module/Settings/RemoveMe.php:117 +#: src/Module/Settings/RemoveMe.php:115 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Þetta mun algjörlega eyða notandanum. Þegar þetta hefur verið gert er þetta ekki afturkræft." -#: src/Module/Settings/RemoveMe.php:122 +#: src/Module/Settings/RemoveMe.php:120 msgid "Please enter your password for verification:" msgstr "Sláðu inn aðgangsorð yðar:" @@ -11527,11 +11533,11 @@ msgstr "" msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:64 +#: src/Module/Special/HTTPException.php:65 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:69 +#: src/Module/Special/HTTPException.php:70 #, php-format msgid "Exception thrown in %s:%d" msgstr "" @@ -12314,295 +12320,295 @@ msgstr "Hafðu samband við sendanda með því að svara á þessari færslu ef msgid "%s posted an update." msgstr "%s hefur sent uppfærslu." -#: src/Object/Post.php:124 +#: src/Object/Post.php:125 msgid "Private Message" msgstr "Einkaskilaboð" -#: src/Object/Post.php:128 +#: src/Object/Post.php:129 msgid "Public Message" msgstr "" -#: src/Object/Post.php:132 +#: src/Object/Post.php:133 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:168 +#: src/Object/Post.php:169 msgid "This entry was edited" msgstr "Þessari færslu var breytt" -#: src/Object/Post.php:196 +#: src/Object/Post.php:197 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:225 src/Object/Post.php:227 +#: src/Object/Post.php:226 src/Object/Post.php:228 msgid "Edit" msgstr "Breyta" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Delete globally" msgstr "" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Remove locally" msgstr "" -#: src/Object/Post.php:268 +#: src/Object/Post.php:269 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:273 +#: src/Object/Post.php:274 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:278 +#: src/Object/Post.php:279 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:282 +#: src/Object/Post.php:283 msgid "Report post" msgstr "" -#: src/Object/Post.php:293 +#: src/Object/Post.php:294 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will attend" msgstr "Ég mæti" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will not attend" msgstr "Ég mæti ekki" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I might attend" msgstr "Ég gæti mætt" -#: src/Object/Post.php:380 +#: src/Object/Post.php:381 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:381 +#: src/Object/Post.php:382 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:382 +#: src/Object/Post.php:383 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:392 +#: src/Object/Post.php:393 msgid "Add star" msgstr "" -#: src/Object/Post.php:393 +#: src/Object/Post.php:394 msgid "Remove star" msgstr "" -#: src/Object/Post.php:394 +#: src/Object/Post.php:395 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:405 +#: src/Object/Post.php:406 msgid "Pin" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:407 msgid "Unpin" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:408 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:410 +#: src/Object/Post.php:411 msgid "Pinned" msgstr "" -#: src/Object/Post.php:415 +#: src/Object/Post.php:416 msgid "Add tag" msgstr "" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare" msgstr "" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Unshare" msgstr "" -#: src/Object/Post.php:478 +#: src/Object/Post.php:479 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:514 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:517 +#: src/Object/Post.php:518 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:519 +#: src/Object/Post.php:520 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:543 +#: src/Object/Post.php:544 msgid "to" msgstr "við" -#: src/Object/Post.php:544 +#: src/Object/Post.php:545 msgid "via" msgstr "gegnum" -#: src/Object/Post.php:545 +#: src/Object/Post.php:546 msgid "Wall-to-Wall" msgstr "vegg við vegg" -#: src/Object/Post.php:546 +#: src/Object/Post.php:547 msgid "via Wall-To-Wall:" msgstr "gegnum vegg við vegg" -#: src/Object/Post.php:599 +#: src/Object/Post.php:600 #, php-format msgid "Reply to %s" msgstr "" -#: src/Object/Post.php:602 +#: src/Object/Post.php:603 msgid "More" msgstr "" -#: src/Object/Post.php:621 +#: src/Object/Post.php:622 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:622 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:623 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:624 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:625 +#: src/Object/Post.php:626 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:647 +#: src/Object/Post.php:648 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d ummæli" msgstr[1] "%d ummæli" -#: src/Object/Post.php:648 +#: src/Object/Post.php:649 msgid "Show more" msgstr "" -#: src/Object/Post.php:649 +#: src/Object/Post.php:650 msgid "Show fewer" msgstr "" -#: src/Object/Post.php:686 +#: src/Object/Post.php:687 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:691 +#: src/Object/Post.php:692 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:696 +#: src/Object/Post.php:697 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:701 +#: src/Object/Post.php:702 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:706 +#: src/Object/Post.php:707 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:711 +#: src/Object/Post.php:712 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:716 +#: src/Object/Post.php:717 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:721 +#: src/Object/Post.php:722 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:726 +#: src/Object/Post.php:727 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:731 +#: src/Object/Post.php:732 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:754 +#: src/Object/Post.php:755 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:557 +#: src/Protocol/ActivityPub/Receiver.php:558 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:530 +#: src/Protocol/Delivery.php:531 msgid "(no subject)" msgstr "" @@ -12615,20 +12621,20 @@ msgstr "" msgid "Login failed." msgstr "Innskráning mistókst." -#: src/Security/Authentication.php:260 +#: src/Security/Authentication.php:261 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:374 #, php-format msgid "Welcome %s" msgstr "" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:375 msgid "Please upload a profile photo." msgstr "Gerðu svo vel að hlaða inn forsíðumynd." -#: src/Security/OpenWebAuth.php:149 +#: src/Security/OpenWebAuth.php:150 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "" diff --git a/view/lang/it/messages.po b/view/lang/it/messages.po index a2dd32c8de..96785e1438 100644 --- a/view/lang/it/messages.po +++ b/view/lang/it/messages.po @@ -17,7 +17,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: fabrixxm , 2013-2015,2017-2022\n" "Language-Team: Italian (http://app.transifex.com/Friendica/friendica/language/it/)\n" @@ -27,34 +27,34 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\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 "Impossibile trovare il messaggio originale." -#: mod/item.php:127 +#: mod/item.php:126 msgid "Post updated." msgstr "Messaggio aggiornato." -#: mod/item.php:192 mod/item.php:196 +#: mod/item.php:191 mod/item.php:195 msgid "Item wasn't stored." msgstr "L'oggetto non è stato salvato." -#: mod/item.php:206 +#: mod/item.php:205 msgid "Item couldn't be fetched." msgstr "L'oggetto non può essere recuperato." -#: mod/item.php:250 mod/item.php:254 +#: mod/item.php:249 mod/item.php:253 msgid "Empty post discarded." msgstr "Messaggio vuoto scartato." -#: 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 "Elemento non trovato." -#: 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 @@ -65,7 +65,7 @@ msgstr "Elemento non trovato." #: 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 @@ -74,13 +74,15 @@ msgstr "Elemento non trovato." #: 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 @@ -89,15 +91,15 @@ msgstr "Elemento non trovato." msgid "Permission denied." msgstr "Permesso negato." -#: mod/lostpass.php:28 +#: mod/lostpass.php:27 msgid "No valid account found." msgstr "Nessun account valido trovato." -#: mod/lostpass.php:40 +#: mod/lostpass.php:39 msgid "Password reset request issued. Check your email." msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." -#: mod/lostpass.php:46 +#: mod/lostpass.php:45 #, php-format msgid "" "\n" @@ -113,7 +115,7 @@ msgid "" "\t\tissued this request." msgstr "\nGentile %1$s,\n\tabbiamo ricevuto su \"%2$s\" una richiesta di resettare la password del tuo account. Per confermare questa richiesta, selezionate il collegamento di conferma qui sotto o incollatelo nella barra indirizzo del vostro browser.\n\nSe NON hai richiesto questa modifica, NON selezionare il collegamento e ignora o cancella questa email.\n\nLa tua password non verrà modificata a meno che non possiamo verificare che tu abbia effettivamente richiesto la modifica." -#: mod/lostpass.php:57 +#: mod/lostpass.php:56 #, php-format msgid "" "\n" @@ -130,70 +132,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\nSegui questo collegamento per verificare la tua identità:\n\n%1$s\n\nRiceverai in un successivo messaggio la nuova password.\nPotrai cambiarla dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato.\n\nI dettagli del tuo account sono:\n\tIndirizzo del sito: %2$s\n\tNome utente: %3$s" -#: mod/lostpass.php:72 +#: mod/lostpass.php:71 #, php-format msgid "Password reset requested at %s" msgstr "Richiesta reimpostazione password su %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 "La richiesta non può essere verificata. (Puoi averla già richiesta precedentemente). Reimpostazione password fallita." -#: mod/lostpass.php:101 +#: mod/lostpass.php:100 msgid "Request has expired, please make a new one." msgstr "La richiesta è scaduta, si prega di crearne una nuova." -#: mod/lostpass.php:116 +#: mod/lostpass.php:115 msgid "Forgot your Password?" msgstr "Hai dimenticato la password?" -#: 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 "Inserisci il tuo indirizzo email per reimpostare la password." -#: 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 "Nome utente o email: " -#: mod/lostpass.php:119 +#: mod/lostpass.php:118 msgid "Reset" msgstr "Reimposta" -#: mod/lostpass.php:134 src/Module/Security/Login.php:161 +#: mod/lostpass.php:133 src/Module/Security/Login.php:161 msgid "Password Reset" msgstr "Reimpostazione password" -#: mod/lostpass.php:135 +#: mod/lostpass.php:134 msgid "Your password has been reset as requested." msgstr "La tua password è stata reimpostata come richiesto." -#: mod/lostpass.php:136 +#: mod/lostpass.php:135 msgid "Your new password is" msgstr "La tua nuova password è" -#: mod/lostpass.php:137 +#: mod/lostpass.php:136 msgid "Save or copy your new password - and then" msgstr "Salva o copia la tua nuova password, quindi" -#: mod/lostpass.php:138 +#: mod/lostpass.php:137 msgid "click here to login" msgstr "clicca qui per entrare" -#: mod/lostpass.php:139 +#: mod/lostpass.php:138 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Puoi cambiare la tua password dalla pagina Impostazioni dopo aver effettuato l'accesso." -#: mod/lostpass.php:143 +#: mod/lostpass.php:142 msgid "Your password has been reset." msgstr "La tua password è stata reimpostata." -#: mod/lostpass.php:146 +#: mod/lostpass.php:145 #, php-format msgid "" "\n" @@ -204,7 +206,7 @@ msgid "" "\t\t" msgstr "\nGentile %1$s,\n\tLa tua password è stata modificata come richiesto.\nSalva questa password, o sostituiscila immediatamente con qualcosa che puoi ricordare." -#: mod/lostpass.php:152 +#: mod/lostpass.php:151 #, php-format msgid "" "\n" @@ -218,7 +220,7 @@ msgid "" "\t\t" msgstr "\nI dettagli del tuo account sono:\n\n\tIndirizzo del sito: %1$s\n\tNome utente: %2$s\n\tPassword: %3$s\n\nPuoi cambiare questa password dalla pagina \"Impostazioni\" del tuo account dopo esserti autenticato." -#: mod/lostpass.php:164 +#: mod/lostpass.php:163 #, php-format msgid "Your password has been changed at %s" msgstr "La tua password presso %s è stata cambiata" @@ -282,11 +284,11 @@ msgstr "A:" msgid "Subject:" msgstr "Oggetto:" -#: 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 "Il tuo messaggio:" -#: 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 "Carica foto" @@ -295,16 +297,16 @@ msgstr "Carica foto" msgid "Insert web link" msgstr "Inserisci collegamento web" -#: 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 "Attendi" -#: 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 @@ -312,7 +314,7 @@ msgstr "Attendi" #: 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 @@ -321,7 +323,7 @@ msgstr "Attendi" #: 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" @@ -380,396 +382,396 @@ msgstr[0] "%d messaggio" msgstr[1] "%d messaggi" msgstr[2] "%d messaggi" -#: mod/notes.php:40 src/Module/BaseProfile.php:93 +#: mod/notes.php:41 src/Module/BaseProfile.php:93 msgid "Personal Notes" msgstr "Note personali" -#: mod/notes.php:44 +#: mod/notes.php:45 msgid "Personal notes are visible only by yourself." msgstr "Le note personali sono visibili solo da te." -#: 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 "Salva" -#: 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 "Utente non trovato." -#: 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 "Album foto" -#: 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 "Foto recenti" -#: 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 "Carica nuove foto" -#: 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 "tutti" -#: mod/photos.php:142 +#: mod/photos.php:140 msgid "Contact information unavailable" msgstr "I dati di questo contatto non sono disponibili" -#: mod/photos.php:171 +#: mod/photos.php:169 msgid "Album not found." msgstr "Album non trovato." -#: mod/photos.php:227 +#: mod/photos.php:225 msgid "Album successfully deleted" msgstr "Album eliminato con successo" -#: mod/photos.php:229 +#: mod/photos.php:227 msgid "Album was empty." msgstr "L'album era vuoto." -#: mod/photos.php:260 +#: mod/photos.php:258 msgid "Failed to delete the photo." msgstr "Eliminazione della foto non riuscita." -#: mod/photos.php:504 +#: mod/photos.php:502 msgid "a photo" msgstr "una foto" -#: mod/photos.php:504 +#: mod/photos.php:502 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s è stato taggato in %2$s da %3$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 "Accesso negato." -#: mod/photos.php:546 +#: mod/photos.php:544 msgid "No photos selected" msgstr "Nessuna foto selezionata" -#: mod/photos.php:674 +#: mod/photos.php:672 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:681 +#: mod/photos.php:679 msgid "Upload Photos" msgstr "Carica foto" -#: mod/photos.php:685 mod/photos.php:774 +#: mod/photos.php:683 mod/photos.php:772 msgid "New album name: " msgstr "Nome nuovo album: " -#: mod/photos.php:686 +#: mod/photos.php:684 msgid "or select existing album:" msgstr "o seleziona un album esistente:" -#: mod/photos.php:687 +#: mod/photos.php:685 msgid "Do not show a status post for this upload" msgstr "Non creare un messaggio per questo upload" -#: 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 "Permessi" -#: mod/photos.php:755 +#: mod/photos.php:753 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Vuoi davvero cancellare questo album e tutte le sue foto?" -#: mod/photos.php:756 mod/photos.php:779 +#: mod/photos.php:754 mod/photos.php:777 msgid "Delete Album" msgstr "Rimuovi album" -#: 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 "Annulla" -#: mod/photos.php:783 +#: mod/photos.php:781 msgid "Edit Album" msgstr "Modifica album" -#: mod/photos.php:784 +#: mod/photos.php:782 msgid "Drop Album" msgstr "Elimina Album" -#: mod/photos.php:788 +#: mod/photos.php:786 msgid "Show Newest First" msgstr "Mostra nuove foto per prime" -#: mod/photos.php:790 +#: mod/photos.php:788 msgid "Show Oldest First" msgstr "Mostra vecchie foto per prime" -#: mod/photos.php:811 src/Module/Profile/Photos.php:335 +#: mod/photos.php:809 src/Module/Profile/Photos.php:343 msgid "View Photo" msgstr "Vedi foto" -#: mod/photos.php:843 +#: mod/photos.php:841 msgid "Permission denied. Access to this item may be restricted." msgstr "Permesso negato. L'accesso a questo elemento può essere limitato." -#: mod/photos.php:845 +#: mod/photos.php:843 msgid "Photo not available" msgstr "Foto non disponibile" -#: mod/photos.php:855 +#: mod/photos.php:853 msgid "Do you really want to delete this photo?" msgstr "Vuoi veramente cancellare questa foto?" -#: mod/photos.php:856 mod/photos.php:1056 +#: mod/photos.php:854 mod/photos.php:1054 msgid "Delete Photo" msgstr "Rimuovi foto" -#: mod/photos.php:954 +#: mod/photos.php:952 msgid "View photo" msgstr "Vedi foto" -#: mod/photos.php:956 +#: mod/photos.php:954 msgid "Edit photo" msgstr "Modifica foto" -#: mod/photos.php:957 +#: mod/photos.php:955 msgid "Delete photo" msgstr "Elimina foto" -#: mod/photos.php:958 +#: mod/photos.php:956 msgid "Use as profile photo" msgstr "Usa come foto del profilo" -#: mod/photos.php:965 +#: mod/photos.php:963 msgid "Private Photo" msgstr "Foto privata" -#: mod/photos.php:971 +#: mod/photos.php:969 msgid "View Full Size" msgstr "Vedi dimensione intera" -#: mod/photos.php:1024 +#: mod/photos.php:1022 msgid "Tags: " msgstr "Tag: " -#: mod/photos.php:1027 +#: mod/photos.php:1025 msgid "[Select tags to remove]" msgstr "[Seleziona tag da rimuovere]" -#: mod/photos.php:1042 +#: mod/photos.php:1040 msgid "New album name" msgstr "Nuovo nome dell'album" -#: mod/photos.php:1043 +#: mod/photos.php:1041 msgid "Caption" msgstr "Titolo" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "Add a Tag" msgstr "Aggiungi tag" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1045 +#: mod/photos.php:1043 msgid "Do not rotate" msgstr "Non ruotare" -#: mod/photos.php:1046 +#: mod/photos.php:1044 msgid "Rotate CW (right)" msgstr "Ruota a destra" -#: mod/photos.php:1047 +#: mod/photos.php:1045 msgid "Rotate CCW (left)" msgstr "Ruota a sinistra" -#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: mod/photos.php:1091 mod/photos.php:1147 mod/photos.php:1227 #: src/Module/Contact.php:600 src/Module/Item/Compose.php:184 -#: src/Object/Post.php:1142 +#: src/Object/Post.php:1143 msgid "This is you" msgstr "Questo sei tu" -#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 -#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:598 -#: src/Object/Post.php:1144 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:599 +#: src/Object/Post.php:1145 msgid "Comment" msgstr "Commento" -#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 -#: src/Content/Conversation.php:401 src/Module/Calendar/Event/Form.php:234 +#: 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 -#: src/Object/Post.php:1158 +#: src/Object/Post.php:1159 msgid "Preview" msgstr "Anteprima" -#: mod/photos.php:1098 src/Content/Conversation.php:355 -#: src/Module/Post/Edit.php:121 src/Object/Post.php:1146 +#: mod/photos.php:1096 src/Content/Conversation.php:357 +#: src/Module/Post/Edit.php:121 src/Object/Post.php:1147 msgid "Loading..." msgstr "Caricamento..." -#: mod/photos.php:1190 src/Content/Conversation.php:1485 -#: src/Object/Post.php:260 +#: mod/photos.php:1188 src/Content/Conversation.php:1487 +#: src/Object/Post.php:261 msgid "Select" msgstr "Seleziona" -#: mod/photos.php:1191 src/Content/Conversation.php:1486 -#: 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:233 +#: 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 +#: src/Module/Settings/Connectors.php:226 #: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Rimuovi" -#: mod/photos.php:1252 src/Object/Post.php:426 +#: mod/photos.php:1250 src/Object/Post.php:427 msgid "Like" msgstr "Mi Piace" -#: mod/photos.php:1253 src/Object/Post.php:426 +#: mod/photos.php:1251 src/Object/Post.php:427 msgid "I like this (toggle)" msgstr "Mi piace (clic per cambiare)" -#: mod/photos.php:1254 src/Object/Post.php:427 +#: mod/photos.php:1252 src/Object/Post.php:428 msgid "Dislike" msgstr "Non Mi Piace" -#: mod/photos.php:1256 src/Object/Post.php:427 +#: mod/photos.php:1254 src/Object/Post.php:428 msgid "I don't like this (toggle)" msgstr "Non mi piace (clic per cambiare)" -#: mod/photos.php:1278 +#: mod/photos.php:1276 msgid "Map" msgstr "Mappa" -#: src/App.php:467 +#: src/App.php:255 msgid "Apologies but the website is unavailable at the moment." msgstr "Ci scusiamo, il sito non è disponibile al momento." -#: src/App/Page.php:237 +#: src/App/Page.php:241 msgid "Delete this item?" msgstr "Cancellare questo elemento?" -#: src/App/Page.php:238 +#: src/App/Page.php:242 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 "Bloccare questo autore? Non saranno in grado di seguirti e nemmeno di vedere i tuoi post pubblici, e tu non sarai in grado di vedere i loro messaggi e le loro notifiche." -#: src/App/Page.php:239 +#: src/App/Page.php:243 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:240 +#: src/App/Page.php:244 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:241 +#: src/App/Page.php:245 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:242 src/Module/Settings/Server/Action.php:47 +#: src/App/Page.php:246 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:244 +#: src/App/Page.php:248 msgid "Like not successful" msgstr "" -#: src/App/Page.php:245 +#: src/App/Page.php:249 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:246 +#: src/App/Page.php:250 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:247 +#: src/App/Page.php:251 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:248 +#: src/App/Page.php:252 msgid "Backend error" msgstr "" -#: src/App/Page.php:249 +#: src/App/Page.php:253 msgid "Network error" msgstr "" -#: src/App/Page.php:252 +#: src/App/Page.php:256 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:257 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:254 +#: src/App/Page.php:258 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:255 +#: src/App/Page.php:259 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:256 +#: src/App/Page.php:260 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:261 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:262 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:263 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:264 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:265 msgid "Remove file" msgstr "" -#: src/App/Page.php:262 +#: src/App/Page.php:266 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:346 +#: src/App/Page.php:350 msgid "toggle mobile" msgstr "commuta tema mobile" @@ -802,7 +804,7 @@ msgid "All contacts" msgstr "Tutti i contatti" #: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 -#: src/Content/Widget.php:254 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Content/Widget.php:254 src/Core/ACL.php:182 src/Module/Contact.php:395 #: src/Module/Privacy/PermissionTooltip.php:150 #: src/Module/Privacy/PermissionTooltip.php:172 #: src/Module/Settings/Channels.php:146 @@ -844,7 +846,7 @@ msgstr "Impossibile trovare contatti non archiviati a questo URL (%s)" msgid "The contact entries have been archived" msgstr "Il contatto è stato archiviato" -#: src/Console/ClearAvatarCache.php:73 +#: src/Console/ClearAvatarCache.php:74 msgid "" "The avatar cache needs to be disabled in local.config.php to use this " "command." @@ -930,22 +932,22 @@ msgstr "" msgid "no resource in photo %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:123 +#: src/Console/MoveToAvatarCache.php:127 #, php-format msgid "no photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:132 +#: src/Console/MoveToAvatarCache.php:136 #, php-format msgid "no image data for photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:141 +#: src/Console/MoveToAvatarCache.php:145 #, php-format msgid "invalid image for id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:154 +#: src/Console/MoveToAvatarCache.php:158 #, php-format msgid "Quit on invalid photo %s" msgstr "" @@ -975,11 +977,14 @@ msgstr "Tutte le azioni post-aggiornamento sono state eseguite." msgid "Enter user nickname: " msgstr "Inserisci soprannome utente:" -#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Console/User.php:168 src/Model/User.php:830 #: src/Module/Api/Twitter/ContactEndpoint.php:62 -#: 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/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/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "Utente non trovato" @@ -989,12 +994,12 @@ msgid "Enter new password: " msgstr "Inserisci la nuova password:" #: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 -#: src/Module/Settings/Account.php:59 +#: src/Module/Settings/Account.php:57 msgid "Password update failed. Please try again." msgstr "Aggiornamento password fallito. Prova ancora." #: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 -#: src/Module/Settings/Account.php:62 +#: src/Module/Settings/Account.php:60 msgid "Password changed." msgstr "Password cambiata." @@ -1075,86 +1080,86 @@ msgstr "Settimanalmente" msgid "Monthly" msgstr "Mensilmente" -#: src/Content/ContactSelector.php:118 +#: src/Content/ContactSelector.php:117 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:119 +#: src/Content/ContactSelector.php:118 msgid "OStatus" msgstr "Ostatus" -#: src/Content/ContactSelector.php:120 +#: src/Content/ContactSelector.php:119 msgid "RSS/Atom" msgstr "RSS / Atom" -#: src/Content/ContactSelector.php:121 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Content/ContactSelector.php:120 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:58 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "Email" -#: src/Content/ContactSelector.php:122 src/Module/Debug/Babel.php:273 +#: src/Content/ContactSelector.php:121 src/Module/Debug/Babel.php:273 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:123 +#: src/Content/ContactSelector.php:122 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:124 +#: src/Content/ContactSelector.php:123 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:125 +#: src/Content/ContactSelector.php:124 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:125 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:126 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:127 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:129 +#: src/Content/ContactSelector.php:128 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:130 +#: src/Content/ContactSelector.php:129 msgid "Discourse" msgstr "Discorso" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:130 msgid "Diaspora Connector" msgstr "Connettore Diaspora" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:131 msgid "GNU Social Connector" msgstr "Connettore GNU Social" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:132 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:133 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:134 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:135 msgid "Bluesky" msgstr "" @@ -1163,16 +1168,16 @@ msgstr "" msgid "%s (via %s)" msgstr "%s (via %s)" -#: src/Content/Conversation.php:213 +#: src/Content/Conversation.php:215 msgid "and" msgstr "e" -#: src/Content/Conversation.php:216 +#: src/Content/Conversation.php:218 #, php-format msgid "and %d other people" msgstr "e altre %d persone" -#: src/Content/Conversation.php:222 +#: src/Content/Conversation.php:224 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." @@ -1180,7 +1185,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:224 +#: src/Content/Conversation.php:226 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." @@ -1188,7 +1193,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:228 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." @@ -1196,7 +1201,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:230 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." @@ -1204,7 +1209,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:230 +#: src/Content/Conversation.php:232 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." @@ -1212,7 +1217,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:232 +#: src/Content/Conversation.php:234 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." @@ -1220,7 +1225,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:263 +#: src/Content/Conversation.php:265 #, php-format msgid " likes this" msgid_plural " like this" @@ -1228,7 +1233,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:266 +#: src/Content/Conversation.php:268 #, php-format msgid " doesn't like this" msgid_plural " don't like this" @@ -1236,7 +1241,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:269 +#: src/Content/Conversation.php:271 #, php-format msgid " attends" msgid_plural " attend" @@ -1244,7 +1249,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:272 +#: src/Content/Conversation.php:274 #, php-format msgid " doesn't attend" msgid_plural " don't attend" @@ -1252,7 +1257,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:275 +#: src/Content/Conversation.php:277 #, php-format msgid " attends maybe" msgid_plural " attend maybe" @@ -1260,7 +1265,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:278 +#: src/Content/Conversation.php:280 #, php-format msgid " reshared this" msgid_plural " reshared this" @@ -1268,281 +1273,281 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Content/Conversation.php:324 +#: src/Content/Conversation.php:326 msgid "Visible to everybody" msgstr "Visibile a tutti" -#: src/Content/Conversation.php:325 src/Module/Item/Compose.php:196 -#: src/Object/Post.php:1157 +#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196 +#: src/Object/Post.php:1158 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Inserisci l'indirizzo di una immagine, un video o una pagina web:" -#: src/Content/Conversation.php:326 +#: src/Content/Conversation.php:328 msgid "Tag term:" msgstr "Tag:" -#: src/Content/Conversation.php:327 src/Module/Filer/SaveTag.php:59 +#: src/Content/Conversation.php:329 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Salva nella Cartella:" -#: src/Content/Conversation.php:328 +#: src/Content/Conversation.php:330 msgid "Where are you right now?" msgstr "Dove sei ora?" -#: src/Content/Conversation.php:329 +#: src/Content/Conversation.php:331 msgid "Delete item(s)?" msgstr "Cancellare questo elemento/i?" -#: src/Content/Conversation.php:341 src/Module/Item/Compose.php:171 +#: src/Content/Conversation.php:343 src/Module/Item/Compose.php:171 msgid "Created at" msgstr "" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:353 msgid "New Post" msgstr "Nuovo Messaggio" -#: src/Content/Conversation.php:354 +#: src/Content/Conversation.php:356 msgid "Share" msgstr "Condividi" -#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:123 +#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:123 msgid "upload photo" msgstr "carica foto" -#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:124 +#: src/Content/Conversation.php:360 src/Module/Post/Edit.php:124 msgid "Attach file" msgstr "Allega file" -#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:125 +#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:125 msgid "attach file" msgstr "allega file" -#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:186 -#: src/Module/Post/Edit.php:162 src/Object/Post.php:1147 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1148 msgid "Bold" msgstr "Grassetto" -#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:187 -#: src/Module/Post/Edit.php:163 src/Object/Post.php:1148 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1149 msgid "Italic" msgstr "Corsivo" -#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:188 -#: src/Module/Post/Edit.php:164 src/Object/Post.php:1149 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1150 msgid "Underline" msgstr "Sottolineato" -#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:189 -#: src/Module/Post/Edit.php:165 src/Object/Post.php:1151 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:165 src/Object/Post.php:1152 msgid "Quote" msgstr "Citazione" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:166 src/Object/Post.php:1152 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:166 src/Object/Post.php:1153 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:191 -#: src/Object/Post.php:1150 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Object/Post.php:1151 msgid "Content Warning" msgstr "" -#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:167 src/Object/Post.php:1153 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:167 src/Object/Post.php:1154 msgid "Code" msgstr "Codice" -#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:193 -#: src/Object/Post.php:1154 +#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1155 msgid "Image" msgstr "Immagine" -#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:168 src/Object/Post.php:1155 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:168 src/Object/Post.php:1156 msgid "Link" msgstr "Collegamento" -#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:195 -#: src/Module/Post/Edit.php:169 src/Object/Post.php:1156 +#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:169 src/Object/Post.php:1157 msgid "Link or Media" msgstr "Collegamento o Media" -#: src/Content/Conversation.php:370 +#: src/Content/Conversation.php:372 msgid "Video" msgstr "Video" -#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:198 +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:198 #: src/Module/Post/Edit.php:132 msgid "Set your location" msgstr "La tua posizione" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:133 msgid "set location" msgstr "posizione" -#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:134 msgid "Clear browser location" msgstr "Rimuovi la localizzazione data dal browser" -#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:135 +#: src/Content/Conversation.php:376 src/Module/Post/Edit.php:135 msgid "clear location" msgstr "canc. pos." -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:203 +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:203 #: src/Module/Post/Edit.php:148 msgid "Set title" msgstr "Scegli un titolo" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:204 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 #: src/Module/Post/Edit.php:150 msgid "Categories (comma-separated list)" msgstr "Categorie (lista separata da virgola)" -#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:220 +#: src/Content/Conversation.php:385 src/Module/Item/Compose.php:220 msgid "Scheduled at" msgstr "Programmato per" -#: src/Content/Conversation.php:388 src/Module/Post/Edit.php:137 +#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:137 msgid "Permission settings" msgstr "Impostazioni permessi" -#: src/Content/Conversation.php:397 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:399 src/Module/Post/Edit.php:146 msgid "Public post" msgstr "Messaggio pubblico" -#: src/Content/Conversation.php:411 src/Content/Widget/VCard.php:121 +#: 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 msgid "Message" msgstr "Messaggio" -#: src/Content/Conversation.php:412 src/Module/Post/Edit.php:173 +#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:173 #: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Browser" -#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:176 +#: src/Content/Conversation.php:416 src/Module/Post/Edit.php:176 msgid "Open Compose page" msgstr "Apri pagina di Composizione" -#: src/Content/Conversation.php:581 +#: src/Content/Conversation.php:583 msgid "remove" msgstr "rimuovi" -#: src/Content/Conversation.php:585 +#: src/Content/Conversation.php:587 msgid "Delete Selected Items" msgstr "Cancella elementi selezionati" -#: src/Content/Conversation.php:713 src/Content/Conversation.php:716 -#: src/Content/Conversation.php:719 src/Content/Conversation.php:722 -#: src/Content/Conversation.php:725 +#: 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 #, php-format msgid "You had been addressed (%s)." msgstr "Sei stato nominato (%s)." -#: src/Content/Conversation.php:728 +#: src/Content/Conversation.php:730 #, php-format msgid "You are following %s." msgstr "Stai seguendo %s." -#: src/Content/Conversation.php:733 +#: src/Content/Conversation.php:735 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:735 +#: src/Content/Conversation.php:737 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:755 +#: src/Content/Conversation.php:757 #, php-format msgid "%s reshared this." msgstr "%s ha ricondiviso questo." -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 msgid "Reshared" msgstr "Ricondiviso" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 #, php-format msgid "Reshared by %s <%s>" msgstr "Ricondiviso da %s <%s>" -#: src/Content/Conversation.php:760 +#: src/Content/Conversation.php:762 #, php-format msgid "%s is participating in this thread." msgstr "%s partecipa in questa conversazione." -#: src/Content/Conversation.php:763 +#: src/Content/Conversation.php:765 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:766 +#: src/Content/Conversation.php:768 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 msgid "Fetched" msgstr "Recuperato" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 #, php-format msgid "Fetched because of %s <%s>" msgstr "Recuperato a causa di %s <%s>" -#: src/Content/Conversation.php:775 +#: src/Content/Conversation.php:777 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:778 +#: src/Content/Conversation.php:780 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:781 +#: src/Content/Conversation.php:783 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:784 +#: src/Content/Conversation.php:786 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:787 +#: src/Content/Conversation.php:789 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1505 src/Object/Post.php:247 +#: src/Content/Conversation.php:1507 src/Object/Post.php:248 msgid "Pinned item" msgstr "Oggetto in evidenza" -#: src/Content/Conversation.php:1522 src/Object/Post.php:541 -#: src/Object/Post.php:542 +#: src/Content/Conversation.php:1524 src/Object/Post.php:542 +#: src/Object/Post.php:543 #, php-format msgid "View %s's profile @ %s" msgstr "Vedi il profilo di %s @ %s" -#: src/Content/Conversation.php:1536 src/Object/Post.php:529 +#: src/Content/Conversation.php:1538 src/Object/Post.php:530 msgid "Categories:" msgstr "Categorie:" -#: src/Content/Conversation.php:1537 src/Object/Post.php:530 +#: src/Content/Conversation.php:1539 src/Object/Post.php:531 msgid "Filed under:" msgstr "Archiviato in:" -#: src/Content/Conversation.php:1545 src/Object/Post.php:556 +#: src/Content/Conversation.php:1547 src/Object/Post.php:557 #, php-format msgid "%s from %s" msgstr "%s da %s" -#: src/Content/Conversation.php:1561 +#: src/Content/Conversation.php:1563 msgid "View in context" msgstr "Vedi nel contesto" @@ -1675,7 +1680,7 @@ msgstr "Personale" msgid "Posts that mention or involve you" msgstr "Messaggi che ti citano o coinvolgono" -#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:398 msgid "Starred" msgstr "Preferiti" @@ -1762,7 +1767,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:552 src/Model/User.php:1390 +#: src/Content/Widget.php:555 src/Model/User.php:1390 msgid "Groups" msgstr "" @@ -1770,7 +1775,7 @@ msgstr "" msgid "Display posts that have been distributed by the selected group." msgstr "" -#: src/Content/Feature.php:117 src/Content/Widget.php:521 +#: src/Content/Feature.php:117 src/Content/Widget.php:524 msgid "Archives" msgstr "Archivi" @@ -1786,8 +1791,8 @@ msgstr "Protocolli" msgid "Display posts with the selected protocols." msgstr "" -#: src/Content/Feature.php:119 src/Content/Widget.php:558 -#: src/Module/Settings/Account.php:429 +#: src/Content/Feature.php:119 src/Content/Widget.php:561 +#: src/Module/Settings/Account.php:391 msgid "Account Types" msgstr "Tipi di Account" @@ -1795,7 +1800,7 @@ msgstr "Tipi di Account" msgid "Display posts done by accounts with the selected account type." msgstr "" -#: src/Content/Feature.php:120 src/Content/Widget.php:607 +#: 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 msgid "Channels" @@ -1821,7 +1826,7 @@ msgstr "Cartelle Salvate" msgid "Display a list of folders in which posts are stored." msgstr "" -#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:189 msgid "Own Contacts" msgstr "Propri Contatti" @@ -1877,12 +1882,12 @@ msgstr "" msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:139 src/Content/Widget.php:527 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:530 msgid "show less" msgstr "mostra meno" #: src/Content/GroupManager.php:140 src/Content/Widget.php:425 -#: src/Content/Widget.php:528 +#: src/Content/Widget.php:531 msgid "show more" msgstr "mostra di più" @@ -1890,66 +1895,66 @@ msgstr "mostra di più" msgid "Create new group" msgstr "" -#: src/Content/Item.php:317 src/Model/Item.php:3273 +#: src/Content/Item.php:322 src/Model/Item.php:3281 msgid "event" msgstr "l'evento" -#: src/Content/Item.php:320 src/Content/Item.php:330 +#: src/Content/Item.php:325 src/Content/Item.php:335 msgid "status" msgstr "stato" -#: src/Content/Item.php:326 src/Model/Item.php:3275 +#: src/Content/Item.php:331 src/Model/Item.php:3283 #: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "foto" -#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 +#: src/Content/Item.php:345 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s ha taggato %3$s di %2$s con %4$s" -#: src/Content/Item.php:414 view/theme/frio/theme.php:253 +#: src/Content/Item.php:419 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Segui la discussione" -#: src/Content/Item.php:415 src/Model/Contact.php:1244 +#: src/Content/Item.php:420 src/Model/Contact.php:1245 msgid "View Status" msgstr "Visualizza stato" -#: 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/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 msgid "View Profile" msgstr "Visualizza profilo" -#: src/Content/Item.php:417 src/Model/Contact.php:1246 +#: src/Content/Item.php:422 src/Model/Contact.php:1247 msgid "View Photos" msgstr "Visualizza foto" -#: src/Content/Item.php:418 src/Model/Contact.php:1213 +#: src/Content/Item.php:423 src/Model/Contact.php:1214 #: src/Model/Profile.php:446 msgid "Network Posts" msgstr "Messaggi della Rete" -#: src/Content/Item.php:419 src/Model/Contact.php:1237 -#: src/Model/Contact.php:1248 +#: src/Content/Item.php:424 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1249 msgid "View Contact" msgstr "Mostra contatto" -#: src/Content/Item.php:420 src/Model/Contact.php:1249 +#: src/Content/Item.php:425 src/Model/Contact.php:1250 msgid "Send PM" msgstr "Invia messaggio privato" -#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Content/Item.php:426 src/Module/Contact.php:449 #: src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:104 -#: src/Module/Moderation/Users/Active.php:123 -#: src/Module/Moderation/Users/Index.php:138 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Index.php:141 msgid "Block" msgstr "Blocca" -#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Content/Item.php:427 src/Module/Contact.php:450 #: src/Module/Contact/Profile.php:532 #: src/Module/Notifications/Introductions.php:126 #: src/Module/Notifications/Introductions.php:199 @@ -1957,27 +1962,27 @@ msgstr "Blocca" msgid "Ignore" msgstr "Ignora" -#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Content/Item.php:428 src/Module/Contact.php:451 #: src/Module/Contact/Profile.php:540 msgid "Collapse" msgstr "" -#: src/Content/Item.php:424 src/Object/Post.php:288 +#: src/Content/Item.php:429 src/Object/Post.php:289 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 -#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 +#: src/Content/Item.php:433 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:503 msgid "Languages" msgstr "Lingue" -#: src/Content/Item.php:431 src/Object/Post.php:582 +#: src/Content/Item.php:436 src/Object/Post.php:583 msgid "Search Text" msgstr "" -#: src/Content/Item.php:436 src/Content/Widget.php:66 -#: src/Model/Contact.php:1238 src/Model/Contact.php:1250 +#: src/Content/Item.php:441 src/Content/Widget.php:66 +#: src/Model/Contact.php:1239 src/Model/Contact.php:1251 #: src/Module/Contact/Follow.php:152 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Connetti/segui" @@ -1990,7 +1995,7 @@ msgstr "" msgid "Nothing new here" msgstr "Niente di nuovo qui" -#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:64 msgid "Go back" msgstr "Torna indietro" @@ -2204,7 +2209,7 @@ msgstr "Notifiche" msgid "See all notifications" msgstr "Vedi tutte le notifiche" -#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:226 msgid "Mark as seen" msgstr "Segna come letto" @@ -2232,8 +2237,8 @@ msgstr "Account" msgid "Manage other pages" msgstr "Gestisci altre pagine" -#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 -#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:170 +#: 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/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Impostazioni" @@ -2261,10 +2266,10 @@ msgstr "Configurazione del sito" #: src/Module/Moderation/Blocklist/Server/Index.php:84 #: 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:119 -#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 #: src/Module/Moderation/Users/Deleted.php:66 -#: src/Module/Moderation/Users/Index.php:133 +#: src/Module/Moderation/Users/Index.php:136 msgid "Moderation" msgstr "" @@ -2296,33 +2301,33 @@ msgstr "succ" msgid "last" msgstr "ultimo" -#: src/Content/Text/BBCode.php:908 +#: src/Content/Text/BBCode.php:903 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:931 src/Model/Item.php:4069 -#: src/Model/Item.php:4075 src/Model/Item.php:4076 +#: src/Content/Text/BBCode.php:926 src/Model/Item.php:4080 +#: src/Model/Item.php:4086 src/Model/Item.php:4087 msgid "Link to source" msgstr "Collegamento all'originale" -#: src/Content/Text/BBCode.php:1745 src/Content/Text/HTML.php:892 +#: src/Content/Text/BBCode.php:1740 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Clicca per aprire/chiudere" -#: src/Content/Text/BBCode.php:1800 +#: src/Content/Text/BBCode.php:1795 msgid "$1 wrote:" msgstr "$1 ha scritto:" -#: src/Content/Text/BBCode.php:1874 src/Content/Text/BBCode.php:1875 +#: src/Content/Text/BBCode.php:1869 src/Content/Text/BBCode.php:1870 msgid "Encrypted content" msgstr "Contenuto criptato" -#: src/Content/Text/BBCode.php:2208 +#: src/Content/Text/BBCode.php:2203 msgid "Invalid source protocol" msgstr "Protocollo sorgente non valido" -#: src/Content/Text/BBCode.php:2227 +#: src/Content/Text/BBCode.php:2222 msgid "Invalid link protocol" msgstr "Protocollo collegamento non valido" @@ -2376,7 +2381,7 @@ msgid "Examples: Robert Morgenstein, Fishing" msgstr "Esempi: Mario Rossi, Pesca" #: src/Content/Widget.php:68 src/Module/Contact.php:441 -#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 +#: src/Module/Directory.php:82 view/theme/vier/theme.php:185 msgid "Find" msgstr "Trova" @@ -2397,7 +2402,7 @@ msgstr "Profilo Casuale" msgid "Invite Friends" msgstr "Invita amici" -#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: src/Content/Widget.php:73 src/Module/Directory.php:74 #: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Elenco globale" @@ -2418,7 +2423,7 @@ msgstr "" msgid "Relationships" msgstr "Relazioni" -#: src/Content/Widget.php:264 src/Module/Circle.php:280 +#: src/Content/Widget.php:264 src/Module/Circle.php:281 #: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Tutti i contatti" @@ -2443,27 +2448,27 @@ msgstr[0] "%d contatto in comune" msgstr[1] "%d contatti in comune" msgstr[2] "%d contatti in comune" -#: src/Content/Widget.php:529 +#: src/Content/Widget.php:532 msgid "On this date" msgstr "" -#: src/Content/Widget.php:549 +#: src/Content/Widget.php:552 msgid "Persons" msgstr "Persone" -#: src/Content/Widget.php:550 +#: src/Content/Widget.php:553 msgid "Organisations" msgstr "Organizzazioni" -#: src/Content/Widget.php:551 src/Model/Contact.php:1750 +#: src/Content/Widget.php:554 src/Model/Contact.php:1751 msgid "News" msgstr "Notizie" -#: src/Content/Widget.php:553 +#: src/Content/Widget.php:556 msgid "Relays" msgstr "" -#: src/Content/Widget.php:560 src/Module/Moderation/BaseUsers.php:58 +#: src/Content/Widget.php:563 src/Module/Moderation/BaseUsers.php:58 msgid "All" msgstr "Tutto" @@ -2511,12 +2516,12 @@ msgstr[2] "Etichette di Tendenza (ultime %d ore)" msgid "More Trending Tags" msgstr "Più Etichette di Tendenza" -#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1207 +#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1208 #: src/Model/Profile.php:440 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1211 +#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1212 #: src/Model/Profile.php:444 src/Module/Moderation/Item/Source.php:80 msgid "Mention" msgstr "Menzione" @@ -2531,10 +2536,10 @@ msgstr "XMPP:" msgid "Matrix:" msgstr "Matrix:" -#: src/Content/Widget/VCard.php:112 src/Model/Event.php:68 -#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: 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:134 src/Module/Notifications/Introductions.php:180 +#: src/Module/Directory.php:133 src/Module/Notifications/Introductions.php:180 #: src/Module/Profile/Profile.php:212 msgid "Location:" msgstr "Posizione:" @@ -2544,75 +2549,75 @@ msgstr "Posizione:" msgid "Network:" msgstr "Rete:" -#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1239 -#: src/Model/Contact.php:1251 src/Model/Profile.php:457 +#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1252 src/Model/Profile.php:457 #: src/Module/Contact/Profile.php:476 msgid "Unfollow" msgstr "Smetti di seguire" -#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1209 +#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1210 #: src/Model/Profile.php:442 msgid "View group" msgstr "" -#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:260 +#: src/Core/ACL.php:153 src/Module/Profile/Profile.php:260 msgid "Yourself" msgstr "Te stesso" -#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Core/ACL.php:189 src/Module/Privacy/PermissionTooltip.php:156 #: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "Amici reciproci" -#: src/Core/ACL.php:280 +#: src/Core/ACL.php:281 msgid "Post to Email" msgstr "Invia a email" -#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Core/ACL.php:308 src/Module/Privacy/PermissionTooltip.php:103 #: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "Pubblico" -#: src/Core/ACL.php:308 +#: src/Core/ACL.php:309 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 "Questo contenuto sarà mostrato a tutti i tuoi seguaci e può essere visto nelle pagine della communità e da chiunque con questo collegamento." -#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 +#: src/Core/ACL.php:310 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "Limitato/Privato" -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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 "Questo contenuto sarà mostrato solo alle persone nel primo campo, ad eccezione delle persone menzionate nel secondo campo. Non apparirà da qualsiasi parte in pubblico." -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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:311 +#: src/Core/ACL.php:312 msgid "Show to:" msgstr "Mostra a:" -#: src/Core/ACL.php:312 +#: src/Core/ACL.php:313 msgid "Except to:" msgstr "Ad eccezione di:" -#: src/Core/ACL.php:313 src/Module/Post/Edit.php:145 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:145 msgid "CC: email addresses" msgstr "CC: indirizzi email" -#: src/Core/ACL.php:314 src/Module/Post/Edit.php:151 +#: src/Core/ACL.php:315 src/Module/Post/Edit.php:151 msgid "Example: bob@example.com, mary@example.com" msgstr "Esempio: bob@example.com, mary@example.com" -#: src/Core/ACL.php:315 +#: src/Core/ACL.php:316 msgid "Connectors" msgstr "Connettori" @@ -2947,176 +2952,176 @@ msgstr "Database già in uso." msgid "Could not connect to database." msgstr " Impossibile collegarsi con il database." -#: src/Core/L10n.php:430 src/Model/Item.php:2316 +#: src/Core/L10n.php:426 src/Model/Item.php:2324 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:437 +#: src/Core/L10n.php:433 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Core/L10n.php:481 src/Model/Event.php:418 #: src/Module/Settings/Display.php:292 msgid "Monday" msgstr "Lunedì" -#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Core/L10n.php:481 src/Model/Event.php:419 #: src/Module/Settings/Display.php:293 msgid "Tuesday" msgstr "Martedì" -#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Core/L10n.php:481 src/Model/Event.php:420 #: src/Module/Settings/Display.php:294 msgid "Wednesday" msgstr "Mercoledì" -#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Core/L10n.php:481 src/Model/Event.php:421 #: src/Module/Settings/Display.php:295 msgid "Thursday" msgstr "Giovedì" -#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Core/L10n.php:481 src/Model/Event.php:422 #: src/Module/Settings/Display.php:296 msgid "Friday" msgstr "Venerdì" -#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Core/L10n.php:481 src/Model/Event.php:423 #: src/Module/Settings/Display.php:297 msgid "Saturday" msgstr "Sabato" -#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Core/L10n.php:481 src/Model/Event.php:417 #: src/Module/Settings/Display.php:291 msgid "Sunday" msgstr "Domenica" -#: src/Core/L10n.php:489 src/Model/Event.php:436 +#: src/Core/L10n.php:485 src/Model/Event.php:438 msgid "January" msgstr "Gennaio" -#: src/Core/L10n.php:489 src/Model/Event.php:437 +#: src/Core/L10n.php:485 src/Model/Event.php:439 msgid "February" msgstr "Febbraio" -#: src/Core/L10n.php:489 src/Model/Event.php:438 +#: src/Core/L10n.php:485 src/Model/Event.php:440 msgid "March" msgstr "Marzo" -#: src/Core/L10n.php:489 src/Model/Event.php:439 +#: src/Core/L10n.php:485 src/Model/Event.php:441 msgid "April" msgstr "Aprile" -#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 +#: src/Core/L10n.php:485 src/Core/L10n.php:504 src/Model/Event.php:429 msgid "May" msgstr "Maggio" -#: src/Core/L10n.php:489 src/Model/Event.php:440 +#: src/Core/L10n.php:485 src/Model/Event.php:442 msgid "June" msgstr "Giugno" -#: src/Core/L10n.php:489 src/Model/Event.php:441 +#: src/Core/L10n.php:485 src/Model/Event.php:443 msgid "July" msgstr "Luglio" -#: src/Core/L10n.php:489 src/Model/Event.php:442 +#: src/Core/L10n.php:485 src/Model/Event.php:444 msgid "August" msgstr "Agosto" -#: src/Core/L10n.php:489 src/Model/Event.php:443 +#: src/Core/L10n.php:485 src/Model/Event.php:445 msgid "September" msgstr "Settembre" -#: src/Core/L10n.php:489 src/Model/Event.php:444 +#: src/Core/L10n.php:485 src/Model/Event.php:446 msgid "October" msgstr "Ottobre" -#: src/Core/L10n.php:489 src/Model/Event.php:445 +#: src/Core/L10n.php:485 src/Model/Event.php:447 msgid "November" msgstr "Novembre" -#: src/Core/L10n.php:489 src/Model/Event.php:446 +#: src/Core/L10n.php:485 src/Model/Event.php:448 msgid "December" msgstr "Dicembre" -#: src/Core/L10n.php:504 src/Model/Event.php:408 +#: src/Core/L10n.php:500 src/Model/Event.php:410 msgid "Mon" msgstr "Lun" -#: src/Core/L10n.php:504 src/Model/Event.php:409 +#: src/Core/L10n.php:500 src/Model/Event.php:411 msgid "Tue" msgstr "Mar" -#: src/Core/L10n.php:504 src/Model/Event.php:410 +#: src/Core/L10n.php:500 src/Model/Event.php:412 msgid "Wed" msgstr "Mer" -#: src/Core/L10n.php:504 src/Model/Event.php:411 +#: src/Core/L10n.php:500 src/Model/Event.php:413 msgid "Thu" msgstr "Gio" -#: src/Core/L10n.php:504 src/Model/Event.php:412 +#: src/Core/L10n.php:500 src/Model/Event.php:414 msgid "Fri" msgstr "Ven" -#: src/Core/L10n.php:504 src/Model/Event.php:413 +#: src/Core/L10n.php:500 src/Model/Event.php:415 msgid "Sat" msgstr "Sab" -#: src/Core/L10n.php:504 src/Model/Event.php:407 +#: src/Core/L10n.php:500 src/Model/Event.php:409 msgid "Sun" msgstr "Dom" -#: src/Core/L10n.php:508 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:425 msgid "Jan" msgstr "Gen" -#: src/Core/L10n.php:508 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:426 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:508 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:427 msgid "Mar" msgstr "Mar" -#: src/Core/L10n.php:508 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:428 msgid "Apr" msgstr "Apr" -#: src/Core/L10n.php:508 src/Model/Event.php:428 +#: src/Core/L10n.php:504 src/Model/Event.php:430 msgid "Jun" msgstr "Giu" -#: src/Core/L10n.php:508 src/Model/Event.php:429 +#: src/Core/L10n.php:504 src/Model/Event.php:431 msgid "Jul" msgstr "Lug" -#: src/Core/L10n.php:508 src/Model/Event.php:430 +#: src/Core/L10n.php:504 src/Model/Event.php:432 msgid "Aug" msgstr "Ago" -#: src/Core/L10n.php:508 +#: src/Core/L10n.php:504 msgid "Sep" msgstr "Set" -#: src/Core/L10n.php:508 src/Model/Event.php:432 +#: src/Core/L10n.php:504 src/Model/Event.php:434 msgid "Oct" msgstr "Ott" -#: src/Core/L10n.php:508 src/Model/Event.php:433 +#: src/Core/L10n.php:504 src/Model/Event.php:435 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:508 src/Model/Event.php:434 +#: src/Core/L10n.php:504 src/Model/Event.php:436 msgid "Dec" msgstr "Dic" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:44 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "Il file di registro '%s' non è utilizzabile. Nessuna registrazione possibile (errore: '%s')" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:67 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" @@ -3308,7 +3313,7 @@ msgstr "aggiungi" msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:592 src/Module/Circle.php:181 +#: src/Model/Circle.php:592 src/Module/Circle.php:185 msgid "Contacts not in any circle" msgstr "" @@ -3316,8 +3321,8 @@ msgstr "" msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:595 src/Module/Circle.php:166 -#: src/Module/Circle.php:189 src/Module/Circle.php:264 +#: src/Model/Circle.php:595 src/Module/Circle.php:168 +#: src/Module/Circle.php:190 src/Module/Circle.php:265 msgid "Circle Name: " msgstr "" @@ -3325,247 +3330,247 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1258 src/Module/Moderation/Users/Pending.php:88 +#: src/Model/Contact.php:1259 src/Module/Moderation/Users/Pending.php:88 #: src/Module/Notifications/Introductions.php:124 #: src/Module/Notifications/Introductions.php:197 msgid "Approve" msgstr "Approva" -#: src/Model/Contact.php:1594 src/Model/Contact.php:1666 +#: src/Model/Contact.php:1595 src/Model/Contact.php:1667 #: src/Module/Contact/Profile.php:360 #, php-format msgid "%s has blocked you" msgstr "" -#: src/Model/Contact.php:1746 +#: src/Model/Contact.php:1747 msgid "Organisation" msgstr "Organizzazione" -#: src/Model/Contact.php:1754 +#: src/Model/Contact.php:1755 msgid "Group" msgstr "" -#: src/Model/Contact.php:1758 src/Module/Moderation/BaseUsers.php:122 +#: src/Model/Contact.php:1759 src/Module/Moderation/BaseUsers.php:122 msgid "Relay" msgstr "Relay" -#: src/Model/Contact.php:3073 +#: src/Model/Contact.php:3085 msgid "Disallowed profile URL." msgstr "Indirizzo profilo non permesso." -#: src/Model/Contact.php:3078 src/Module/Friendica.php:88 +#: src/Model/Contact.php:3090 src/Module/Friendica.php:88 msgid "Blocked domain" msgstr "Dominio bloccato" -#: src/Model/Contact.php:3083 +#: src/Model/Contact.php:3095 msgid "Connect URL missing." msgstr "URL di connessione mancante." -#: src/Model/Contact.php:3092 +#: src/Model/Contact.php:3104 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Il contatto non può essere aggiunto. Controlla le credenziali della rete nella tua pagina Impostazioni -> Reti Sociali" -#: src/Model/Contact.php:3110 +#: src/Model/Contact.php:3122 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3127 +#: src/Model/Contact.php:3139 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3134 +#: src/Model/Contact.php:3146 msgid "The profile address specified does not provide adequate information." msgstr "L'indirizzo del profilo specificato non fornisce adeguate informazioni." -#: src/Model/Contact.php:3136 +#: src/Model/Contact.php:3148 msgid "No compatible communication protocols or feeds were discovered." msgstr "Non sono stati trovati protocolli di comunicazione o feed compatibili." -#: src/Model/Contact.php:3139 +#: src/Model/Contact.php:3151 msgid "An author or name was not found." msgstr "Non è stato trovato un nome o un autore" -#: src/Model/Contact.php:3142 +#: src/Model/Contact.php:3154 msgid "No browser URL could be matched to this address." msgstr "Nessun URL può essere associato a questo indirizzo." -#: src/Model/Contact.php:3145 +#: src/Model/Contact.php:3157 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Impossibile l'indirizzo identità con un protocollo conosciuto o con un contatto email." -#: src/Model/Contact.php:3146 +#: src/Model/Contact.php:3158 msgid "Use mailto: in front of address to force email check." msgstr "Usa \"mailto:\" davanti all'indirizzo per forzare un controllo nelle email." -#: src/Model/Contact.php:3152 +#: src/Model/Contact.php:3164 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Profilo limitato. Questa persona non sarà in grado di ricevere notifiche personali da te." -#: src/Model/Contact.php:3211 +#: src/Model/Contact.php:3223 msgid "Unable to retrieve contact information." msgstr "Impossibile recuperare informazioni sul contatto." -#: src/Model/Event.php:40 +#: src/Model/Event.php:42 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "l F d, Y \\@ g:i A \\G\\M\\TP (e)" -#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 -#: src/Model/Event.php:928 +#: src/Model/Event.php:63 src/Model/Event.php:80 src/Model/Event.php:457 +#: src/Model/Event.php:929 msgid "Starts:" msgstr "Inizia:" -#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 -#: src/Model/Event.php:932 +#: src/Model/Event.php:66 src/Model/Event.php:86 src/Model/Event.php:458 +#: src/Model/Event.php:933 msgid "Finishes:" msgstr "Finisce:" -#: src/Model/Event.php:405 +#: src/Model/Event.php:407 msgid "all-day" msgstr "tutto il giorno" -#: src/Model/Event.php:431 +#: src/Model/Event.php:433 msgid "Sept" msgstr "Set" -#: src/Model/Event.php:448 src/Module/Calendar/Show.php:117 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:117 #: src/Util/Temporal.php:329 msgid "today" msgstr "oggi" -#: src/Model/Event.php:449 src/Module/Calendar/Show.php:118 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:118 #: src/Module/Settings/Display.php:302 src/Util/Temporal.php:339 msgid "month" msgstr "mese" -#: src/Model/Event.php:450 src/Module/Calendar/Show.php:119 +#: src/Model/Event.php:452 src/Module/Calendar/Show.php:119 #: src/Module/Settings/Display.php:303 src/Util/Temporal.php:340 msgid "week" msgstr "settimana" -#: src/Model/Event.php:451 src/Module/Calendar/Show.php:120 +#: src/Model/Event.php:453 src/Module/Calendar/Show.php:120 #: src/Module/Settings/Display.php:304 src/Util/Temporal.php:341 msgid "day" msgstr "giorno" -#: src/Model/Event.php:453 +#: src/Model/Event.php:455 msgid "No events to display" msgstr "Nessun evento da mostrare" -#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Model/Event.php:504 src/Module/Feed.php:56 #: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "L'accesso a questo profilo è stato limitato." -#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:52 +#: src/Model/Event.php:545 src/Module/Calendar/Event/Show.php:52 msgid "Event not found." msgstr "" -#: src/Model/Event.php:623 +#: src/Model/Event.php:624 msgid "l, F j" msgstr "l j F" -#: src/Model/Event.php:650 +#: src/Model/Event.php:651 msgid "Edit event" msgstr "Modifica evento" -#: src/Model/Event.php:651 +#: src/Model/Event.php:652 msgid "Duplicate event" msgstr "Duplica evento" -#: src/Model/Event.php:652 +#: src/Model/Event.php:653 msgid "Delete event" msgstr "Elimina evento" -#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 +#: src/Model/Event.php:883 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l d F Y \\@ G:i" -#: src/Model/Event.php:883 +#: src/Model/Event.php:884 msgid "D g:i A" msgstr "D G:i" -#: src/Model/Event.php:884 +#: src/Model/Event.php:885 msgid "g:i A" msgstr "G:i" -#: src/Model/Event.php:947 src/Model/Event.php:949 +#: src/Model/Event.php:948 src/Model/Event.php:950 msgid "Show map" msgstr "Mostra mappa" -#: src/Model/Event.php:948 +#: src/Model/Event.php:949 msgid "Hide map" msgstr "Nascondi mappa" -#: src/Model/Event.php:1041 +#: src/Model/Event.php:1042 #, php-format msgid "%s's birthday" msgstr "Compleanno di %s" -#: src/Model/Event.php:1042 +#: src/Model/Event.php:1043 #, php-format msgid "Happy Birthday %s" msgstr "Buon compleanno %s" -#: src/Model/Item.php:2323 +#: src/Model/Item.php:2331 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2325 +#: src/Model/Item.php:2333 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2328 +#: src/Model/Item.php:2336 #, php-format msgid "" "Detected languages in this post:\n" "%s" msgstr "" -#: src/Model/Item.php:3277 +#: src/Model/Item.php:3285 msgid "activity" msgstr "attività" -#: src/Model/Item.php:3279 +#: src/Model/Item.php:3287 msgid "comment" msgstr "commento" -#: src/Model/Item.php:3282 src/Module/Post/Tag/Add.php:109 +#: src/Model/Item.php:3290 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "messaggio" -#: src/Model/Item.php:3452 +#: src/Model/Item.php:3463 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3454 +#: src/Model/Item.php:3465 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3456 +#: src/Model/Item.php:3467 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3460 +#: src/Model/Item.php:3471 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3969 +#: src/Model/Item.php:3980 msgid "bytes" msgstr "bytes" -#: src/Model/Item.php:4000 +#: src/Model/Item.php:4011 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3573,7 +3578,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:4002 +#: src/Model/Item.php:4013 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3581,7 +3586,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:4007 +#: src/Model/Item.php:4018 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3589,7 +3594,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:4009 +#: src/Model/Item.php:4020 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3597,12 +3602,12 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: src/Model/Item.php:4011 +#: src/Model/Item.php:4022 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:4052 src/Model/Item.php:4053 +#: src/Model/Item.php:4063 src/Model/Item.php:4064 msgid "View on separate page" msgstr "Vedi in una pagina separata" @@ -3610,7 +3615,7 @@ msgstr "Vedi in una pagina separata" msgid "[no subject]" msgstr "[nessun oggetto]" -#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 +#: src/Model/Photo.php:1192 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Foto della bacheca" @@ -3623,7 +3628,7 @@ msgstr "Modifica il profilo" msgid "Change profile photo" msgstr "Cambia la foto del profilo" -#: src/Model/Profile.php:357 src/Module/Directory.php:139 +#: src/Model/Profile.php:357 src/Module/Directory.php:138 #: src/Module/Profile/Profile.php:200 msgid "Homepage:" msgstr "Homepage:" @@ -3713,7 +3718,7 @@ msgstr "Non mi piace:" msgid "Title/Description:" msgstr "Breve descrizione (es. titolo, posizione, altro):" -#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:176 +#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:174 #: src/Module/Moderation/Report/Create.php:266 #: src/Module/Moderation/Summary.php:65 msgid "Summary" @@ -3764,59 +3769,59 @@ msgstr "" msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "ERRORE GRAVE: La generazione delle chiavi di sicurezza è fallita." -#: src/Model/User.php:740 src/Model/User.php:773 +#: src/Model/User.php:739 src/Model/User.php:772 msgid "Login failed" msgstr "Accesso fallito." -#: src/Model/User.php:805 +#: src/Model/User.php:804 msgid "Not enough information to authenticate" msgstr "Informazioni insufficienti per l'autenticazione" -#: src/Model/User.php:930 +#: src/Model/User.php:929 msgid "Password can't be empty" msgstr "La password non può essere vuota" -#: src/Model/User.php:972 +#: src/Model/User.php:971 msgid "Empty passwords are not allowed." msgstr "Password vuote non sono consentite." -#: src/Model/User.php:976 +#: src/Model/User.php:975 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "La nuova password è stata esposta in un dump di dati pubblici, per favore scegline un'altra." -#: src/Model/User.php:980 +#: src/Model/User.php:979 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:984 +#: src/Model/User.php:983 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1193 +#: src/Model/User.php:1192 msgid "Passwords do not match. Password unchanged." msgstr "Le password non corrispondono. Password non cambiata." -#: src/Model/User.php:1200 +#: src/Model/User.php:1199 msgid "An invitation is required." msgstr "E' richiesto un invito." -#: src/Model/User.php:1204 +#: src/Model/User.php:1203 msgid "Invitation could not be verified." msgstr "L'invito non può essere verificato." -#: src/Model/User.php:1212 +#: src/Model/User.php:1211 msgid "Invalid OpenID url" msgstr "Url OpenID non valido" -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Abbiamo incontrato un problema mentre contattavamo il server OpenID che ci hai fornito. Controlla di averlo scritto giusto." -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "The error message was:" msgstr "Il messaggio riportato era:" @@ -4009,57 +4014,57 @@ msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:51 +#: src/Module/Admin/Addons/Details.php:49 msgid "Addon not found." msgstr "Componente aggiuntivo non trovato." -#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 +#: src/Module/Admin/Addons/Details.php:60 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "Componente aggiuntivo %s disabilitato." -#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 +#: src/Module/Admin/Addons/Details.php:63 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "Componente aggiuntivo %s abilitato." -#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Addons/Details.php:72 #: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "Disabilita" -#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Addons/Details.php:75 #: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351 msgid "Enable" msgstr "Abilita" -#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Addons/Details.php:95 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:175 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Summary.php:173 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 "Amministrazione" -#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/Admin/Addons/Details.php:96 src/Module/Admin/Addons/Index.php:60 #: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:127 msgid "Addons" msgstr "Componenti aggiuntivi" -#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Addons/Details.php:97 #: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Inverti" -#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Addons/Details.php:104 #: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Autore: " -#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Addons/Details.php:105 #: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Manutentore: " @@ -4076,9 +4081,10 @@ msgstr "Installazione del componente aggiuntivo %s non riuscita." #: 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:545 src/Module/Settings/Addons.php:64 -#: src/Module/Settings/Connectors.php:149 -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Account.php:507 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/Features.php:61 msgid "Save Settings" @@ -4095,62 +4101,62 @@ msgid "" "official addon repository at %1$s." msgstr "" -#: src/Module/Admin/DBSync.php:37 +#: src/Module/Admin/DBSync.php:35 msgid "Update has been marked successful" msgstr "L'aggiornamento è stato segnato come di successo" -#: src/Module/Admin/DBSync.php:45 +#: src/Module/Admin/DBSync.php:43 #, php-format msgid "Database structure update %s was successfully applied." msgstr "Aggiornamento struttura database %s applicata con successo." -#: src/Module/Admin/DBSync.php:47 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "Aggiornamento struttura database %s fallita con errore: %s" -#: src/Module/Admin/DBSync.php:62 +#: src/Module/Admin/DBSync.php:60 #, php-format msgid "Executing %s failed with error: %s" msgstr "Esecuzione di %s fallita con errore: %s" -#: src/Module/Admin/DBSync.php:64 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Update %s was successfully applied." msgstr "L'aggiornamento %s è stato applicato con successo" -#: src/Module/Admin/DBSync.php:67 +#: src/Module/Admin/DBSync.php:65 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "L'aggiornamento %s non ha riportato uno stato. Non so se è andato a buon fine." -#: src/Module/Admin/DBSync.php:70 +#: src/Module/Admin/DBSync.php:68 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "Non ci sono altre funzioni di aggiornamento %s da richiamare." -#: src/Module/Admin/DBSync.php:91 +#: src/Module/Admin/DBSync.php:89 msgid "No failed updates." msgstr "Nessun aggiornamento fallito." -#: src/Module/Admin/DBSync.php:92 +#: src/Module/Admin/DBSync.php:90 msgid "Check database structure" msgstr "Controlla struttura database" -#: src/Module/Admin/DBSync.php:96 +#: src/Module/Admin/DBSync.php:94 msgid "Failed Updates" msgstr "Aggiornamenti falliti" -#: src/Module/Admin/DBSync.php:97 +#: src/Module/Admin/DBSync.php:95 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Questo non include gli aggiornamenti prima del 1139, che non ritornano lo stato." -#: src/Module/Admin/DBSync.php:98 +#: src/Module/Admin/DBSync.php:96 msgid "Mark success (if update was manually applied)" msgstr "Segna completato (se l'update è stato applicato manualmente)" -#: src/Module/Admin/DBSync.php:99 +#: src/Module/Admin/DBSync.php:97 msgid "Attempt to execute this update step automatically" msgstr "Cerco di eseguire questo aggiornamento in automatico" @@ -5723,12 +5729,12 @@ msgstr "" msgid "Database (legacy)" msgstr "Database (legacy)" -#: src/Module/Admin/Summary.php:41 +#: src/Module/Admin/Summary.php:39 #, php-format msgid "Template engine (%s) error: %s" msgstr "Errore del motore di modelli (%s): %s" -#: src/Module/Admin/Summary.php:45 +#: src/Module/Admin/Summary.php:43 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5739,7 +5745,7 @@ msgid "" " an automatic conversion.
" msgstr "Stai ancora usando tabelle MyISAM. Dovresti cambiare il tipo motore a InnoDB. Siccome Friendica userà funzionalità specifiche di InnoDB nel futuro, dovresti modificarlo. Vedi quinel per una guida che può esserti utile nel convertire il motore delle tabelle. Puoi anche usare il comando php bin/console.php dbstructure toinnodb della tua installazione di Friendica per eseguire una conversione automatica.
" -#: src/Module/Admin/Summary.php:50 +#: src/Module/Admin/Summary.php:48 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5750,7 +5756,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "Il tuo DB sta ancora eseguendo tabelle InnoDB con il formato file Antelope. Dovresti cambiare il formato file in Barracuda. Friendica utilizza funzionalità che non sono fornite dal formato Antelope. Guarda qui per una guida che potrebbe esserti utile per convertire il motore delle tabelle. Potresti anche utilizzare il comando php bin/console.php dbstructure toinnodb della tua installazione Friendica per una conversione automatica.
" -#: src/Module/Admin/Summary.php:60 +#: src/Module/Admin/Summary.php:58 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5758,46 +5764,46 @@ msgid "" " to %d. See here for more information.
" msgstr "La tua table_definition_cache è troppo piccola (%d). Questo può portare all'errore del database \"Prepared statement needs to be re-prepared\". Per favore impostala almeno a %d. Guarda qui per avere più informazioni.
" -#: src/Module/Admin/Summary.php:68 +#: src/Module/Admin/Summary.php:66 #, 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 "È disponibile per il download una nuova versione di Friendica. La tua versione è %1$s, la versione upstream è %2$s" -#: src/Module/Admin/Summary.php:76 +#: src/Module/Admin/Summary.php:74 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 "L'aggiornamento del database è fallito. Esegui \"php bin/console.php dbstructure update\" dalla riga di comando per poter vedere gli eventuali errori che potrebbero apparire." -#: src/Module/Admin/Summary.php:80 +#: src/Module/Admin/Summary.php:78 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 "L'ultimo aggiornamento non è riuscito. Per favore esegui \"php bin/console.php dbstructure update\" dal terminale e dai un'occhiata agli errori che potrebbe mostrare. (Alcuni di questi errori potrebbero essere nei file di log.)" -#: src/Module/Admin/Summary.php:84 +#: src/Module/Admin/Summary.php:82 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:89 +#: src/Module/Admin/Summary.php:87 msgid "The worker was never executed. Please check your database structure!" msgstr "Il worker non è mai stato eseguito. Controlla la struttura del tuo database!" -#: src/Module/Admin/Summary.php:91 +#: src/Module/Admin/Summary.php:89 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "L'ultima esecuzione del worker è stata alle %sUTC, ovvero più di un'ora fa. Controlla le impostazioni del tuo crontab." -#: src/Module/Admin/Summary.php:96 +#: src/Module/Admin/Summary.php:94 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5806,7 +5812,7 @@ msgid "" "help with the transition." msgstr "La configurazione di Friendica è adesso salvata in config/local.config.php: copia config/local-sample.config.php e sposta la tua configurazione da .htconfig.php. Vedi la pagina della guida sulla Configurazione per avere aiuto con la transizione." -#: src/Module/Admin/Summary.php:100 +#: src/Module/Admin/Summary.php:98 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5815,7 +5821,7 @@ msgid "" "page for help with the transition." msgstr "La configurazione di Friendica è adesso salvata in config/local.config.php: copia config/local-sample.config.php e sposta la tua configurazione da config/local.ini.php. Vedi la pagina della guida sulla Configurazione per avere aiuto con la transizione." -#: src/Module/Admin/Summary.php:106 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5823,40 +5829,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "%s non è raggiungibile sul tuo sistema. È un grave problema di configurazione che impedisce la comunicazione da server a server. Vedi la pagina sull'installazione per un aiuto." -#: src/Module/Admin/Summary.php:130 +#: src/Module/Admin/Summary.php:128 #, 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 "La system.basepath di Friendica è stata aggiornata da '%s' a '%s'. Per favore rimuovi la system.basepath dal tuo db per evitare differenze." -#: src/Module/Admin/Summary.php:138 +#: src/Module/Admin/Summary.php:136 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "L'attuale system.basepath di Friendica '%s' è errata e il file di configurazione '%s' non è utilizzato." -#: src/Module/Admin/Summary.php:146 +#: src/Module/Admin/Summary.php:144 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "L'attuale system.basepath di Friendica '%s' non è uguale a quella del file di configurazione '%s'. Per favore correggi la tua configurazione." -#: src/Module/Admin/Summary.php:157 +#: src/Module/Admin/Summary.php:155 msgid "Message queues" msgstr "Code messaggi" -#: src/Module/Admin/Summary.php:160 +#: src/Module/Admin/Summary.php:158 msgid "Server Settings" msgstr "Impostazioni Server" -#: src/Module/Admin/Summary.php:178 +#: src/Module/Admin/Summary.php:176 msgid "Version" msgstr "Versione" -#: src/Module/Admin/Summary.php:182 +#: src/Module/Admin/Summary.php:180 msgid "Active addons" msgstr "Componenti aggiuntivi attivi" @@ -6124,8 +6130,8 @@ msgstr "" msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:134 -#: src/Module/Moderation/Users/Index.php:144 +#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:137 +#: src/Module/Moderation/Users/Index.php:147 msgid "Users" msgstr "Utenti" @@ -6161,7 +6167,7 @@ msgstr "" msgid "Only You Can See This" msgstr "Solo tu puoi vedere questo" -#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:67 +#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:65 msgid "Scheduled Posts" msgstr "" @@ -6214,7 +6220,7 @@ msgstr "Autenticazione a due fattori" msgid "Display" msgstr "Visualizzazione" -#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:195 +#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:189 msgid "Social Networks" msgstr "Social Networks" @@ -6230,11 +6236,15 @@ msgstr "Applicazioni collegate" msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:84 +#: src/Module/BaseSettings.php:155 src/Module/Settings/ContactImport.php:109 +msgid "Import Contacts" +msgstr "Importa Contatti" + +#: src/Module/BaseSettings.php:162 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Esporta dati personali" -#: src/Module/BaseSettings.php:162 +#: src/Module/BaseSettings.php:169 msgid "Remove account" msgstr "Rimuovi account" @@ -6363,8 +6373,8 @@ msgstr "lista" msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:54 src/Module/Circle.php:202 -#: src/Module/Circle.php:226 +#: src/Module/Circle.php:54 src/Module/Circle.php:203 +#: src/Module/Circle.php:227 msgid "Circle not found." msgstr "" @@ -6372,15 +6382,15 @@ msgstr "" msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:78 +#: src/Module/Circle.php:80 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Circle.php:86 src/Module/Circle.php:95 #: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 -#: 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/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/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 @@ -6389,75 +6399,75 @@ msgstr "" msgid "Contact not found." msgstr "Contatto non trovato." -#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 +#: src/Module/Circle.php:90 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Contatto non valido." -#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 +#: src/Module/Circle.php:99 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "Contatto eliminato." -#: src/Module/Circle.php:103 +#: src/Module/Circle.php:105 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:106 +#: src/Module/Circle.php:108 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:110 +#: src/Module/Circle.php:112 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:113 +#: src/Module/Circle.php:115 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:119 msgid "Bad request." msgstr "Richiesta sbagliata." -#: src/Module/Circle.php:158 +#: src/Module/Circle.php:160 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:159 +#: src/Module/Circle.php:161 msgid "Filter" msgstr "Filtro" -#: src/Module/Circle.php:165 +#: src/Module/Circle.php:167 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:207 +#: src/Module/Circle.php:208 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:258 +#: src/Module/Circle.php:259 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:268 +#: src/Module/Circle.php:269 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:278 +#: src/Module/Circle.php:279 msgid "Members" msgstr "Membri" -#: src/Module/Circle.php:281 +#: src/Module/Circle.php:282 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:297 +#: src/Module/Circle.php:298 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:320 +#: src/Module/Circle.php:321 msgid "Click on a contact to add or remove." msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." -#: src/Module/Circle.php:337 +#: src/Module/Circle.php:338 msgid "Add contact to circle" msgstr "" @@ -6492,7 +6502,7 @@ msgid "Only show blocked contacts" msgstr "Mostra solo contatti bloccati" #: src/Module/Contact.php:349 src/Module/Contact.php:421 -#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:386 msgid "Ignored" msgstr "Ignorato" @@ -6543,8 +6553,8 @@ msgstr "Aggiorna" #: src/Module/Contact.php:449 src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:105 -#: src/Module/Moderation/Users/Blocked.php:124 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Blocked.php:127 +#: src/Module/Moderation/Users/Index.php:143 msgid "Unblock" msgstr "Sblocca" @@ -6620,12 +6630,12 @@ msgstr "Ritorna alla modifica contatto" #: 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:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:56 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Nome" @@ -7195,11 +7205,11 @@ msgstr "" msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:190 +#: src/Module/Conversation/Timeline.php:193 msgid "Include" msgstr "Includi" -#: src/Module/Conversation/Timeline.php:191 +#: src/Module/Conversation/Timeline.php:194 msgid "Hide" msgstr "Nascondi" @@ -7469,19 +7479,19 @@ msgstr "Diagnostica Webfinger" msgid "Lookup address:" msgstr "Indirizzo di consultazione:" -#: src/Module/Directory.php:61 +#: src/Module/Directory.php:60 msgid "No entries (some entries may be hidden)." msgstr "Nessuna voce (qualche voce potrebbe essere nascosta)." -#: src/Module/Directory.php:77 +#: src/Module/Directory.php:76 msgid "Find on this site" msgstr "Cerca nel sito" -#: src/Module/Directory.php:79 +#: src/Module/Directory.php:78 msgid "Results for:" msgstr "Risultati per:" -#: src/Module/Directory.php:81 +#: src/Module/Directory.php:80 msgid "Site Directory" msgstr "Elenco del sito" @@ -7734,29 +7744,29 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Vai nella pagina di registrazione del tuo nuovo nodo Friendica e registra un nuovo utente. Ricorda di usare la stessa email che hai inserito come email dell'utente amministratore. Questo ti permetterà di entrare nel pannello di amministrazione del sito." -#: src/Module/Invite.php:43 +#: src/Module/Invite.php:42 msgid "Total invitation limit exceeded." msgstr "Limite totale degli inviti superato." -#: src/Module/Invite.php:68 +#: src/Module/Invite.php:67 #, php-format msgid "%s : Not a valid email address." msgstr "%s: non è un indirizzo email valido." -#: src/Module/Invite.php:94 +#: src/Module/Invite.php:93 msgid "Please join us on Friendica" msgstr "Unisciti a noi su Friendica" -#: src/Module/Invite.php:103 +#: src/Module/Invite.php:102 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Limite degli inviti superato. Contatta l'amministratore del tuo sito." -#: src/Module/Invite.php:107 +#: src/Module/Invite.php:106 #, php-format msgid "%s : Message delivery failed." msgstr "%s: la consegna del messaggio fallita." -#: src/Module/Invite.php:111 +#: src/Module/Invite.php:110 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." @@ -7764,11 +7774,11 @@ msgstr[0] "%d messaggio inviato." msgstr[1] "%d messaggi inviati." msgstr[2] "%d messaggi inviati." -#: src/Module/Invite.php:129 +#: src/Module/Invite.php:127 msgid "You have no more invitations available" msgstr "Non hai altri inviti disponibili" -#: src/Module/Invite.php:136 +#: src/Module/Invite.php:134 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7776,14 +7786,14 @@ msgid "" " other social networks." msgstr "Visita %s per una lista di siti pubblici a cui puoi iscriverti. I membri Friendica su altri siti possono collegarsi uno con l'altro, come con membri di molti altri social network." -#: src/Module/Invite.php:138 +#: src/Module/Invite.php:136 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Per accettare questo invito, visita e registrati su %s o su un'altro sito web Friendica aperto al pubblico." -#: src/Module/Invite.php:139 +#: src/Module/Invite.php:137 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7792,48 +7802,48 @@ msgid "" "sites you can join." msgstr "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali. Vai su %s per una lista di siti Friendica alternativi a cui puoi iscriverti." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:141 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Ci scusiamo, questo sistema non è configurato per collegarsi con altri siti pubblici o per invitare membri." -#: src/Module/Invite.php:146 +#: src/Module/Invite.php:144 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 "I siti Friendica son tutti collegati tra loro per creare una grossa rete sociale rispettosa della privacy, posseduta e controllata dai suoi membri. I siti Friendica possono anche collegarsi a molti altri social network tradizionali." -#: src/Module/Invite.php:145 +#: src/Module/Invite.php:143 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "Per accettare questo invito, visita e registrati su %s" -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:151 msgid "Send invitations" msgstr "Invia inviti" -#: src/Module/Invite.php:154 +#: src/Module/Invite.php:152 msgid "Enter email addresses, one per line:" msgstr "Inserisci gli indirizzi email, uno per riga:" -#: src/Module/Invite.php:158 +#: src/Module/Invite.php:156 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Sei cordialmente invitato/a ad unirti a me e ad altri amici su Friendica, e ad aiutarci a creare una rete sociale migliore." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "You will need to supply this invitation code: $invite_code" msgstr "Sarà necessario fornire questo codice invito: $invite_code" -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Una volta registrato, connettiti con me dal mio profilo:" -#: src/Module/Invite.php:162 +#: src/Module/Invite.php:160 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" @@ -7935,12 +7945,12 @@ msgid "File upload failed." msgstr "Caricamento del file non riuscito." #: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 -#: src/Module/Profile/Photos.php:204 +#: src/Module/Profile/Photos.php:212 #: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Impossibile caricare l'immagine." -#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:224 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:232 #: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Caricamento immagine fallito." @@ -7973,23 +7983,23 @@ msgstr "Eliminato" msgid "List of pending user deletions" msgstr "Elenco delle cancellazioni di utenti in attesa" -#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:469 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:431 msgid "Normal Account Page" msgstr "Pagina Account Normale" -#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:476 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:438 msgid "Soapbox Page" msgstr "Pagina Sandbox" -#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:483 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:445 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:490 +#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:452 msgid "Public Group - Restricted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:497 +#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:459 msgid "Automatic Friend Page" msgstr "Pagina con amicizia automatica" @@ -7998,22 +8008,22 @@ msgid "Private Group" msgstr "" #: src/Module/Moderation/BaseUsers.php:118 -#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:440 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:402 msgid "Personal Page" msgstr "Pagina Personale" #: src/Module/Moderation/BaseUsers.php:119 -#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:447 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:409 msgid "Organisation Page" msgstr "Pagina Organizzazione" #: src/Module/Moderation/BaseUsers.php:120 -#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:454 +#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:416 msgid "News Page" msgstr "Pagina Notizie" #: src/Module/Moderation/BaseUsers.php:121 -#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:461 +#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:423 msgid "Community Group" msgstr "" @@ -8044,9 +8054,9 @@ msgid "Block Remote Contact" msgstr "Blocca Contatto Remoto" #: src/Module/Moderation/Blocklist/Contact.php:102 -#: 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/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:138 #: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "seleziona tutti" @@ -8393,9 +8403,9 @@ msgid "Tag" msgstr "Etichetta" #: src/Module/Moderation/Item/Source.php:77 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 -#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 +#: src/Module/Moderation/Users/Index.php:129 msgid "Type" msgstr "Tipo" @@ -8661,7 +8671,7 @@ msgstr[2] "" msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:418 +#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:380 msgid "Channel Relay" msgstr "" @@ -8683,11 +8693,11 @@ msgstr[1] "%s utenti bloccati" msgstr[2] "%s utenti bloccati" #: src/Module/Moderation/Users/Active.php:37 -#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Active.php:74 #: src/Module/Moderation/Users/Blocked.php:37 -#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Blocked.php:74 #: src/Module/Moderation/Users/Index.php:44 -#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Index.php:81 msgid "You can't remove yourself" msgstr "Non puoi rimuovere te stesso" @@ -8701,81 +8711,81 @@ msgstr[0] "%s utente cancellato" msgstr[1] "%s utenti cancellati" msgstr[2] "%s utenti cancellati" -#: src/Module/Moderation/Users/Active.php:69 -#: src/Module/Moderation/Users/Blocked.php:69 -#: src/Module/Moderation/Users/Index.php:76 +#: src/Module/Moderation/Users/Active.php:72 +#: src/Module/Moderation/Users/Blocked.php:72 +#: src/Module/Moderation/Users/Index.php:79 #, php-format msgid "User \"%s\" deleted" msgstr "Utente \"%s\" eliminato" -#: src/Module/Moderation/Users/Active.php:79 -#: src/Module/Moderation/Users/Index.php:86 +#: src/Module/Moderation/Users/Active.php:82 +#: src/Module/Moderation/Users/Index.php:89 #, php-format msgid "User \"%s\" blocked" msgstr "Utente \"%s\" bloccato" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Register date" msgstr "Data registrazione" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last login" msgstr "Ultimo accesso" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last public item" msgstr "Ultimo elemento pubblico" -#: src/Module/Moderation/Users/Active.php:120 +#: src/Module/Moderation/Users/Active.php:123 msgid "Active Accounts" msgstr "Account attivi" -#: src/Module/Moderation/Users/Active.php:124 -#: src/Module/Moderation/Users/Blocked.php:123 -#: src/Module/Moderation/Users/Index.php:139 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "User blocked" msgstr "Utente bloccato" -#: src/Module/Moderation/Users/Active.php:125 -#: src/Module/Moderation/Users/Blocked.php:125 -#: src/Module/Moderation/Users/Index.php:141 +#: src/Module/Moderation/Users/Active.php:128 +#: src/Module/Moderation/Users/Blocked.php:128 +#: src/Module/Moderation/Users/Index.php:144 msgid "Site admin" msgstr "Amministrazione sito" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:142 +#: src/Module/Moderation/Users/Active.php:129 +#: src/Module/Moderation/Users/Blocked.php:129 +#: src/Module/Moderation/Users/Index.php:145 msgid "Account expired" msgstr "Account scaduto" -#: src/Module/Moderation/Users/Active.php:127 -#: src/Module/Moderation/Users/Index.php:145 +#: src/Module/Moderation/Users/Active.php:130 +#: src/Module/Moderation/Users/Index.php:148 msgid "Create a new user" msgstr "Crea un nuovo utente" -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:132 -#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:154 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Gli utenti selezionati saranno cancellati!\\n\\nTutto quello che gli utenti hanno inviato su questo sito sarà permanentemente canellato!\\n\\nSei sicuro?" -#: src/Module/Moderation/Users/Active.php:134 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:155 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" @@ -8790,13 +8800,13 @@ msgstr[0] "%s utente sbloccato" msgstr[1] "%s utenti sbloccati" msgstr[2] "%s utenti sbloccati" -#: src/Module/Moderation/Users/Blocked.php:78 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Blocked.php:81 +#: src/Module/Moderation/Users/Index.php:95 #, php-format msgid "User \"%s\" unblocked" msgstr "Utente \"%s\" sbloccato" -#: src/Module/Moderation/Users/Blocked.php:120 +#: src/Module/Moderation/Users/Blocked.php:123 msgid "Blocked Users" msgstr "Utenti bloccati" @@ -8829,11 +8839,11 @@ msgid "Users awaiting permanent deletion" msgstr "Utenti in attesa della cancellazione definitiva" #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:149 msgid "Permanent deletion" msgstr "Cancellazione permanente" -#: src/Module/Moderation/Users/Index.php:136 +#: src/Module/Moderation/Users/Index.php:139 msgid "User waiting for permanent deletion" msgstr "Utente in attesa di cancellazione definitiva" @@ -9000,7 +9010,7 @@ msgstr "" msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:91 +#: src/Module/OAuth/Token.php:73 msgid "Unsupported or missing grant type" msgstr "Tipo di concessione mancante o non supportato" @@ -9052,7 +9062,7 @@ msgstr "ignorato" msgid "Keep this window open until done." msgstr "Tieni questa finestra aperta fino a che ha finito." -#: src/Module/OpenSearch.php:57 +#: src/Module/OpenSearch.php:55 #, php-format msgid "Search in Friendica %s" msgstr "" @@ -9066,12 +9076,12 @@ msgstr "" msgid "The Photo with id %s is not available." msgstr "La Foto con id %s non è disponibile." -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:178 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:180 #, php-format msgid "Invalid photo with id %s." msgstr "Foto con id %s non valida." @@ -9104,15 +9114,15 @@ msgstr "Inserisci collegamento audio" msgid "audio link" msgstr "collegamento audio" -#: src/Module/Post/Tag/Remove.php:92 +#: src/Module/Post/Tag/Remove.php:93 msgid "Remove Item Tag" msgstr "Rimuovi il tag" -#: src/Module/Post/Tag/Remove.php:93 +#: src/Module/Post/Tag/Remove.php:94 msgid "Select a tag to remove: " msgstr "Seleziona un tag da rimuovere: " -#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Post/Tag/Remove.php:95 #: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Rimuovi" @@ -9191,32 +9201,32 @@ msgstr "il commento di %s" msgid "%s's timeline" msgstr "la timeline di %s" -#: src/Module/Profile/Photos.php:153 src/Module/Profile/Photos.php:156 -#: src/Module/Profile/Photos.php:181 +#: src/Module/Profile/Photos.php:157 src/Module/Profile/Photos.php:160 +#: src/Module/Profile/Photos.php:189 #: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "La dimensione dell'immagine supera il limite di %s" -#: src/Module/Profile/Photos.php:159 +#: src/Module/Profile/Photos.php:163 msgid "Image upload didn't complete, please try again" msgstr "Caricamento dell'immagine non completato. Prova di nuovo." -#: src/Module/Profile/Photos.php:162 +#: src/Module/Profile/Photos.php:166 msgid "Image file is missing" msgstr "Il file dell'immagine è mancante" -#: src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:171 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "Il server non può accettare il caricamento di un nuovo file in questo momento, contattare l'amministratore" -#: src/Module/Profile/Photos.php:189 +#: src/Module/Profile/Photos.php:197 msgid "Image file is empty." msgstr "Il file dell'immagine è vuoto." -#: src/Module/Profile/Photos.php:341 +#: src/Module/Profile/Photos.php:349 msgid "View Album" msgstr "Sfoglia l'album" @@ -9333,15 +9343,15 @@ msgid "" "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:69 +#: src/Module/Profile/Schedule.php:67 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:70 +#: src/Module/Profile/Schedule.php:68 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:71 +#: src/Module/Profile/Schedule.php:69 msgid "Remove post" msgstr "" @@ -9406,7 +9416,7 @@ msgid "Please repeat your e-mail address:" msgstr "Per favore ripeti il tuo indirizzo email:" #: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:551 +#: src/Module/Settings/Account.php:513 msgid "New Password:" msgstr "Nuova password:" @@ -9415,7 +9425,7 @@ msgid "Leave empty for an auto generated password." msgstr "Lascia vuoto per generare automaticamente una password." #: src/Module/Register.php:157 src/Module/Security/PasswordTooLong.php:87 -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Confirm:" msgstr "Conferma:" @@ -9599,20 +9609,20 @@ msgstr "Uscita effettuata." msgid "OpenID protocol error. No ID returned" msgstr "Errore di protocollo OpenID. Nessun ID ricevuto" -#: src/Module/Security/OpenID.php:76 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "Account non trovato. Per favore accedi al tuo account esistente per aggiungere OpenID ad esso." -#: src/Module/Security/OpenID.php:78 +#: src/Module/Security/OpenID.php:80 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "Account non trovato. Per favore registra un nuovo account o accedi al tuo account esistente per aggiungere OpenID ad esso." #: src/Module/Security/PasswordTooLong.php:43 -#: src/Module/Settings/Account.php:51 +#: src/Module/Settings/Account.php:49 msgid "Passwords do not match." msgstr "Le password non corrispondono." @@ -9621,7 +9631,7 @@ msgid "Password does not need changing." msgstr "" #: src/Module/Security/PasswordTooLong.php:63 -#: src/Module/Settings/Account.php:65 +#: src/Module/Settings/Account.php:63 msgid "Password unchanged." msgstr "Password non modificata." @@ -9641,24 +9651,24 @@ msgid "Update Password" msgstr "" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Current Password:" msgstr "Password Attuale:" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Your current password to confirm the changes" msgstr "La tua password attuale per confermare le modifiche" #: src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:537 +#: src/Module/Settings/Account.php:499 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:538 +#: src/Module/Settings/Account.php:500 msgid "Password length is limited to 72 characters." msgstr "" @@ -9762,129 +9772,121 @@ msgstr "Per favore inserisci il codice dalla tua app di autenticazione" msgid "Verify code and complete login" msgstr "Verifica codice e completa l'accesso" -#: src/Module/Settings/Account.php:80 +#: src/Module/Settings/Account.php:78 msgid "Please use a shorter name." msgstr "Per favore utilizza un nome più corto." -#: src/Module/Settings/Account.php:83 +#: src/Module/Settings/Account.php:81 msgid "Name too short." msgstr "Nome troppo corto." -#: src/Module/Settings/Account.php:92 +#: src/Module/Settings/Account.php:90 msgid "Wrong Password." msgstr "Password Sbagliata." -#: src/Module/Settings/Account.php:97 +#: src/Module/Settings/Account.php:95 msgid "Invalid email." msgstr "Email non valida." -#: src/Module/Settings/Account.php:101 +#: src/Module/Settings/Account.php:99 msgid "Cannot change to that email." msgstr "Non puoi usare quella email." -#: 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 +#: 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 msgid "Settings were not updated." msgstr "Le impostazioni non sono state aggiornate." -#: src/Module/Settings/Account.php:331 -msgid "Contact CSV file upload error" -msgstr "Errore nel caricamento del file CSV dei contatti" - -#: src/Module/Settings/Account.php:350 -msgid "Importing Contacts done" -msgstr "Importazione dei Contatti riuscita" - -#: src/Module/Settings/Account.php:363 +#: src/Module/Settings/Account.php:325 msgid "Relocate message has been send to your contacts" msgstr "Il messaggio di trasloco è stato inviato ai tuoi contatti" -#: src/Module/Settings/Account.php:380 +#: src/Module/Settings/Account.php:342 msgid "Unable to find your profile. Please contact your admin." msgstr "Impossibile trovare il tuo profilo. Contatta il tuo amministratore." -#: src/Module/Settings/Account.php:420 +#: src/Module/Settings/Account.php:382 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:430 +#: src/Module/Settings/Account.php:392 msgid "Personal Page Subtypes" msgstr "Sottotipi di Pagine Personali" -#: src/Module/Settings/Account.php:431 +#: src/Module/Settings/Account.php:393 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:442 +#: src/Module/Settings/Account.php:404 msgid "Account for a personal profile." msgstr "Account per profilo personale." -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:411 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Account per un'organizzazione, che automaticamente approva le richieste di contatto come \"Follower\"." -#: src/Module/Settings/Account.php:456 +#: src/Module/Settings/Account.php:418 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Account per notizie, che automaticamente approva le richieste di contatto come \"Follower\"" -#: src/Module/Settings/Account.php:463 +#: src/Module/Settings/Account.php:425 msgid "Account for community discussions." msgstr "Account per discussioni comunitarie." -#: src/Module/Settings/Account.php:471 +#: src/Module/Settings/Account.php:433 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Account per un profilo personale, che richiede l'approvazione delle richieste di contatto come \"Amico\" o \"Follower\"." -#: src/Module/Settings/Account.php:478 +#: src/Module/Settings/Account.php:440 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Account per un profilo publico, che automaticamente approva le richieste di contatto come \"Follower\"." -#: src/Module/Settings/Account.php:485 +#: src/Module/Settings/Account.php:447 msgid "Automatically approves all contact requests." msgstr "Approva automaticamente tutte le richieste di contatto." -#: src/Module/Settings/Account.php:492 +#: src/Module/Settings/Account.php:454 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:499 +#: src/Module/Settings/Account.php:461 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Account per un profilo popolare, che automaticamente approva le richieste di contatto come \"Amici\"." -#: src/Module/Settings/Account.php:504 +#: src/Module/Settings/Account.php:466 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:506 +#: src/Module/Settings/Account.php:468 msgid "Requires manual approval of contact requests." msgstr "Richiede l'approvazione manuale delle richieste di contatto." -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Opzionale) Consente di loggarti in questo account con questo OpenID" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 msgid "Publish your profile in your local site directory?" msgstr "Pubblica il tuo profilo nell'elenco locale del tuo sito?" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9892,94 +9894,94 @@ msgid "" " system settings." msgstr "Il tuo profilo verrà pubblicato nella directory locale di questo nodo. I dettagli del tuo profilo potrebbero essere visibili pubblicamente a seconda delle impostazioni di sistema." -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:491 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Il tuo profilo sarà anche pubblicato nelle directory globali di friendica (es. %s)." -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:504 msgid "Account Settings" msgstr "Impostazioni account" -#: src/Module/Settings/Account.php:543 +#: src/Module/Settings/Account.php:505 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "L'indirizzo della tua identità è '%s' or '%s'." -#: src/Module/Settings/Account.php:550 +#: src/Module/Settings/Account.php:512 msgid "Password Settings" msgstr "Impostazioni password" -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Leave password fields blank unless changing" msgstr "Lascia questi campi in bianco per non effettuare variazioni alla password" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Password:" msgstr "Password:" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Your current password to confirm the changes of the email address" msgstr "La tua password attuale per confermare il cambio di indirizzo email" -#: src/Module/Settings/Account.php:557 +#: src/Module/Settings/Account.php:519 msgid "Delete OpenID URL" msgstr "Elimina URL OpenID" -#: src/Module/Settings/Account.php:559 +#: src/Module/Settings/Account.php:521 msgid "Basic Settings" msgstr "Impostazioni base" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:522 #: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "Nome visualizzato:" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:523 msgid "Email Address:" msgstr "Indirizzo Email:" -#: src/Module/Settings/Account.php:562 +#: src/Module/Settings/Account.php:524 msgid "Your Timezone:" msgstr "Il tuo fuso orario:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "Your Language:" msgstr "La tua lingua:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Imposta la lingua che sarà usata per mostrarti l'interfaccia di Friendica e per inviarti le email" -#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Account.php:526 msgid "Default Post Location:" msgstr "Località predefinita:" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:527 msgid "Use Browser Location:" msgstr "Usa la località rilevata dal browser:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:529 msgid "Security and Privacy Settings" msgstr "Impostazioni di sicurezza e privacy" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "Maximum Friend Requests/Day:" msgstr "Numero massimo di richieste di amicizia al giorno:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "(to prevent spam abuse)" msgstr "(per prevenire lo spam)" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 msgid "Allow your profile to be searchable globally?" msgstr "Vuoi che il tuo profilo sia ricercabile globalmente?" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 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 " @@ -9987,43 +9989,43 @@ msgid "" "indexed or not." msgstr "Attiva questa impostazione se vuoi che gli altri ti trovino facilmente e ti seguano. Il tuo profilo sarà ricercabile da sistemi remoti. Questa impostazione determina anche se Friendica informerà i motori di ricerca che il tuo profilo sia indicizzabile o meno." -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Nascondere la lista dei tuo contatti/amici dai visitatori del tuo profilo?" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "La lista dei tuoi contatti è mostrata sulla tua pagina di profilo. Attiva questa opzione per disabilitare la visualizzazione del tuo elenco contatti." -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:535 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:535 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:574 +#: src/Module/Settings/Account.php:536 msgid "Make public posts unlisted" msgstr "Rendi messaggi pubblici non elencati" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:536 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 "I tuoi messaggi pubblici non appariranno sulle pagine della comunità o nei risultati di ricerca, e non saranno inviati ai server relay. Comunque appariranno sui feed pubblici su server remoti." -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:537 msgid "Make all posted pictures accessible" msgstr "Rendi tutte le immagini pubblicate accessibili" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:537 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 " @@ -10031,227 +10033,213 @@ msgid "" "public on your photo albums though." msgstr "Questa opzione rende ogni immagine pubblicata accessibile attraverso il collegamento diretto. Questo è una soluzione alternativa al problema che la maggior parte delle altre reti non gestiscono i permessi sulle immagini. Le immagini non pubbliche non saranno visibili al pubblico nei tuoi album fotografici comunque." -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "Allow friends to post to your profile page?" msgstr "Permetti agli amici di scrivere sulla tua pagina profilo?" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "I tuoi contatti possono scrivere messaggi sulla tua pagina di profilo. Questi messaggi saranno distribuiti a tutti i tuoi contatti." -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Allow friends to tag your posts?" msgstr "Permetti agli amici di aggiungere tag ai tuoi messaggi?" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Your contacts can add additional tags to your posts." msgstr "I tuoi contatti possono aggiungere tag aggiuntivi ai tuoi messaggi." -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:540 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:541 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:542 msgid "Default Post Permissions" msgstr "Permessi predefiniti per i messaggi" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:546 msgid "Expiration settings" msgstr "Impostazioni di scadenza" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "Automatically expire posts after this many days:" msgstr "Fai scadere i messaggi automaticamente dopo x giorni:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Se lasciato vuoto, i messaggi non verranno cancellati." -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "Expire posts" msgstr "Fai scadere i messaggi" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "When activated, posts and comments will be expired." msgstr "Quando attivato, i messaggi e i commenti scadranno." -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "Expire personal notes" msgstr "Fai scadere le note personali" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Quando attivato, le note personali sulla tua pagina del profilo scadranno." -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "Expire starred posts" msgstr "Fai scadere i messaggi speciali" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Inserire i messaggi negli speciali evita di farli scadere. Questo comportamento viene scavalcato da questa impostazione." -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 msgid "Only expire posts by others" msgstr "Fai scadere solo i messaggi degli altri" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Quando attivato, i tuoi messaggi non scadranno mai. Quindi le impostazioni qui sopra saranno valide solo per i messaggi che hai ricevuto." -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:554 msgid "Notification Settings" msgstr "Impostazioni notifiche" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:555 msgid "Send a notification email when:" msgstr "Invia una mail di notifica quando:" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:556 msgid "You receive an introduction" msgstr "Ricevi una presentazione" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:557 msgid "Your introductions are confirmed" msgstr "Le tue presentazioni sono confermate" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:558 msgid "Someone writes on your profile wall" msgstr "Qualcuno scrive sulla bacheca del tuo profilo" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:559 msgid "Someone writes a followup comment" msgstr "Qualcuno scrive un commento a un tuo messaggio" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:560 msgid "You receive a private message" msgstr "Ricevi un messaggio privato" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:561 msgid "You receive a friend suggestion" msgstr "Hai ricevuto un suggerimento di amicizia" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:562 msgid "You are tagged in a post" msgstr "Sei stato taggato in un messaggio" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:564 msgid "Create a desktop notification when:" msgstr "Crea una notifica desktop quando:" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:565 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:566 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:567 msgid "Someone liked your content" msgstr "Qualcuno ha messo mi piace a un tuo contenuto" -#: src/Module/Settings/Account.php:605 src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:567 src/Module/Settings/Account.php:568 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:568 msgid "Someone shared your content" msgstr "Qualcuno ha condiviso un tuo contenuto" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:569 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:570 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:571 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Activate desktop notifications" msgstr "Attiva notifiche desktop" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Show desktop popup on new notifications" msgstr "Mostra un popup di notifica sul desktop all'arrivo di nuove notifiche" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:577 msgid "Text-only notification emails" msgstr "Email di notifica in solo testo" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:579 msgid "Send text only notification emails, without the html part" msgstr "Invia le email di notifica in solo testo, senza la parte in html" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:583 msgid "Show detailled notifications" msgstr "Mostra notifiche dettagliate" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:585 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Per impostazione predefinita, le notifiche sono raggruppate in una singola notifica per articolo. Se abilitato, viene visualizzate tutte le notifiche." -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:589 msgid "Show notifications of ignored contacts" msgstr "Mostra notifiche dai contatti ignorati" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:591 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 "Non vedi i messaggi da contatti ignorati. Ma puoi ancora vedere i loro commenti. Questa impostazione controlla se vuoi o meno continuare a ricevere notifiche regolari che sono causate dai contatti ignorati." -#: src/Module/Settings/Account.php:632 +#: src/Module/Settings/Account.php:594 msgid "Advanced Account/Page Type Settings" msgstr "Impostazioni avanzate Account/Tipo di pagina" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:595 msgid "Change the behaviour of this account for special situations" msgstr "Modifica il comportamento di questo account in situazioni speciali" -#: src/Module/Settings/Account.php:636 -msgid "Import Contacts" -msgstr "Importa Contatti" - -#: src/Module/Settings/Account.php:637 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "Carica un file CSV che contiene gli indirizzi dei tuoi account seguiti nella prima colonna che hai esportato dal vecchio account." - -#: src/Module/Settings/Account.php:638 -msgid "Upload File" -msgstr "Carica File" - -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:598 msgid "Relocate" msgstr "Trasloca" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:599 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 "Se hai spostato questo profilo da un'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone." -#: src/Module/Settings/Account.php:643 +#: src/Module/Settings/Account.php:600 msgid "Resend relocate message to contacts" msgstr "Invia nuovamente il messaggio di trasloco ai contatti" @@ -10416,214 +10404,232 @@ msgstr "" msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:108 +#: src/Module/Settings/Connectors.php:107 msgid "Failed to connect with email account using the settings provided." msgstr "Impossibile collegarsi all'account email con i parametri forniti." -#: src/Module/Settings/Connectors.php:155 -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:150 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:149 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:150 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:161 msgid "Email access is disabled on this site." msgstr "L'accesso email è disabilitato su questo sito." -#: src/Module/Settings/Connectors.php:182 -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:176 +#: src/Module/Settings/Connectors.php:226 msgid "None" msgstr "Nessuna" -#: src/Module/Settings/Connectors.php:186 +#: src/Module/Settings/Connectors.php:180 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "" -#: src/Module/Settings/Connectors.php:187 +#: src/Module/Settings/Connectors.php:181 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "" -#: src/Module/Settings/Connectors.php:188 +#: src/Module/Settings/Connectors.php:182 msgid "Embed the title in the body" msgstr "" -#: src/Module/Settings/Connectors.php:199 +#: src/Module/Settings/Connectors.php:193 msgid "General Social Media Settings" msgstr "Impostazioni Media Sociali" -#: src/Module/Settings/Connectors.php:202 +#: src/Module/Settings/Connectors.php:196 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:198 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:200 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:207 +#: src/Module/Settings/Connectors.php:201 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:208 +#: src/Module/Settings/Connectors.php:202 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "Enable intelligent shortening" msgstr "Abilita accorciamento intelligente" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "Normalmente il sistema tenta di trovare il collegamento migliore da aggiungere ad un messaggio accorciato. Se questa opzione è disabilitata, ogni messaggio accorciato conterrà sempre un collegamento al messaggio originale su Friendica." -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "Enable simple text shortening" msgstr "Abilita accorciamento semplice del testo" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "Normalmente il sistema accorcia i messaggi alla successiva interruzione di linea. Se questa opzione è abilitata il sistema accorcerà il testo al raggiungimento del limite massimo di caratteri." -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "Attach the link title" msgstr "Allega il titolo del collegamento" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Quando attivato, il titolo del collegamento allegato sarà aggiunto come titolo dei messaggi su Diaspora. Questo è più che altro utile con i contatti \"remoti di sè stessi\" che condividono il contenuto del flusso." -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "Article Mode" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "" -#: src/Module/Settings/Connectors.php:218 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "Il tuo vecchio account ActivityPub/GNU Social " - -#: src/Module/Settings/Connectors.php:218 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "Se inserisci il nome del tuo vecchio account su un sistema basato su ActivityPub o del tuo vecchio account GNU Social/Statusnet (nel formato utente@dominio.tld), i tuoi contatti verranno importati automaticamente. Il campo verrà svuotato una volta terminata l'operazione." - -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:215 msgid "Email/Mailbox Setup" msgstr "Impostazioni email" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:216 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:217 msgid "Last successful email check:" msgstr "Ultimo controllo email eseguito con successo:" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:219 msgid "IMAP server name:" msgstr "Nome server IMAP:" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:220 msgid "IMAP port:" msgstr "Porta IMAP:" -#: src/Module/Settings/Connectors.php:228 +#: src/Module/Settings/Connectors.php:221 msgid "Security:" msgstr "Sicurezza:" -#: src/Module/Settings/Connectors.php:229 +#: src/Module/Settings/Connectors.php:222 msgid "Email login name:" msgstr "Nome utente email:" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:223 msgid "Email password:" msgstr "Password email:" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:224 msgid "Reply-to address:" msgstr "Indirizzo di risposta:" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:225 msgid "Send public posts to all email contacts:" msgstr "Invia i messaggi pubblici ai contatti email:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Action after import:" msgstr "Azione dopo importazione:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Move to folder" msgstr "Sposta nella cartella" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:227 msgid "Move to folder:" msgstr "Sposta nella cartella:" +#: src/Module/Settings/ContactImport.php:63 +msgid "Contact CSV file upload error" +msgstr "Errore nel caricamento del file CSV dei contatti" + +#: src/Module/Settings/ContactImport.php:82 +msgid "Importing Contacts done" +msgstr "Importazione dei Contatti riuscita" + +#: src/Module/Settings/ContactImport.php:112 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "Carica un file CSV che contiene gli indirizzi dei tuoi account seguiti nella prima colonna che hai esportato dal vecchio account." + +#: src/Module/Settings/ContactImport.php:113 +msgid "Upload File" +msgstr "Carica File" + +#: src/Module/Settings/ContactImport.php:115 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "Il tuo vecchio account ActivityPub/GNU Social " + +#: src/Module/Settings/ContactImport.php:115 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "Se inserisci il nome del tuo vecchio account su un sistema basato su ActivityPub o del tuo vecchio account GNU Social/Statusnet (nel formato utente@dominio.tld), i tuoi contatti verranno importati automaticamente. Il campo verrà svuotato una volta terminata l'operazione." + #: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "Delega concessa con successo." @@ -11074,42 +11080,42 @@ msgstr "Parole chiave private:" msgid "(Used for searching profiles, never shown to others)" msgstr "(Usato per cercare tra i profili, non è mai visibile agli altri)" -#: 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/Crop.php:90 +#: src/Module/Settings/Profile/Photo/Crop.php:108 +#: src/Module/Settings/Profile/Photo/Crop.php:126 #: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Il ridimensionamento dell'immagine [%s] è fallito." -#: src/Module/Settings/Profile/Photo/Crop.php:136 +#: src/Module/Settings/Profile/Photo/Crop.php:133 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Ricarica la pagina con shift+F5 o cancella la cache del browser se la nuova foto non viene mostrata immediatamente." -#: src/Module/Settings/Profile/Photo/Crop.php:141 +#: src/Module/Settings/Profile/Photo/Crop.php:138 msgid "Unable to process image" msgstr "Impossibile elaborare l'immagine" -#: src/Module/Settings/Profile/Photo/Crop.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:157 msgid "Photo not found." msgstr "Foto non trovata." -#: src/Module/Settings/Profile/Photo/Crop.php:182 +#: src/Module/Settings/Profile/Photo/Crop.php:179 msgid "Profile picture successfully updated." msgstr "Immagine di profilo aggiornata con successo." -#: src/Module/Settings/Profile/Photo/Crop.php:208 -#: src/Module/Settings/Profile/Photo/Crop.php:212 +#: src/Module/Settings/Profile/Photo/Crop.php:205 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Crop Image" msgstr "Ritaglia immagine" -#: src/Module/Settings/Profile/Photo/Crop.php:209 +#: src/Module/Settings/Profile/Photo/Crop.php:206 msgid "Please adjust the image cropping for optimum viewing." msgstr "Ritaglia l'immagine per una visualizzazione migliore." -#: src/Module/Settings/Profile/Photo/Crop.php:211 +#: src/Module/Settings/Profile/Photo/Crop.php:208 msgid "Use Image As Is" msgstr "Usa immagine così com'è" @@ -11180,17 +11186,17 @@ msgstr "L'id utente è %d" msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:116 +#: src/Module/Settings/RemoveMe.php:114 msgid "Remove My Account" msgstr "Rimuovi il mio account" -#: src/Module/Settings/RemoveMe.php:117 +#: src/Module/Settings/RemoveMe.php:115 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimosso non potrai più recuperarlo." -#: src/Module/Settings/RemoveMe.php:122 +#: src/Module/Settings/RemoveMe.php:120 msgid "Please enter your password for verification:" msgstr "Inserisci la tua password per verifica:" @@ -11585,11 +11591,11 @@ msgstr "" msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:64 +#: src/Module/Special/HTTPException.php:65 msgid "Stack trace:" msgstr "Traccia dello stack:" -#: src/Module/Special/HTTPException.php:69 +#: src/Module/Special/HTTPException.php:70 #, php-format msgid "Exception thrown in %s:%d" msgstr "Eccezione lanciata in %s:%d" @@ -12373,221 +12379,221 @@ msgstr "Contatta il mittente rispondendo a questo messaggio se non vuoi ricevere msgid "%s posted an update." msgstr "%s ha inviato un aggiornamento." -#: src/Object/Post.php:124 +#: src/Object/Post.php:125 msgid "Private Message" msgstr "Messaggio privato" -#: src/Object/Post.php:128 +#: src/Object/Post.php:129 msgid "Public Message" msgstr "" -#: src/Object/Post.php:132 +#: src/Object/Post.php:133 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:168 +#: src/Object/Post.php:169 msgid "This entry was edited" msgstr "Questa voce è stata modificata" -#: src/Object/Post.php:196 +#: src/Object/Post.php:197 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:225 src/Object/Post.php:227 +#: src/Object/Post.php:226 src/Object/Post.php:228 msgid "Edit" msgstr "Modifica" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Delete globally" msgstr "Rimuovi globalmente" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Remove locally" msgstr "Rimuovi localmente" -#: src/Object/Post.php:268 +#: src/Object/Post.php:269 #, php-format msgid "Block %s" msgstr "Blocca %s" -#: src/Object/Post.php:273 +#: src/Object/Post.php:274 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:278 +#: src/Object/Post.php:279 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:282 +#: src/Object/Post.php:283 msgid "Report post" msgstr "" -#: src/Object/Post.php:293 +#: src/Object/Post.php:294 msgid "Save to folder" msgstr "Salva nella cartella" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will attend" msgstr "Parteciperò" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will not attend" msgstr "Non parteciperò" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I might attend" msgstr "Forse parteciperò" -#: src/Object/Post.php:380 +#: src/Object/Post.php:381 msgid "Ignore thread" msgstr "Ignora la conversazione" -#: src/Object/Post.php:381 +#: src/Object/Post.php:382 msgid "Unignore thread" msgstr "Non ignorare la conversazione" -#: src/Object/Post.php:382 +#: src/Object/Post.php:383 msgid "Toggle ignore status" msgstr "Inverti stato ignora" -#: src/Object/Post.php:392 +#: src/Object/Post.php:393 msgid "Add star" msgstr "Aggiungi a preferiti" -#: src/Object/Post.php:393 +#: src/Object/Post.php:394 msgid "Remove star" msgstr "Rimuovi da preferiti" -#: src/Object/Post.php:394 +#: src/Object/Post.php:395 msgid "Toggle star status" msgstr "Inverti stato preferito" -#: src/Object/Post.php:405 +#: src/Object/Post.php:406 msgid "Pin" msgstr "Metti in evidenza" -#: src/Object/Post.php:406 +#: src/Object/Post.php:407 msgid "Unpin" msgstr "Togli da in evidenza" -#: src/Object/Post.php:407 +#: src/Object/Post.php:408 msgid "Toggle pin status" msgstr "Inverti stato in evidenza" -#: src/Object/Post.php:410 +#: src/Object/Post.php:411 msgid "Pinned" msgstr "In evidenza" -#: src/Object/Post.php:415 +#: src/Object/Post.php:416 msgid "Add tag" msgstr "Aggiungi tag" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote share this" msgstr "Condividi citando questo" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote Share" msgstr "Cita e Condividi" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare this" msgstr "Ricondividi questo" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare" msgstr "Ricondividi" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Cancel your Reshare" msgstr "Annulla la tua Ricondivisione" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Unshare" msgstr "Non ricondividere più" -#: src/Object/Post.php:478 +#: src/Object/Post.php:479 #, php-format msgid "%s (Received %s)" msgstr "%s (Ricevuto %s)" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Comment this item on your system" msgstr "Commenta questo oggetto sul tuo sistema" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Remote comment" msgstr "Commento remoto" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:514 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:517 +#: src/Object/Post.php:518 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:519 +#: src/Object/Post.php:520 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:543 +#: src/Object/Post.php:544 msgid "to" msgstr "a" -#: src/Object/Post.php:544 +#: src/Object/Post.php:545 msgid "via" msgstr "via" -#: src/Object/Post.php:545 +#: src/Object/Post.php:546 msgid "Wall-to-Wall" msgstr "Da bacheca a bacheca" -#: src/Object/Post.php:546 +#: src/Object/Post.php:547 msgid "via Wall-To-Wall:" msgstr "da bacheca a bacheca" -#: src/Object/Post.php:599 +#: src/Object/Post.php:600 #, php-format msgid "Reply to %s" msgstr "Rispondi a %s" -#: src/Object/Post.php:602 +#: src/Object/Post.php:603 msgid "More" msgstr "Mostra altro" -#: src/Object/Post.php:621 +#: src/Object/Post.php:622 msgid "Notifier task is pending" msgstr "L'attività di notifica è in attesa" -#: src/Object/Post.php:622 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is pending" msgstr "La consegna ai server remoti è in attesa" -#: src/Object/Post.php:623 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is underway" msgstr "La consegna ai server remoti è in corso" -#: src/Object/Post.php:624 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is mostly done" msgstr "La consegna ai server remoti è quasi completata" -#: src/Object/Post.php:625 +#: src/Object/Post.php:626 msgid "Delivery to remote servers is done" msgstr "La consegna ai server remoti è completata" -#: src/Object/Post.php:647 +#: src/Object/Post.php:648 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -12595,74 +12601,74 @@ msgstr[0] "%d commento" msgstr[1] "%d commenti" msgstr[2] "%d commenti" -#: src/Object/Post.php:648 +#: src/Object/Post.php:649 msgid "Show more" msgstr "Mostra di più" -#: src/Object/Post.php:649 +#: src/Object/Post.php:650 msgid "Show fewer" msgstr "Mostra di meno" -#: src/Object/Post.php:686 +#: src/Object/Post.php:687 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:691 +#: src/Object/Post.php:692 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:696 +#: src/Object/Post.php:697 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:701 +#: src/Object/Post.php:702 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:706 +#: src/Object/Post.php:707 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:711 +#: src/Object/Post.php:712 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:716 +#: src/Object/Post.php:717 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:721 +#: src/Object/Post.php:722 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:726 +#: src/Object/Post.php:727 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:731 +#: src/Object/Post.php:732 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:754 +#: src/Object/Post.php:755 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:557 +#: src/Protocol/ActivityPub/Receiver.php:558 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:530 +#: src/Protocol/Delivery.php:531 msgid "(no subject)" msgstr "(nessun oggetto)" @@ -12675,20 +12681,20 @@ msgstr "" msgid "Login failed." msgstr "Accesso fallito." -#: src/Security/Authentication.php:260 +#: src/Security/Authentication.php:261 msgid "Login failed. Please check your credentials." msgstr "Accesso non riuscito. Per favore controlla le tue credenziali." -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:374 #, php-format msgid "Welcome %s" msgstr "Benvenuto %s" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:375 msgid "Please upload a profile photo." msgstr "Carica una foto per il profilo." -#: src/Security/OpenWebAuth.php:149 +#: src/Security/OpenWebAuth.php:150 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s da il benvenuto a %2$s" diff --git a/view/lang/it/strings.php b/view/lang/it/strings.php index bea8d81b56..be2c3d3dfd 100644 --- a/view/lang/it/strings.php +++ b/view/lang/it/strings.php @@ -1121,6 +1121,7 @@ $a->strings['Display'] = 'Visualizzazione'; $a->strings['Social Networks'] = 'Social Networks'; $a->strings['Manage Accounts'] = 'Gestisci Account'; $a->strings['Connected apps'] = 'Applicazioni collegate'; +$a->strings['Import Contacts'] = 'Importa Contatti'; $a->strings['Export personal data'] = 'Esporta dati personali'; $a->strings['Remove account'] = 'Rimuovi account'; $a->strings['This page is missing a url parameter.'] = 'A questa pagina manca il parametro url.'; @@ -1785,8 +1786,6 @@ $a->strings['Wrong Password.'] = 'Password Sbagliata.'; $a->strings['Invalid email.'] = 'Email non valida.'; $a->strings['Cannot change to that email.'] = 'Non puoi usare quella email.'; $a->strings['Settings were not updated.'] = 'Le impostazioni non sono state aggiornate.'; -$a->strings['Contact CSV file upload error'] = 'Errore nel caricamento del file CSV dei contatti'; -$a->strings['Importing Contacts done'] = 'Importazione dei Contatti riuscita'; $a->strings['Relocate message has been send to your contacts'] = 'Il messaggio di trasloco è stato inviato ai tuoi contatti'; $a->strings['Unable to find your profile. Please contact your admin.'] = 'Impossibile trovare il tuo profilo. Contatta il tuo amministratore.'; $a->strings['Personal Page Subtypes'] = 'Sottotipi di Pagine Personali'; @@ -1868,9 +1867,6 @@ $a->strings['Show notifications of ignored contacts'] = 'Mostra notifiche dai co $a->strings['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.'] = 'Non vedi i messaggi da contatti ignorati. Ma puoi ancora vedere i loro commenti. Questa impostazione controlla se vuoi o meno continuare a ricevere notifiche regolari che sono causate dai contatti ignorati.'; $a->strings['Advanced Account/Page Type Settings'] = 'Impostazioni avanzate Account/Tipo di pagina'; $a->strings['Change the behaviour of this account for special situations'] = 'Modifica il comportamento di questo account in situazioni speciali'; -$a->strings['Import Contacts'] = 'Importa Contatti'; -$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Carica un file CSV che contiene gli indirizzi dei tuoi account seguiti nella prima colonna che hai esportato dal vecchio account.'; -$a->strings['Upload File'] = 'Carica File'; $a->strings['Relocate'] = 'Trasloca'; $a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'Se hai spostato questo profilo da un\'altro server, e alcuni dei tuoi contatti non ricevono i tuoi aggiornamenti, prova a premere questo bottone.'; $a->strings['Resend relocate message to contacts'] = 'Invia nuovamente il messaggio di trasloco ai contatti'; @@ -1889,8 +1885,6 @@ $a->strings['Enable simple text shortening'] = 'Abilita accorciamento semplice d $a->strings['Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit.'] = 'Normalmente il sistema accorcia i messaggi alla successiva interruzione di linea. Se questa opzione è abilitata il sistema accorcerà il testo al raggiungimento del limite massimo di caratteri.'; $a->strings['Attach the link title'] = 'Allega il titolo del collegamento'; $a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'Quando attivato, il titolo del collegamento allegato sarà aggiunto come titolo dei messaggi su Diaspora. Questo è più che altro utile con i contatti "remoti di sè stessi" che condividono il contenuto del flusso.'; -$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Il tuo vecchio account ActivityPub/GNU Social '; -$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Se inserisci il nome del tuo vecchio account su un sistema basato su ActivityPub o del tuo vecchio account GNU Social/Statusnet (nel formato utente@dominio.tld), i tuoi contatti verranno importati automaticamente. Il campo verrà svuotato una volta terminata l\'operazione.'; $a->strings['Email/Mailbox Setup'] = 'Impostazioni email'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Se vuoi comunicare con i contatti email usando questo servizio, specifica come collegarti alla tua casella di posta. (opzionale)'; $a->strings['Last successful email check:'] = 'Ultimo controllo email eseguito con successo:'; @@ -1904,6 +1898,12 @@ $a->strings['Send public posts to all email contacts:'] = 'Invia i messaggi pubb $a->strings['Action after import:'] = 'Azione dopo importazione:'; $a->strings['Move to folder'] = 'Sposta nella cartella'; $a->strings['Move to folder:'] = 'Sposta nella cartella:'; +$a->strings['Contact CSV file upload error'] = 'Errore nel caricamento del file CSV dei contatti'; +$a->strings['Importing Contacts done'] = 'Importazione dei Contatti riuscita'; +$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Carica un file CSV che contiene gli indirizzi dei tuoi account seguiti nella prima colonna che hai esportato dal vecchio account.'; +$a->strings['Upload File'] = 'Carica File'; +$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Il tuo vecchio account ActivityPub/GNU Social '; +$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Se inserisci il nome del tuo vecchio account su un sistema basato su ActivityPub o del tuo vecchio account GNU Social/Statusnet (nel formato utente@dominio.tld), i tuoi contatti verranno importati automaticamente. Il campo verrà svuotato una volta terminata l\'operazione.'; $a->strings['Delegation successfully granted.'] = 'Delega concessa con successo.'; $a->strings['Parent user not found, unavailable or password doesn\'t match.'] = 'Utente principale non trovato, non disponibile o la password non corrisponde.'; $a->strings['Delegation successfully revoked.'] = 'Delega revocata con successo.'; diff --git a/view/lang/ja/messages.po b/view/lang/ja/messages.po index 292b58f354..292359352d 100644 --- a/view/lang/ja/messages.po +++ b/view/lang/ja/messages.po @@ -13,7 +13,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: XMPPはいいぞ, 2021\n" "Language-Team: Japanese (http://app.transifex.com/Friendica/friendica/language/ja/)\n" @@ -23,34 +23,34 @@ msgstr "" "Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\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 @@ -61,7 +61,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 @@ -70,13 +70,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 @@ -85,15 +87,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" @@ -109,7 +111,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" @@ -126,70 +128,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\n\t\tこのリンクをたどって本人確認を行ってください:\n\n\t\t%1$s\n\n\t\t新しいパスワードを含むフォローアップメッセージが届きます。\n\t\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 Settings page after " "successful login." msgstr "ログインに成功すると、パスワードは設定ページから変更される場合があります。" -#: 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" @@ -200,7 +202,7 @@ msgid "" "\t\t" msgstr "\n\t\t\t%1$s さん、\n\t\t\t\tパスワードは要求に応じて変更されました。記録のためにこの情報を保管してください(または、パスワードをすぐに覚えているものに変更してください)。\n\t\t" -#: mod/lostpass.php:152 +#: mod/lostpass.php:151 #, php-format msgid "" "\n" @@ -214,7 +216,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" -#: mod/lostpass.php:164 +#: mod/lostpass.php:163 #, php-format msgid "Your password has been changed at %s" msgstr "パスワードは%s変更されました" @@ -278,11 +280,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 "写真をアップロード" @@ -291,16 +293,16 @@ msgstr "写真をアップロード" msgid "Insert web link" msgstr "webリンクを挿入" -#: 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 @@ -308,7 +310,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 @@ -317,7 +319,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" @@ -374,396 +376,396 @@ msgid "%d message" msgid_plural "%d messages" msgstr[0] "%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 "%1$sが%2$sで%3$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 "" -#: 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 "写真を削除" -#: mod/photos.php:958 +#: mod/photos.php:956 msgid "Use as profile photo" msgstr "プロフィール写真として使用" -#: mod/photos.php:965 +#: mod/photos.php:963 msgid "Private Photo" msgstr "プライベート写真" -#: mod/photos.php:971 +#: mod/photos.php:969 msgid "View Full Size" msgstr "フルサイズを表示" -#: mod/photos.php:1024 +#: mod/photos.php:1022 msgid "Tags: " msgstr "タグ:" -#: mod/photos.php:1027 +#: mod/photos.php:1025 msgid "[Select tags to remove]" msgstr "[削除するタグを選択]" -#: mod/photos.php:1042 +#: mod/photos.php:1040 msgid "New album name" msgstr "新しいアルバム名" -#: mod/photos.php:1043 +#: mod/photos.php:1041 msgid "Caption" msgstr "キャプション" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "Add a Tag" msgstr "タグを追加する" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "例:@ bob、@ Barbara_Jensen、@ jim @ example.com、#California、#camping" -#: mod/photos.php:1045 +#: mod/photos.php:1043 msgid "Do not rotate" msgstr "回転させないでください" -#: mod/photos.php:1046 +#: mod/photos.php:1044 msgid "Rotate CW (right)" msgstr "CWを回転(右)" -#: mod/photos.php:1047 +#: mod/photos.php:1045 msgid "Rotate CCW (left)" msgstr "CCWを回転(左)" -#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: mod/photos.php:1091 mod/photos.php:1147 mod/photos.php:1227 #: src/Module/Contact.php:600 src/Module/Item/Compose.php:184 -#: src/Object/Post.php:1142 +#: src/Object/Post.php:1143 msgid "This is you" msgstr "これはあなたです" -#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 -#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:598 -#: src/Object/Post.php:1144 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:599 +#: src/Object/Post.php:1145 msgid "Comment" msgstr "コメント" -#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 -#: src/Content/Conversation.php:401 src/Module/Calendar/Event/Form.php:234 +#: 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 -#: src/Object/Post.php:1158 +#: src/Object/Post.php:1159 msgid "Preview" msgstr "プレビュー" -#: mod/photos.php:1098 src/Content/Conversation.php:355 -#: src/Module/Post/Edit.php:121 src/Object/Post.php:1146 +#: mod/photos.php:1096 src/Content/Conversation.php:357 +#: src/Module/Post/Edit.php:121 src/Object/Post.php:1147 msgid "Loading..." msgstr "読み込み中…" -#: mod/photos.php:1190 src/Content/Conversation.php:1485 -#: src/Object/Post.php:260 +#: mod/photos.php:1188 src/Content/Conversation.php:1487 +#: src/Object/Post.php:261 msgid "Select" msgstr "選択" -#: mod/photos.php:1191 src/Content/Conversation.php:1486 -#: 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:233 +#: 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 +#: src/Module/Settings/Connectors.php:226 #: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "削除" -#: mod/photos.php:1252 src/Object/Post.php:426 +#: mod/photos.php:1250 src/Object/Post.php:427 msgid "Like" msgstr "いいね" -#: mod/photos.php:1253 src/Object/Post.php:426 +#: mod/photos.php:1251 src/Object/Post.php:427 msgid "I like this (toggle)" msgstr "私はこれが好きです(トグル)" -#: mod/photos.php:1254 src/Object/Post.php:427 +#: mod/photos.php:1252 src/Object/Post.php:428 msgid "Dislike" msgstr "嫌い" -#: mod/photos.php:1256 src/Object/Post.php:427 +#: mod/photos.php:1254 src/Object/Post.php:428 msgid "I don't like this (toggle)" msgstr "気に入らない(トグル)" -#: mod/photos.php:1278 +#: mod/photos.php:1276 msgid "Map" msgstr "地図" -#: src/App.php:467 +#: src/App.php:255 msgid "Apologies but the website is unavailable at the moment." msgstr "" -#: src/App/Page.php:237 +#: src/App/Page.php:241 msgid "Delete this item?" msgstr "この項目を削除しますか?" -#: src/App/Page.php:238 +#: src/App/Page.php:242 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:239 +#: src/App/Page.php:243 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:240 +#: src/App/Page.php:244 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:241 +#: src/App/Page.php:245 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:242 src/Module/Settings/Server/Action.php:47 +#: src/App/Page.php:246 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:244 +#: src/App/Page.php:248 msgid "Like not successful" msgstr "" -#: src/App/Page.php:245 +#: src/App/Page.php:249 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:246 +#: src/App/Page.php:250 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:247 +#: src/App/Page.php:251 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:248 +#: src/App/Page.php:252 msgid "Backend error" msgstr "" -#: src/App/Page.php:249 +#: src/App/Page.php:253 msgid "Network error" msgstr "" -#: src/App/Page.php:252 +#: src/App/Page.php:256 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:257 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:254 +#: src/App/Page.php:258 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:255 +#: src/App/Page.php:259 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:256 +#: src/App/Page.php:260 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:261 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:262 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:263 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:264 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:265 msgid "Remove file" msgstr "" -#: src/App/Page.php:262 +#: src/App/Page.php:266 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:346 +#: src/App/Page.php:350 msgid "toggle mobile" msgstr "モバイルを切り替え" @@ -796,7 +798,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:181 src/Module/Contact.php:395 +#: src/Content/Widget.php:254 src/Core/ACL.php:182 src/Module/Contact.php:395 #: src/Module/Privacy/PermissionTooltip.php:150 #: src/Module/Privacy/PermissionTooltip.php:172 #: src/Module/Settings/Channels.php:146 @@ -838,7 +840,7 @@ msgstr "このURL( %s )のアーカイブされていないコンタクト msgid "The contact entries have been archived" msgstr "コンタクトエントリがアーカイブされました" -#: src/Console/ClearAvatarCache.php:73 +#: src/Console/ClearAvatarCache.php:74 msgid "" "The avatar cache needs to be disabled in local.config.php to use this " "command." @@ -924,22 +926,22 @@ msgstr "" msgid "no resource in photo %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:123 +#: src/Console/MoveToAvatarCache.php:127 #, php-format msgid "no photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:132 +#: src/Console/MoveToAvatarCache.php:136 #, php-format msgid "no image data for photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:141 +#: src/Console/MoveToAvatarCache.php:145 #, php-format msgid "invalid image for id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:154 +#: src/Console/MoveToAvatarCache.php:158 #, php-format msgid "Quit on invalid photo %s" msgstr "" @@ -969,11 +971,14 @@ msgstr "保留中の投稿の更新はすべて完了しました。" msgid "Enter user nickname: " msgstr "" -#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Console/User.php:168 src/Model/User.php:830 #: src/Module/Api/Twitter/ContactEndpoint.php:62 -#: 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/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/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "ユーザーが見つかりません" @@ -983,12 +988,12 @@ msgid "Enter new password: " msgstr "新しいパスワードを入力してください:" #: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 -#: src/Module/Settings/Account.php:59 +#: src/Module/Settings/Account.php:57 msgid "Password update failed. Please try again." msgstr "パスワードの更新に失敗しました。もう一度試してください。" #: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 -#: src/Module/Settings/Account.php:62 +#: src/Module/Settings/Account.php:60 msgid "Password changed." msgstr "パスワード変更済み。" @@ -1069,86 +1074,86 @@ msgstr "毎週" msgid "Monthly" msgstr "毎月" -#: src/Content/ContactSelector.php:118 +#: src/Content/ContactSelector.php:117 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:119 +#: src/Content/ContactSelector.php:118 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:120 +#: src/Content/ContactSelector.php:119 msgid "RSS/Atom" msgstr "RSS / Atom" -#: src/Content/ContactSelector.php:121 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Content/ContactSelector.php:120 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:58 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "Eメール" -#: src/Content/ContactSelector.php:122 src/Module/Debug/Babel.php:273 +#: src/Content/ContactSelector.php:121 src/Module/Debug/Babel.php:273 msgid "Diaspora" msgstr "ディアスポラ" -#: src/Content/ContactSelector.php:123 +#: src/Content/ContactSelector.php:122 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:124 +#: src/Content/ContactSelector.php:123 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:125 +#: src/Content/ContactSelector.php:124 msgid "XMPP/IM" msgstr "XMPP / IM" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:125 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:126 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:127 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:129 +#: src/Content/ContactSelector.php:128 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:130 +#: src/Content/ContactSelector.php:129 msgid "Discourse" msgstr "Discourse" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:130 msgid "Diaspora Connector" msgstr "Diaspora コネクタ" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:131 msgid "GNU Social Connector" msgstr "GNU Social Connector" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:132 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:133 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:134 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:135 msgid "Bluesky" msgstr "" @@ -1157,362 +1162,362 @@ msgstr "" msgid "%s (via %s)" msgstr "%s (経由: %s)" -#: src/Content/Conversation.php:213 +#: src/Content/Conversation.php:215 msgid "and" msgstr "と" -#: src/Content/Conversation.php:216 +#: src/Content/Conversation.php:218 #, php-format msgid "and %d other people" msgstr "と他 %d 人" -#: src/Content/Conversation.php:222 +#: src/Content/Conversation.php:224 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." msgstr[0] "" -#: src/Content/Conversation.php:224 +#: src/Content/Conversation.php:226 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." msgstr[0] "" -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:228 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." msgstr[0] "" -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:230 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." msgstr[0] "" -#: src/Content/Conversation.php:230 +#: src/Content/Conversation.php:232 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." msgstr[0] "" -#: src/Content/Conversation.php:232 +#: src/Content/Conversation.php:234 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." msgstr[0] "" -#: src/Content/Conversation.php:263 +#: src/Content/Conversation.php:265 #, php-format msgid " likes this" msgid_plural " like this" msgstr[0] "" -#: src/Content/Conversation.php:266 +#: src/Content/Conversation.php:268 #, php-format msgid " doesn't like this" msgid_plural " don't like this" msgstr[0] "" -#: src/Content/Conversation.php:269 +#: src/Content/Conversation.php:271 #, php-format msgid " attends" msgid_plural " attend" msgstr[0] "" -#: src/Content/Conversation.php:272 +#: src/Content/Conversation.php:274 #, php-format msgid " doesn't attend" msgid_plural " don't attend" msgstr[0] "" -#: src/Content/Conversation.php:275 +#: src/Content/Conversation.php:277 #, php-format msgid " attends maybe" msgid_plural " attend maybe" msgstr[0] "" -#: src/Content/Conversation.php:278 +#: src/Content/Conversation.php:280 #, php-format msgid " reshared this" msgid_plural " reshared this" msgstr[0] "" -#: src/Content/Conversation.php:324 +#: src/Content/Conversation.php:326 msgid "Visible to everybody" msgstr "すべての人 が閲覧可能です" -#: src/Content/Conversation.php:325 src/Module/Item/Compose.php:196 -#: src/Object/Post.php:1157 +#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196 +#: src/Object/Post.php:1158 msgid "Please enter a image/video/audio/webpage URL:" msgstr "画像/動画/音声/ウェブページのURLを入力してください:" -#: src/Content/Conversation.php:326 +#: src/Content/Conversation.php:328 msgid "Tag term:" msgstr "用語のタグ付け:" -#: src/Content/Conversation.php:327 src/Module/Filer/SaveTag.php:59 +#: src/Content/Conversation.php:329 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "保存先のフォルダ:" -#: src/Content/Conversation.php:328 +#: src/Content/Conversation.php:330 msgid "Where are you right now?" msgstr "どこにいますか?:" -#: src/Content/Conversation.php:329 +#: src/Content/Conversation.php:331 msgid "Delete item(s)?" msgstr "これ(ら)の項目を削除しますか?" -#: src/Content/Conversation.php:341 src/Module/Item/Compose.php:171 +#: src/Content/Conversation.php:343 src/Module/Item/Compose.php:171 msgid "Created at" msgstr "" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:353 msgid "New Post" msgstr "新しい投稿" -#: src/Content/Conversation.php:354 +#: src/Content/Conversation.php:356 msgid "Share" msgstr "共有" -#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:123 +#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:123 msgid "upload photo" msgstr "写真をアップロード" -#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:124 +#: src/Content/Conversation.php:360 src/Module/Post/Edit.php:124 msgid "Attach file" msgstr "ファイルを添付" -#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:125 +#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:125 msgid "attach file" msgstr "ファイルを添付" -#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:186 -#: src/Module/Post/Edit.php:162 src/Object/Post.php:1147 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1148 msgid "Bold" msgstr "太字" -#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:187 -#: src/Module/Post/Edit.php:163 src/Object/Post.php:1148 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1149 msgid "Italic" msgstr "斜体" -#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:188 -#: src/Module/Post/Edit.php:164 src/Object/Post.php:1149 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1150 msgid "Underline" msgstr "下線" -#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:189 -#: src/Module/Post/Edit.php:165 src/Object/Post.php:1151 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:165 src/Object/Post.php:1152 msgid "Quote" msgstr "引用" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:166 src/Object/Post.php:1152 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:166 src/Object/Post.php:1153 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:191 -#: src/Object/Post.php:1150 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Object/Post.php:1151 msgid "Content Warning" msgstr "" -#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:167 src/Object/Post.php:1153 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:167 src/Object/Post.php:1154 msgid "Code" msgstr "コード" -#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:193 -#: src/Object/Post.php:1154 +#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1155 msgid "Image" msgstr "画像" -#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:168 src/Object/Post.php:1155 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:168 src/Object/Post.php:1156 msgid "Link" msgstr "リンク" -#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:195 -#: src/Module/Post/Edit.php:169 src/Object/Post.php:1156 +#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:169 src/Object/Post.php:1157 msgid "Link or Media" msgstr "リンク/メディア" -#: src/Content/Conversation.php:370 +#: src/Content/Conversation.php:372 msgid "Video" msgstr "動画" -#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:198 +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:198 #: src/Module/Post/Edit.php:132 msgid "Set your location" msgstr "現在地を設定" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:133 msgid "set location" msgstr "現在地を設定" -#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:134 msgid "Clear browser location" msgstr "ブラウザの現在地を解除" -#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:135 +#: src/Content/Conversation.php:376 src/Module/Post/Edit.php:135 msgid "clear location" msgstr "現在地を解除" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:203 +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:203 #: src/Module/Post/Edit.php:148 msgid "Set title" msgstr "件名を設定" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:204 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 #: src/Module/Post/Edit.php:150 msgid "Categories (comma-separated list)" msgstr "カテゴリ(半角カンマ区切り)" -#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:220 +#: src/Content/Conversation.php:385 src/Module/Item/Compose.php:220 msgid "Scheduled at" msgstr "" -#: src/Content/Conversation.php:388 src/Module/Post/Edit.php:137 +#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:137 msgid "Permission settings" msgstr "権限設定" -#: src/Content/Conversation.php:397 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:399 src/Module/Post/Edit.php:146 msgid "Public post" msgstr "一般公開の投稿" -#: src/Content/Conversation.php:411 src/Content/Widget/VCard.php:121 +#: 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 msgid "Message" msgstr "メッセージ" -#: src/Content/Conversation.php:412 src/Module/Post/Edit.php:173 +#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:173 #: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "ブラウザ" -#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:176 +#: src/Content/Conversation.php:416 src/Module/Post/Edit.php:176 msgid "Open Compose page" msgstr "作成ページを開く" -#: src/Content/Conversation.php:581 +#: src/Content/Conversation.php:583 msgid "remove" msgstr "削除" -#: src/Content/Conversation.php:585 +#: src/Content/Conversation.php:587 msgid "Delete Selected Items" msgstr "選択した項目を削除" -#: src/Content/Conversation.php:713 src/Content/Conversation.php:716 -#: src/Content/Conversation.php:719 src/Content/Conversation.php:722 -#: src/Content/Conversation.php:725 +#: 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 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: src/Content/Conversation.php:728 +#: src/Content/Conversation.php:730 #, php-format msgid "You are following %s." msgstr "" -#: src/Content/Conversation.php:733 +#: src/Content/Conversation.php:735 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:735 +#: src/Content/Conversation.php:737 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:755 +#: src/Content/Conversation.php:757 #, php-format msgid "%s reshared this." msgstr "%s が再共有しました。" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 msgid "Reshared" msgstr "" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 #, php-format msgid "Reshared by %s <%s>" msgstr "" -#: src/Content/Conversation.php:760 +#: src/Content/Conversation.php:762 #, php-format msgid "%s is participating in this thread." msgstr "" -#: src/Content/Conversation.php:763 +#: src/Content/Conversation.php:765 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:766 +#: src/Content/Conversation.php:768 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 msgid "Fetched" msgstr "" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 #, php-format msgid "Fetched because of %s <%s>" msgstr "" -#: src/Content/Conversation.php:775 +#: src/Content/Conversation.php:777 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:778 +#: src/Content/Conversation.php:780 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:781 +#: src/Content/Conversation.php:783 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:784 +#: src/Content/Conversation.php:786 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:787 +#: src/Content/Conversation.php:789 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1505 src/Object/Post.php:247 +#: src/Content/Conversation.php:1507 src/Object/Post.php:248 msgid "Pinned item" msgstr "ピン留め項目" -#: src/Content/Conversation.php:1522 src/Object/Post.php:541 -#: src/Object/Post.php:542 +#: src/Content/Conversation.php:1524 src/Object/Post.php:542 +#: src/Object/Post.php:543 #, php-format msgid "View %s's profile @ %s" msgstr "%sのプロフィールを確認 @ %s" -#: src/Content/Conversation.php:1536 src/Object/Post.php:529 +#: src/Content/Conversation.php:1538 src/Object/Post.php:530 msgid "Categories:" msgstr "カテゴリ:" -#: src/Content/Conversation.php:1537 src/Object/Post.php:530 +#: src/Content/Conversation.php:1539 src/Object/Post.php:531 msgid "Filed under:" msgstr "格納先:" -#: src/Content/Conversation.php:1545 src/Object/Post.php:556 +#: src/Content/Conversation.php:1547 src/Object/Post.php:557 #, php-format msgid "%s from %s" msgstr "%s から %s" -#: src/Content/Conversation.php:1561 +#: src/Content/Conversation.php:1563 msgid "View in context" msgstr "文脈で表示する" @@ -1645,7 +1650,7 @@ msgstr "パーソナル" msgid "Posts that mention or involve you" msgstr "あなたに言及または関与している投稿" -#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:398 msgid "Starred" msgstr "スター付き" @@ -1732,7 +1737,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:552 src/Model/User.php:1390 +#: src/Content/Widget.php:555 src/Model/User.php:1390 msgid "Groups" msgstr "" @@ -1740,7 +1745,7 @@ msgstr "" msgid "Display posts that have been distributed by the selected group." msgstr "" -#: src/Content/Feature.php:117 src/Content/Widget.php:521 +#: src/Content/Feature.php:117 src/Content/Widget.php:524 msgid "Archives" msgstr "アーカイブ" @@ -1756,8 +1761,8 @@ msgstr "プロトコル" msgid "Display posts with the selected protocols." msgstr "" -#: src/Content/Feature.php:119 src/Content/Widget.php:558 -#: src/Module/Settings/Account.php:429 +#: src/Content/Feature.php:119 src/Content/Widget.php:561 +#: src/Module/Settings/Account.php:391 msgid "Account Types" msgstr "アカウントの種類" @@ -1765,7 +1770,7 @@ msgstr "アカウントの種類" msgid "Display posts done by accounts with the selected account type." msgstr "" -#: src/Content/Feature.php:120 src/Content/Widget.php:607 +#: 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 msgid "Channels" @@ -1791,7 +1796,7 @@ msgstr "保存されたフォルダー" msgid "Display a list of folders in which posts are stored." msgstr "" -#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:189 msgid "Own Contacts" msgstr "" @@ -1847,12 +1852,12 @@ msgstr "" msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:139 src/Content/Widget.php:527 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:530 msgid "show less" msgstr "" #: src/Content/GroupManager.php:140 src/Content/Widget.php:425 -#: src/Content/Widget.php:528 +#: src/Content/Widget.php:531 msgid "show more" msgstr "もっと見せる" @@ -1860,66 +1865,66 @@ msgstr "もっと見せる" msgid "Create new group" msgstr "" -#: src/Content/Item.php:317 src/Model/Item.php:3273 +#: src/Content/Item.php:322 src/Model/Item.php:3281 msgid "event" msgstr "イベント" -#: src/Content/Item.php:320 src/Content/Item.php:330 +#: src/Content/Item.php:325 src/Content/Item.php:335 msgid "status" msgstr "ステータス" -#: src/Content/Item.php:326 src/Model/Item.php:3275 +#: src/Content/Item.php:331 src/Model/Item.php:3283 #: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "写真" -#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 +#: src/Content/Item.php:345 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s が %2$s の %3$s を %4$s としてタグ付けしました" -#: src/Content/Item.php:414 view/theme/frio/theme.php:253 +#: src/Content/Item.php:419 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "このスレッドをフォロー" -#: src/Content/Item.php:415 src/Model/Contact.php:1244 +#: src/Content/Item.php:420 src/Model/Contact.php:1245 msgid "View Status" msgstr "ステータスを見る" -#: 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/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 msgid "View Profile" msgstr "プロフィールを見る" -#: src/Content/Item.php:417 src/Model/Contact.php:1246 +#: src/Content/Item.php:422 src/Model/Contact.php:1247 msgid "View Photos" msgstr "写真を見る" -#: src/Content/Item.php:418 src/Model/Contact.php:1213 +#: src/Content/Item.php:423 src/Model/Contact.php:1214 #: src/Model/Profile.php:446 msgid "Network Posts" msgstr "ネットワーク投稿" -#: src/Content/Item.php:419 src/Model/Contact.php:1237 -#: src/Model/Contact.php:1248 +#: src/Content/Item.php:424 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1249 msgid "View Contact" msgstr "コンタクトを見る" -#: src/Content/Item.php:420 src/Model/Contact.php:1249 +#: src/Content/Item.php:425 src/Model/Contact.php:1250 msgid "Send PM" msgstr "PMを送る" -#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Content/Item.php:426 src/Module/Contact.php:449 #: src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:104 -#: src/Module/Moderation/Users/Active.php:123 -#: src/Module/Moderation/Users/Index.php:138 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Index.php:141 msgid "Block" msgstr "ブロック" -#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Content/Item.php:427 src/Module/Contact.php:450 #: src/Module/Contact/Profile.php:532 #: src/Module/Notifications/Introductions.php:126 #: src/Module/Notifications/Introductions.php:199 @@ -1927,27 +1932,27 @@ msgstr "ブロック" msgid "Ignore" msgstr "無視" -#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Content/Item.php:428 src/Module/Contact.php:451 #: src/Module/Contact/Profile.php:540 msgid "Collapse" msgstr "" -#: src/Content/Item.php:424 src/Object/Post.php:288 +#: src/Content/Item.php:429 src/Object/Post.php:289 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 -#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 +#: src/Content/Item.php:433 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:503 msgid "Languages" msgstr "言語" -#: src/Content/Item.php:431 src/Object/Post.php:582 +#: src/Content/Item.php:436 src/Object/Post.php:583 msgid "Search Text" msgstr "" -#: src/Content/Item.php:436 src/Content/Widget.php:66 -#: src/Model/Contact.php:1238 src/Model/Contact.php:1250 +#: src/Content/Item.php:441 src/Content/Widget.php:66 +#: src/Model/Contact.php:1239 src/Model/Contact.php:1251 #: src/Module/Contact/Follow.php:152 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "つながる/フォローする" @@ -1960,7 +1965,7 @@ msgstr "" msgid "Nothing new here" msgstr "ここに新しいものはありません" -#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:64 msgid "Go back" msgstr "戻る" @@ -2174,7 +2179,7 @@ msgstr "通知" msgid "See all notifications" msgstr "すべての通知を見る" -#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:226 msgid "Mark as seen" msgstr "既読にする" @@ -2202,8 +2207,8 @@ msgstr "" msgid "Manage other pages" msgstr "他のページを管理する" -#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 -#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:170 +#: 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/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "設定" @@ -2231,10 +2236,10 @@ msgstr "サイトのセットアップと構成" #: src/Module/Moderation/Blocklist/Server/Index.php:84 #: 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:119 -#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 #: src/Module/Moderation/Users/Deleted.php:66 -#: src/Module/Moderation/Users/Index.php:133 +#: src/Module/Moderation/Users/Index.php:136 msgid "Moderation" msgstr "" @@ -2266,33 +2271,33 @@ msgstr "次" msgid "last" msgstr "最終" -#: src/Content/Text/BBCode.php:908 +#: src/Content/Text/BBCode.php:903 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:931 src/Model/Item.php:4069 -#: src/Model/Item.php:4075 src/Model/Item.php:4076 +#: src/Content/Text/BBCode.php:926 src/Model/Item.php:4080 +#: src/Model/Item.php:4086 src/Model/Item.php:4087 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1745 src/Content/Text/HTML.php:892 +#: src/Content/Text/BBCode.php:1740 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "クリックして開閉" -#: src/Content/Text/BBCode.php:1800 +#: src/Content/Text/BBCode.php:1795 msgid "$1 wrote:" msgstr "$1 の投稿:" -#: src/Content/Text/BBCode.php:1874 src/Content/Text/BBCode.php:1875 +#: src/Content/Text/BBCode.php:1869 src/Content/Text/BBCode.php:1870 msgid "Encrypted content" msgstr "暗号化されたコンテンツ" -#: src/Content/Text/BBCode.php:2208 +#: src/Content/Text/BBCode.php:2203 msgid "Invalid source protocol" msgstr "無効なソースプロトコル" -#: src/Content/Text/BBCode.php:2227 +#: src/Content/Text/BBCode.php:2222 msgid "Invalid link protocol" msgstr "無効なリンクプロトコル" @@ -2344,7 +2349,7 @@ msgid "Examples: Robert Morgenstein, Fishing" msgstr "例:Robert Morgenstein、釣り" #: src/Content/Widget.php:68 src/Module/Contact.php:441 -#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 +#: src/Module/Directory.php:82 view/theme/vier/theme.php:185 msgid "Find" msgstr "見つける" @@ -2365,7 +2370,7 @@ msgstr "ランダムプロフィール" msgid "Invite Friends" msgstr "友達を招待" -#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: src/Content/Widget.php:73 src/Module/Directory.php:74 #: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "グローバルディレクトリ" @@ -2386,7 +2391,7 @@ msgstr "" msgid "Relationships" msgstr "関係" -#: src/Content/Widget.php:264 src/Module/Circle.php:280 +#: src/Content/Widget.php:264 src/Module/Circle.php:281 #: src/Module/Contact.php:325 msgid "All Contacts" msgstr "すべてのコンタクト" @@ -2409,27 +2414,27 @@ msgid "%d contact in common" msgid_plural "%d contacts in common" msgstr[0] "共通の %d 件のコンタクト" -#: src/Content/Widget.php:529 +#: src/Content/Widget.php:532 msgid "On this date" msgstr "" -#: src/Content/Widget.php:549 +#: src/Content/Widget.php:552 msgid "Persons" msgstr "" -#: src/Content/Widget.php:550 +#: src/Content/Widget.php:553 msgid "Organisations" msgstr "" -#: src/Content/Widget.php:551 src/Model/Contact.php:1750 +#: src/Content/Widget.php:554 src/Model/Contact.php:1751 msgid "News" msgstr "ニュース" -#: src/Content/Widget.php:553 +#: src/Content/Widget.php:556 msgid "Relays" msgstr "" -#: src/Content/Widget.php:560 src/Module/Moderation/BaseUsers.php:58 +#: src/Content/Widget.php:563 src/Module/Moderation/BaseUsers.php:58 msgid "All" msgstr "" @@ -2473,12 +2478,12 @@ msgstr[0] "トレンドタグ(過去%d時間)" msgid "More Trending Tags" msgstr "よりトレンドのタグ" -#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1207 +#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1208 #: src/Model/Profile.php:440 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1211 +#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1212 #: src/Model/Profile.php:444 src/Module/Moderation/Item/Source.php:80 msgid "Mention" msgstr "" @@ -2493,10 +2498,10 @@ msgstr "XMPP:" msgid "Matrix:" msgstr "" -#: src/Content/Widget/VCard.php:112 src/Model/Event.php:68 -#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: 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:134 src/Module/Notifications/Introductions.php:180 +#: src/Module/Directory.php:133 src/Module/Notifications/Introductions.php:180 #: src/Module/Profile/Profile.php:212 msgid "Location:" msgstr "ロケーション:" @@ -2506,75 +2511,75 @@ msgstr "ロケーション:" msgid "Network:" msgstr "ネットワーク:" -#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1239 -#: src/Model/Contact.php:1251 src/Model/Profile.php:457 +#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1252 src/Model/Profile.php:457 #: src/Module/Contact/Profile.php:476 msgid "Unfollow" msgstr "フォロー解除" -#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1209 +#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1210 #: src/Model/Profile.php:442 msgid "View group" msgstr "" -#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:260 +#: src/Core/ACL.php:153 src/Module/Profile/Profile.php:260 msgid "Yourself" msgstr "" -#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Core/ACL.php:189 src/Module/Privacy/PermissionTooltip.php:156 #: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "相互" -#: src/Core/ACL.php:280 +#: src/Core/ACL.php:281 msgid "Post to Email" msgstr "メールに投稿" -#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Core/ACL.php:308 src/Module/Privacy/PermissionTooltip.php:103 #: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "一般公開" -#: src/Core/ACL.php:308 +#: src/Core/ACL.php:309 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:309 src/Module/Privacy/PermissionTooltip.php:105 +#: src/Core/ACL.php:310 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "限定/プライベート" -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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 "このコンテンツは、最初のボックスに記載されたメンバーから、2番目のボックスに記載されている人を除いた範囲に対して表示されます。 一般公開はされません。" -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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:311 +#: src/Core/ACL.php:312 msgid "Show to:" msgstr "限定公開先:" -#: src/Core/ACL.php:312 +#: src/Core/ACL.php:313 msgid "Except to:" msgstr "この連絡先を除く:" -#: src/Core/ACL.php:313 src/Module/Post/Edit.php:145 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:145 msgid "CC: email addresses" msgstr "CC:メールアドレス" -#: src/Core/ACL.php:314 src/Module/Post/Edit.php:151 +#: src/Core/ACL.php:315 src/Module/Post/Edit.php:151 msgid "Example: bob@example.com, mary@example.com" msgstr "例:bob @ example.com、mary @ example.com" -#: src/Core/ACL.php:315 +#: src/Core/ACL.php:316 msgid "Connectors" msgstr "コネクター" @@ -2909,176 +2914,176 @@ msgstr "データベースはすでに使用されています。" msgid "Could not connect to database." msgstr "データベースに接続できません。" -#: src/Core/L10n.php:430 src/Model/Item.php:2316 +#: src/Core/L10n.php:426 src/Model/Item.php:2324 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:437 +#: src/Core/L10n.php:433 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Core/L10n.php:481 src/Model/Event.php:418 #: src/Module/Settings/Display.php:292 msgid "Monday" msgstr "月曜" -#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Core/L10n.php:481 src/Model/Event.php:419 #: src/Module/Settings/Display.php:293 msgid "Tuesday" msgstr "火曜日" -#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Core/L10n.php:481 src/Model/Event.php:420 #: src/Module/Settings/Display.php:294 msgid "Wednesday" msgstr "水曜日" -#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Core/L10n.php:481 src/Model/Event.php:421 #: src/Module/Settings/Display.php:295 msgid "Thursday" msgstr "木曜日" -#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Core/L10n.php:481 src/Model/Event.php:422 #: src/Module/Settings/Display.php:296 msgid "Friday" msgstr "金曜日" -#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Core/L10n.php:481 src/Model/Event.php:423 #: src/Module/Settings/Display.php:297 msgid "Saturday" msgstr "土曜日" -#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Core/L10n.php:481 src/Model/Event.php:417 #: src/Module/Settings/Display.php:291 msgid "Sunday" msgstr "日曜日" -#: src/Core/L10n.php:489 src/Model/Event.php:436 +#: src/Core/L10n.php:485 src/Model/Event.php:438 msgid "January" msgstr "1月" -#: src/Core/L10n.php:489 src/Model/Event.php:437 +#: src/Core/L10n.php:485 src/Model/Event.php:439 msgid "February" msgstr "2月" -#: src/Core/L10n.php:489 src/Model/Event.php:438 +#: src/Core/L10n.php:485 src/Model/Event.php:440 msgid "March" msgstr "3月" -#: src/Core/L10n.php:489 src/Model/Event.php:439 +#: src/Core/L10n.php:485 src/Model/Event.php:441 msgid "April" msgstr "4月" -#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 +#: src/Core/L10n.php:485 src/Core/L10n.php:504 src/Model/Event.php:429 msgid "May" msgstr "5月" -#: src/Core/L10n.php:489 src/Model/Event.php:440 +#: src/Core/L10n.php:485 src/Model/Event.php:442 msgid "June" msgstr "6月" -#: src/Core/L10n.php:489 src/Model/Event.php:441 +#: src/Core/L10n.php:485 src/Model/Event.php:443 msgid "July" msgstr "7月" -#: src/Core/L10n.php:489 src/Model/Event.php:442 +#: src/Core/L10n.php:485 src/Model/Event.php:444 msgid "August" msgstr "8月" -#: src/Core/L10n.php:489 src/Model/Event.php:443 +#: src/Core/L10n.php:485 src/Model/Event.php:445 msgid "September" msgstr "9月" -#: src/Core/L10n.php:489 src/Model/Event.php:444 +#: src/Core/L10n.php:485 src/Model/Event.php:446 msgid "October" msgstr "10月" -#: src/Core/L10n.php:489 src/Model/Event.php:445 +#: src/Core/L10n.php:485 src/Model/Event.php:447 msgid "November" msgstr "11月" -#: src/Core/L10n.php:489 src/Model/Event.php:446 +#: src/Core/L10n.php:485 src/Model/Event.php:448 msgid "December" msgstr "12月" -#: src/Core/L10n.php:504 src/Model/Event.php:408 +#: src/Core/L10n.php:500 src/Model/Event.php:410 msgid "Mon" msgstr "月" -#: src/Core/L10n.php:504 src/Model/Event.php:409 +#: src/Core/L10n.php:500 src/Model/Event.php:411 msgid "Tue" msgstr "火" -#: src/Core/L10n.php:504 src/Model/Event.php:410 +#: src/Core/L10n.php:500 src/Model/Event.php:412 msgid "Wed" msgstr "水" -#: src/Core/L10n.php:504 src/Model/Event.php:411 +#: src/Core/L10n.php:500 src/Model/Event.php:413 msgid "Thu" msgstr "木" -#: src/Core/L10n.php:504 src/Model/Event.php:412 +#: src/Core/L10n.php:500 src/Model/Event.php:414 msgid "Fri" msgstr "金" -#: src/Core/L10n.php:504 src/Model/Event.php:413 +#: src/Core/L10n.php:500 src/Model/Event.php:415 msgid "Sat" msgstr "土" -#: src/Core/L10n.php:504 src/Model/Event.php:407 +#: src/Core/L10n.php:500 src/Model/Event.php:409 msgid "Sun" msgstr "日" -#: src/Core/L10n.php:508 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:425 msgid "Jan" msgstr "1月" -#: src/Core/L10n.php:508 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:426 msgid "Feb" msgstr "2月" -#: src/Core/L10n.php:508 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:427 msgid "Mar" msgstr "3月" -#: src/Core/L10n.php:508 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:428 msgid "Apr" msgstr "4月" -#: src/Core/L10n.php:508 src/Model/Event.php:428 +#: src/Core/L10n.php:504 src/Model/Event.php:430 msgid "Jun" msgstr "6月" -#: src/Core/L10n.php:508 src/Model/Event.php:429 +#: src/Core/L10n.php:504 src/Model/Event.php:431 msgid "Jul" msgstr "7月" -#: src/Core/L10n.php:508 src/Model/Event.php:430 +#: src/Core/L10n.php:504 src/Model/Event.php:432 msgid "Aug" msgstr "8月" -#: src/Core/L10n.php:508 +#: src/Core/L10n.php:504 msgid "Sep" msgstr "9月" -#: src/Core/L10n.php:508 src/Model/Event.php:432 +#: src/Core/L10n.php:504 src/Model/Event.php:434 msgid "Oct" msgstr "10月" -#: src/Core/L10n.php:508 src/Model/Event.php:433 +#: src/Core/L10n.php:504 src/Model/Event.php:435 msgid "Nov" msgstr "11月" -#: src/Core/L10n.php:508 src/Model/Event.php:434 +#: src/Core/L10n.php:504 src/Model/Event.php:436 msgid "Dec" msgstr "12月" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:44 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "ログファイル ' %s ' は使用できません。ログ機能が使用できません。(エラー: ' %s ' )" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:67 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" @@ -3270,7 +3275,7 @@ msgstr "加える" msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:592 src/Module/Circle.php:181 +#: src/Model/Circle.php:592 src/Module/Circle.php:185 msgid "Contacts not in any circle" msgstr "" @@ -3278,8 +3283,8 @@ msgstr "" msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:595 src/Module/Circle.php:166 -#: src/Module/Circle.php:189 src/Module/Circle.php:264 +#: src/Model/Circle.php:595 src/Module/Circle.php:168 +#: src/Module/Circle.php:190 src/Module/Circle.php:265 msgid "Circle Name: " msgstr "" @@ -3287,276 +3292,276 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1258 src/Module/Moderation/Users/Pending.php:88 +#: src/Model/Contact.php:1259 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:1594 src/Model/Contact.php:1666 +#: src/Model/Contact.php:1595 src/Model/Contact.php:1667 #: src/Module/Contact/Profile.php:360 #, php-format msgid "%s has blocked you" msgstr "" -#: src/Model/Contact.php:1746 +#: src/Model/Contact.php:1747 msgid "Organisation" msgstr "組織" -#: src/Model/Contact.php:1754 +#: src/Model/Contact.php:1755 msgid "Group" msgstr "" -#: src/Model/Contact.php:1758 src/Module/Moderation/BaseUsers.php:122 +#: src/Model/Contact.php:1759 src/Module/Moderation/BaseUsers.php:122 msgid "Relay" msgstr "中継" -#: src/Model/Contact.php:3073 +#: src/Model/Contact.php:3085 msgid "Disallowed profile URL." msgstr "許可されていないプロフィールURL。" -#: src/Model/Contact.php:3078 src/Module/Friendica.php:88 +#: src/Model/Contact.php:3090 src/Module/Friendica.php:88 msgid "Blocked domain" msgstr "ブロックされたドメイン" -#: src/Model/Contact.php:3083 +#: src/Model/Contact.php:3095 msgid "Connect URL missing." msgstr "接続URLがありません。" -#: src/Model/Contact.php:3092 +#: src/Model/Contact.php:3104 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "コンタクトを追加できませんでした。ページの \"設定\" -> \"ソーシャルネットワーク\" で、関連するネットワーク認証情報を確認してください。" -#: src/Model/Contact.php:3110 +#: src/Model/Contact.php:3122 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3127 +#: src/Model/Contact.php:3139 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3134 +#: src/Model/Contact.php:3146 msgid "The profile address specified does not provide adequate information." msgstr "指定されたプロフィールアドレスは、適切な情報を提供しません。" -#: src/Model/Contact.php:3136 +#: src/Model/Contact.php:3148 msgid "No compatible communication protocols or feeds were discovered." msgstr "互換性のある通信プロトコルまたはフィードは見つかりませんでした。" -#: src/Model/Contact.php:3139 +#: src/Model/Contact.php:3151 msgid "An author or name was not found." msgstr "著者または名前が見つかりませんでした。" -#: src/Model/Contact.php:3142 +#: src/Model/Contact.php:3154 msgid "No browser URL could be matched to this address." msgstr "このアドレスに一致するブラウザURLはありません。" -#: src/Model/Contact.php:3145 +#: src/Model/Contact.php:3157 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "@スタイルのIDアドレスを既知のプロトコルまたは電子メールのコンタクトと一致させることができません。" -#: src/Model/Contact.php:3146 +#: src/Model/Contact.php:3158 msgid "Use mailto: in front of address to force email check." msgstr "メールチェックを強制するには、アドレスの前にmailto:を使用します。" -#: src/Model/Contact.php:3152 +#: src/Model/Contact.php:3164 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "限定公開のプロフィールです。この人はあなたから直接/個人的な通知を受け取ることができません。" -#: src/Model/Contact.php:3211 +#: src/Model/Contact.php:3223 msgid "Unable to retrieve contact information." msgstr "コンタクト情報を取得できません。" -#: src/Model/Event.php:40 +#: src/Model/Event.php:42 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 -#: src/Model/Event.php:928 +#: src/Model/Event.php:63 src/Model/Event.php:80 src/Model/Event.php:457 +#: src/Model/Event.php:929 msgid "Starts:" msgstr "開始:" -#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 -#: src/Model/Event.php:932 +#: src/Model/Event.php:66 src/Model/Event.php:86 src/Model/Event.php:458 +#: src/Model/Event.php:933 msgid "Finishes:" msgstr "終了:" -#: src/Model/Event.php:405 +#: src/Model/Event.php:407 msgid "all-day" msgstr "一日中" -#: src/Model/Event.php:431 +#: src/Model/Event.php:433 msgid "Sept" msgstr "9月" -#: src/Model/Event.php:448 src/Module/Calendar/Show.php:117 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:117 #: src/Util/Temporal.php:329 msgid "today" msgstr "今日" -#: src/Model/Event.php:449 src/Module/Calendar/Show.php:118 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:118 #: src/Module/Settings/Display.php:302 src/Util/Temporal.php:339 msgid "month" msgstr "月" -#: src/Model/Event.php:450 src/Module/Calendar/Show.php:119 +#: src/Model/Event.php:452 src/Module/Calendar/Show.php:119 #: src/Module/Settings/Display.php:303 src/Util/Temporal.php:340 msgid "week" msgstr "週間" -#: src/Model/Event.php:451 src/Module/Calendar/Show.php:120 +#: src/Model/Event.php:453 src/Module/Calendar/Show.php:120 #: src/Module/Settings/Display.php:304 src/Util/Temporal.php:341 msgid "day" msgstr "日" -#: src/Model/Event.php:453 +#: src/Model/Event.php:455 msgid "No events to display" msgstr "表示するイベントはありません" -#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Model/Event.php:504 src/Module/Feed.php:56 #: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "このプロフィールへのアクセスは制限されています。" -#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:52 +#: src/Model/Event.php:545 src/Module/Calendar/Event/Show.php:52 msgid "Event not found." msgstr "" -#: src/Model/Event.php:623 +#: src/Model/Event.php:624 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:650 +#: src/Model/Event.php:651 msgid "Edit event" msgstr "イベントを編集" -#: src/Model/Event.php:651 +#: src/Model/Event.php:652 msgid "Duplicate event" msgstr "重複イベント" -#: src/Model/Event.php:652 +#: src/Model/Event.php:653 msgid "Delete event" msgstr "イベントを削除" -#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 +#: src/Model/Event.php:883 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:883 +#: src/Model/Event.php:884 msgid "D g:i A" msgstr "D g:i A" -#: src/Model/Event.php:884 +#: src/Model/Event.php:885 msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:947 src/Model/Event.php:949 +#: src/Model/Event.php:948 src/Model/Event.php:950 msgid "Show map" msgstr "地図を表示" -#: src/Model/Event.php:948 +#: src/Model/Event.php:949 msgid "Hide map" msgstr "地図を隠す" -#: src/Model/Event.php:1041 +#: src/Model/Event.php:1042 #, php-format msgid "%s's birthday" msgstr "%sの誕生日" -#: src/Model/Event.php:1042 +#: src/Model/Event.php:1043 #, php-format msgid "Happy Birthday %s" msgstr "ハッピーバースデー %s" -#: src/Model/Item.php:2323 +#: src/Model/Item.php:2331 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2325 +#: src/Model/Item.php:2333 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2328 +#: src/Model/Item.php:2336 #, php-format msgid "" "Detected languages in this post:\n" "%s" msgstr "" -#: src/Model/Item.php:3277 +#: src/Model/Item.php:3285 msgid "activity" msgstr "アクティビティ" -#: src/Model/Item.php:3279 +#: src/Model/Item.php:3287 msgid "comment" msgstr "" -#: src/Model/Item.php:3282 src/Module/Post/Tag/Add.php:109 +#: src/Model/Item.php:3290 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "投稿" -#: src/Model/Item.php:3452 +#: src/Model/Item.php:3463 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3454 +#: src/Model/Item.php:3465 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3456 +#: src/Model/Item.php:3467 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3460 +#: src/Model/Item.php:3471 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3969 +#: src/Model/Item.php:3980 msgid "bytes" msgstr "バイト" -#: src/Model/Item.php:4000 +#: src/Model/Item.php:4011 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" msgstr[0] "" -#: src/Model/Item.php:4002 +#: src/Model/Item.php:4013 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" -#: src/Model/Item.php:4007 +#: src/Model/Item.php:4018 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" -#: src/Model/Item.php:4009 +#: src/Model/Item.php:4020 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" -#: src/Model/Item.php:4011 +#: src/Model/Item.php:4022 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:4052 src/Model/Item.php:4053 +#: src/Model/Item.php:4063 src/Model/Item.php:4064 msgid "View on separate page" msgstr "個別のページで見る" @@ -3564,7 +3569,7 @@ msgstr "個別のページで見る" msgid "[no subject]" msgstr "[件名なし]" -#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 +#: src/Model/Photo.php:1192 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "ウォール写真" @@ -3577,7 +3582,7 @@ msgstr "プロフィール編集" msgid "Change profile photo" msgstr "プロフィール写真を変更" -#: src/Model/Profile.php:357 src/Module/Directory.php:139 +#: src/Model/Profile.php:357 src/Module/Directory.php:138 #: src/Module/Profile/Profile.php:200 msgid "Homepage:" msgstr "ホームページ:" @@ -3667,7 +3672,7 @@ msgstr "嫌いなもの:" msgid "Title/Description:" msgstr "タイトル説明:" -#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:176 +#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:174 #: src/Module/Moderation/Report/Create.php:266 #: src/Module/Moderation/Summary.php:65 msgid "Summary" @@ -3718,59 +3723,59 @@ msgstr "" msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "重大なエラー:セキュリティキーの生成に失敗しました。" -#: src/Model/User.php:740 src/Model/User.php:773 +#: src/Model/User.php:739 src/Model/User.php:772 msgid "Login failed" msgstr "ログインに失敗しました" -#: src/Model/User.php:805 +#: src/Model/User.php:804 msgid "Not enough information to authenticate" msgstr "認証に十分な情報がありません" -#: src/Model/User.php:930 +#: src/Model/User.php:929 msgid "Password can't be empty" msgstr "パスワードは空にできません" -#: src/Model/User.php:972 +#: src/Model/User.php:971 msgid "Empty passwords are not allowed." msgstr "空のパスワードは許可されていません。" -#: src/Model/User.php:976 +#: src/Model/User.php:975 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "新しいパスワードは公開データダンプで公開されています。別のパスワードを選択してください。" -#: src/Model/User.php:980 +#: src/Model/User.php:979 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:984 +#: src/Model/User.php:983 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1193 +#: src/Model/User.php:1192 msgid "Passwords do not match. Password unchanged." msgstr "パスワードが一致していません。パスワードは変更されていません。" -#: src/Model/User.php:1200 +#: src/Model/User.php:1199 msgid "An invitation is required." msgstr "招待状が必要です。" -#: src/Model/User.php:1204 +#: src/Model/User.php:1203 msgid "Invitation could not be verified." msgstr "招待を確認できませんでした。" -#: src/Model/User.php:1212 +#: src/Model/User.php:1211 msgid "Invalid OpenID url" msgstr "無効なOpenID URL" -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "指定したOpenIDでログイン中に問題が発生しました。 IDの正しいスペルを確認してください。" -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "The error message was:" msgstr "エラーメッセージは次のとおりです。" @@ -3959,57 +3964,57 @@ msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:51 +#: src/Module/Admin/Addons/Details.php:49 msgid "Addon not found." msgstr "アドオンが見つかりません。" -#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 +#: src/Module/Admin/Addons/Details.php:60 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "アドオン%sを無効にしました。" -#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 +#: src/Module/Admin/Addons/Details.php:63 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "アドオン%sが有効になりました。" -#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Addons/Details.php:72 #: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "無効にする" -#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Addons/Details.php:75 #: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351 msgid "Enable" msgstr "有効にする" -#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Addons/Details.php:95 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:175 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Summary.php:173 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:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/Admin/Addons/Details.php:96 src/Module/Admin/Addons/Index.php:60 #: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:127 msgid "Addons" msgstr "アドオン" -#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Addons/Details.php:97 #: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "トグル" -#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Addons/Details.php:104 #: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "著者:" -#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Addons/Details.php:105 #: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "メンテナー:" @@ -4026,9 +4031,10 @@ msgstr "アドオン %s のインストールに失敗しました。" #: 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:545 src/Module/Settings/Addons.php:64 -#: src/Module/Settings/Connectors.php:149 -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Account.php:507 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/Features.php:61 msgid "Save Settings" @@ -4045,62 +4051,62 @@ msgid "" "official addon repository at %1$s." msgstr "" -#: src/Module/Admin/DBSync.php:37 +#: src/Module/Admin/DBSync.php:35 msgid "Update has been marked successful" msgstr "更新は正常にマークされました" -#: src/Module/Admin/DBSync.php:45 +#: src/Module/Admin/DBSync.php:43 #, php-format msgid "Database structure update %s was successfully applied." msgstr "データベース構造の更新 %s が正常に適用されました。" -#: src/Module/Admin/DBSync.php:47 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "データベース構造の更新 %s は次のエラーで失敗しました: %s" -#: src/Module/Admin/DBSync.php:62 +#: src/Module/Admin/DBSync.php:60 #, php-format msgid "Executing %s failed with error: %s" msgstr "次のエラーで %s の実行に失敗しました: %s" -#: src/Module/Admin/DBSync.php:64 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Update %s was successfully applied." msgstr "更新 %s が正常に適用されました。" -#: src/Module/Admin/DBSync.php:67 +#: src/Module/Admin/DBSync.php:65 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "更新 %s はステータスを返しませんでした。成功した場合は不明です。" -#: src/Module/Admin/DBSync.php:70 +#: src/Module/Admin/DBSync.php:68 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "呼び出される必要のある機能 %s について追加の更新はありませんでした。" -#: src/Module/Admin/DBSync.php:91 +#: src/Module/Admin/DBSync.php:89 msgid "No failed updates." msgstr "失敗した更新はありません。" -#: src/Module/Admin/DBSync.php:92 +#: src/Module/Admin/DBSync.php:90 msgid "Check database structure" msgstr "データベース構造を確認する" -#: src/Module/Admin/DBSync.php:96 +#: src/Module/Admin/DBSync.php:94 msgid "Failed Updates" msgstr "失敗した更新" -#: src/Module/Admin/DBSync.php:97 +#: src/Module/Admin/DBSync.php:95 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "これには、ステータスを返さなかった1139より前の更新は含まれません。" -#: src/Module/Admin/DBSync.php:98 +#: src/Module/Admin/DBSync.php:96 msgid "Mark success (if update was manually applied)" msgstr "成功をマークする(更新が手動で適用された場合)" -#: src/Module/Admin/DBSync.php:99 +#: src/Module/Admin/DBSync.php:97 msgid "Attempt to execute this update step automatically" msgstr "この更新手順を自動的に実行しようとします" @@ -5657,12 +5663,12 @@ msgstr "" msgid "Database (legacy)" msgstr "データベース(レガシー)" -#: src/Module/Admin/Summary.php:41 +#: src/Module/Admin/Summary.php:39 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:45 +#: src/Module/Admin/Summary.php:43 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5673,7 +5679,7 @@ msgid "" " an automatic conversion.
" msgstr "DBは引き続きMyISAMテーブルで実行されます。エンジンタイプをInnoDBに変更する必要があります。 Friendicaは今後InnoDBのみの機能を使用するため、これを変更する必要があります。テーブルエンジンの変換に役立つガイドについては、こちらをご覧ください。 Friendicaインストールの php bin/console.php dbstructure toinnodb コマンドを使用して自動変換することもできます。
" -#: src/Module/Admin/Summary.php:50 +#: src/Module/Admin/Summary.php:48 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5684,7 +5690,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:60 +#: src/Module/Admin/Summary.php:58 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5692,46 +5698,46 @@ msgid "" " to %d. See here for more information.
" msgstr "" -#: src/Module/Admin/Summary.php:68 +#: src/Module/Admin/Summary.php:66 #, 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 "ダウンロード可能なFriendicaの新しいバージョンがあります。現在のバージョンは%1$s 、アップストリームバージョンは%2$sです。" -#: src/Module/Admin/Summary.php:76 +#: src/Module/Admin/Summary.php:74 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 "データベースの更新に失敗しました。コマンドラインから「php bin/console.php dbstructure update」を実行し、表示される可能性のあるエラーを確認してください。" -#: src/Module/Admin/Summary.php:80 +#: src/Module/Admin/Summary.php:78 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 "最後の更新に失敗しました。コマンドラインから「php bin/console.php dbstructure update」を実行し、表示される可能性のあるエラーを確認してください。 (エラーの一部は、おそらくログファイル内にあります。)" -#: src/Module/Admin/Summary.php:84 +#: src/Module/Admin/Summary.php:82 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:89 +#: src/Module/Admin/Summary.php:87 msgid "The worker was never executed. Please check your database structure!" msgstr "ワーカーは実行されませんでした。データベース構造を確認してください!" -#: src/Module/Admin/Summary.php:91 +#: src/Module/Admin/Summary.php:89 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "最後のワーカー実行は%s UTCでした。これは1時間以上前です。 crontabの設定を確認してください。" -#: src/Module/Admin/Summary.php:96 +#: src/Module/Admin/Summary.php:94 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5740,7 +5746,7 @@ msgid "" "help with the transition." msgstr "Friendicaの設定はconfig/local.config.phpに保存されるようになりました。config/local-sample.config.phpをコピーし、設定を .htconfig.php から移動してください。移行のヘルプについては、 Configヘルプページをご覧ください。" -#: src/Module/Admin/Summary.php:100 +#: src/Module/Admin/Summary.php:98 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5749,7 +5755,7 @@ msgid "" "page for help with the transition." msgstr "Friendicaの設定はconfig/local.config.phpに保存されるようになりました。config/ local-sample.config.phpをコピーして、設定を config / local.ini.php から移動してください。移行のヘルプについては、 Configヘルプページをご覧ください。" -#: src/Module/Admin/Summary.php:106 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5757,40 +5763,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "システムで %s に到達できません。これは、サーバー間の通信を妨げる重大な構成の問題です。ヘルプについては、インストールページをご覧ください。" -#: src/Module/Admin/Summary.php:130 +#: src/Module/Admin/Summary.php:128 #, 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 "Friendicaのsystem.basepathは '%s' から '%s' に更新されました。差異を避けるために、データベースからsystem.basepathを削除してください。" -#: src/Module/Admin/Summary.php:138 +#: src/Module/Admin/Summary.php:136 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "Friendicaの現在のsystem.basepath '%s' は間違っています。構成ファイル '%s'は使用されていません。" -#: src/Module/Admin/Summary.php:146 +#: src/Module/Admin/Summary.php:144 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "Friendicaの現在のsystem.basepath '%s'は、構成ファイル '%s'と等しくありません。設定を修正してください。" -#: src/Module/Admin/Summary.php:157 +#: src/Module/Admin/Summary.php:155 msgid "Message queues" msgstr "メッセージキュー" -#: src/Module/Admin/Summary.php:160 +#: src/Module/Admin/Summary.php:158 msgid "Server Settings" msgstr "サーバー設定" -#: src/Module/Admin/Summary.php:178 +#: src/Module/Admin/Summary.php:176 msgid "Version" msgstr "バージョン" -#: src/Module/Admin/Summary.php:182 +#: src/Module/Admin/Summary.php:180 msgid "Active addons" msgstr "アクティブなアドオン" @@ -6052,8 +6058,8 @@ msgstr "" msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:134 -#: src/Module/Moderation/Users/Index.php:144 +#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:137 +#: src/Module/Moderation/Users/Index.php:147 msgid "Users" msgstr "ユーザー" @@ -6089,7 +6095,7 @@ msgstr "" msgid "Only You Can See This" msgstr "これしか見えない" -#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:67 +#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:65 msgid "Scheduled Posts" msgstr "" @@ -6140,7 +6146,7 @@ msgstr "二要素認証" msgid "Display" msgstr "表示" -#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:195 +#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:189 msgid "Social Networks" msgstr "ソーシャルネットワーク" @@ -6156,11 +6162,15 @@ msgstr "接続されたアプリ" msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:84 +#: src/Module/BaseSettings.php:155 src/Module/Settings/ContactImport.php:109 +msgid "Import Contacts" +msgstr "コンタクトをインポートする" + +#: src/Module/BaseSettings.php:162 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "個人データのエクスポート" -#: src/Module/BaseSettings.php:162 +#: src/Module/BaseSettings.php:169 msgid "Remove account" msgstr "アカウントを削除" @@ -6289,8 +6299,8 @@ msgstr "リスト" msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:54 src/Module/Circle.php:202 -#: src/Module/Circle.php:226 +#: src/Module/Circle.php:54 src/Module/Circle.php:203 +#: src/Module/Circle.php:227 msgid "Circle not found." msgstr "" @@ -6298,15 +6308,15 @@ msgstr "" msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:78 +#: src/Module/Circle.php:80 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Circle.php:86 src/Module/Circle.php:95 #: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 -#: 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/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/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 @@ -6315,75 +6325,75 @@ msgstr "" msgid "Contact not found." msgstr "コンタクトが見つかりません。" -#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 +#: src/Module/Circle.php:90 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "無効なコンタクト。" -#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 +#: src/Module/Circle.php:99 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "コンタクトが削除されます。" -#: src/Module/Circle.php:103 +#: src/Module/Circle.php:105 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:106 +#: src/Module/Circle.php:108 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:110 +#: src/Module/Circle.php:112 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:113 +#: src/Module/Circle.php:115 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:119 msgid "Bad request." msgstr "要求の形式が正しくありません。" -#: src/Module/Circle.php:158 +#: src/Module/Circle.php:160 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:159 +#: src/Module/Circle.php:161 msgid "Filter" msgstr "フィルタ" -#: src/Module/Circle.php:165 +#: src/Module/Circle.php:167 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:207 +#: src/Module/Circle.php:208 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:258 +#: src/Module/Circle.php:259 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:268 +#: src/Module/Circle.php:269 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:278 +#: src/Module/Circle.php:279 msgid "Members" msgstr "会員" -#: src/Module/Circle.php:281 +#: src/Module/Circle.php:282 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:297 +#: src/Module/Circle.php:298 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:320 +#: src/Module/Circle.php:321 msgid "Click on a contact to add or remove." msgstr "コンタクトをクリックして追加・削除" -#: src/Module/Circle.php:337 +#: src/Module/Circle.php:338 msgid "Add contact to circle" msgstr "" @@ -6416,7 +6426,7 @@ msgid "Only show blocked contacts" msgstr "ブロックされたコンタクトのみを表示" #: src/Module/Contact.php:349 src/Module/Contact.php:421 -#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:386 msgid "Ignored" msgstr "無視された" @@ -6467,8 +6477,8 @@ 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:124 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Blocked.php:127 +#: src/Module/Moderation/Users/Index.php:143 msgid "Unblock" msgstr "ブロック解除" @@ -6544,12 +6554,12 @@ 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:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:56 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "名" @@ -7109,11 +7119,11 @@ msgstr "" msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:190 +#: src/Module/Conversation/Timeline.php:193 msgid "Include" msgstr "" -#: src/Module/Conversation/Timeline.php:191 +#: src/Module/Conversation/Timeline.php:194 msgid "Hide" msgstr "" @@ -7381,19 +7391,19 @@ msgstr "" msgid "Lookup address:" msgstr "" -#: src/Module/Directory.php:61 +#: src/Module/Directory.php:60 msgid "No entries (some entries may be hidden)." msgstr "エントリなし(一部のエントリは非表示になる場合があります)" -#: src/Module/Directory.php:77 +#: src/Module/Directory.php:76 msgid "Find on this site" msgstr "このサイトで見つける" -#: src/Module/Directory.php:79 +#: src/Module/Directory.php:78 msgid "Results for:" msgstr "の結果:" -#: src/Module/Directory.php:81 +#: src/Module/Directory.php:80 msgid "Site Directory" msgstr "サイトディレクトリ" @@ -7646,39 +7656,39 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "新しいFriendicaノード登録ページに移動して、新しいユーザーとして登録します。管理者の電子メールとして入力したものと同じ電子メールを使用することを忘れないでください。これにより、サイト管理者パネルに入ることができます。" -#: src/Module/Invite.php:43 +#: src/Module/Invite.php:42 msgid "Total invitation limit exceeded." msgstr "合計招待制限を超えました。" -#: src/Module/Invite.php:68 +#: src/Module/Invite.php:67 #, php-format msgid "%s : Not a valid email address." msgstr "%s :有効なメールアドレスではありません。" -#: src/Module/Invite.php:94 +#: src/Module/Invite.php:93 msgid "Please join us on Friendica" msgstr "Friendicaにご参加ください" -#: src/Module/Invite.php:103 +#: src/Module/Invite.php:102 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "招待制限を超えました。サイト管理者に連絡してください。" -#: src/Module/Invite.php:107 +#: src/Module/Invite.php:106 #, php-format msgid "%s : Message delivery failed." msgstr "%s :メッセージの配信に失敗しました。" -#: src/Module/Invite.php:111 +#: src/Module/Invite.php:110 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%dメッセージを送信しました。" -#: src/Module/Invite.php:129 +#: src/Module/Invite.php:127 msgid "You have no more invitations available" msgstr "利用可能な招待はもうありません" -#: src/Module/Invite.php:136 +#: src/Module/Invite.php:134 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7686,14 +7696,14 @@ msgid "" " other social networks." msgstr "参加できる公開サイトのリストについては、 %sにアクセスしてください。他のサイトのFriendicaメンバーは、他の多くのソーシャルネットワークのメンバーと同様に、お互いに接続できます。" -#: src/Module/Invite.php:138 +#: src/Module/Invite.php:136 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "この招待を受け入れるには、 %sまたはその他の公開Friendica Webサイトにアクセスして登録してください。" -#: src/Module/Invite.php:139 +#: src/Module/Invite.php:137 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7702,48 +7712,48 @@ msgid "" "sites you can join." msgstr "Friendicaサイトはすべて相互接続して、メンバーが所有および管理する、プライバシーが強化された巨大なソーシャルWebを作成します。また、多くの従来のソーシャルネットワークに接続できます。参加できるFriendicaサイトのリストについては、 %sをご覧ください。" -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:141 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "申し訳ございません。このシステムは現在、他の公開サイトに接続したり、メンバーを招待するようには構成されていません。" -#: src/Module/Invite.php:146 +#: src/Module/Invite.php:144 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 "Friendicaサイトはすべて相互接続して、メンバーが所有および管理する、プライバシーが強化された巨大なソーシャルWebを作成します。また、多くの従来のソーシャルネットワークに接続できます。" -#: src/Module/Invite.php:145 +#: src/Module/Invite.php:143 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "この招待を受け入れるには、 %sアクセスして登録してください。" -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:151 msgid "Send invitations" msgstr "招待状を送信する" -#: src/Module/Invite.php:154 +#: src/Module/Invite.php:152 msgid "Enter email addresses, one per line:" msgstr "電子メールアドレスを1行に1つずつ入力します。" -#: src/Module/Invite.php:158 +#: src/Module/Invite.php:156 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Friendicaで私や他の親しい友人と一緒に参加してください。より良いソーシャルWebの作成を手伝ってください。" -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "You will need to supply this invitation code: $invite_code" msgstr "この招待コードを提供する必要があります:$ invite_code" -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "登録したら、次のプロフィールページから接続してください。" -#: src/Module/Invite.php:162 +#: src/Module/Invite.php:160 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" @@ -7845,12 +7855,12 @@ msgid "File upload failed." msgstr "アップロードが失敗しました。" #: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 -#: src/Module/Profile/Photos.php:204 +#: src/Module/Profile/Photos.php:212 #: 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:224 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:232 #: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "画像アップロードに失敗しました。" @@ -7883,23 +7893,23 @@ msgstr "" msgid "List of pending user deletions" msgstr "" -#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:469 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:431 msgid "Normal Account Page" msgstr "通常のアカウントページ" -#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:476 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:438 msgid "Soapbox Page" msgstr "Soapboxページ" -#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:483 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:445 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:490 +#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:452 msgid "Public Group - Restricted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:497 +#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:459 msgid "Automatic Friend Page" msgstr "自動友達ページ" @@ -7908,22 +7918,22 @@ msgid "Private Group" msgstr "" #: src/Module/Moderation/BaseUsers.php:118 -#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:440 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:402 msgid "Personal Page" msgstr "個人ページ" #: src/Module/Moderation/BaseUsers.php:119 -#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:447 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:409 msgid "Organisation Page" msgstr "組織ページ" #: src/Module/Moderation/BaseUsers.php:120 -#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:454 +#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:416 msgid "News Page" msgstr "ニュースページ" #: src/Module/Moderation/BaseUsers.php:121 -#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:461 +#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:423 msgid "Community Group" msgstr "" @@ -7952,9 +7962,9 @@ msgid "Block Remote Contact" msgstr "リモートコンタクトをブロック" #: src/Module/Moderation/Blocklist/Contact.php:102 -#: 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/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:138 #: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "すべて選択" @@ -8289,9 +8299,9 @@ msgid "Tag" msgstr "" #: src/Module/Moderation/Item/Source.php:77 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 -#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 +#: src/Module/Moderation/Users/Index.php:129 msgid "Type" msgstr "タイプ" @@ -8555,7 +8565,7 @@ msgstr[0] "" msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:418 +#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:380 msgid "Channel Relay" msgstr "" @@ -8575,11 +8585,11 @@ msgid_plural "%s users blocked" msgstr[0] "%sユーザーがブロックされました" #: src/Module/Moderation/Users/Active.php:37 -#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Active.php:74 #: src/Module/Moderation/Users/Blocked.php:37 -#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Blocked.php:74 #: src/Module/Moderation/Users/Index.php:44 -#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Index.php:81 msgid "You can't remove yourself" msgstr "自分を削除することはできません" @@ -8591,81 +8601,81 @@ msgid "%s user deleted" msgid_plural "%s users deleted" msgstr[0] "%sユーザーが削除されました" -#: src/Module/Moderation/Users/Active.php:69 -#: src/Module/Moderation/Users/Blocked.php:69 -#: src/Module/Moderation/Users/Index.php:76 +#: src/Module/Moderation/Users/Active.php:72 +#: src/Module/Moderation/Users/Blocked.php:72 +#: src/Module/Moderation/Users/Index.php:79 #, php-format msgid "User \"%s\" deleted" msgstr "ユーザー\"%s\"が削除されました" -#: src/Module/Moderation/Users/Active.php:79 -#: src/Module/Moderation/Users/Index.php:86 +#: src/Module/Moderation/Users/Active.php:82 +#: src/Module/Moderation/Users/Index.php:89 #, php-format msgid "User \"%s\" blocked" msgstr "ユーザー\"%s\"がブロックされました" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Register date" msgstr "登録日" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last login" msgstr "前回のログイン" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last public item" msgstr "" -#: src/Module/Moderation/Users/Active.php:120 +#: src/Module/Moderation/Users/Active.php:123 msgid "Active Accounts" msgstr "" -#: src/Module/Moderation/Users/Active.php:124 -#: src/Module/Moderation/Users/Blocked.php:123 -#: src/Module/Moderation/Users/Index.php:139 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "User blocked" msgstr "ユーザーがブロックされました" -#: src/Module/Moderation/Users/Active.php:125 -#: src/Module/Moderation/Users/Blocked.php:125 -#: src/Module/Moderation/Users/Index.php:141 +#: src/Module/Moderation/Users/Active.php:128 +#: src/Module/Moderation/Users/Blocked.php:128 +#: src/Module/Moderation/Users/Index.php:144 msgid "Site admin" msgstr "サイト管理者" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:142 +#: src/Module/Moderation/Users/Active.php:129 +#: src/Module/Moderation/Users/Blocked.php:129 +#: src/Module/Moderation/Users/Index.php:145 msgid "Account expired" msgstr "アカウントの有効期限が切れました" -#: src/Module/Moderation/Users/Active.php:127 -#: src/Module/Moderation/Users/Index.php:145 +#: src/Module/Moderation/Users/Active.php:130 +#: src/Module/Moderation/Users/Index.php:148 msgid "Create a new user" msgstr "" -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:132 -#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:154 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "選択したユーザーは削除されます!\n\nこれらのユーザーがこのサイトに投稿したものはすべて完全に削除されます!\n\nよろしいですか?" -#: src/Module/Moderation/Users/Active.php:134 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:155 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" @@ -8678,13 +8688,13 @@ msgid "%s user unblocked" msgid_plural "%s users unblocked" msgstr[0] "%sユーザーのブロックを解除しました" -#: src/Module/Moderation/Users/Blocked.php:78 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Blocked.php:81 +#: src/Module/Moderation/Users/Index.php:95 #, php-format msgid "User \"%s\" unblocked" msgstr "ユーザー\"%s\"のブロックを解除しました" -#: src/Module/Moderation/Users/Blocked.php:120 +#: src/Module/Moderation/Users/Blocked.php:123 msgid "Blocked Users" msgstr "" @@ -8717,11 +8727,11 @@ msgid "Users awaiting permanent deletion" msgstr "" #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:149 msgid "Permanent deletion" msgstr "永久削除" -#: src/Module/Moderation/Users/Index.php:136 +#: src/Module/Moderation/Users/Index.php:139 msgid "User waiting for permanent deletion" msgstr "永久削除を待っているユーザー" @@ -8884,7 +8894,7 @@ msgstr "" msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:91 +#: src/Module/OAuth/Token.php:73 msgid "Unsupported or missing grant type" msgstr "" @@ -8936,7 +8946,7 @@ msgstr "無視" msgid "Keep this window open until done." msgstr "ウィンドウを閉じずにお待ちください…" -#: src/Module/OpenSearch.php:57 +#: src/Module/OpenSearch.php:55 #, php-format msgid "Search in Friendica %s" msgstr "" @@ -8950,12 +8960,12 @@ msgstr "" msgid "The Photo with id %s is not available." msgstr "ID%sの写真は利用できません" -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:178 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:180 #, php-format msgid "Invalid photo with id %s." msgstr "ID %s の写真が無効です。" @@ -8988,15 +8998,15 @@ msgstr "オーディオリンクを挿入" msgid "audio link" msgstr "オーディオリンク" -#: src/Module/Post/Tag/Remove.php:92 +#: src/Module/Post/Tag/Remove.php:93 msgid "Remove Item Tag" msgstr "タグの削除" -#: src/Module/Post/Tag/Remove.php:93 +#: src/Module/Post/Tag/Remove.php:94 msgid "Select a tag to remove: " msgstr "削除するタグを選択:" -#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Post/Tag/Remove.php:95 #: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "削除" @@ -9075,32 +9085,32 @@ msgstr "%sのコメント" msgid "%s's timeline" msgstr "%sのタイムライン" -#: src/Module/Profile/Photos.php:153 src/Module/Profile/Photos.php:156 -#: src/Module/Profile/Photos.php:181 +#: src/Module/Profile/Photos.php:157 src/Module/Profile/Photos.php:160 +#: src/Module/Profile/Photos.php:189 #: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "画像サイズ上限 %s を超えています。" -#: src/Module/Profile/Photos.php:159 +#: src/Module/Profile/Photos.php:163 msgid "Image upload didn't complete, please try again" msgstr "画像のアップロードが完了しませんでした。もう一度お試しください" -#: src/Module/Profile/Photos.php:162 +#: src/Module/Profile/Photos.php:166 msgid "Image file is missing" msgstr "画像ファイルがありません" -#: src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:171 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "サーバーは現在、新しいファイルのアップロードを受け入れられません。管理者に連絡してください" -#: src/Module/Profile/Photos.php:189 +#: src/Module/Profile/Photos.php:197 msgid "Image file is empty." msgstr "画像ファイルが空です。" -#: src/Module/Profile/Photos.php:341 +#: src/Module/Profile/Photos.php:349 msgid "View Album" msgstr "アルバムを見る" @@ -9215,15 +9225,15 @@ msgid "" "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:69 +#: src/Module/Profile/Schedule.php:67 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:70 +#: src/Module/Profile/Schedule.php:68 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:71 +#: src/Module/Profile/Schedule.php:69 msgid "Remove post" msgstr "" @@ -9288,7 +9298,7 @@ msgid "Please repeat your e-mail address:" msgstr "メールアドレスを再入力してください。" #: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:551 +#: src/Module/Settings/Account.php:513 msgid "New Password:" msgstr "新しいパスワード:" @@ -9297,7 +9307,7 @@ 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:552 +#: src/Module/Settings/Account.php:514 msgid "Confirm:" msgstr "確認:" @@ -9481,20 +9491,20 @@ msgstr "ログアウトしました。" msgid "OpenID protocol error. No ID returned" msgstr "OpenID プロトコルエラー。返答にてIDが返されませんでした。" -#: src/Module/Security/OpenID.php:76 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "アカウントが見つかりませんでした。 既存のアカウントにログインして、OpenIDを追加してください。" -#: src/Module/Security/OpenID.php:78 +#: src/Module/Security/OpenID.php:80 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "アカウントが見つかりませんでした。 OpenIDを追加するには、新しいアカウントを登録するか、既存のアカウントにログインしてください。" #: src/Module/Security/PasswordTooLong.php:43 -#: src/Module/Settings/Account.php:51 +#: src/Module/Settings/Account.php:49 msgid "Passwords do not match." msgstr "パスワードが一致していません。" @@ -9503,7 +9513,7 @@ msgid "Password does not need changing." msgstr "" #: src/Module/Security/PasswordTooLong.php:63 -#: src/Module/Settings/Account.php:65 +#: src/Module/Settings/Account.php:63 msgid "Password unchanged." msgstr "パスワードは変更されていません。" @@ -9523,24 +9533,24 @@ msgid "Update Password" msgstr "" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Current Password:" msgstr "現在のパスワード:" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Your current password to confirm the changes" msgstr "変更を確認するための現在のパスワード" #: src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:537 +#: src/Module/Settings/Account.php:499 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:538 +#: src/Module/Settings/Account.php:500 msgid "Password length is limited to 72 characters." msgstr "" @@ -9644,129 +9654,121 @@ msgstr "認証アプリからコードを入力してください" msgid "Verify code and complete login" msgstr "コードを確認してログインを完了する" -#: src/Module/Settings/Account.php:80 +#: src/Module/Settings/Account.php:78 msgid "Please use a shorter name." msgstr "短い名前を使用してください。" -#: src/Module/Settings/Account.php:83 +#: src/Module/Settings/Account.php:81 msgid "Name too short." msgstr "名前が短すぎます。" -#: src/Module/Settings/Account.php:92 +#: src/Module/Settings/Account.php:90 msgid "Wrong Password." msgstr "パスワードが間違っています。" -#: src/Module/Settings/Account.php:97 +#: src/Module/Settings/Account.php:95 msgid "Invalid email." msgstr "無効なメール。" -#: src/Module/Settings/Account.php:101 +#: src/Module/Settings/Account.php:99 msgid "Cannot change to that email." msgstr "そのメールに変更できません。" -#: 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 +#: 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 msgid "Settings were not updated." msgstr "設定が更新されませんでした。" -#: src/Module/Settings/Account.php:331 -msgid "Contact CSV file upload error" -msgstr "アップロードエラー:コンタクトCSVファイル" - -#: src/Module/Settings/Account.php:350 -msgid "Importing Contacts done" -msgstr "コンタクトのインポートが完了しました" - -#: src/Module/Settings/Account.php:363 +#: src/Module/Settings/Account.php:325 msgid "Relocate message has been send to your contacts" msgstr "再配置メッセージがコンタクトに送信されました" -#: src/Module/Settings/Account.php:380 +#: src/Module/Settings/Account.php:342 msgid "Unable to find your profile. Please contact your admin." msgstr "プロフィールが見つかりません。管理者に連絡してください。" -#: src/Module/Settings/Account.php:420 +#: src/Module/Settings/Account.php:382 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:430 +#: src/Module/Settings/Account.php:392 msgid "Personal Page Subtypes" msgstr "個人ページのサブタイプ" -#: src/Module/Settings/Account.php:431 +#: src/Module/Settings/Account.php:393 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:442 +#: src/Module/Settings/Account.php:404 msgid "Account for a personal profile." msgstr "個人プロフィールを説明します。" -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:411 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "コンタクトリクエストを「フォロワー」として自動的に承認します。組織に適したアカウントです。" -#: src/Module/Settings/Account.php:456 +#: src/Module/Settings/Account.php:418 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "コンタクトのリクエストを「フォロワー」として自動的に承認します。ニュース再配信に適したアカウントです。" -#: src/Module/Settings/Account.php:463 +#: src/Module/Settings/Account.php:425 msgid "Account for community discussions." msgstr "コミュニティディスカッションのアカウント。" -#: src/Module/Settings/Account.php:471 +#: src/Module/Settings/Account.php:433 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "\"Friends \"および\"Followers \"の手動承認を必要とする通常の個人プロフィールのアカウント。" -#: src/Module/Settings/Account.php:478 +#: src/Module/Settings/Account.php:440 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "コンタクトリクエストを「フォロワー」として自動的に承認します。一般公開プロフィールのアカウントです。" -#: src/Module/Settings/Account.php:485 +#: src/Module/Settings/Account.php:447 msgid "Automatically approves all contact requests." msgstr "すべてのコンタクトリクエストを自動的に承認します。" -#: src/Module/Settings/Account.php:492 +#: src/Module/Settings/Account.php:454 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:499 +#: src/Module/Settings/Account.php:461 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "コンタクトのリクエストを「フレンド」として自動的に承認します。知名度のあるプロフィールに適したアカウントです。" -#: src/Module/Settings/Account.php:504 +#: src/Module/Settings/Account.php:466 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:506 +#: src/Module/Settings/Account.php:468 msgid "Requires manual approval of contact requests." msgstr "コンタクトリクエストの手動承認が必要です。" -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(オプション)このOpenIDがこのアカウントにログインできるようにします。" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 msgid "Publish your profile in your local site directory?" msgstr "ローカルサイトディレクトリにプロフィールを公開しますか?" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9774,94 +9776,94 @@ msgid "" " system settings." msgstr "プロフィールはこのノードのローカルディレクトリで公開されます。システム設定によっては、プロフィールの詳細が公開される場合があります。" -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:491 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "あなたのプロフィールはグローバルなFriendicaディレクトリに公開されます(例: %s )。" -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:504 msgid "Account Settings" msgstr "アカウント設定" -#: src/Module/Settings/Account.php:543 +#: src/Module/Settings/Account.php:505 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "IDアドレスは ' %s ' または ' %s 'です。" -#: src/Module/Settings/Account.php:550 +#: src/Module/Settings/Account.php:512 msgid "Password Settings" msgstr "パスワード設定" -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Leave password fields blank unless changing" msgstr "変更しない限り、パスワードフィールドは空白のままにしてください" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Password:" msgstr "パスワード:" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Your current password to confirm the changes of the email address" msgstr "変更を確認するための電子メールアドレスの現在のパスワード" -#: src/Module/Settings/Account.php:557 +#: src/Module/Settings/Account.php:519 msgid "Delete OpenID URL" msgstr "OpenID URLを削除" -#: src/Module/Settings/Account.php:559 +#: src/Module/Settings/Account.php:521 msgid "Basic Settings" msgstr "基本設定" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:522 #: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "表示名:" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:523 msgid "Email Address:" msgstr "電子メールアドレス:" -#: src/Module/Settings/Account.php:562 +#: src/Module/Settings/Account.php:524 msgid "Your Timezone:" msgstr "あなたのタイムゾーン:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "Your Language:" msgstr "あなたの言語:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "friendicaインターフェイスを表示し、メールを送信するために使用する言語を設定します" -#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Account.php:526 msgid "Default Post Location:" msgstr "デフォルトの投稿場所:" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:527 msgid "Use Browser Location:" msgstr "ブラウザのロケーションを使用:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:529 msgid "Security and Privacy Settings" msgstr "セキュリティとプライバシーの設定" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "Maximum Friend Requests/Day:" msgstr "1日あたりの友達リクエスト上限:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "(to prevent spam abuse)" msgstr "(スパムの悪用を防ぐため)" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 msgid "Allow your profile to be searchable globally?" msgstr "自分のプロフィールを世界中で検索できるようにしますか?" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 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 " @@ -9869,43 +9871,43 @@ msgid "" "indexed or not." msgstr "他の人があなたを簡単に見つけてフォローできるようにしたい場合は、この設定を有効にしてください。あなたのプロフィールはリモートシステムで検索可能です。この設定は、Friendicaが検索エンジンにあなたのプロフィールをインデックス化するかどうかも決定します。" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "プロフィールの閲覧者からコンタクト/友人リストを非表示にしますか?" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 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:573 +#: src/Module/Settings/Account.php:535 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:535 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:574 +#: src/Module/Settings/Account.php:536 msgid "Make public posts unlisted" msgstr "公開投稿を非表示にする" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:536 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:575 +#: src/Module/Settings/Account.php:537 msgid "Make all posted pictures accessible" msgstr "投稿した写真は全てアクセス可能にする" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:537 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 " @@ -9913,227 +9915,213 @@ msgid "" "public on your photo albums though." msgstr "このオプションは、投稿したすべての写真をダイレクトリンクでアクセスできるようにします。これは、他の多くのネットワークが写真のパーミッションを処理できないという問題を回避するためのものです。ただし、公開していない写真はフォトアルバムでは一般に公開されません。" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "Allow friends to post to your profile page?" msgstr "友人があなたのプロフィールページに投稿することを許可しますか?" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "コンタクトは、プロフィールウォールに投稿を書くことができます。これらの投稿はコンタクトに配信されます" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Allow friends to tag your posts?" msgstr "友達があなたの投稿にタグを付けることを許可しますか?" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Your contacts can add additional tags to your posts." msgstr "コンタクトは、投稿にタグを追加できます。" -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:540 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:541 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:542 msgid "Default Post Permissions" msgstr "投稿の既定の権限" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:546 msgid "Expiration settings" msgstr "有効期限設定" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "Automatically expire posts after this many days:" msgstr "この数日後に投稿を自動的に期限切れにします:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "空の場合、投稿は期限切れになりません。期限切れの投稿は削除されます" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "Expire posts" msgstr "投稿の有効期限" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "When activated, posts and comments will be expired." msgstr "有効にすると、投稿とコメントは期限切れになるでしょう。" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "Expire personal notes" msgstr "個人メモの有効期限" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "有効にすると、プロフィールページ上の個人メモは期限切れになるでしょう。" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "Expire starred posts" msgstr "スター付き投稿の有効期限" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "投稿にスターを付けると、投稿が期限切れにならないようにします。動作はこの設定で上書きされます。" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 msgid "Only expire posts by others" msgstr "他のユーザーによる投稿のみを期限切れにする" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 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:592 +#: src/Module/Settings/Account.php:554 msgid "Notification Settings" msgstr "通知設定" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:555 msgid "Send a notification email when:" msgstr "次の場合に通知メールを送信します。" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:556 msgid "You receive an introduction" msgstr "招待を受けます" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:557 msgid "Your introductions are confirmed" msgstr "あなたの招待が確認されました" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:558 msgid "Someone writes on your profile wall" msgstr "誰かがあなたのプロフィールウォールに書き込みます" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:559 msgid "Someone writes a followup comment" msgstr "誰かがフォローアップコメントを書く" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:560 msgid "You receive a private message" msgstr "プライベートメッセージを受け取ります" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:561 msgid "You receive a friend suggestion" msgstr "友達の提案を受け取ります" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:562 msgid "You are tagged in a post" msgstr "あなたは投稿でタグ付けされています" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:564 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:565 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:566 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:567 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:605 src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:567 src/Module/Settings/Account.php:568 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:568 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:569 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:570 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:571 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Activate desktop notifications" msgstr "デスクトップ通知を有効にする" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Show desktop popup on new notifications" msgstr "新しい通知にデスクトップポップアップを表示する" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:577 msgid "Text-only notification emails" msgstr "テキストのみの通知メール" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:579 msgid "Send text only notification emails, without the html part" msgstr "HTML部分なしで、テキストのみの通知メールを送信します" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:583 msgid "Show detailled notifications" msgstr "詳細な通知を表示" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:585 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "デフォルトでは、通知は項目ごとに1つの通知にまとめられます。有効にすると、すべての通知が表示されます。" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:589 msgid "Show notifications of ignored contacts" msgstr "無視されたコンタクトの通知を表示" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:591 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:632 +#: src/Module/Settings/Account.php:594 msgid "Advanced Account/Page Type Settings" msgstr "アカウント/ページタイプの詳細設定" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:595 msgid "Change the behaviour of this account for special situations" msgstr "特別な状況でこのアカウントの動作を変更する" -#: src/Module/Settings/Account.php:636 -msgid "Import Contacts" -msgstr "コンタクトをインポートする" - -#: src/Module/Settings/Account.php:637 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "古いアカウントからエクスポートしたCSVファイルをアップロードします。これは最初の列に、フォローしているアカウントのハンドルを含みます。" - -#: src/Module/Settings/Account.php:638 -msgid "Upload File" -msgstr "ファイルをアップロード" - -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:598 msgid "Relocate" msgstr "再配置" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:599 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:643 +#: src/Module/Settings/Account.php:600 msgid "Resend relocate message to contacts" msgstr "再配置メッセージをコンタクトに再送信する" @@ -10298,214 +10286,232 @@ msgstr "" msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:108 +#: src/Module/Settings/Connectors.php:107 msgid "Failed to connect with email account using the settings provided." msgstr "提供された設定を使用してメールアカウントに接続できませんでした。" -#: src/Module/Settings/Connectors.php:155 -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:150 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora(Socialhome、Hubzilla)" -#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:149 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:150 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:161 msgid "Email access is disabled on this site." msgstr "このサイトではメールアクセスが無効になっています。" -#: src/Module/Settings/Connectors.php:182 -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:176 +#: src/Module/Settings/Connectors.php:226 msgid "None" msgstr "無し" -#: src/Module/Settings/Connectors.php:186 +#: src/Module/Settings/Connectors.php:180 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "" -#: src/Module/Settings/Connectors.php:187 +#: src/Module/Settings/Connectors.php:181 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "" -#: src/Module/Settings/Connectors.php:188 +#: src/Module/Settings/Connectors.php:182 msgid "Embed the title in the body" msgstr "" -#: src/Module/Settings/Connectors.php:199 +#: src/Module/Settings/Connectors.php:193 msgid "General Social Media Settings" msgstr "一般的なソーシャルメディア設定" -#: src/Module/Settings/Connectors.php:202 +#: src/Module/Settings/Connectors.php:196 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:198 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:200 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:207 +#: src/Module/Settings/Connectors.php:201 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:208 +#: src/Module/Settings/Connectors.php:202 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "Attach the link title" msgstr "リンクの件名を添付します" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "有効にすると、添付されたリンクのタイトルがDiasporaへの投稿のタイトルとして追加されます。 これは主に、フィードコンテンツを共有する「リモート セルフ」コンタクトで役立ちます。" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "Article Mode" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "" -#: src/Module/Settings/Connectors.php:218 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "" - -#: src/Module/Settings/Connectors.php:218 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "" - -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:215 msgid "Email/Mailbox Setup" msgstr "メール/メールボックスのセットアップ" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:216 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "このサービス(オプション)を使用してメールコンタクトと通信する場合は、メールボックスへの接続方法を指定してください。" -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:217 msgid "Last successful email check:" msgstr "最後に成功したメールチェック:" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:219 msgid "IMAP server name:" msgstr "IMAPサーバー名:" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:220 msgid "IMAP port:" msgstr "IMAPポート:" -#: src/Module/Settings/Connectors.php:228 +#: src/Module/Settings/Connectors.php:221 msgid "Security:" msgstr "セキュリティ:" -#: src/Module/Settings/Connectors.php:229 +#: src/Module/Settings/Connectors.php:222 msgid "Email login name:" msgstr "メールのログイン名:" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:223 msgid "Email password:" msgstr "メールのパスワード:" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:224 msgid "Reply-to address:" msgstr "返信先アドレス:" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:225 msgid "Send public posts to all email contacts:" msgstr "すべてのメールコンタクトに一般公開投稿を送信します。" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Action after import:" msgstr "インポート後のアクション:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Move to folder" msgstr "フォルダへ移動" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:227 msgid "Move to folder:" msgstr "フォルダへ移動:" +#: src/Module/Settings/ContactImport.php:63 +msgid "Contact CSV file upload error" +msgstr "アップロードエラー:コンタクトCSVファイル" + +#: src/Module/Settings/ContactImport.php:82 +msgid "Importing Contacts done" +msgstr "コンタクトのインポートが完了しました" + +#: src/Module/Settings/ContactImport.php:112 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "古いアカウントからエクスポートしたCSVファイルをアップロードします。これは最初の列に、フォローしているアカウントのハンドルを含みます。" + +#: src/Module/Settings/ContactImport.php:113 +msgid "Upload File" +msgstr "ファイルをアップロード" + +#: src/Module/Settings/ContactImport.php:115 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "" + +#: src/Module/Settings/ContactImport.php:115 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "" + #: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "委任が正常に許可されました。" @@ -10956,42 +10962,42 @@ msgstr "プライベートキーワード:" msgid "(Used for searching profiles, never shown to others)" msgstr "(プロフィールの検索に使用され、他のユーザーには表示されません)" -#: 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/Crop.php:90 +#: src/Module/Settings/Profile/Photo/Crop.php:108 +#: src/Module/Settings/Profile/Photo/Crop.php:126 #: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "画像サイズの縮小[ %s ]に失敗しました。" -#: src/Module/Settings/Profile/Photo/Crop.php:136 +#: src/Module/Settings/Profile/Photo/Crop.php:133 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "新しい写真がすぐに表示されない場合は、Shiftキーを押しながらページをリロードするか、ブラウザーのキャッシュをクリアします。" -#: src/Module/Settings/Profile/Photo/Crop.php:141 +#: src/Module/Settings/Profile/Photo/Crop.php:138 msgid "Unable to process image" msgstr "画像を処理できません" -#: src/Module/Settings/Profile/Photo/Crop.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:157 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:182 +#: src/Module/Settings/Profile/Photo/Crop.php:179 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:208 -#: src/Module/Settings/Profile/Photo/Crop.php:212 +#: src/Module/Settings/Profile/Photo/Crop.php:205 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Crop Image" msgstr "クロップ画像" -#: src/Module/Settings/Profile/Photo/Crop.php:209 +#: src/Module/Settings/Profile/Photo/Crop.php:206 msgid "Please adjust the image cropping for optimum viewing." msgstr "最適な表示になるように画像のトリミングを調整してください。" -#: src/Module/Settings/Profile/Photo/Crop.php:211 +#: src/Module/Settings/Profile/Photo/Crop.php:208 msgid "Use Image As Is" msgstr "" @@ -11062,17 +11068,17 @@ msgstr "ユーザIDは %d です" msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:116 +#: src/Module/Settings/RemoveMe.php:114 msgid "Remove My Account" msgstr "自分のアカウントを削除します" -#: src/Module/Settings/RemoveMe.php:117 +#: src/Module/Settings/RemoveMe.php:115 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "これにより、アカウントが完全に削除されます。 これが完了すると、回復できなくなります。" -#: src/Module/Settings/RemoveMe.php:122 +#: src/Module/Settings/RemoveMe.php:120 msgid "Please enter your password for verification:" msgstr "確認のため、あなたのパスワードを入力してください。" @@ -11467,11 +11473,11 @@ msgstr "" msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:64 +#: src/Module/Special/HTTPException.php:65 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:69 +#: src/Module/Special/HTTPException.php:70 #, php-format msgid "Exception thrown in %s:%d" msgstr "" @@ -12253,294 +12259,294 @@ msgstr "これらのメッセージを受信したくない場合は、この投 msgid "%s posted an update." msgstr "%sが更新を投稿しました。" -#: src/Object/Post.php:124 +#: src/Object/Post.php:125 msgid "Private Message" msgstr "自分のみ" -#: src/Object/Post.php:128 +#: src/Object/Post.php:129 msgid "Public Message" msgstr "" -#: src/Object/Post.php:132 +#: src/Object/Post.php:133 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:168 +#: src/Object/Post.php:169 msgid "This entry was edited" msgstr "このエントリは編集されました" -#: src/Object/Post.php:196 +#: src/Object/Post.php:197 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:225 src/Object/Post.php:227 +#: src/Object/Post.php:226 src/Object/Post.php:228 msgid "Edit" msgstr "編集" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Delete globally" msgstr "グローバルに削除" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Remove locally" msgstr "ローカルで削除" -#: src/Object/Post.php:268 +#: src/Object/Post.php:269 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:273 +#: src/Object/Post.php:274 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:278 +#: src/Object/Post.php:279 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:282 +#: src/Object/Post.php:283 msgid "Report post" msgstr "" -#: src/Object/Post.php:293 +#: src/Object/Post.php:294 msgid "Save to folder" msgstr "フォルダーに保存" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will attend" msgstr "参加します" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will not attend" msgstr "私は出席しません" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I might attend" msgstr "私は出席するかもしれません" -#: src/Object/Post.php:380 +#: src/Object/Post.php:381 msgid "Ignore thread" msgstr "スレッドを無視" -#: src/Object/Post.php:381 +#: src/Object/Post.php:382 msgid "Unignore thread" msgstr "無視しないスレッド" -#: src/Object/Post.php:382 +#: src/Object/Post.php:383 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:392 +#: src/Object/Post.php:393 msgid "Add star" msgstr "" -#: src/Object/Post.php:393 +#: src/Object/Post.php:394 msgid "Remove star" msgstr "" -#: src/Object/Post.php:394 +#: src/Object/Post.php:395 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:405 +#: src/Object/Post.php:406 msgid "Pin" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:407 msgid "Unpin" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:408 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:410 +#: src/Object/Post.php:411 msgid "Pinned" msgstr "" -#: src/Object/Post.php:415 +#: src/Object/Post.php:416 msgid "Add tag" msgstr "" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare" msgstr "" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Unshare" msgstr "" -#: src/Object/Post.php:478 +#: src/Object/Post.php:479 #, php-format msgid "%s (Received %s)" msgstr "%s (%s を受け取りました)" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:514 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:517 +#: src/Object/Post.php:518 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:519 +#: src/Object/Post.php:520 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:543 +#: src/Object/Post.php:544 msgid "to" msgstr "に" -#: src/Object/Post.php:544 +#: src/Object/Post.php:545 msgid "via" msgstr "投稿先:" -#: src/Object/Post.php:545 +#: src/Object/Post.php:546 msgid "Wall-to-Wall" msgstr "壁間" -#: src/Object/Post.php:546 +#: src/Object/Post.php:547 msgid "via Wall-To-Wall:" msgstr "Wall-to-Wall経由:" -#: src/Object/Post.php:599 +#: src/Object/Post.php:600 #, php-format msgid "Reply to %s" msgstr "%sへの返信" -#: src/Object/Post.php:602 +#: src/Object/Post.php:603 msgid "More" msgstr "更に" -#: src/Object/Post.php:621 +#: src/Object/Post.php:622 msgid "Notifier task is pending" msgstr "通知タスクは保留中です" -#: src/Object/Post.php:622 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is pending" msgstr "リモートサーバーへの配信は保留中です" -#: src/Object/Post.php:623 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is underway" msgstr "リモートサーバーへの配信が進行中です" -#: src/Object/Post.php:624 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is mostly done" msgstr "リモートサーバーへの配信はもうすぐ完了します" -#: src/Object/Post.php:625 +#: src/Object/Post.php:626 msgid "Delivery to remote servers is done" msgstr "リモートサーバーへの配信が完了しました" -#: src/Object/Post.php:647 +#: src/Object/Post.php:648 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%dコメント" -#: src/Object/Post.php:648 +#: src/Object/Post.php:649 msgid "Show more" msgstr "もっと見せる" -#: src/Object/Post.php:649 +#: src/Object/Post.php:650 msgid "Show fewer" msgstr "表示を減らす" -#: src/Object/Post.php:686 +#: src/Object/Post.php:687 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:691 +#: src/Object/Post.php:692 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:696 +#: src/Object/Post.php:697 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:701 +#: src/Object/Post.php:702 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:706 +#: src/Object/Post.php:707 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:711 +#: src/Object/Post.php:712 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:716 +#: src/Object/Post.php:717 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:721 +#: src/Object/Post.php:722 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:726 +#: src/Object/Post.php:727 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:731 +#: src/Object/Post.php:732 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:754 +#: src/Object/Post.php:755 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:557 +#: src/Protocol/ActivityPub/Receiver.php:558 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:530 +#: src/Protocol/Delivery.php:531 msgid "(no subject)" msgstr "" @@ -12553,20 +12559,20 @@ msgstr "" msgid "Login failed." msgstr "ログインに失敗しました。" -#: src/Security/Authentication.php:260 +#: src/Security/Authentication.php:261 msgid "Login failed. Please check your credentials." msgstr "ログインに失敗しました。認証情報を確かめてください。" -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:374 #, php-format msgid "Welcome %s" msgstr "ようこそ%s" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:375 msgid "Please upload a profile photo." msgstr "プロフィール写真をアップロードしてください。" -#: src/Security/OpenWebAuth.php:149 +#: src/Security/OpenWebAuth.php:150 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %2$sさん、%1$sへようこそ" diff --git a/view/lang/ja/strings.php b/view/lang/ja/strings.php index 7b5efc9f61..87c4b35fd7 100644 --- a/view/lang/ja/strings.php +++ b/view/lang/ja/strings.php @@ -969,6 +969,7 @@ $a->strings['Display'] = '表示'; $a->strings['Social Networks'] = 'ソーシャルネットワーク'; $a->strings['Manage Accounts'] = 'アカウントの管理'; $a->strings['Connected apps'] = '接続されたアプリ'; +$a->strings['Import Contacts'] = 'コンタクトをインポートする'; $a->strings['Export personal data'] = '個人データのエクスポート'; $a->strings['Remove account'] = 'アカウントを削除'; $a->strings['This page is missing a url parameter.'] = 'このページにはurlパラメーターがありません。'; @@ -1482,8 +1483,6 @@ $a->strings['Wrong Password.'] = 'パスワードが間違っています。'; $a->strings['Invalid email.'] = '無効なメール。'; $a->strings['Cannot change to that email.'] = 'そのメールに変更できません。'; $a->strings['Settings were not updated.'] = '設定が更新されませんでした。'; -$a->strings['Contact CSV file upload error'] = 'アップロードエラー:コンタクトCSVファイル'; -$a->strings['Importing Contacts done'] = 'コンタクトのインポートが完了しました'; $a->strings['Relocate message has been send to your contacts'] = '再配置メッセージがコンタクトに送信されました'; $a->strings['Unable to find your profile. Please contact your admin.'] = 'プロフィールが見つかりません。管理者に連絡してください。'; $a->strings['Personal Page Subtypes'] = '個人ページのサブタイプ'; @@ -1562,9 +1561,6 @@ $a->strings['Show notifications of ignored contacts'] = '無視されたコン $a->strings['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.'] = '無視されたコンタクトからの投稿は表示されません。しかし、相手のコメントは表示されます。この設定では、無視されたコンタクトからの通知を定期的に受け取るかどうかを設定します。'; $a->strings['Advanced Account/Page Type Settings'] = 'アカウント/ページタイプの詳細設定'; $a->strings['Change the behaviour of this account for special situations'] = '特別な状況でこのアカウントの動作を変更する'; -$a->strings['Import Contacts'] = 'コンタクトをインポートする'; -$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = '古いアカウントからエクスポートしたCSVファイルをアップロードします。これは最初の列に、フォローしているアカウントのハンドルを含みます。'; -$a->strings['Upload File'] = 'ファイルをアップロード'; $a->strings['Relocate'] = '再配置'; $a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'このプロフィールを別のサーバーから移動し、コンタクトの一部が更新を受信しない場合は、このボタンを押してみてください。'; $a->strings['Resend relocate message to contacts'] = '再配置メッセージをコンタクトに再送信する'; @@ -1592,6 +1588,10 @@ $a->strings['Send public posts to all email contacts:'] = 'すべてのメール $a->strings['Action after import:'] = 'インポート後のアクション:'; $a->strings['Move to folder'] = 'フォルダへ移動'; $a->strings['Move to folder:'] = 'フォルダへ移動:'; +$a->strings['Contact CSV file upload error'] = 'アップロードエラー:コンタクトCSVファイル'; +$a->strings['Importing Contacts done'] = 'コンタクトのインポートが完了しました'; +$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = '古いアカウントからエクスポートしたCSVファイルをアップロードします。これは最初の列に、フォローしているアカウントのハンドルを含みます。'; +$a->strings['Upload File'] = 'ファイルをアップロード'; $a->strings['Delegation successfully granted.'] = '委任が正常に許可されました。'; $a->strings['Parent user not found, unavailable or password doesn\'t match.'] = '親ユーザーが見つからないか、利用できないか、パスワードが一致しません。'; $a->strings['Delegation successfully revoked.'] = '委任が正常に取り消されました。'; diff --git a/view/lang/nl/messages.po b/view/lang/nl/messages.po index 4d58d19172..d576ba43f1 100644 --- a/view/lang/nl/messages.po +++ b/view/lang/nl/messages.po @@ -20,7 +20,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: Casper , 2019-2020\n" "Language-Team: Dutch (http://app.transifex.com/Friendica/friendica/language/nl/)\n" @@ -30,34 +30,34 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\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 "Ik kan de originele post niet meer vinden." -#: mod/item.php:127 +#: mod/item.php:126 msgid "Post updated." msgstr "Post geupdate." -#: mod/item.php:192 mod/item.php:196 +#: mod/item.php:191 mod/item.php:195 msgid "Item wasn't stored." msgstr "Item is niet opgeslagen." -#: mod/item.php:206 +#: mod/item.php:205 msgid "Item couldn't be fetched." msgstr "Item kan niet worden opgehaald." -#: mod/item.php:250 mod/item.php:254 +#: mod/item.php:249 mod/item.php:253 msgid "Empty post discarded." msgstr "Lege post weggegooid." -#: 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 "Item niet gevonden." -#: 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 @@ -68,7 +68,7 @@ msgstr "Item niet gevonden." #: 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 @@ -77,13 +77,15 @@ msgstr "Item niet gevonden." #: 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 @@ -92,15 +94,15 @@ msgstr "Item niet gevonden." msgid "Permission denied." msgstr "Toegang geweigerd" -#: mod/lostpass.php:28 +#: mod/lostpass.php:27 msgid "No valid account found." msgstr "Geen geldige account gevonden." -#: mod/lostpass.php:40 +#: mod/lostpass.php:39 msgid "Password reset request issued. Check your email." msgstr "Verzoek om wachtwoord opnieuw in te stellen werd verstuurd. Kijk uw e-mail na." -#: mod/lostpass.php:46 +#: mod/lostpass.php:45 #, php-format msgid "" "\n" @@ -116,7 +118,7 @@ msgid "" "\t\tissued this request." msgstr "\n\t\tBeste %1$s,\n\t\t\tEr is recent om \"%2$s\" een verzoek gekomen om je wachtwoord te resetten.\n\t\tOm dit verzoek te bevestigen, gelieve de verificatie link hieronder te volgen of in je browser te kopiëren.\n\n\t\tAls je dit verzoek NIET hebt gedaan, volg deze link dan NIET en negeer \n\t\ten/of verwijder deze email, het verzoek zal binnenkort vanzelf ongeldig worden.\n\n\t\tJe wachtwoord zal niet aangepast worden tenzij we kunnen verifiëren\n\t\tdat je dit verzoek verzonden hebt." -#: mod/lostpass.php:57 +#: mod/lostpass.php:56 #, php-format msgid "" "\n" @@ -133,70 +135,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\n\t\tVolg nu deze link om je identiteit te bevestigen:\n\n\t\t%1$s\n\n\t\tJe zal dan een boodschap krijgen met je nieuw wachtwoord.\n\t\tJe kunt je wachtwoord veranderen in je instelling pagina nadat je ingelogd bent.\n\n\t\tDe login details zijn de volgende:\n\n\t\tSite locatie:\t%2$s\n\t\tLogin naam:\t%3$s" -#: mod/lostpass.php:72 +#: mod/lostpass.php:71 #, php-format msgid "Password reset requested at %s" msgstr "Op %s werd gevraagd je wachtwoord opnieuw in te stellen" -#: mod/lostpass.php:88 +#: mod/lostpass.php:87 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "Verzoek kon niet geverifieerd worden. (Misschien heb je het voordien al ingediend.) Wachtwoord niet opnieuw ingesteld." -#: mod/lostpass.php:101 +#: mod/lostpass.php:100 msgid "Request has expired, please make a new one." msgstr "Aanvraag is verlopen, gelieve een nieuwe aan te maken." -#: mod/lostpass.php:116 +#: mod/lostpass.php:115 msgid "Forgot your Password?" msgstr "Wachtwoord vergeten?" -#: 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 "Voer je e-mailadres in en verstuur het om je wachtwoord opnieuw in te stellen. Kijk dan je e-mail na voor verdere instructies." -#: 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 "Bijnaam of e-mail:" -#: mod/lostpass.php:119 +#: mod/lostpass.php:118 msgid "Reset" msgstr "Opnieuw" -#: mod/lostpass.php:134 src/Module/Security/Login.php:161 +#: mod/lostpass.php:133 src/Module/Security/Login.php:161 msgid "Password Reset" msgstr "Wachtwoord opnieuw instellen" -#: mod/lostpass.php:135 +#: mod/lostpass.php:134 msgid "Your password has been reset as requested." msgstr "Je wachtwoord is opnieuw ingesteld zoals gevraagd." -#: mod/lostpass.php:136 +#: mod/lostpass.php:135 msgid "Your new password is" msgstr "Je nieuwe wachtwoord is" -#: mod/lostpass.php:137 +#: mod/lostpass.php:136 msgid "Save or copy your new password - and then" msgstr "Bewaar of kopieer je nieuw wachtwoord - en dan" -#: mod/lostpass.php:138 +#: mod/lostpass.php:137 msgid "click here to login" msgstr "klik hier om in te loggen" -#: mod/lostpass.php:139 +#: mod/lostpass.php:138 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Je kunt dit wachtwoord veranderen nadat je bent ingelogd op de Instellingen> pagina." -#: mod/lostpass.php:143 +#: mod/lostpass.php:142 msgid "Your password has been reset." msgstr "Je wachtwoord is opnieuw ingesteld." -#: mod/lostpass.php:146 +#: mod/lostpass.php:145 #, php-format msgid "" "\n" @@ -207,7 +209,7 @@ msgid "" "\t\t" msgstr "\n\t\t\tBeste %1$s,\n\t\t\t\tJe wachtwoord is aangepast zoals je gevraagd hebt. Hou deze informatie\n\t\t\talstublieft bij (of pas je wachtwoord onmiddellijk aan\n\t\t\tnaar iets wat je je kan herinneren).\n\t\t" -#: mod/lostpass.php:152 +#: mod/lostpass.php:151 #, php-format msgid "" "\n" @@ -221,7 +223,7 @@ msgid "" "\t\t" msgstr "\n\t\t\tJe login details zijn de volgende:\n\n\t\t\tSite Locatie:\t%1$s\n\t\t\tLogin Naam:\t%2$s\n\t\t\tWachtwwoord:\t%3$s\n\n\t\t\tJe kan dit wachtwoord in het account instellingen aanpassen nadat je ingelogd bent.\n\t\t" -#: mod/lostpass.php:164 +#: mod/lostpass.php:163 #, php-format msgid "Your password has been changed at %s" msgstr "Je wachtwoord is veranderd op %s" @@ -285,11 +287,11 @@ msgstr "Aan:" msgid "Subject:" msgstr "Onderwerp:" -#: 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 "Jouw bericht:" -#: 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 "Foto uploaden" @@ -298,16 +300,16 @@ msgstr "Foto uploaden" msgid "Insert web link" msgstr "Voeg een webadres in" -#: 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 "Even geduld" -#: 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 @@ -315,7 +317,7 @@ msgstr "Even geduld" #: 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 @@ -324,7 +326,7 @@ msgstr "Even geduld" #: 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 @@ msgid_plural "%d messages" msgstr[0] "%d bericht" msgstr[1] "%d berichten" -#: mod/notes.php:40 src/Module/BaseProfile.php:93 +#: mod/notes.php:41 src/Module/BaseProfile.php:93 msgid "Personal Notes" msgstr "Persoonlijke Nota's" -#: 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 "Bewaren" -#: 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 "Gebruiker niet gevonden." -#: 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 "Fotoalbums" -#: 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 "Recente foto's" -#: 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 "Nieuwe foto's uploaden" -#: 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 "iedereen" -#: mod/photos.php:142 +#: mod/photos.php:140 msgid "Contact information unavailable" msgstr "Contactinformatie niet beschikbaar" -#: mod/photos.php:171 +#: mod/photos.php:169 msgid "Album not found." msgstr "Album niet gevonden" -#: mod/photos.php:227 +#: mod/photos.php:225 msgid "Album successfully deleted" msgstr "Album succesvol gedeeld" -#: mod/photos.php:229 +#: mod/photos.php:227 msgid "Album was empty." msgstr "Het album was leeg" -#: mod/photos.php:260 +#: mod/photos.php:258 msgid "Failed to delete the photo." msgstr "Foto verwijderen mislukt." -#: mod/photos.php:504 +#: mod/photos.php:502 msgid "a photo" msgstr "een foto" -#: mod/photos.php:504 +#: mod/photos.php:502 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s is gelabeld in %2$s door %3$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 "Niet vrij toegankelijk" -#: mod/photos.php:546 +#: mod/photos.php:544 msgid "No photos selected" msgstr "Geen foto's geselecteerd" -#: mod/photos.php:674 +#: mod/photos.php:672 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:681 +#: mod/photos.php:679 msgid "Upload Photos" msgstr "Upload foto's" -#: mod/photos.php:685 mod/photos.php:774 +#: mod/photos.php:683 mod/photos.php:772 msgid "New album name: " msgstr "Nieuwe albumnaam: " -#: mod/photos.php:686 +#: mod/photos.php:684 msgid "or select existing album:" msgstr "Of selecteer bestaand album:" -#: mod/photos.php:687 +#: mod/photos.php:685 msgid "Do not show a status post for this upload" msgstr "Toon geen bericht op je tijdlijn van deze upload" -#: 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 "Rechten" -#: mod/photos.php:755 +#: mod/photos.php:753 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Wil je echt dit fotoalbum en alle foto's erin verwijderen?" -#: mod/photos.php:756 mod/photos.php:779 +#: mod/photos.php:754 mod/photos.php:777 msgid "Delete Album" msgstr "Verwijder album" -#: 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 "Annuleren" -#: mod/photos.php:783 +#: mod/photos.php:781 msgid "Edit Album" msgstr "Album wijzigen" -#: mod/photos.php:784 +#: mod/photos.php:782 msgid "Drop Album" msgstr "Album verwijderen" -#: mod/photos.php:788 +#: mod/photos.php:786 msgid "Show Newest First" msgstr "Toon niewste eerst" -#: mod/photos.php:790 +#: mod/photos.php:788 msgid "Show Oldest First" msgstr "Toon oudste eerst" -#: mod/photos.php:811 src/Module/Profile/Photos.php:335 +#: mod/photos.php:809 src/Module/Profile/Photos.php:343 msgid "View Photo" msgstr "Bekijk foto" -#: mod/photos.php:843 +#: mod/photos.php:841 msgid "Permission denied. Access to this item may be restricted." msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt." -#: mod/photos.php:845 +#: mod/photos.php:843 msgid "Photo not available" msgstr "Foto is niet beschikbaar" -#: mod/photos.php:855 +#: mod/photos.php:853 msgid "Do you really want to delete this photo?" msgstr "Wil je echt deze foto verwijderen?" -#: mod/photos.php:856 mod/photos.php:1056 +#: mod/photos.php:854 mod/photos.php:1054 msgid "Delete Photo" msgstr "Verwijder foto" -#: mod/photos.php:954 +#: mod/photos.php:952 msgid "View photo" msgstr "Bekijk foto" -#: mod/photos.php:956 +#: mod/photos.php:954 msgid "Edit photo" msgstr "Bewerk foto" -#: mod/photos.php:957 +#: mod/photos.php:955 msgid "Delete photo" msgstr "Foto verwijderen" -#: mod/photos.php:958 +#: mod/photos.php:956 msgid "Use as profile photo" msgstr "Gebruik als profielfoto" -#: mod/photos.php:965 +#: mod/photos.php:963 msgid "Private Photo" msgstr "Privé foto" -#: mod/photos.php:971 +#: mod/photos.php:969 msgid "View Full Size" msgstr "Bekijk in volledig formaat" -#: mod/photos.php:1024 +#: mod/photos.php:1022 msgid "Tags: " msgstr "Labels: " -#: mod/photos.php:1027 +#: mod/photos.php:1025 msgid "[Select tags to remove]" msgstr "[Selecteer tags om te verwijderen]" -#: mod/photos.php:1042 +#: mod/photos.php:1040 msgid "New album name" msgstr "Nieuwe albumnaam" -#: mod/photos.php:1043 +#: mod/photos.php:1041 msgid "Caption" msgstr "Onderschrift" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "Add a Tag" msgstr "Een label toevoegen" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping " -#: mod/photos.php:1045 +#: mod/photos.php:1043 msgid "Do not rotate" msgstr "Niet roteren" -#: mod/photos.php:1046 +#: mod/photos.php:1044 msgid "Rotate CW (right)" msgstr "Roteren met de klok mee (rechts)" -#: mod/photos.php:1047 +#: mod/photos.php:1045 msgid "Rotate CCW (left)" msgstr "Roteren tegen de klok in (links)" -#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: mod/photos.php:1091 mod/photos.php:1147 mod/photos.php:1227 #: src/Module/Contact.php:600 src/Module/Item/Compose.php:184 -#: src/Object/Post.php:1142 +#: src/Object/Post.php:1143 msgid "This is you" msgstr "Dit ben jij" -#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 -#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:598 -#: src/Object/Post.php:1144 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:599 +#: src/Object/Post.php:1145 msgid "Comment" msgstr "Reacties" -#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 -#: src/Content/Conversation.php:401 src/Module/Calendar/Event/Form.php:234 +#: 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 -#: src/Object/Post.php:1158 +#: src/Object/Post.php:1159 msgid "Preview" msgstr "Voorvertoning" -#: mod/photos.php:1098 src/Content/Conversation.php:355 -#: src/Module/Post/Edit.php:121 src/Object/Post.php:1146 +#: mod/photos.php:1096 src/Content/Conversation.php:357 +#: src/Module/Post/Edit.php:121 src/Object/Post.php:1147 msgid "Loading..." msgstr "Aan het laden..." -#: mod/photos.php:1190 src/Content/Conversation.php:1485 -#: src/Object/Post.php:260 +#: mod/photos.php:1188 src/Content/Conversation.php:1487 +#: src/Object/Post.php:261 msgid "Select" msgstr "Kies" -#: mod/photos.php:1191 src/Content/Conversation.php:1486 -#: 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:233 +#: 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 +#: src/Module/Settings/Connectors.php:226 #: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Verwijder" -#: mod/photos.php:1252 src/Object/Post.php:426 +#: mod/photos.php:1250 src/Object/Post.php:427 msgid "Like" msgstr "" -#: mod/photos.php:1253 src/Object/Post.php:426 +#: mod/photos.php:1251 src/Object/Post.php:427 msgid "I like this (toggle)" msgstr "Vind ik leuk" -#: mod/photos.php:1254 src/Object/Post.php:427 +#: mod/photos.php:1252 src/Object/Post.php:428 msgid "Dislike" msgstr "" -#: mod/photos.php:1256 src/Object/Post.php:427 +#: mod/photos.php:1254 src/Object/Post.php:428 msgid "I don't like this (toggle)" msgstr "Vind ik niet leuk" -#: mod/photos.php:1278 +#: mod/photos.php:1276 msgid "Map" msgstr "Kaart" -#: src/App.php:467 +#: src/App.php:255 msgid "Apologies but the website is unavailable at the moment." msgstr "" -#: src/App/Page.php:237 +#: src/App/Page.php:241 msgid "Delete this item?" msgstr "Dit item verwijderen?" -#: src/App/Page.php:238 +#: src/App/Page.php:242 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:239 +#: src/App/Page.php:243 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:240 +#: src/App/Page.php:244 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:241 +#: src/App/Page.php:245 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:242 src/Module/Settings/Server/Action.php:47 +#: src/App/Page.php:246 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:244 +#: src/App/Page.php:248 msgid "Like not successful" msgstr "" -#: src/App/Page.php:245 +#: src/App/Page.php:249 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:246 +#: src/App/Page.php:250 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:247 +#: src/App/Page.php:251 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:248 +#: src/App/Page.php:252 msgid "Backend error" msgstr "" -#: src/App/Page.php:249 +#: src/App/Page.php:253 msgid "Network error" msgstr "" -#: src/App/Page.php:252 +#: src/App/Page.php:256 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:257 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:254 +#: src/App/Page.php:258 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:255 +#: src/App/Page.php:259 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:256 +#: src/App/Page.php:260 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:261 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:262 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:263 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:264 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:265 msgid "Remove file" msgstr "" -#: src/App/Page.php:262 +#: src/App/Page.php:266 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:346 +#: src/App/Page.php:350 msgid "toggle mobile" msgstr "mobiel thema omwisselen" @@ -804,7 +806,7 @@ msgid "All contacts" msgstr "Alle contacten" #: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 -#: src/Content/Widget.php:254 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Content/Widget.php:254 src/Core/ACL.php:182 src/Module/Contact.php:395 #: src/Module/Privacy/PermissionTooltip.php:150 #: src/Module/Privacy/PermissionTooltip.php:172 #: src/Module/Settings/Channels.php:146 @@ -846,7 +848,7 @@ msgstr "Kon geen niet-gearchiveerde contacten vinden voor deze URL (%s)" msgid "The contact entries have been archived" msgstr "The contacten zijn gearchiveerd" -#: src/Console/ClearAvatarCache.php:73 +#: src/Console/ClearAvatarCache.php:74 msgid "" "The avatar cache needs to be disabled in local.config.php to use this " "command." @@ -932,22 +934,22 @@ msgstr "" msgid "no resource in photo %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:123 +#: src/Console/MoveToAvatarCache.php:127 #, php-format msgid "no photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:132 +#: src/Console/MoveToAvatarCache.php:136 #, php-format msgid "no image data for photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:141 +#: src/Console/MoveToAvatarCache.php:145 #, php-format msgid "invalid image for id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:154 +#: src/Console/MoveToAvatarCache.php:158 #, php-format msgid "Quit on invalid photo %s" msgstr "" @@ -977,11 +979,14 @@ msgstr "Alle uitgestelde bericht update acties zijn uitgevoerd" msgid "Enter user nickname: " msgstr "Geef een bijnaam in:" -#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Console/User.php:168 src/Model/User.php:830 #: src/Module/Api/Twitter/ContactEndpoint.php:62 -#: 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/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/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "Gebruiker niet gevonden" @@ -991,12 +996,12 @@ msgid "Enter new password: " msgstr "Geef nieuw wachtwoord:" #: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 -#: src/Module/Settings/Account.php:59 +#: src/Module/Settings/Account.php:57 msgid "Password update failed. Please try again." msgstr "Wachtwoord-)wijziging mislukt. Probeer opnieuw." #: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 -#: src/Module/Settings/Account.php:62 +#: src/Module/Settings/Account.php:60 msgid "Password changed." msgstr "Wachtwoord gewijzigd." @@ -1077,86 +1082,86 @@ msgstr "Wekelijks" msgid "Monthly" msgstr "Maandelijks" -#: src/Content/ContactSelector.php:118 +#: src/Content/ContactSelector.php:117 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:119 +#: src/Content/ContactSelector.php:118 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:120 +#: src/Content/ContactSelector.php:119 msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:121 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Content/ContactSelector.php:120 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:58 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "E-mail" -#: src/Content/ContactSelector.php:122 src/Module/Debug/Babel.php:273 +#: src/Content/ContactSelector.php:121 src/Module/Debug/Babel.php:273 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:123 +#: src/Content/ContactSelector.php:122 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:124 +#: src/Content/ContactSelector.php:123 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:125 +#: src/Content/ContactSelector.php:124 msgid "XMPP/IM" msgstr "XMPP/Chat" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:125 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:126 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:127 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:129 +#: src/Content/ContactSelector.php:128 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:130 +#: src/Content/ContactSelector.php:129 msgid "Discourse" msgstr "Toespraak" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:130 msgid "Diaspora Connector" msgstr "Diaspora Connector" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:131 msgid "GNU Social Connector" msgstr "GNU Social Connector" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:132 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:133 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:134 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:135 msgid "Bluesky" msgstr "" @@ -1165,374 +1170,374 @@ msgstr "" msgid "%s (via %s)" msgstr "" -#: src/Content/Conversation.php:213 +#: src/Content/Conversation.php:215 msgid "and" msgstr "en" -#: src/Content/Conversation.php:216 +#: src/Content/Conversation.php:218 #, php-format msgid "and %d other people" msgstr "en %d anderen" -#: src/Content/Conversation.php:222 +#: src/Content/Conversation.php:224 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:224 +#: src/Content/Conversation.php:226 #, 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:226 +#: src/Content/Conversation.php:228 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:230 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:230 +#: src/Content/Conversation.php:232 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:232 +#: src/Content/Conversation.php:234 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:263 +#: src/Content/Conversation.php:265 #, php-format msgid " likes this" msgid_plural " like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:266 +#: src/Content/Conversation.php:268 #, php-format msgid " doesn't like this" msgid_plural " don't like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:269 +#: src/Content/Conversation.php:271 #, php-format msgid " attends" msgid_plural " attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:272 +#: src/Content/Conversation.php:274 #, php-format msgid " doesn't attend" msgid_plural " don't attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:275 +#: src/Content/Conversation.php:277 #, php-format msgid " attends maybe" msgid_plural " attend maybe" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:278 +#: src/Content/Conversation.php:280 #, php-format msgid " reshared this" msgid_plural " reshared this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:324 +#: src/Content/Conversation.php:326 msgid "Visible to everybody" msgstr "Zichtbaar voor iedereen" -#: src/Content/Conversation.php:325 src/Module/Item/Compose.php:196 -#: src/Object/Post.php:1157 +#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196 +#: src/Object/Post.php:1158 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Geef een afbeelding/video/audio/webpagina in:" -#: src/Content/Conversation.php:326 +#: src/Content/Conversation.php:328 msgid "Tag term:" msgstr "Label:" -#: src/Content/Conversation.php:327 src/Module/Filer/SaveTag.php:59 +#: src/Content/Conversation.php:329 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Bewaren in map:" -#: src/Content/Conversation.php:328 +#: src/Content/Conversation.php:330 msgid "Where are you right now?" msgstr "Waar ben je nu?" -#: src/Content/Conversation.php:329 +#: src/Content/Conversation.php:331 msgid "Delete item(s)?" msgstr "Item(s) verwijderen?" -#: src/Content/Conversation.php:341 src/Module/Item/Compose.php:171 +#: src/Content/Conversation.php:343 src/Module/Item/Compose.php:171 msgid "Created at" msgstr "" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:353 msgid "New Post" msgstr "Nieuw bericht" -#: src/Content/Conversation.php:354 +#: src/Content/Conversation.php:356 msgid "Share" msgstr "Delen" -#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:123 +#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:123 msgid "upload photo" msgstr "Foto uploaden" -#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:124 +#: src/Content/Conversation.php:360 src/Module/Post/Edit.php:124 msgid "Attach file" msgstr "Bestand bijvoegen" -#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:125 +#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:125 msgid "attach file" msgstr "bestand bijvoegen" -#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:186 -#: src/Module/Post/Edit.php:162 src/Object/Post.php:1147 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1148 msgid "Bold" msgstr "Vet" -#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:187 -#: src/Module/Post/Edit.php:163 src/Object/Post.php:1148 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1149 msgid "Italic" msgstr "Cursief" -#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:188 -#: src/Module/Post/Edit.php:164 src/Object/Post.php:1149 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1150 msgid "Underline" msgstr "Onderstrepen" -#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:189 -#: src/Module/Post/Edit.php:165 src/Object/Post.php:1151 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:165 src/Object/Post.php:1152 msgid "Quote" msgstr "Citeren" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:166 src/Object/Post.php:1152 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:166 src/Object/Post.php:1153 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:191 -#: src/Object/Post.php:1150 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Object/Post.php:1151 msgid "Content Warning" msgstr "" -#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:167 src/Object/Post.php:1153 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:167 src/Object/Post.php:1154 msgid "Code" msgstr "Broncode" -#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:193 -#: src/Object/Post.php:1154 +#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1155 msgid "Image" msgstr "Afbeelding" -#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:168 src/Object/Post.php:1155 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:168 src/Object/Post.php:1156 msgid "Link" msgstr "Link" -#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:195 -#: src/Module/Post/Edit.php:169 src/Object/Post.php:1156 +#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:169 src/Object/Post.php:1157 msgid "Link or Media" msgstr "Link of media" -#: src/Content/Conversation.php:370 +#: src/Content/Conversation.php:372 msgid "Video" msgstr "" -#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:198 +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:198 #: src/Module/Post/Edit.php:132 msgid "Set your location" msgstr "Stel je locatie in" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:133 msgid "set location" msgstr "Stel uw locatie in" -#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:134 msgid "Clear browser location" msgstr "Verwijder locatie uit uw webbrowser" -#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:135 +#: src/Content/Conversation.php:376 src/Module/Post/Edit.php:135 msgid "clear location" msgstr "Verwijder locatie uit uw webbrowser" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:203 +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:203 #: src/Module/Post/Edit.php:148 msgid "Set title" msgstr "Titel plaatsen" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:204 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 #: src/Module/Post/Edit.php:150 msgid "Categories (comma-separated list)" msgstr "Categorieën (komma-gescheiden lijst)" -#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:220 +#: src/Content/Conversation.php:385 src/Module/Item/Compose.php:220 msgid "Scheduled at" msgstr "" -#: src/Content/Conversation.php:388 src/Module/Post/Edit.php:137 +#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:137 msgid "Permission settings" msgstr "Instellingen van rechten" -#: src/Content/Conversation.php:397 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:399 src/Module/Post/Edit.php:146 msgid "Public post" msgstr "Openbare post" -#: src/Content/Conversation.php:411 src/Content/Widget/VCard.php:121 +#: 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 msgid "Message" msgstr "Bericht" -#: src/Content/Conversation.php:412 src/Module/Post/Edit.php:173 +#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:173 #: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Browser" -#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:176 +#: src/Content/Conversation.php:416 src/Module/Post/Edit.php:176 msgid "Open Compose page" msgstr "Open de opstelpagina" -#: src/Content/Conversation.php:581 +#: src/Content/Conversation.php:583 msgid "remove" msgstr "verwijder" -#: src/Content/Conversation.php:585 +#: src/Content/Conversation.php:587 msgid "Delete Selected Items" msgstr "Geselecteerde items verwijderen" -#: src/Content/Conversation.php:713 src/Content/Conversation.php:716 -#: src/Content/Conversation.php:719 src/Content/Conversation.php:722 -#: src/Content/Conversation.php:725 +#: 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 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: src/Content/Conversation.php:728 +#: src/Content/Conversation.php:730 #, php-format msgid "You are following %s." msgstr "" -#: src/Content/Conversation.php:733 +#: src/Content/Conversation.php:735 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:735 +#: src/Content/Conversation.php:737 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:755 +#: src/Content/Conversation.php:757 #, php-format msgid "%s reshared this." msgstr "%s heeft dit gedeeld" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 msgid "Reshared" msgstr "" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 #, php-format msgid "Reshared by %s <%s>" msgstr "" -#: src/Content/Conversation.php:760 +#: src/Content/Conversation.php:762 #, php-format msgid "%s is participating in this thread." msgstr "" -#: src/Content/Conversation.php:763 +#: src/Content/Conversation.php:765 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:766 +#: src/Content/Conversation.php:768 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 msgid "Fetched" msgstr "" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 #, php-format msgid "Fetched because of %s <%s>" msgstr "" -#: src/Content/Conversation.php:775 +#: src/Content/Conversation.php:777 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:778 +#: src/Content/Conversation.php:780 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:781 +#: src/Content/Conversation.php:783 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:784 +#: src/Content/Conversation.php:786 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:787 +#: src/Content/Conversation.php:789 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1505 src/Object/Post.php:247 +#: src/Content/Conversation.php:1507 src/Object/Post.php:248 msgid "Pinned item" msgstr "" -#: src/Content/Conversation.php:1522 src/Object/Post.php:541 -#: src/Object/Post.php:542 +#: src/Content/Conversation.php:1524 src/Object/Post.php:542 +#: src/Object/Post.php:543 #, php-format msgid "View %s's profile @ %s" msgstr "Bekijk het profiel van %s @ %s" -#: src/Content/Conversation.php:1536 src/Object/Post.php:529 +#: src/Content/Conversation.php:1538 src/Object/Post.php:530 msgid "Categories:" msgstr "Categorieën:" -#: src/Content/Conversation.php:1537 src/Object/Post.php:530 +#: src/Content/Conversation.php:1539 src/Object/Post.php:531 msgid "Filed under:" msgstr "Bewaard onder:" -#: src/Content/Conversation.php:1545 src/Object/Post.php:556 +#: src/Content/Conversation.php:1547 src/Object/Post.php:557 #, php-format msgid "%s from %s" msgstr "%s van %s" -#: src/Content/Conversation.php:1561 +#: src/Content/Conversation.php:1563 msgid "View in context" msgstr "In context bekijken" @@ -1665,7 +1670,7 @@ msgstr "Persoonlijk" msgid "Posts that mention or involve you" msgstr "Alleen berichten die jou vermelden of op jou betrekking hebben" -#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:398 msgid "Starred" msgstr "Met ster" @@ -1752,7 +1757,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:552 src/Model/User.php:1390 +#: src/Content/Widget.php:555 src/Model/User.php:1390 msgid "Groups" msgstr "" @@ -1760,7 +1765,7 @@ msgstr "" msgid "Display posts that have been distributed by the selected group." msgstr "" -#: src/Content/Feature.php:117 src/Content/Widget.php:521 +#: src/Content/Feature.php:117 src/Content/Widget.php:524 msgid "Archives" msgstr "Archieven" @@ -1776,8 +1781,8 @@ msgstr "Protocollen" msgid "Display posts with the selected protocols." msgstr "" -#: src/Content/Feature.php:119 src/Content/Widget.php:558 -#: src/Module/Settings/Account.php:429 +#: src/Content/Feature.php:119 src/Content/Widget.php:561 +#: src/Module/Settings/Account.php:391 msgid "Account Types" msgstr "Account Types" @@ -1785,7 +1790,7 @@ msgstr "Account Types" msgid "Display posts done by accounts with the selected account type." msgstr "" -#: src/Content/Feature.php:120 src/Content/Widget.php:607 +#: 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 msgid "Channels" @@ -1811,7 +1816,7 @@ msgstr "Bewaarde Mappen" msgid "Display a list of folders in which posts are stored." msgstr "" -#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:189 msgid "Own Contacts" msgstr "" @@ -1867,12 +1872,12 @@ msgstr "" msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:139 src/Content/Widget.php:527 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:530 msgid "show less" msgstr "" #: src/Content/GroupManager.php:140 src/Content/Widget.php:425 -#: src/Content/Widget.php:528 +#: src/Content/Widget.php:531 msgid "show more" msgstr "toon meer" @@ -1880,66 +1885,66 @@ msgstr "toon meer" msgid "Create new group" msgstr "" -#: src/Content/Item.php:317 src/Model/Item.php:3273 +#: src/Content/Item.php:322 src/Model/Item.php:3281 msgid "event" msgstr "gebeurtenis" -#: src/Content/Item.php:320 src/Content/Item.php:330 +#: src/Content/Item.php:325 src/Content/Item.php:335 msgid "status" msgstr "status" -#: src/Content/Item.php:326 src/Model/Item.php:3275 +#: src/Content/Item.php:331 src/Model/Item.php:3283 #: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "foto" -#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 +#: src/Content/Item.php:345 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s labelde %3$s van %2$s met %4$s" -#: src/Content/Item.php:414 view/theme/frio/theme.php:253 +#: src/Content/Item.php:419 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Gesprek volgen" -#: src/Content/Item.php:415 src/Model/Contact.php:1244 +#: src/Content/Item.php:420 src/Model/Contact.php:1245 msgid "View Status" msgstr "Bekijk status" -#: 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/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 msgid "View Profile" msgstr "Bekijk profiel" -#: src/Content/Item.php:417 src/Model/Contact.php:1246 +#: src/Content/Item.php:422 src/Model/Contact.php:1247 msgid "View Photos" msgstr "Bekijk foto's" -#: src/Content/Item.php:418 src/Model/Contact.php:1213 +#: src/Content/Item.php:423 src/Model/Contact.php:1214 #: src/Model/Profile.php:446 msgid "Network Posts" msgstr "Netwerkberichten" -#: src/Content/Item.php:419 src/Model/Contact.php:1237 -#: src/Model/Contact.php:1248 +#: src/Content/Item.php:424 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1249 msgid "View Contact" msgstr "Bekijk contact" -#: src/Content/Item.php:420 src/Model/Contact.php:1249 +#: src/Content/Item.php:425 src/Model/Contact.php:1250 msgid "Send PM" msgstr "Stuur een privébericht" -#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Content/Item.php:426 src/Module/Contact.php:449 #: src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:104 -#: src/Module/Moderation/Users/Active.php:123 -#: src/Module/Moderation/Users/Index.php:138 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Index.php:141 msgid "Block" msgstr "Blokkeren" -#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Content/Item.php:427 src/Module/Contact.php:450 #: src/Module/Contact/Profile.php:532 #: src/Module/Notifications/Introductions.php:126 #: src/Module/Notifications/Introductions.php:199 @@ -1947,27 +1952,27 @@ msgstr "Blokkeren" msgid "Ignore" msgstr "Negeren" -#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Content/Item.php:428 src/Module/Contact.php:451 #: src/Module/Contact/Profile.php:540 msgid "Collapse" msgstr "" -#: src/Content/Item.php:424 src/Object/Post.php:288 +#: src/Content/Item.php:429 src/Object/Post.php:289 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 -#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 +#: src/Content/Item.php:433 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:503 msgid "Languages" msgstr "" -#: src/Content/Item.php:431 src/Object/Post.php:582 +#: src/Content/Item.php:436 src/Object/Post.php:583 msgid "Search Text" msgstr "" -#: src/Content/Item.php:436 src/Content/Widget.php:66 -#: src/Model/Contact.php:1238 src/Model/Contact.php:1250 +#: src/Content/Item.php:441 src/Content/Widget.php:66 +#: src/Model/Contact.php:1239 src/Model/Contact.php:1251 #: src/Module/Contact/Follow.php:152 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Verbind/Volg" @@ -1980,7 +1985,7 @@ msgstr "" msgid "Nothing new here" msgstr "Niets nieuw hier" -#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:64 msgid "Go back" msgstr "Ga terug" @@ -2194,7 +2199,7 @@ msgstr "Notificaties" msgid "See all notifications" msgstr "Toon alle notificaties" -#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:226 msgid "Mark as seen" msgstr "Als 'gelezen' markeren" @@ -2222,8 +2227,8 @@ msgstr "Gebruikers" msgid "Manage other pages" msgstr "Andere pagina's beheren" -#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 -#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:170 +#: 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/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Instellingen" @@ -2251,10 +2256,10 @@ msgstr "Website opzetten en configureren" #: src/Module/Moderation/Blocklist/Server/Index.php:84 #: 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:119 -#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 #: src/Module/Moderation/Users/Deleted.php:66 -#: src/Module/Moderation/Users/Index.php:133 +#: src/Module/Moderation/Users/Index.php:136 msgid "Moderation" msgstr "" @@ -2286,33 +2291,33 @@ msgstr "volgende" msgid "last" msgstr "laatste" -#: src/Content/Text/BBCode.php:908 +#: src/Content/Text/BBCode.php:903 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:931 src/Model/Item.php:4069 -#: src/Model/Item.php:4075 src/Model/Item.php:4076 +#: src/Content/Text/BBCode.php:926 src/Model/Item.php:4080 +#: src/Model/Item.php:4086 src/Model/Item.php:4087 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1745 src/Content/Text/HTML.php:892 +#: src/Content/Text/BBCode.php:1740 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "klik om te openen/sluiten" -#: src/Content/Text/BBCode.php:1800 +#: src/Content/Text/BBCode.php:1795 msgid "$1 wrote:" msgstr "$1 schreef:" -#: src/Content/Text/BBCode.php:1874 src/Content/Text/BBCode.php:1875 +#: src/Content/Text/BBCode.php:1869 src/Content/Text/BBCode.php:1870 msgid "Encrypted content" msgstr "Versleutelde inhoud" -#: src/Content/Text/BBCode.php:2208 +#: src/Content/Text/BBCode.php:2203 msgid "Invalid source protocol" msgstr "Ongeldig bron protocol" -#: src/Content/Text/BBCode.php:2227 +#: src/Content/Text/BBCode.php:2222 msgid "Invalid link protocol" msgstr "Ongeldig verbinding protocol" @@ -2365,7 +2370,7 @@ msgid "Examples: Robert Morgenstein, Fishing" msgstr "Voorbeelden: Jan Peeters, Vissen" #: src/Content/Widget.php:68 src/Module/Contact.php:441 -#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 +#: src/Module/Directory.php:82 view/theme/vier/theme.php:185 msgid "Find" msgstr "Zoek" @@ -2386,7 +2391,7 @@ msgstr "Willekeurig Profiel" msgid "Invite Friends" msgstr "Vrienden uitnodigen" -#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: src/Content/Widget.php:73 src/Module/Directory.php:74 #: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Globale gids" @@ -2407,7 +2412,7 @@ msgstr "" msgid "Relationships" msgstr "Relaties" -#: src/Content/Widget.php:264 src/Module/Circle.php:280 +#: src/Content/Widget.php:264 src/Module/Circle.php:281 #: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Alle Contacten" @@ -2431,27 +2436,27 @@ msgid_plural "%d contacts in common" msgstr[0] "%d gedeeld contact" msgstr[1] "%d gedeelde contacten" -#: src/Content/Widget.php:529 +#: src/Content/Widget.php:532 msgid "On this date" msgstr "" -#: src/Content/Widget.php:549 +#: src/Content/Widget.php:552 msgid "Persons" msgstr "" -#: src/Content/Widget.php:550 +#: src/Content/Widget.php:553 msgid "Organisations" msgstr "" -#: src/Content/Widget.php:551 src/Model/Contact.php:1750 +#: src/Content/Widget.php:554 src/Model/Contact.php:1751 msgid "News" msgstr "Nieuws" -#: src/Content/Widget.php:553 +#: src/Content/Widget.php:556 msgid "Relays" msgstr "" -#: src/Content/Widget.php:560 src/Module/Moderation/BaseUsers.php:58 +#: src/Content/Widget.php:563 src/Module/Moderation/BaseUsers.php:58 msgid "All" msgstr "" @@ -2497,12 +2502,12 @@ msgstr[1] "Populaire Tags (laatste %d uur)" msgid "More Trending Tags" msgstr "Meer Populaire Tags" -#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1207 +#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1208 #: src/Model/Profile.php:440 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1211 +#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1212 #: src/Model/Profile.php:444 src/Module/Moderation/Item/Source.php:80 msgid "Mention" msgstr "" @@ -2517,10 +2522,10 @@ msgstr "XMPP:" msgid "Matrix:" msgstr "" -#: src/Content/Widget/VCard.php:112 src/Model/Event.php:68 -#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: 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:134 src/Module/Notifications/Introductions.php:180 +#: src/Module/Directory.php:133 src/Module/Notifications/Introductions.php:180 #: src/Module/Profile/Profile.php:212 msgid "Location:" msgstr "Plaats:" @@ -2530,75 +2535,75 @@ msgstr "Plaats:" msgid "Network:" msgstr "Netwerk:" -#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1239 -#: src/Model/Contact.php:1251 src/Model/Profile.php:457 +#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1252 src/Model/Profile.php:457 #: src/Module/Contact/Profile.php:476 msgid "Unfollow" msgstr "Stop volgen" -#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1209 +#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1210 #: src/Model/Profile.php:442 msgid "View group" msgstr "" -#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:260 +#: src/Core/ACL.php:153 src/Module/Profile/Profile.php:260 msgid "Yourself" msgstr "Jezelf" -#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Core/ACL.php:189 src/Module/Privacy/PermissionTooltip.php:156 #: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "Gemeenschappelijk" -#: src/Core/ACL.php:280 +#: src/Core/ACL.php:281 msgid "Post to Email" msgstr "Verzenden per e-mail" -#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Core/ACL.php:308 src/Module/Privacy/PermissionTooltip.php:103 #: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "Openbaar" -#: src/Core/ACL.php:308 +#: src/Core/ACL.php:309 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 "Deze inhoud wordt aan al uw volgers getoond en is te zien op de communitypagina's en door iedereen met de link." -#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 +#: src/Core/ACL.php:310 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "Beperkt/Privé" -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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 "Deze inhoud wordt alleen getoond aan de mensen in het eerste vak, met uitzondering van de mensen die in het tweede vak worden genoemd. Het wordt nergens openbaar weergegeven." -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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:311 +#: src/Core/ACL.php:312 msgid "Show to:" msgstr "Toon aan:" -#: src/Core/ACL.php:312 +#: src/Core/ACL.php:313 msgid "Except to:" msgstr "Behalve aan:" -#: src/Core/ACL.php:313 src/Module/Post/Edit.php:145 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:145 msgid "CC: email addresses" msgstr "CC: e-mailadressen" -#: src/Core/ACL.php:314 src/Module/Post/Edit.php:151 +#: src/Core/ACL.php:315 src/Module/Post/Edit.php:151 msgid "Example: bob@example.com, mary@example.com" msgstr "Voorbeeld: bob@voorbeeld.nl, an@voorbeeld.be" -#: src/Core/ACL.php:315 +#: src/Core/ACL.php:316 msgid "Connectors" msgstr "Connectors" @@ -2933,176 +2938,176 @@ msgstr "Database al in gebruik." msgid "Could not connect to database." msgstr "Kon geen toegang krijgen tot de database." -#: src/Core/L10n.php:430 src/Model/Item.php:2316 +#: src/Core/L10n.php:426 src/Model/Item.php:2324 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:437 +#: src/Core/L10n.php:433 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Core/L10n.php:481 src/Model/Event.php:418 #: src/Module/Settings/Display.php:292 msgid "Monday" msgstr "Maandag" -#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Core/L10n.php:481 src/Model/Event.php:419 #: src/Module/Settings/Display.php:293 msgid "Tuesday" msgstr "Dinsdag" -#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Core/L10n.php:481 src/Model/Event.php:420 #: src/Module/Settings/Display.php:294 msgid "Wednesday" msgstr "Woensdag" -#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Core/L10n.php:481 src/Model/Event.php:421 #: src/Module/Settings/Display.php:295 msgid "Thursday" msgstr "Donderdag" -#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Core/L10n.php:481 src/Model/Event.php:422 #: src/Module/Settings/Display.php:296 msgid "Friday" msgstr "Vrijdag" -#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Core/L10n.php:481 src/Model/Event.php:423 #: src/Module/Settings/Display.php:297 msgid "Saturday" msgstr "Zaterdag" -#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Core/L10n.php:481 src/Model/Event.php:417 #: src/Module/Settings/Display.php:291 msgid "Sunday" msgstr "Zondag" -#: src/Core/L10n.php:489 src/Model/Event.php:436 +#: src/Core/L10n.php:485 src/Model/Event.php:438 msgid "January" msgstr "Januari" -#: src/Core/L10n.php:489 src/Model/Event.php:437 +#: src/Core/L10n.php:485 src/Model/Event.php:439 msgid "February" msgstr "Februari" -#: src/Core/L10n.php:489 src/Model/Event.php:438 +#: src/Core/L10n.php:485 src/Model/Event.php:440 msgid "March" msgstr "Maart" -#: src/Core/L10n.php:489 src/Model/Event.php:439 +#: src/Core/L10n.php:485 src/Model/Event.php:441 msgid "April" msgstr "April" -#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 +#: src/Core/L10n.php:485 src/Core/L10n.php:504 src/Model/Event.php:429 msgid "May" msgstr "Mei" -#: src/Core/L10n.php:489 src/Model/Event.php:440 +#: src/Core/L10n.php:485 src/Model/Event.php:442 msgid "June" msgstr "Juni" -#: src/Core/L10n.php:489 src/Model/Event.php:441 +#: src/Core/L10n.php:485 src/Model/Event.php:443 msgid "July" msgstr "Juli" -#: src/Core/L10n.php:489 src/Model/Event.php:442 +#: src/Core/L10n.php:485 src/Model/Event.php:444 msgid "August" msgstr "Augustus" -#: src/Core/L10n.php:489 src/Model/Event.php:443 +#: src/Core/L10n.php:485 src/Model/Event.php:445 msgid "September" msgstr "September" -#: src/Core/L10n.php:489 src/Model/Event.php:444 +#: src/Core/L10n.php:485 src/Model/Event.php:446 msgid "October" msgstr "Oktober" -#: src/Core/L10n.php:489 src/Model/Event.php:445 +#: src/Core/L10n.php:485 src/Model/Event.php:447 msgid "November" msgstr "November" -#: src/Core/L10n.php:489 src/Model/Event.php:446 +#: src/Core/L10n.php:485 src/Model/Event.php:448 msgid "December" msgstr "December" -#: src/Core/L10n.php:504 src/Model/Event.php:408 +#: src/Core/L10n.php:500 src/Model/Event.php:410 msgid "Mon" msgstr "Maa" -#: src/Core/L10n.php:504 src/Model/Event.php:409 +#: src/Core/L10n.php:500 src/Model/Event.php:411 msgid "Tue" msgstr "Din" -#: src/Core/L10n.php:504 src/Model/Event.php:410 +#: src/Core/L10n.php:500 src/Model/Event.php:412 msgid "Wed" msgstr "Woe" -#: src/Core/L10n.php:504 src/Model/Event.php:411 +#: src/Core/L10n.php:500 src/Model/Event.php:413 msgid "Thu" msgstr "Don" -#: src/Core/L10n.php:504 src/Model/Event.php:412 +#: src/Core/L10n.php:500 src/Model/Event.php:414 msgid "Fri" msgstr "Vrij" -#: src/Core/L10n.php:504 src/Model/Event.php:413 +#: src/Core/L10n.php:500 src/Model/Event.php:415 msgid "Sat" msgstr "Zat" -#: src/Core/L10n.php:504 src/Model/Event.php:407 +#: src/Core/L10n.php:500 src/Model/Event.php:409 msgid "Sun" msgstr "Zon" -#: src/Core/L10n.php:508 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:425 msgid "Jan" msgstr "Jan" -#: src/Core/L10n.php:508 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:426 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:508 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:427 msgid "Mar" msgstr "Maa" -#: src/Core/L10n.php:508 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:428 msgid "Apr" msgstr "Apr" -#: src/Core/L10n.php:508 src/Model/Event.php:428 +#: src/Core/L10n.php:504 src/Model/Event.php:430 msgid "Jun" msgstr "Jun" -#: src/Core/L10n.php:508 src/Model/Event.php:429 +#: src/Core/L10n.php:504 src/Model/Event.php:431 msgid "Jul" msgstr "Jul" -#: src/Core/L10n.php:508 src/Model/Event.php:430 +#: src/Core/L10n.php:504 src/Model/Event.php:432 msgid "Aug" msgstr "Aug" -#: src/Core/L10n.php:508 +#: src/Core/L10n.php:504 msgid "Sep" msgstr "Sep" -#: src/Core/L10n.php:508 src/Model/Event.php:432 +#: src/Core/L10n.php:504 src/Model/Event.php:434 msgid "Oct" msgstr "Okt" -#: src/Core/L10n.php:508 src/Model/Event.php:433 +#: src/Core/L10n.php:504 src/Model/Event.php:435 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:508 src/Model/Event.php:434 +#: src/Core/L10n.php:504 src/Model/Event.php:436 msgid "Dec" msgstr "Dec" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:44 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:67 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" @@ -3294,7 +3299,7 @@ msgstr "toevoegen" msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:592 src/Module/Circle.php:181 +#: src/Model/Circle.php:592 src/Module/Circle.php:185 msgid "Contacts not in any circle" msgstr "" @@ -3302,8 +3307,8 @@ msgstr "" msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:595 src/Module/Circle.php:166 -#: src/Module/Circle.php:189 src/Module/Circle.php:264 +#: src/Model/Circle.php:595 src/Module/Circle.php:168 +#: src/Module/Circle.php:190 src/Module/Circle.php:265 msgid "Circle Name: " msgstr "" @@ -3311,280 +3316,280 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1258 src/Module/Moderation/Users/Pending.php:88 +#: src/Model/Contact.php:1259 src/Module/Moderation/Users/Pending.php:88 #: src/Module/Notifications/Introductions.php:124 #: src/Module/Notifications/Introductions.php:197 msgid "Approve" msgstr "Goedkeuren" -#: src/Model/Contact.php:1594 src/Model/Contact.php:1666 +#: src/Model/Contact.php:1595 src/Model/Contact.php:1667 #: src/Module/Contact/Profile.php:360 #, php-format msgid "%s has blocked you" msgstr "" -#: src/Model/Contact.php:1746 +#: src/Model/Contact.php:1747 msgid "Organisation" msgstr "Organisatie" -#: src/Model/Contact.php:1754 +#: src/Model/Contact.php:1755 msgid "Group" msgstr "" -#: src/Model/Contact.php:1758 src/Module/Moderation/BaseUsers.php:122 +#: src/Model/Contact.php:1759 src/Module/Moderation/BaseUsers.php:122 msgid "Relay" msgstr "" -#: src/Model/Contact.php:3073 +#: src/Model/Contact.php:3085 msgid "Disallowed profile URL." msgstr "Niet toegelaten profiel adres." -#: src/Model/Contact.php:3078 src/Module/Friendica.php:88 +#: src/Model/Contact.php:3090 src/Module/Friendica.php:88 msgid "Blocked domain" msgstr "Domein geblokeerd" -#: src/Model/Contact.php:3083 +#: src/Model/Contact.php:3095 msgid "Connect URL missing." msgstr "Connectie URL ontbreekt." -#: src/Model/Contact.php:3092 +#: src/Model/Contact.php:3104 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Het contact kon niet toegevoegd worden. Gelieve de relevante netwerk gegevens na te kijken in Instellingen -> Sociale Netwerken." -#: src/Model/Contact.php:3110 +#: src/Model/Contact.php:3122 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3127 +#: src/Model/Contact.php:3139 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3134 +#: src/Model/Contact.php:3146 msgid "The profile address specified does not provide adequate information." msgstr "Het opgegeven profiel adres bevat geen adequate informatie." -#: src/Model/Contact.php:3136 +#: src/Model/Contact.php:3148 msgid "No compatible communication protocols or feeds were discovered." msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt." -#: src/Model/Contact.php:3139 +#: src/Model/Contact.php:3151 msgid "An author or name was not found." msgstr "Er werd geen auteur of naam gevonden." -#: src/Model/Contact.php:3142 +#: src/Model/Contact.php:3154 msgid "No browser URL could be matched to this address." msgstr "Er kan geen browser URL gematcht worden met dit adres." -#: src/Model/Contact.php:3145 +#: src/Model/Contact.php:3157 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Het @-stijl-identiteitsadres komt niet overeen met een nekend protocol of e-mailcontact." -#: src/Model/Contact.php:3146 +#: src/Model/Contact.php:3158 msgid "Use mailto: in front of address to force email check." msgstr "Gebruik mailto: voor het adres om een e-mailcontrole af te dwingen." -#: src/Model/Contact.php:3152 +#: src/Model/Contact.php:3164 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Profiel met restricties. Deze peresoon zal geen directe/persoonlijke notificaties van jou kunnen ontvangen." -#: src/Model/Contact.php:3211 +#: src/Model/Contact.php:3223 msgid "Unable to retrieve contact information." msgstr "Het was niet mogelijk informatie over dit contact op te halen." -#: src/Model/Event.php:40 +#: src/Model/Event.php:42 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 -#: src/Model/Event.php:928 +#: src/Model/Event.php:63 src/Model/Event.php:80 src/Model/Event.php:457 +#: src/Model/Event.php:929 msgid "Starts:" msgstr "Begint:" -#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 -#: src/Model/Event.php:932 +#: src/Model/Event.php:66 src/Model/Event.php:86 src/Model/Event.php:458 +#: src/Model/Event.php:933 msgid "Finishes:" msgstr "Eindigt:" -#: src/Model/Event.php:405 +#: src/Model/Event.php:407 msgid "all-day" msgstr "de hele dag" -#: src/Model/Event.php:431 +#: src/Model/Event.php:433 msgid "Sept" msgstr "Sep" -#: src/Model/Event.php:448 src/Module/Calendar/Show.php:117 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:117 #: src/Util/Temporal.php:329 msgid "today" msgstr "vandaag" -#: src/Model/Event.php:449 src/Module/Calendar/Show.php:118 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:118 #: src/Module/Settings/Display.php:302 src/Util/Temporal.php:339 msgid "month" msgstr "maand" -#: src/Model/Event.php:450 src/Module/Calendar/Show.php:119 +#: src/Model/Event.php:452 src/Module/Calendar/Show.php:119 #: src/Module/Settings/Display.php:303 src/Util/Temporal.php:340 msgid "week" msgstr "week" -#: src/Model/Event.php:451 src/Module/Calendar/Show.php:120 +#: src/Model/Event.php:453 src/Module/Calendar/Show.php:120 #: src/Module/Settings/Display.php:304 src/Util/Temporal.php:341 msgid "day" msgstr "dag" -#: src/Model/Event.php:453 +#: src/Model/Event.php:455 msgid "No events to display" msgstr "Geen gebeurtenissen te tonen" -#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Model/Event.php:504 src/Module/Feed.php:56 #: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "Toegang tot dit profiel is beperkt." -#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:52 +#: src/Model/Event.php:545 src/Module/Calendar/Event/Show.php:52 msgid "Event not found." msgstr "" -#: src/Model/Event.php:623 +#: src/Model/Event.php:624 msgid "l, F j" msgstr "l j F" -#: src/Model/Event.php:650 +#: src/Model/Event.php:651 msgid "Edit event" msgstr "Gebeurtenis bewerken" -#: src/Model/Event.php:651 +#: src/Model/Event.php:652 msgid "Duplicate event" msgstr "Duplicate gebeurtenis" -#: src/Model/Event.php:652 +#: src/Model/Event.php:653 msgid "Delete event" msgstr "Verwijder gebeurtenis" -#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 +#: src/Model/Event.php:883 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:883 +#: src/Model/Event.php:884 msgid "D g:i A" msgstr "D g:i A" -#: src/Model/Event.php:884 +#: src/Model/Event.php:885 msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:947 src/Model/Event.php:949 +#: src/Model/Event.php:948 src/Model/Event.php:950 msgid "Show map" msgstr "Toon kaart" -#: src/Model/Event.php:948 +#: src/Model/Event.php:949 msgid "Hide map" msgstr "Verberg kaart" -#: src/Model/Event.php:1041 +#: src/Model/Event.php:1042 #, php-format msgid "%s's birthday" msgstr "%s's verjaardag" -#: src/Model/Event.php:1042 +#: src/Model/Event.php:1043 #, php-format msgid "Happy Birthday %s" msgstr "Gefeliciteerd %s" -#: src/Model/Item.php:2323 +#: src/Model/Item.php:2331 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2325 +#: src/Model/Item.php:2333 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2328 +#: src/Model/Item.php:2336 #, php-format msgid "" "Detected languages in this post:\n" "%s" msgstr "" -#: src/Model/Item.php:3277 +#: src/Model/Item.php:3285 msgid "activity" msgstr "activiteit" -#: src/Model/Item.php:3279 +#: src/Model/Item.php:3287 msgid "comment" msgstr "" -#: src/Model/Item.php:3282 src/Module/Post/Tag/Add.php:109 +#: src/Model/Item.php:3290 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "bericht" -#: src/Model/Item.php:3452 +#: src/Model/Item.php:3463 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3454 +#: src/Model/Item.php:3465 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3456 +#: src/Model/Item.php:3467 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3460 +#: src/Model/Item.php:3471 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3969 +#: src/Model/Item.php:3980 msgid "bytes" msgstr "bytes" -#: src/Model/Item.php:4000 +#: src/Model/Item.php:4011 #, 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:4002 +#: src/Model/Item.php:4013 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:4007 +#: src/Model/Item.php:4018 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:4009 +#: src/Model/Item.php:4020 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:4011 +#: src/Model/Item.php:4022 #, php-format msgid "Poll end: %s" msgstr "" -#: src/Model/Item.php:4052 src/Model/Item.php:4053 +#: src/Model/Item.php:4063 src/Model/Item.php:4064 msgid "View on separate page" msgstr "Bekijk op aparte pagina" @@ -3592,7 +3597,7 @@ msgstr "Bekijk op aparte pagina" msgid "[no subject]" msgstr "[geen onderwerp]" -#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 +#: src/Model/Photo.php:1192 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Tijdlijn foto's" @@ -3605,7 +3610,7 @@ msgstr "Bewerk profiel" msgid "Change profile photo" msgstr "Profiel foto wijzigen" -#: src/Model/Profile.php:357 src/Module/Directory.php:139 +#: src/Model/Profile.php:357 src/Module/Directory.php:138 #: src/Module/Profile/Profile.php:200 msgid "Homepage:" msgstr "Website:" @@ -3695,7 +3700,7 @@ msgstr "Houdt niet van:" msgid "Title/Description:" msgstr "Titel/Beschrijving:" -#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:176 +#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:174 #: src/Module/Moderation/Report/Create.php:266 #: src/Module/Moderation/Summary.php:65 msgid "Summary" @@ -3746,59 +3751,59 @@ msgstr "" msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt." -#: src/Model/User.php:740 src/Model/User.php:773 +#: src/Model/User.php:739 src/Model/User.php:772 msgid "Login failed" msgstr "Login mislukt" -#: src/Model/User.php:805 +#: src/Model/User.php:804 msgid "Not enough information to authenticate" msgstr "Niet genoeg informatie om te authentificeren" -#: src/Model/User.php:930 +#: src/Model/User.php:929 msgid "Password can't be empty" msgstr "Wachtwoord mag niet leeg zijn" -#: src/Model/User.php:972 +#: src/Model/User.php:971 msgid "Empty passwords are not allowed." msgstr "Lege wachtwoorden zijn niet toegestaan" -#: src/Model/User.php:976 +#: src/Model/User.php:975 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "The nieuwe wachtwoord is gecompromitteerd in een publieke data dump, kies alsjeblieft een ander." -#: src/Model/User.php:980 +#: src/Model/User.php:979 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:984 +#: src/Model/User.php:983 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1193 +#: src/Model/User.php:1192 msgid "Passwords do not match. Password unchanged." msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd." -#: src/Model/User.php:1200 +#: src/Model/User.php:1199 msgid "An invitation is required." msgstr "Een uitnodiging is vereist." -#: src/Model/User.php:1204 +#: src/Model/User.php:1203 msgid "Invitation could not be verified." msgstr "Uitnodiging kon niet geverifieerd worden." -#: src/Model/User.php:1212 +#: src/Model/User.php:1211 msgid "Invalid OpenID url" msgstr "Ongeldige OpenID url" -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Er is een probleem opgetreden bij het inloggen met het opgegeven OpenID. Kijk alsjeblieft de spelling van deze ID na." -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "The error message was:" msgstr "De foutboodschap was:" @@ -3989,57 +3994,57 @@ msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:51 +#: src/Module/Admin/Addons/Details.php:49 msgid "Addon not found." msgstr "Addon niet gevonden." -#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 +#: src/Module/Admin/Addons/Details.php:60 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "Addon %s gedeactiveerd" -#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 +#: src/Module/Admin/Addons/Details.php:63 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "Addon %s geactiveerd" -#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Addons/Details.php:72 #: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "Uitschakelen" -#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Addons/Details.php:75 #: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351 msgid "Enable" msgstr "Inschakelen" -#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Addons/Details.php:95 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:175 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Summary.php:173 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 "Beheer" -#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/Admin/Addons/Details.php:96 src/Module/Admin/Addons/Index.php:60 #: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:127 msgid "Addons" msgstr "Addons" -#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Addons/Details.php:97 #: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Schakelaar" -#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Addons/Details.php:104 #: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Auteur:" -#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Addons/Details.php:105 #: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Onderhoud:" @@ -4056,9 +4061,10 @@ msgstr "Installatie Addon %s is mislukt." #: 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:545 src/Module/Settings/Addons.php:64 -#: src/Module/Settings/Connectors.php:149 -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Account.php:507 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/Features.php:61 msgid "Save Settings" @@ -4075,62 +4081,62 @@ msgid "" "official addon repository at %1$s." msgstr "" -#: src/Module/Admin/DBSync.php:37 +#: src/Module/Admin/DBSync.php:35 msgid "Update has been marked successful" msgstr "Wijziging succesvol gemarkeerd " -#: src/Module/Admin/DBSync.php:45 +#: src/Module/Admin/DBSync.php:43 #, php-format msgid "Database structure update %s was successfully applied." msgstr "Database structuur update %s werd met succes toegepast." -#: src/Module/Admin/DBSync.php:47 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "Uitvoering van de database structuur update %s is mislukt met fout: %s" -#: src/Module/Admin/DBSync.php:62 +#: src/Module/Admin/DBSync.php:60 #, php-format msgid "Executing %s failed with error: %s" msgstr "Uitvoering van %s mislukt met fout: %s" -#: src/Module/Admin/DBSync.php:64 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Update %s was successfully applied." msgstr "Wijziging %s geslaagd." -#: src/Module/Admin/DBSync.php:67 +#: src/Module/Admin/DBSync.php:65 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Wijziging %s gaf geen status terug. We weten niet of de wijziging geslaagd is." -#: src/Module/Admin/DBSync.php:70 +#: src/Module/Admin/DBSync.php:68 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "Er was geen bijkomende update functie %s die moest opgeroepen worden." -#: src/Module/Admin/DBSync.php:91 +#: src/Module/Admin/DBSync.php:89 msgid "No failed updates." msgstr "Geen mislukte wijzigingen" -#: src/Module/Admin/DBSync.php:92 +#: src/Module/Admin/DBSync.php:90 msgid "Check database structure" msgstr "Controleer de database structuur" -#: src/Module/Admin/DBSync.php:96 +#: src/Module/Admin/DBSync.php:94 msgid "Failed Updates" msgstr "Mislukte wijzigingen" -#: src/Module/Admin/DBSync.php:97 +#: src/Module/Admin/DBSync.php:95 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Dit is zonder de wijzigingen voor 1139, welke geen status teruggaven." -#: src/Module/Admin/DBSync.php:98 +#: src/Module/Admin/DBSync.php:96 msgid "Mark success (if update was manually applied)" msgstr "Markeren als succes (als aanpassing manueel doorgevoerd werd)" -#: src/Module/Admin/DBSync.php:99 +#: src/Module/Admin/DBSync.php:97 msgid "Attempt to execute this update step automatically" msgstr "Probeer deze stap automatisch uit te voeren" @@ -5695,12 +5701,12 @@ msgstr "" msgid "Database (legacy)" msgstr "" -#: src/Module/Admin/Summary.php:41 +#: src/Module/Admin/Summary.php:39 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:45 +#: src/Module/Admin/Summary.php:43 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5711,7 +5717,7 @@ msgid "" " an automatic conversion.
" msgstr "Je DB opereert nog met MyISAM tabellen. Best is van engine te veranderen naar InnoDB. Aangezien Friendica in de toekomst gebruik zal maken van InnoDB features, zou je dit best aanpassen! Zie hier voor een gids die je kan helpen om de tabel engines te converteren. Je kan ook het commandophp bin/console.php dbstructure toinnodb van je Friendica installatie gebruiken voor een automatische conversie.
" -#: src/Module/Admin/Summary.php:50 +#: src/Module/Admin/Summary.php:48 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5722,7 +5728,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:60 +#: src/Module/Admin/Summary.php:58 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5730,46 +5736,46 @@ msgid "" " to %d. See here for more information.
" msgstr "" -#: src/Module/Admin/Summary.php:68 +#: src/Module/Admin/Summary.php:66 #, 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 "Er is een nieuwe versie van Friendica beschikbaar om te downloaden. Je huidige versie is %1$s, upstream versie is %2$s" -#: src/Module/Admin/Summary.php:76 +#: src/Module/Admin/Summary.php:74 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 "Database update is mislukt. Gelieve \"php bin/console.php dbstructure update\" vanaf de command line uit te voeren en de foutmeldingen die zouden kunnen verschijnen na te kijken." -#: src/Module/Admin/Summary.php:80 +#: src/Module/Admin/Summary.php:78 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:84 +#: src/Module/Admin/Summary.php:82 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:89 +#: src/Module/Admin/Summary.php:87 msgid "The worker was never executed. Please check your database structure!" msgstr "De worker werd nooit uitgevoerd. Best je database structuur eens nakijken!" -#: src/Module/Admin/Summary.php:91 +#: src/Module/Admin/Summary.php:89 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "De laatste worker uitvoering was op %s UTC. Dit is langer dan 1 uur geleden. Best je crontab instellingen nakijken." -#: src/Module/Admin/Summary.php:96 +#: src/Module/Admin/Summary.php:94 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5778,7 +5784,7 @@ msgid "" "help with the transition." msgstr "Het configuratiebestand bevind zich nu in config/local.config.php. Kopieer het bestand config/local-sample.config.php en verplaats je configuratie uit .htconfig.php. Ga naar deconfiguratie help pagina voor hulp bij transitie." -#: src/Module/Admin/Summary.php:100 +#: src/Module/Admin/Summary.php:98 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5787,7 +5793,7 @@ msgid "" "page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:106 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5795,40 +5801,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "%s is niet bereikbaar. Dit is een belangrijk communicatieprobleem waardoor server-naar-server communicatie niet mogelijk is. Lees de the installatie pagina voor hulp." -#: src/Module/Admin/Summary.php:130 +#: src/Module/Admin/Summary.php:128 #, 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:138 +#: src/Module/Admin/Summary.php:136 #, 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:146 +#: src/Module/Admin/Summary.php:144 #, 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:157 +#: src/Module/Admin/Summary.php:155 msgid "Message queues" msgstr "Bericht-wachtrijen" -#: src/Module/Admin/Summary.php:160 +#: src/Module/Admin/Summary.php:158 msgid "Server Settings" msgstr "Server instellingen." -#: src/Module/Admin/Summary.php:178 +#: src/Module/Admin/Summary.php:176 msgid "Version" msgstr "Versie" -#: src/Module/Admin/Summary.php:182 +#: src/Module/Admin/Summary.php:180 msgid "Active addons" msgstr "Actieve addons" @@ -6093,8 +6099,8 @@ msgstr "" msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:134 -#: src/Module/Moderation/Users/Index.php:144 +#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:137 +#: src/Module/Moderation/Users/Index.php:147 msgid "Users" msgstr "Gebruiker" @@ -6130,7 +6136,7 @@ msgstr "" msgid "Only You Can See This" msgstr "Alleen jij kunt dit zien" -#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:67 +#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:65 msgid "Scheduled Posts" msgstr "" @@ -6182,7 +6188,7 @@ msgstr "2-factor authenticatie" msgid "Display" msgstr "Weergave" -#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:195 +#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:189 msgid "Social Networks" msgstr "Sociale netwerken" @@ -6198,11 +6204,15 @@ msgstr "Verbonden applicaties" msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:84 +#: src/Module/BaseSettings.php:155 src/Module/Settings/ContactImport.php:109 +msgid "Import Contacts" +msgstr "Importeer contacten" + +#: src/Module/BaseSettings.php:162 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Persoonlijke gegevens exporteren" -#: src/Module/BaseSettings.php:162 +#: src/Module/BaseSettings.php:169 msgid "Remove account" msgstr "Account verwijderen" @@ -6331,8 +6341,8 @@ msgstr "lijst" msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:54 src/Module/Circle.php:202 -#: src/Module/Circle.php:226 +#: src/Module/Circle.php:54 src/Module/Circle.php:203 +#: src/Module/Circle.php:227 msgid "Circle not found." msgstr "" @@ -6340,15 +6350,15 @@ msgstr "" msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:78 +#: src/Module/Circle.php:80 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Circle.php:86 src/Module/Circle.php:95 #: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 -#: 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/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/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 @@ -6357,75 +6367,75 @@ msgstr "" msgid "Contact not found." msgstr "Contact niet gevonden" -#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 +#: src/Module/Circle.php:90 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Ongeldig contact." -#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 +#: src/Module/Circle.php:99 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "Contact is verwijderd." -#: src/Module/Circle.php:103 +#: src/Module/Circle.php:105 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:106 +#: src/Module/Circle.php:108 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:110 +#: src/Module/Circle.php:112 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:113 +#: src/Module/Circle.php:115 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:119 msgid "Bad request." msgstr "Verkeerde aanvraag." -#: src/Module/Circle.php:158 +#: src/Module/Circle.php:160 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:159 +#: src/Module/Circle.php:161 msgid "Filter" msgstr "filter" -#: src/Module/Circle.php:165 +#: src/Module/Circle.php:167 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:207 +#: src/Module/Circle.php:208 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:258 +#: src/Module/Circle.php:259 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:268 +#: src/Module/Circle.php:269 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:278 +#: src/Module/Circle.php:279 msgid "Members" msgstr "Leden" -#: src/Module/Circle.php:281 +#: src/Module/Circle.php:282 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:297 +#: src/Module/Circle.php:298 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:320 +#: src/Module/Circle.php:321 msgid "Click on a contact to add or remove." msgstr "Klik op een contact om het toe te voegen of te verwijderen." -#: src/Module/Circle.php:337 +#: src/Module/Circle.php:338 msgid "Add contact to circle" msgstr "" @@ -6459,7 +6469,7 @@ msgid "Only show blocked contacts" msgstr "Toon alleen geblokkeerde contacten" #: src/Module/Contact.php:349 src/Module/Contact.php:421 -#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:386 msgid "Ignored" msgstr "Genegeerd" @@ -6510,8 +6520,8 @@ msgstr "Wijzigen" #: src/Module/Contact.php:449 src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:105 -#: src/Module/Moderation/Users/Blocked.php:124 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Blocked.php:127 +#: src/Module/Moderation/Users/Index.php:143 msgid "Unblock" msgstr "Blokkering opheffen" @@ -6587,12 +6597,12 @@ msgstr "Ga terug naar contactbewerker" #: 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:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:56 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Naam" @@ -7157,11 +7167,11 @@ msgstr "" msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:190 +#: src/Module/Conversation/Timeline.php:193 msgid "Include" msgstr "" -#: src/Module/Conversation/Timeline.php:191 +#: src/Module/Conversation/Timeline.php:194 msgid "Hide" msgstr "" @@ -7430,19 +7440,19 @@ msgstr "" msgid "Lookup address:" msgstr "" -#: src/Module/Directory.php:61 +#: src/Module/Directory.php:60 msgid "No entries (some entries may be hidden)." msgstr "Geen gegevens (sommige gegevens kunnen verborgen zijn)." -#: src/Module/Directory.php:77 +#: src/Module/Directory.php:76 msgid "Find on this site" msgstr "Op deze website zoeken" -#: src/Module/Directory.php:79 +#: src/Module/Directory.php:78 msgid "Results for:" msgstr "Resultaten voor:" -#: src/Module/Directory.php:81 +#: src/Module/Directory.php:80 msgid "Site Directory" msgstr "Websitegids" @@ -7695,40 +7705,40 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Go naar je nieuwe Friendica node registratie pagina en registeer als nieuwe gebruiker. Vergeet niet hetzelfde email adres te gebruiken als wat je opgegeven hebt als administrator email. Dit zal je toelaten om het site administratie paneel te openen." -#: src/Module/Invite.php:43 +#: src/Module/Invite.php:42 msgid "Total invitation limit exceeded." msgstr "Totale uitnodigingslimiet overschreden." -#: src/Module/Invite.php:68 +#: src/Module/Invite.php:67 #, php-format msgid "%s : Not a valid email address." msgstr "%s: Geen geldig e-mailadres." -#: src/Module/Invite.php:94 +#: src/Module/Invite.php:93 msgid "Please join us on Friendica" msgstr "Kom bij ons op Friendica" -#: src/Module/Invite.php:103 +#: src/Module/Invite.php:102 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Uitnodigingslimiet overschreden. Neem contact op met de beheerder van je website." -#: src/Module/Invite.php:107 +#: src/Module/Invite.php:106 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Aflevering van bericht mislukt." -#: src/Module/Invite.php:111 +#: src/Module/Invite.php:110 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%d bericht verzonden." msgstr[1] "%d berichten verzonden." -#: src/Module/Invite.php:129 +#: src/Module/Invite.php:127 msgid "You have no more invitations available" msgstr "Je kunt geen uitnodigingen meer sturen" -#: src/Module/Invite.php:136 +#: src/Module/Invite.php:134 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7736,14 +7746,14 @@ msgid "" " other social networks." msgstr "Bezoek %s voor een lijst van openbare sites waar je je kunt aansluiten. Friendica leden op andere sites kunnen allemaal met elkaar verbonden worden, en ook met leden van verschillende andere sociale netwerken." -#: src/Module/Invite.php:138 +#: src/Module/Invite.php:136 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Om deze uitnodiging te accepteren kan je je op %s registreren of op een andere vrij toegankelijke Friendica-website." -#: src/Module/Invite.php:139 +#: src/Module/Invite.php:137 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7752,48 +7762,48 @@ msgid "" "sites you can join." msgstr "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken. Bekijk %s voor een lijst van alternatieve Friendica servers waar je aan kunt sluiten." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:141 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Onze verontschuldigingen. Dit systeem is momenteel niet ingesteld om verbinding te maken met andere openbare plaatsen of leden uit te nodigen." -#: src/Module/Invite.php:146 +#: src/Module/Invite.php:144 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 "Friendica servers zijn allemaal onderling verbonden om een reusachtig sociaal web te maken met verbeterde privacy, dat eigendom is van en gecontroleerd door zijn leden. Ze kunnen ook verbindingen maken met verschillende traditionele sociale netwerken." -#: src/Module/Invite.php:145 +#: src/Module/Invite.php:143 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "Om deze uitnodiging te accepteren, ga naar en registreer op %s." -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:151 msgid "Send invitations" msgstr "Verstuur uitnodigingen" -#: src/Module/Invite.php:154 +#: src/Module/Invite.php:152 msgid "Enter email addresses, one per line:" msgstr "Vul e-mailadressen in, één per lijn:" -#: src/Module/Invite.php:158 +#: src/Module/Invite.php:156 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Ik nodig je vriendelijk uit om bij mij en andere vrienden te komen op Friendica - en ons te helpen om een beter sociaal web te bouwen." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "You will need to supply this invitation code: $invite_code" msgstr "Je zult deze uitnodigingscode moeten invullen: $invite_code" -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Eens je geregistreerd bent kun je contact leggen met mij via mijn profielpagina op:" -#: src/Module/Invite.php:162 +#: src/Module/Invite.php:160 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" @@ -7895,12 +7905,12 @@ msgid "File upload failed." msgstr "Uploaden van bestand mislukt." #: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 -#: src/Module/Profile/Photos.php:204 +#: src/Module/Profile/Photos.php:212 #: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Niet in staat om de afbeelding te verwerken" -#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:224 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:232 #: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Uploaden van afbeelding mislukt." @@ -7933,23 +7943,23 @@ msgstr "" msgid "List of pending user deletions" msgstr "" -#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:469 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:431 msgid "Normal Account Page" msgstr "Normale accountpagina" -#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:476 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:438 msgid "Soapbox Page" msgstr "Zeepkist-pagina" -#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:483 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:445 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:490 +#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:452 msgid "Public Group - Restricted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:497 +#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:459 msgid "Automatic Friend Page" msgstr "Automatisch Vriendschapspagina" @@ -7958,22 +7968,22 @@ msgid "Private Group" msgstr "" #: src/Module/Moderation/BaseUsers.php:118 -#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:440 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:402 msgid "Personal Page" msgstr "Persoonlijke pagina" #: src/Module/Moderation/BaseUsers.php:119 -#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:447 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:409 msgid "Organisation Page" msgstr "Organisatie Pagina" #: src/Module/Moderation/BaseUsers.php:120 -#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:454 +#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:416 msgid "News Page" msgstr "Nieuws pagina" #: src/Module/Moderation/BaseUsers.php:121 -#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:461 +#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:423 msgid "Community Group" msgstr "" @@ -8003,9 +8013,9 @@ msgid "Block Remote Contact" msgstr "Blokkeer Remote Contact" #: src/Module/Moderation/Blocklist/Contact.php:102 -#: 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/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:138 #: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "Alles selecteren" @@ -8346,9 +8356,9 @@ msgid "Tag" msgstr "" #: src/Module/Moderation/Item/Source.php:77 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 -#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 +#: src/Module/Moderation/Users/Index.php:129 msgid "Type" msgstr "Type" @@ -8613,7 +8623,7 @@ msgstr[1] "" msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:418 +#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:380 msgid "Channel Relay" msgstr "" @@ -8634,11 +8644,11 @@ msgstr[0] "" msgstr[1] "" #: src/Module/Moderation/Users/Active.php:37 -#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Active.php:74 #: src/Module/Moderation/Users/Blocked.php:37 -#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Blocked.php:74 #: src/Module/Moderation/Users/Index.php:44 -#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Index.php:81 msgid "You can't remove yourself" msgstr "Je kan jezelf niet verwijderen" @@ -8651,81 +8661,81 @@ msgid_plural "%s users deleted" msgstr[0] "%s gebruiker verwijderd" msgstr[1] "%s gebruikers verwijderd" -#: src/Module/Moderation/Users/Active.php:69 -#: src/Module/Moderation/Users/Blocked.php:69 -#: src/Module/Moderation/Users/Index.php:76 +#: src/Module/Moderation/Users/Active.php:72 +#: src/Module/Moderation/Users/Blocked.php:72 +#: src/Module/Moderation/Users/Index.php:79 #, php-format msgid "User \"%s\" deleted" msgstr "" -#: src/Module/Moderation/Users/Active.php:79 -#: src/Module/Moderation/Users/Index.php:86 +#: src/Module/Moderation/Users/Active.php:82 +#: src/Module/Moderation/Users/Index.php:89 #, php-format msgid "User \"%s\" blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Register date" msgstr "Registratiedatum" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last login" msgstr "Laatste login" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last public item" msgstr "" -#: src/Module/Moderation/Users/Active.php:120 +#: src/Module/Moderation/Users/Active.php:123 msgid "Active Accounts" msgstr "" -#: src/Module/Moderation/Users/Active.php:124 -#: src/Module/Moderation/Users/Blocked.php:123 -#: src/Module/Moderation/Users/Index.php:139 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "User blocked" msgstr "Gebruiker geblokeerd" -#: src/Module/Moderation/Users/Active.php:125 -#: src/Module/Moderation/Users/Blocked.php:125 -#: src/Module/Moderation/Users/Index.php:141 +#: src/Module/Moderation/Users/Active.php:128 +#: src/Module/Moderation/Users/Blocked.php:128 +#: src/Module/Moderation/Users/Index.php:144 msgid "Site admin" msgstr "Sitebeheerder" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:142 +#: src/Module/Moderation/Users/Active.php:129 +#: src/Module/Moderation/Users/Blocked.php:129 +#: src/Module/Moderation/Users/Index.php:145 msgid "Account expired" msgstr "Account verlopen" -#: src/Module/Moderation/Users/Active.php:127 -#: src/Module/Moderation/Users/Index.php:145 +#: src/Module/Moderation/Users/Active.php:130 +#: src/Module/Moderation/Users/Index.php:148 msgid "Create a new user" msgstr "" -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:132 -#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:154 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Geselecteerde gebruikers zullen verwijderd worden!\\n\\nAlles wat deze gebruikers gepost hebben op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?" -#: src/Module/Moderation/Users/Active.php:134 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:155 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" @@ -8739,13 +8749,13 @@ msgid_plural "%s users unblocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Blocked.php:78 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Blocked.php:81 +#: src/Module/Moderation/Users/Index.php:95 #, php-format msgid "User \"%s\" unblocked" msgstr "" -#: src/Module/Moderation/Users/Blocked.php:120 +#: src/Module/Moderation/Users/Blocked.php:123 msgid "Blocked Users" msgstr "" @@ -8778,11 +8788,11 @@ msgid "Users awaiting permanent deletion" msgstr "" #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:149 msgid "Permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Index.php:136 +#: src/Module/Moderation/Users/Index.php:139 msgid "User waiting for permanent deletion" msgstr "Gebruiker wacht op permanente verwijdering" @@ -8947,7 +8957,7 @@ msgstr "" msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:91 +#: src/Module/OAuth/Token.php:73 msgid "Unsupported or missing grant type" msgstr "" @@ -8999,7 +9009,7 @@ msgstr "Verboden" msgid "Keep this window open until done." msgstr "Houd dit scherm open tot het klaar is" -#: src/Module/OpenSearch.php:57 +#: src/Module/OpenSearch.php:55 #, php-format msgid "Search in Friendica %s" msgstr "" @@ -9013,12 +9023,12 @@ msgstr "" msgid "The Photo with id %s is not available." msgstr "De foto met id %s is niet beschikbaar" -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:178 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:180 #, php-format msgid "Invalid photo with id %s." msgstr "Ongeldige foto met ID %s" @@ -9051,15 +9061,15 @@ msgstr "Voeg audio adres toe" msgid "audio link" msgstr "audio adres" -#: src/Module/Post/Tag/Remove.php:92 +#: src/Module/Post/Tag/Remove.php:93 msgid "Remove Item Tag" msgstr "Verwijder label van item" -#: src/Module/Post/Tag/Remove.php:93 +#: src/Module/Post/Tag/Remove.php:94 msgid "Select a tag to remove: " msgstr "Selecteer een label om te verwijderen: " -#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Post/Tag/Remove.php:95 #: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Verwijderen" @@ -9138,32 +9148,32 @@ msgstr "reactie van %s" msgid "%s's timeline" msgstr "Tijdslijn van %s" -#: src/Module/Profile/Photos.php:153 src/Module/Profile/Photos.php:156 -#: src/Module/Profile/Photos.php:181 +#: src/Module/Profile/Photos.php:157 src/Module/Profile/Photos.php:160 +#: src/Module/Profile/Photos.php:189 #: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "Beeld is groter dan de limiet ( %s )" -#: src/Module/Profile/Photos.php:159 +#: src/Module/Profile/Photos.php:163 msgid "Image upload didn't complete, please try again" msgstr "Opladen van het beeld is niet compleet, probeer het opnieuw" -#: src/Module/Profile/Photos.php:162 +#: src/Module/Profile/Photos.php:166 msgid "Image file is missing" msgstr "Beeld bestand ontbreekt" -#: src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:171 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "De server kan op dit moment geen nieuw bestand opladen, contacteer alsjeblieft je beheerder" -#: src/Module/Profile/Photos.php:189 +#: src/Module/Profile/Photos.php:197 msgid "Image file is empty." msgstr "Afbeeldingsbestand is leeg." -#: src/Module/Profile/Photos.php:341 +#: src/Module/Profile/Photos.php:349 msgid "View Album" msgstr "Album bekijken" @@ -9279,15 +9289,15 @@ msgid "" "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:69 +#: src/Module/Profile/Schedule.php:67 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:70 +#: src/Module/Profile/Schedule.php:68 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:71 +#: src/Module/Profile/Schedule.php:69 msgid "Remove post" msgstr "" @@ -9352,7 +9362,7 @@ msgid "Please repeat your e-mail address:" msgstr "Herhaal uw e-mailadres:" #: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:551 +#: src/Module/Settings/Account.php:513 msgid "New Password:" msgstr "Nieuw Wachtwoord:" @@ -9361,7 +9371,7 @@ msgid "Leave empty for an auto generated password." msgstr "Laat leeg voor een automatisch gegenereerd wachtwoord." #: src/Module/Register.php:157 src/Module/Security/PasswordTooLong.php:87 -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Confirm:" msgstr "Bevestig:" @@ -9545,20 +9555,20 @@ msgstr "Uitgelogd." msgid "OpenID protocol error. No ID returned" msgstr "OpenID-protocolfout. Geen ID terug ontvangen" -#: src/Module/Security/OpenID.php:76 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "Account niet gevonden. Meld je aan met je bestaande account om de OpenID toe te voegen." -#: src/Module/Security/OpenID.php:78 +#: src/Module/Security/OpenID.php:80 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "Account niet gevonden. Maak een nieuwe account aan of meld je aan met je bestaande account om de OpenID toe te voegen." #: src/Module/Security/PasswordTooLong.php:43 -#: src/Module/Settings/Account.php:51 +#: src/Module/Settings/Account.php:49 msgid "Passwords do not match." msgstr "Wachtwoorden zijn niet gelijk" @@ -9567,7 +9577,7 @@ msgid "Password does not need changing." msgstr "" #: src/Module/Security/PasswordTooLong.php:63 -#: src/Module/Settings/Account.php:65 +#: src/Module/Settings/Account.php:63 msgid "Password unchanged." msgstr "Wachtwoord ongewijzigd" @@ -9587,24 +9597,24 @@ msgid "Update Password" msgstr "" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Current Password:" msgstr "Huidig wachtwoord:" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Your current password to confirm the changes" msgstr "Je huidig wachtwoord om de wijzigingen te bevestigen" #: src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:537 +#: src/Module/Settings/Account.php:499 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:538 +#: src/Module/Settings/Account.php:500 msgid "Password length is limited to 72 characters." msgstr "" @@ -9708,129 +9718,121 @@ msgstr "Voer een code in van uw authenticatie-app" msgid "Verify code and complete login" msgstr "Controleer de code en voltooi de login" -#: src/Module/Settings/Account.php:80 +#: src/Module/Settings/Account.php:78 msgid "Please use a shorter name." msgstr "Gebruik een kortere naam." -#: src/Module/Settings/Account.php:83 +#: src/Module/Settings/Account.php:81 msgid "Name too short." msgstr "Naam is te kort." -#: src/Module/Settings/Account.php:92 +#: src/Module/Settings/Account.php:90 msgid "Wrong Password." msgstr "Verkeerd wachtwoord." -#: src/Module/Settings/Account.php:97 +#: src/Module/Settings/Account.php:95 msgid "Invalid email." msgstr "Ongeldig email adres." -#: src/Module/Settings/Account.php:101 +#: src/Module/Settings/Account.php:99 msgid "Cannot change to that email." msgstr "Kan niet naar dat email adres veranderen." -#: 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 +#: 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 msgid "Settings were not updated." msgstr "Wijziging instellingen is niet opgeslagen." -#: src/Module/Settings/Account.php:331 -msgid "Contact CSV file upload error" -msgstr "" - -#: src/Module/Settings/Account.php:350 -msgid "Importing Contacts done" -msgstr "Importeren Contacten voltooid" - -#: src/Module/Settings/Account.php:363 +#: src/Module/Settings/Account.php:325 msgid "Relocate message has been send to your contacts" msgstr "Verhuis boodschap is verzonden naar je contacten" -#: src/Module/Settings/Account.php:380 +#: src/Module/Settings/Account.php:342 msgid "Unable to find your profile. Please contact your admin." msgstr "Kan je profiel niet vinden. Contacteer alsjeblieft je beheerder." -#: src/Module/Settings/Account.php:420 +#: src/Module/Settings/Account.php:382 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:430 +#: src/Module/Settings/Account.php:392 msgid "Personal Page Subtypes" msgstr "Persoonlijke Pagina Subtypes" -#: src/Module/Settings/Account.php:431 +#: src/Module/Settings/Account.php:393 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:442 +#: src/Module/Settings/Account.php:404 msgid "Account for a personal profile." msgstr "Account voor een persoonlijk profiel" -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:411 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Account voor een organisatie die automatisch contact aanvragen goedkeurt als \"Volgers\"." -#: src/Module/Settings/Account.php:456 +#: src/Module/Settings/Account.php:418 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Account voor een nieuws reflector die automatisch contact aanvragen goedkeurt als \"Volgers\"." -#: src/Module/Settings/Account.php:463 +#: src/Module/Settings/Account.php:425 msgid "Account for community discussions." msgstr "Account voor groepsdiscussies." -#: src/Module/Settings/Account.php:471 +#: src/Module/Settings/Account.php:433 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Account voor een normaal persoonlijk profiel dat manuele goedkeuring vereist van \"Vrienden\" en \"Volgers\"." -#: src/Module/Settings/Account.php:478 +#: src/Module/Settings/Account.php:440 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Account voor een publiek profiel dat automatisch contact aanvragen goedkeurt als \"Volgers\"." -#: src/Module/Settings/Account.php:485 +#: src/Module/Settings/Account.php:447 msgid "Automatically approves all contact requests." msgstr "Aanvaardt automatisch all contact aanvragen." -#: src/Module/Settings/Account.php:492 +#: src/Module/Settings/Account.php:454 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:499 +#: src/Module/Settings/Account.php:461 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Account voor een populair profiel dat automatisch contact aanvragen goedkeurt als \"Vrienden\"." -#: src/Module/Settings/Account.php:504 +#: src/Module/Settings/Account.php:466 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:506 +#: src/Module/Settings/Account.php:468 msgid "Requires manual approval of contact requests." msgstr "Vereist manuele goedkeuring van contact aanvragen." -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Optioneel) Laat dit OpenID toe om in te loggen op deze account." -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 msgid "Publish your profile in your local site directory?" msgstr "Uw profiel publiceren in uw lokale sitemap?" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9838,94 +9840,94 @@ msgid "" " system settings." msgstr "Je profiel zal gepubliceerd worden de lokale gids van deze node. Je profiel details kunnen publiek zichtbaar zijn afhankelijk van de systeem instellingen." -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:491 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Je profiel zal ook worden gepubliceerd in de globale Friendica directories (e.g. %s)." -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:504 msgid "Account Settings" msgstr "Account Instellingen" -#: src/Module/Settings/Account.php:543 +#: src/Module/Settings/Account.php:505 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Je Identiteit adres is '%s' of '%s'." -#: src/Module/Settings/Account.php:550 +#: src/Module/Settings/Account.php:512 msgid "Password Settings" msgstr "Wachtwoord Instellingen" -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Leave password fields blank unless changing" msgstr "Laat de wachtwoord-velden leeg, tenzij je het wilt veranderen" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Password:" msgstr "Wachtwoord:" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Your current password to confirm the changes of the email address" msgstr "Je huidige wachtwoord om de verandering in het email adres te bevestigen" -#: src/Module/Settings/Account.php:557 +#: src/Module/Settings/Account.php:519 msgid "Delete OpenID URL" msgstr "Verwijder OpenID URL" -#: src/Module/Settings/Account.php:559 +#: src/Module/Settings/Account.php:521 msgid "Basic Settings" msgstr "Basis Instellingen" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:522 #: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "Weergave naam:" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:523 msgid "Email Address:" msgstr "E-mailadres:" -#: src/Module/Settings/Account.php:562 +#: src/Module/Settings/Account.php:524 msgid "Your Timezone:" msgstr "Je Tijdzone:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "Your Language:" msgstr "Je taal:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Configureer de taal van die we gebruiken als friendica interface en om je emails te sturen" -#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Account.php:526 msgid "Default Post Location:" msgstr "Standaard locatie:" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:527 msgid "Use Browser Location:" msgstr "Gebruik Webbrowser Locatie:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:529 msgid "Security and Privacy Settings" msgstr "Instellingen voor Beveiliging en Privacy" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "Maximum Friend Requests/Day:" msgstr "Maximum aantal vriendschapsverzoeken per dag:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "(to prevent spam abuse)" msgstr "(om spam misbruik te voorkomen)" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 msgid "Allow your profile to be searchable globally?" msgstr "Wilt u dat uw profiel globaal doorzoekbaar is?" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 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 " @@ -9933,43 +9935,43 @@ msgid "" "indexed or not." msgstr "Activeer deze instelling als u wilt dat anderen u gemakkelijk kunnen vinden en volgen. Uw profiel is doorzoekbaar op externe systemen. Deze instelling bepaalt ook of Friendica zoekmachines zal informeren dat uw profiel moet worden geïndexeerd of niet." -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Uw contact- / vriendenlijst verbergen voor hen die uw profiel bekijken?" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "Een lijst met uw contacten wordt weergegeven op uw profielpagina. Activeer deze optie om de weergave van uw contactenlijst uit te schakelen." -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:535 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:535 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:574 +#: src/Module/Settings/Account.php:536 msgid "Make public posts unlisted" msgstr "Maak openbare berichten verborgen" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:536 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 "Je openbare berichten verschijnen niet op de communitypagina's of in de zoekresultaten en worden ook niet naar relayservers gestuurd. Ze kunnen echter nog steeds verschijnen op openbare feeds op externe servers." -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:537 msgid "Make all posted pictures accessible" msgstr "Maak alle geplaatste foto's toegankelijk" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:537 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 " @@ -9977,227 +9979,213 @@ msgid "" "public on your photo albums though." msgstr "Deze optie maakt elke geplaatste foto toegankelijk via de directe link. Dit is een tijdelijke oplossing voor het probleem dat de meeste andere netwerken de rechten op afbeeldingen niet kunnen verwerken. Niet-openbare afbeeldingen zijn echter nog steeds niet zichtbaar voor het publiek in uw fotoalbums." -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "Allow friends to post to your profile page?" msgstr "Vrienden toestaan om op jouw profielpagina te posten?" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Je contacten kunnen berichten schrijven op je tijdslijn. Deze berichten zullen verspreid worden naar je contacten" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Allow friends to tag your posts?" msgstr "Sta vrienden toe om jouw berichten te labelen?" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Your contacts can add additional tags to your posts." msgstr "Je contacten kunnen tags toevoegen aan je berichten." -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:540 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:541 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:542 msgid "Default Post Permissions" msgstr "Standaard rechten voor nieuwe berichten" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:546 msgid "Expiration settings" msgstr "Vervalinstellingen" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "Automatically expire posts after this many days:" msgstr "Laat berichten automatisch vervallen na zo veel dagen:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Berichten zullen niet vervallen indien leeg. Vervallen berichten zullen worden verwijderd." -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "Expire posts" msgstr "Verlopen berichten" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "When activated, posts and comments will be expired." msgstr "Indien geactiveerd, zullen berichten en opmerkingen verlopen." -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "Expire personal notes" msgstr "Verloop persoonlijke notities" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Indien geactiveerd, verlopen de persoonlijke notities op uw profielpagina." -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "Expire starred posts" msgstr "Berichten met ster laten vervallen" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Berichten met een ster verhinderen dat ze verlopen. Dat gedrag wordt door deze instelling overschreven." -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 msgid "Only expire posts by others" msgstr "Laat alleen berichten van anderen verlopen" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Indien geactiveerd, vervallen je eigen berichten nooit. Dan zijn bovenstaande instellingen alleen geldig voor berichten die je hebt ontvangen." -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:554 msgid "Notification Settings" msgstr "Notificatie Instellingen" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:555 msgid "Send a notification email when:" msgstr "Stuur een notificatie e-mail wanneer:" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:556 msgid "You receive an introduction" msgstr "Je ontvangt een vriendschaps- of connectieverzoek" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:557 msgid "Your introductions are confirmed" msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:558 msgid "Someone writes on your profile wall" msgstr "Iemand iets op je tijdlijn schrijft" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:559 msgid "Someone writes a followup comment" msgstr "Iemand een reactie schrijft" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:560 msgid "You receive a private message" msgstr "Je een privé-bericht ontvangt" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:561 msgid "You receive a friend suggestion" msgstr "Je een suggestie voor een vriendschap ontvangt" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:562 msgid "You are tagged in a post" msgstr "Je expliciet in een bericht bent genoemd" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:564 msgid "Create a desktop notification when:" msgstr "" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:565 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:566 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:567 msgid "Someone liked your content" msgstr "" -#: src/Module/Settings/Account.php:605 src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:567 src/Module/Settings/Account.php:568 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:568 msgid "Someone shared your content" msgstr "" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:569 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:570 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:571 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Activate desktop notifications" msgstr "Activeer desktop notificaties" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Show desktop popup on new notifications" msgstr "Toon desktop pop-up bij nieuwe notificaties" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:577 msgid "Text-only notification emails" msgstr "Alleen-tekst notificatie emails" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:579 msgid "Send text only notification emails, without the html part" msgstr "Stuur alleen-tekst notificatie emails, zonder het html gedeelte" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:583 msgid "Show detailled notifications" msgstr "Toon gedetailleerde notificaties" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:585 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Standaard worden notificaties samengevoegd in een enkele notificatie per item. Als je deze parameter activeert wordt elke notificatie getoond." -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:589 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:591 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:632 +#: src/Module/Settings/Account.php:594 msgid "Advanced Account/Page Type Settings" msgstr "Geavanceerde Account/Pagina Type Instellingen" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:595 msgid "Change the behaviour of this account for special situations" msgstr "Pas het gedrag van dit account aan voor speciale situaties" -#: src/Module/Settings/Account.php:636 -msgid "Import Contacts" -msgstr "Importeer contacten" - -#: src/Module/Settings/Account.php:637 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "Upload een CSV-bestand met de handle van uw gevolgde gebruikers in de eerste kolom die u uit de oude gebruiker hebt geëxporteerd." - -#: src/Module/Settings/Account.php:638 -msgid "Upload File" -msgstr "Upload bestand" - -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:598 msgid "Relocate" msgstr "Verhuis" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:599 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 "Als je je profiel van een andere server hebt verhuisd, en er zijn contacten die geen updates van je ontvangen, probeer dan eens deze knop." -#: src/Module/Settings/Account.php:643 +#: src/Module/Settings/Account.php:600 msgid "Resend relocate message to contacts" msgstr "Stuur verhuis boodschap naar contacten" @@ -10362,214 +10350,232 @@ msgstr "" msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:108 +#: src/Module/Settings/Connectors.php:107 msgid "Failed to connect with email account using the settings provided." msgstr "Ik kon geen verbinding maken met het e-mail account met de gegeven instellingen." -#: src/Module/Settings/Connectors.php:155 -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:150 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:149 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:150 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:161 msgid "Email access is disabled on this site." msgstr "E-mailtoegang is op deze website uitgeschakeld." -#: src/Module/Settings/Connectors.php:182 -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:176 +#: src/Module/Settings/Connectors.php:226 msgid "None" msgstr "Geen" -#: src/Module/Settings/Connectors.php:186 +#: src/Module/Settings/Connectors.php:180 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "" -#: src/Module/Settings/Connectors.php:187 +#: src/Module/Settings/Connectors.php:181 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "" -#: src/Module/Settings/Connectors.php:188 +#: src/Module/Settings/Connectors.php:182 msgid "Embed the title in the body" msgstr "" -#: src/Module/Settings/Connectors.php:199 +#: src/Module/Settings/Connectors.php:193 msgid "General Social Media Settings" msgstr "Algemene Sociale Media Instellingen" -#: src/Module/Settings/Connectors.php:202 +#: src/Module/Settings/Connectors.php:196 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:198 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:200 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:207 +#: src/Module/Settings/Connectors.php:201 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:208 +#: src/Module/Settings/Connectors.php:202 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "Enable intelligent shortening" msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "Attach the link title" msgstr "Voeg de linktitel toe" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Indien geactiveerd, wordt de titel van de bijgevoegde link toegevoegd als titel op berichten op Diaspora. Dit is vooral handig bij contacten op afstand die zelf feed-inhoud delen." -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "Article Mode" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "" -#: src/Module/Settings/Connectors.php:218 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "" - -#: src/Module/Settings/Connectors.php:218 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "" - -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:215 msgid "Email/Mailbox Setup" msgstr "E-mail Instellen" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:216 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Als je wilt communiceren met e-mail contacten via deze dienst (optioneel), moet je hier opgeven hoe ik jouw mailbox kan bereiken." -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:217 msgid "Last successful email check:" msgstr "Laatste succesvolle e-mail controle:" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:219 msgid "IMAP server name:" msgstr "IMAP server naam:" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:220 msgid "IMAP port:" msgstr "IMAP poort:" -#: src/Module/Settings/Connectors.php:228 +#: src/Module/Settings/Connectors.php:221 msgid "Security:" msgstr "Beveiliging:" -#: src/Module/Settings/Connectors.php:229 +#: src/Module/Settings/Connectors.php:222 msgid "Email login name:" msgstr "E-mail login naam:" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:223 msgid "Email password:" msgstr "E-mail wachtwoord:" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:224 msgid "Reply-to address:" msgstr "Antwoord adres:" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:225 msgid "Send public posts to all email contacts:" msgstr "Openbare posts naar alle e-mail contacten versturen:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Action after import:" msgstr "Actie na importeren:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Move to folder" msgstr "Naar map verplaatsen" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:227 msgid "Move to folder:" msgstr "Verplaatsen naar map:" +#: src/Module/Settings/ContactImport.php:63 +msgid "Contact CSV file upload error" +msgstr "" + +#: src/Module/Settings/ContactImport.php:82 +msgid "Importing Contacts done" +msgstr "Importeren Contacten voltooid" + +#: src/Module/Settings/ContactImport.php:112 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "Upload een CSV-bestand met de handle van uw gevolgde gebruikers in de eerste kolom die u uit de oude gebruiker hebt geëxporteerd." + +#: src/Module/Settings/ContactImport.php:113 +msgid "Upload File" +msgstr "Upload bestand" + +#: src/Module/Settings/ContactImport.php:115 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "" + +#: src/Module/Settings/ContactImport.php:115 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "" + #: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "Delegatie met succes verleend." @@ -11020,42 +11026,42 @@ msgstr "Privé Sleutelwoorden:" msgid "(Used for searching profiles, never shown to others)" msgstr "(Gebruikt om profielen te zoeken, nooit aan anderen getoond)" -#: 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/Crop.php:90 +#: src/Module/Settings/Profile/Photo/Crop.php:108 +#: src/Module/Settings/Profile/Photo/Crop.php:126 #: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Verkleining van de afbeelding [%s] mislukt." -#: src/Module/Settings/Profile/Photo/Crop.php:136 +#: src/Module/Settings/Profile/Photo/Crop.php:133 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Shift-herlaad de pagina, of maak de browser cache leeg als nieuwe foto's niet onmiddellijk verschijnen." -#: src/Module/Settings/Profile/Photo/Crop.php:141 +#: src/Module/Settings/Profile/Photo/Crop.php:138 msgid "Unable to process image" msgstr "Ik kan de afbeelding niet verwerken" -#: src/Module/Settings/Profile/Photo/Crop.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:157 msgid "Photo not found." msgstr "Foto niet gevonden." -#: src/Module/Settings/Profile/Photo/Crop.php:182 +#: src/Module/Settings/Profile/Photo/Crop.php:179 msgid "Profile picture successfully updated." msgstr "Profielfoto geüpdatet." -#: src/Module/Settings/Profile/Photo/Crop.php:208 -#: src/Module/Settings/Profile/Photo/Crop.php:212 +#: src/Module/Settings/Profile/Photo/Crop.php:205 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Crop Image" msgstr "Afbeelding bijsnijden" -#: src/Module/Settings/Profile/Photo/Crop.php:209 +#: src/Module/Settings/Profile/Photo/Crop.php:206 msgid "Please adjust the image cropping for optimum viewing." msgstr "Pas het afsnijden van de afbeelding aan voor het beste resultaat." -#: src/Module/Settings/Profile/Photo/Crop.php:211 +#: src/Module/Settings/Profile/Photo/Crop.php:208 msgid "Use Image As Is" msgstr "Gebruik afbeelding zoals deze is" @@ -11126,17 +11132,17 @@ msgstr "De gebruikers id is %d" msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:116 +#: src/Module/Settings/RemoveMe.php:114 msgid "Remove My Account" msgstr "Verwijder mijn account" -#: src/Module/Settings/RemoveMe.php:117 +#: src/Module/Settings/RemoveMe.php:115 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden als het eenmaal uitgevoerd is." -#: src/Module/Settings/RemoveMe.php:122 +#: src/Module/Settings/RemoveMe.php:120 msgid "Please enter your password for verification:" msgstr "Voer je wachtwoord in voor verificatie:" @@ -11531,11 +11537,11 @@ msgstr "" msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:64 +#: src/Module/Special/HTTPException.php:65 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:69 +#: src/Module/Special/HTTPException.php:70 #, php-format msgid "Exception thrown in %s:%d" msgstr "" @@ -12318,295 +12324,295 @@ msgstr "Contacteer de afzender door op dit bericht te antwoorden als je deze ber msgid "%s posted an update." msgstr "%s heeft een wijziging geplaatst." -#: src/Object/Post.php:124 +#: src/Object/Post.php:125 msgid "Private Message" msgstr "Privébericht" -#: src/Object/Post.php:128 +#: src/Object/Post.php:129 msgid "Public Message" msgstr "" -#: src/Object/Post.php:132 +#: src/Object/Post.php:133 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:168 +#: src/Object/Post.php:169 msgid "This entry was edited" msgstr "Deze entry werd bewerkt" -#: src/Object/Post.php:196 +#: src/Object/Post.php:197 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:225 src/Object/Post.php:227 +#: src/Object/Post.php:226 src/Object/Post.php:228 msgid "Edit" msgstr "Bewerken" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Delete globally" msgstr "Verwijder globaal" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Remove locally" msgstr "Verwijder lokaal" -#: src/Object/Post.php:268 +#: src/Object/Post.php:269 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:273 +#: src/Object/Post.php:274 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:278 +#: src/Object/Post.php:279 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:282 +#: src/Object/Post.php:283 msgid "Report post" msgstr "" -#: src/Object/Post.php:293 +#: src/Object/Post.php:294 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will attend" msgstr "Ik zal er zijn" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will not attend" msgstr "Ik zal er niet zijn" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I might attend" msgstr "Ik ga misschien" -#: src/Object/Post.php:380 +#: src/Object/Post.php:381 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:381 +#: src/Object/Post.php:382 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:382 +#: src/Object/Post.php:383 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:392 +#: src/Object/Post.php:393 msgid "Add star" msgstr "" -#: src/Object/Post.php:393 +#: src/Object/Post.php:394 msgid "Remove star" msgstr "" -#: src/Object/Post.php:394 +#: src/Object/Post.php:395 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:405 +#: src/Object/Post.php:406 msgid "Pin" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:407 msgid "Unpin" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:408 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:410 +#: src/Object/Post.php:411 msgid "Pinned" msgstr "" -#: src/Object/Post.php:415 +#: src/Object/Post.php:416 msgid "Add tag" msgstr "" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare" msgstr "" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Unshare" msgstr "" -#: src/Object/Post.php:478 +#: src/Object/Post.php:479 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:514 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:517 +#: src/Object/Post.php:518 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:519 +#: src/Object/Post.php:520 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:543 +#: src/Object/Post.php:544 msgid "to" msgstr "aan" -#: src/Object/Post.php:544 +#: src/Object/Post.php:545 msgid "via" msgstr "via" -#: src/Object/Post.php:545 +#: src/Object/Post.php:546 msgid "Wall-to-Wall" msgstr "wall-to-wall" -#: src/Object/Post.php:546 +#: src/Object/Post.php:547 msgid "via Wall-To-Wall:" msgstr "via wall-to-wall" -#: src/Object/Post.php:599 +#: src/Object/Post.php:600 #, php-format msgid "Reply to %s" msgstr "Antwoord aan %s" -#: src/Object/Post.php:602 +#: src/Object/Post.php:603 msgid "More" msgstr "Meer" -#: src/Object/Post.php:621 +#: src/Object/Post.php:622 msgid "Notifier task is pending" msgstr "Meldingstaak is in behandeling" -#: src/Object/Post.php:622 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is pending" msgstr "Levering aan externe servers is in behandeling" -#: src/Object/Post.php:623 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:624 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:625 +#: src/Object/Post.php:626 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:647 +#: src/Object/Post.php:648 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d reactie" msgstr[1] "%d reacties" -#: src/Object/Post.php:648 +#: src/Object/Post.php:649 msgid "Show more" msgstr "Toon meer" -#: src/Object/Post.php:649 +#: src/Object/Post.php:650 msgid "Show fewer" msgstr "Toon minder" -#: src/Object/Post.php:686 +#: src/Object/Post.php:687 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:691 +#: src/Object/Post.php:692 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:696 +#: src/Object/Post.php:697 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:701 +#: src/Object/Post.php:702 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:706 +#: src/Object/Post.php:707 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:711 +#: src/Object/Post.php:712 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:716 +#: src/Object/Post.php:717 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:721 +#: src/Object/Post.php:722 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:726 +#: src/Object/Post.php:727 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:731 +#: src/Object/Post.php:732 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:754 +#: src/Object/Post.php:755 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:557 +#: src/Protocol/ActivityPub/Receiver.php:558 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:530 +#: src/Protocol/Delivery.php:531 msgid "(no subject)" msgstr "" @@ -12619,20 +12625,20 @@ msgstr "" msgid "Login failed." msgstr "Login mislukt." -#: src/Security/Authentication.php:260 +#: src/Security/Authentication.php:261 msgid "Login failed. Please check your credentials." msgstr "Aanmelden mislukt. Controleer uw inloggegevens." -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:374 #, php-format msgid "Welcome %s" msgstr "Welkom %s" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:375 msgid "Please upload a profile photo." msgstr "Upload een profielfoto." -#: src/Security/OpenWebAuth.php:149 +#: src/Security/OpenWebAuth.php:150 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s verwelkomt %2$s" diff --git a/view/lang/nl/strings.php b/view/lang/nl/strings.php index ba0cf5fc1d..555d0c5f58 100644 --- a/view/lang/nl/strings.php +++ b/view/lang/nl/strings.php @@ -966,6 +966,7 @@ $a->strings['Display'] = 'Weergave'; $a->strings['Social Networks'] = 'Sociale netwerken'; $a->strings['Manage Accounts'] = 'Beheer Gebruikers'; $a->strings['Connected apps'] = 'Verbonden applicaties'; +$a->strings['Import Contacts'] = 'Importeer contacten'; $a->strings['Export personal data'] = 'Persoonlijke gegevens exporteren'; $a->strings['Remove account'] = 'Account verwijderen'; $a->strings['This page is missing a url parameter.'] = 'Deze pagina mist een url-parameter.'; @@ -1462,7 +1463,6 @@ $a->strings['Wrong Password.'] = 'Verkeerd wachtwoord.'; $a->strings['Invalid email.'] = 'Ongeldig email adres.'; $a->strings['Cannot change to that email.'] = 'Kan niet naar dat email adres veranderen.'; $a->strings['Settings were not updated.'] = 'Wijziging instellingen is niet opgeslagen.'; -$a->strings['Importing Contacts done'] = 'Importeren Contacten voltooid'; $a->strings['Relocate message has been send to your contacts'] = 'Verhuis boodschap is verzonden naar je contacten'; $a->strings['Unable to find your profile. Please contact your admin.'] = 'Kan je profiel niet vinden. Contacteer alsjeblieft je beheerder.'; $a->strings['Personal Page Subtypes'] = 'Persoonlijke Pagina Subtypes'; @@ -1539,9 +1539,6 @@ $a->strings['Show detailled notifications'] = 'Toon gedetailleerde notificaties' $a->strings['Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed.'] = 'Standaard worden notificaties samengevoegd in een enkele notificatie per item. Als je deze parameter activeert wordt elke notificatie getoond.'; $a->strings['Advanced Account/Page Type Settings'] = 'Geavanceerde Account/Pagina Type Instellingen'; $a->strings['Change the behaviour of this account for special situations'] = 'Pas het gedrag van dit account aan voor speciale situaties'; -$a->strings['Import Contacts'] = 'Importeer contacten'; -$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Upload een CSV-bestand met de handle van uw gevolgde gebruikers in de eerste kolom die u uit de oude gebruiker hebt geëxporteerd.'; -$a->strings['Upload File'] = 'Upload bestand'; $a->strings['Relocate'] = 'Verhuis'; $a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'Als je je profiel van een andere server hebt verhuisd, en er zijn contacten die geen updates van je ontvangen, probeer dan eens deze knop.'; $a->strings['Resend relocate message to contacts'] = 'Stuur verhuis boodschap naar contacten'; @@ -1569,6 +1566,9 @@ $a->strings['Send public posts to all email contacts:'] = 'Openbare posts naar a $a->strings['Action after import:'] = 'Actie na importeren:'; $a->strings['Move to folder'] = 'Naar map verplaatsen'; $a->strings['Move to folder:'] = 'Verplaatsen naar map:'; +$a->strings['Importing Contacts done'] = 'Importeren Contacten voltooid'; +$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Upload een CSV-bestand met de handle van uw gevolgde gebruikers in de eerste kolom die u uit de oude gebruiker hebt geëxporteerd.'; +$a->strings['Upload File'] = 'Upload bestand'; $a->strings['Delegation successfully granted.'] = 'Delegatie met succes verleend.'; $a->strings['Parent user not found, unavailable or password doesn\'t match.'] = 'Brongebruiker niet gevonden, niet beschikbaar of wachtwoord komt niet overeen.'; $a->strings['Delegation successfully revoked.'] = 'Delegatie is ingetrokken.'; diff --git a/view/lang/pl/messages.po b/view/lang/pl/messages.po index 4d2e71777b..e3c6cc41d8 100644 --- a/view/lang/pl/messages.po +++ b/view/lang/pl/messages.po @@ -59,7 +59,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: Piotr Strębski , 2022\n" "Language-Team: Polish (http://app.transifex.com/Friendica/friendica/language/pl/)\n" @@ -69,34 +69,34 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\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 "Nie można zlokalizować oryginalnej wiadomości." -#: mod/item.php:127 +#: mod/item.php:126 msgid "Post updated." msgstr "Wpis zaktualizowany." -#: mod/item.php:192 mod/item.php:196 +#: mod/item.php:191 mod/item.php:195 msgid "Item wasn't stored." msgstr "Element nie został zapisany. " -#: mod/item.php:206 +#: mod/item.php:205 msgid "Item couldn't be fetched." msgstr "Nie można pobrać elementu." -#: mod/item.php:250 mod/item.php:254 +#: mod/item.php:249 mod/item.php:253 msgid "Empty post discarded." msgstr "Pusty wpis został odrzucony." -#: 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 "Element nie znaleziony." -#: 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 @@ -107,7 +107,7 @@ msgstr "Element nie znaleziony." #: 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 @@ -116,13 +116,15 @@ msgstr "Element nie znaleziony." #: 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 @@ -131,15 +133,15 @@ msgstr "Element nie znaleziony." msgid "Permission denied." msgstr "Brak uprawnień." -#: mod/lostpass.php:28 +#: mod/lostpass.php:27 msgid "No valid account found." msgstr "Nie znaleziono ważnego konta." -#: mod/lostpass.php:40 +#: mod/lostpass.php:39 msgid "Password reset request issued. Check your email." msgstr "Prośba o zresetowanie hasła została zatwierdzona. Sprawdź swój e-mail." -#: mod/lostpass.php:46 +#: mod/lostpass.php:45 #, php-format msgid "" "\n" @@ -155,7 +157,7 @@ msgid "" "\t\tissued this request." msgstr "\n\t\tSzanowny Użytkowniku %1$s, \n\t\t\tOtrzymano prośbę o ''%2$s\" zresetowanie hasła do konta. \n\t\tAby potwierdzić tę prośbę, kliknij link weryfikacyjny \n\t\tponiżej lub wklej go w pasek adresu przeglądarki internetowej. \n \n\t\tJeśli nie prosisz o tę zmianę, nie klikaj w link.\n\t\tJeśli zignorujesz i/lub usuniesz ten e-mail, prośba wkrótce wygaśnie. \n \n\t\tTwoje hasło nie zostanie zmienione, chyba że będziemy mogli potwierdzić \n\t\tTwoje żądanie." -#: mod/lostpass.php:57 +#: mod/lostpass.php:56 #, php-format msgid "" "\n" @@ -172,70 +174,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\nPostępuj zgodnie z poniższym linkiem, aby zweryfikować swoją tożsamość: \n\n\t\t%1$s\n\n\t\tOtrzymasz następnie komunikat uzupełniający zawierający nowe hasło. \n\t\tMożesz zmienić to hasło ze strony ustawień swojego konta po zalogowaniu. \n \n\t\tDane logowania są następujące: \n \nLokalizacja strony: \t%2$s\nNazwa użytkownika:\t%3$s" -#: mod/lostpass.php:72 +#: mod/lostpass.php:71 #, php-format msgid "Password reset requested at %s" msgstr "Prośba o reset hasła na %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 "Prośba nie może być zweryfikowana. (Mogłeś już ją poprzednio wysłać.) Reset hasła nie powiódł się." -#: mod/lostpass.php:101 +#: mod/lostpass.php:100 msgid "Request has expired, please make a new one." msgstr "Żądanie wygasło. Zrób nowe." -#: mod/lostpass.php:116 +#: mod/lostpass.php:115 msgid "Forgot your Password?" msgstr "Zapomniałeś hasła?" -#: 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 "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji." -#: 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 "Pseudonim lub e-mail: " -#: mod/lostpass.php:119 +#: mod/lostpass.php:118 msgid "Reset" msgstr "Zresetuj" -#: mod/lostpass.php:134 src/Module/Security/Login.php:161 +#: mod/lostpass.php:133 src/Module/Security/Login.php:161 msgid "Password Reset" msgstr "Zresetuj hasło" -#: mod/lostpass.php:135 +#: mod/lostpass.php:134 msgid "Your password has been reset as requested." msgstr "Twoje hasło zostało zresetowane zgodnie z żądaniem." -#: mod/lostpass.php:136 +#: mod/lostpass.php:135 msgid "Your new password is" msgstr "Twoje nowe hasło to" -#: mod/lostpass.php:137 +#: mod/lostpass.php:136 msgid "Save or copy your new password - and then" msgstr "Zapisz lub skopiuj nowe hasło - a następnie" -#: mod/lostpass.php:138 +#: mod/lostpass.php:137 msgid "click here to login" msgstr "naciśnij tutaj, aby zalogować się" -#: mod/lostpass.php:139 +#: mod/lostpass.php:138 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "Twoje hasło może być zmienione w Ustawieniach po udanym zalogowaniu." -#: mod/lostpass.php:143 +#: mod/lostpass.php:142 msgid "Your password has been reset." msgstr "Twoje hasło zostało zresetowane." -#: mod/lostpass.php:146 +#: mod/lostpass.php:145 #, php-format msgid "" "\n" @@ -246,7 +248,7 @@ msgid "" "\t\t" msgstr "\n\t\t\tSzanowny Użytkowniku %1$s, \n\t\t\t\tTwoje hasło zostało zmienione zgodnie z życzeniem. Proszę, zachowaj te \n\t\t\tinformacje dotyczące twoich rekordów (lub natychmiast zmień hasło na \n\t\t\tcoś, co zapamiętasz).\n\t\t" -#: mod/lostpass.php:152 +#: mod/lostpass.php:151 #, php-format msgid "" "\n" @@ -260,7 +262,7 @@ msgid "" "\t\t" msgstr "\n\t\t\tDane logowania są następujące:\n\n\t\t\tLokalizacja witryny:\t%1$s\n\t\t\tNazwa użytkownika:\t%2$s\n\t\t\tHasło:\t%3$s\n\n\t\t\tMożesz zmienić hasło na stronie ustawień konta po zalogowaniu.\n\t\t" -#: mod/lostpass.php:164 +#: mod/lostpass.php:163 #, php-format msgid "Your password has been changed at %s" msgstr "Twoje hasło zostało zmienione na %s" @@ -324,11 +326,11 @@ msgstr "Do:" msgid "Subject:" msgstr "Temat:" -#: 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 "Twoja wiadomość:" -#: 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 "Wyślij zdjęcie" @@ -337,16 +339,16 @@ msgstr "Wyślij zdjęcie" msgid "Insert web link" msgstr "Wstaw link" -#: 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 "Proszę czekać" -#: 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 @@ -354,7 +356,7 @@ msgstr "Proszę czekać" #: 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 @@ -363,7 +365,7 @@ msgstr "Proszę czekać" #: 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" @@ -423,396 +425,396 @@ msgstr[1] "%d wiadomości" msgstr[2] "%d wiadomości" msgstr[3] "%d wiadomości" -#: mod/notes.php:40 src/Module/BaseProfile.php:93 +#: mod/notes.php:41 src/Module/BaseProfile.php:93 msgid "Personal Notes" msgstr "Notatki" -#: mod/notes.php:44 +#: mod/notes.php:45 msgid "Personal notes are visible only by yourself." msgstr "Notatki osobiste są widziane tylko przez Ciebie." -#: 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 "Zapisz" -#: 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 "Użytkownik nie znaleziony." -#: 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 "Albumy zdjęć" -#: 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 "Ostatnio dodane zdjęcia" -#: 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 "Wyślij nowe zdjęcie" -#: 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 "wszyscy" -#: mod/photos.php:142 +#: mod/photos.php:140 msgid "Contact information unavailable" msgstr "Informacje o kontakcie są niedostępne" -#: mod/photos.php:171 +#: mod/photos.php:169 msgid "Album not found." msgstr "Nie znaleziono albumu." -#: mod/photos.php:227 +#: mod/photos.php:225 msgid "Album successfully deleted" msgstr "Album został pomyślnie usunięty" -#: mod/photos.php:229 +#: mod/photos.php:227 msgid "Album was empty." msgstr "Album był pusty." -#: mod/photos.php:260 +#: mod/photos.php:258 msgid "Failed to delete the photo." msgstr "Błąd usunięcia zdjęcia." -#: mod/photos.php:504 +#: mod/photos.php:502 msgid "a photo" msgstr "zdjęcie" -#: mod/photos.php:504 +#: mod/photos.php:502 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$szostał oznaczony znacznikiem %2$s przez %3$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 "Odmowa dostępu publicznego." -#: mod/photos.php:546 +#: mod/photos.php:544 msgid "No photos selected" msgstr "Nie zaznaczono zdjęć" -#: mod/photos.php:674 +#: mod/photos.php:672 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:681 +#: mod/photos.php:679 msgid "Upload Photos" msgstr "Prześlij zdjęcia" -#: mod/photos.php:685 mod/photos.php:774 +#: mod/photos.php:683 mod/photos.php:772 msgid "New album name: " msgstr "Nazwa nowego albumu: " -#: mod/photos.php:686 +#: mod/photos.php:684 msgid "or select existing album:" msgstr "lub wybierz istniejący album:" -#: mod/photos.php:687 +#: mod/photos.php:685 msgid "Do not show a status post for this upload" msgstr "Nie pokazuj stanu wpisów dla tego wysłania" -#: 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 "Uprawnienia" -#: mod/photos.php:755 +#: mod/photos.php:753 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Czy na pewno chcesz usunąć ten album i wszystkie zdjęcia z tego albumu?" -#: mod/photos.php:756 mod/photos.php:779 +#: mod/photos.php:754 mod/photos.php:777 msgid "Delete Album" msgstr "Usuń album" -#: 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 "Anuluj" -#: mod/photos.php:783 +#: mod/photos.php:781 msgid "Edit Album" msgstr "Edytuj album" -#: mod/photos.php:784 +#: mod/photos.php:782 msgid "Drop Album" msgstr "Upuść Album" -#: mod/photos.php:788 +#: mod/photos.php:786 msgid "Show Newest First" msgstr "Pokaż najpierw najnowsze" -#: mod/photos.php:790 +#: mod/photos.php:788 msgid "Show Oldest First" msgstr "Pokaż najpierw najstarsze" -#: mod/photos.php:811 src/Module/Profile/Photos.php:335 +#: mod/photos.php:809 src/Module/Profile/Photos.php:343 msgid "View Photo" msgstr "Zobacz zdjęcie" -#: mod/photos.php:843 +#: mod/photos.php:841 msgid "Permission denied. Access to this item may be restricted." msgstr "Odmowa dostępu. Dostęp do tych danych może być ograniczony." -#: mod/photos.php:845 +#: mod/photos.php:843 msgid "Photo not available" msgstr "Zdjęcie niedostępne" -#: mod/photos.php:855 +#: mod/photos.php:853 msgid "Do you really want to delete this photo?" msgstr "Czy na pewno chcesz usunąć to zdjęcie ?" -#: mod/photos.php:856 mod/photos.php:1056 +#: mod/photos.php:854 mod/photos.php:1054 msgid "Delete Photo" msgstr "Usuń zdjęcie" -#: mod/photos.php:954 +#: mod/photos.php:952 msgid "View photo" msgstr "Zobacz zdjęcie" -#: mod/photos.php:956 +#: mod/photos.php:954 msgid "Edit photo" msgstr "Edytuj zdjęcie" -#: mod/photos.php:957 +#: mod/photos.php:955 msgid "Delete photo" msgstr "Usuń zdjęcie" -#: mod/photos.php:958 +#: mod/photos.php:956 msgid "Use as profile photo" msgstr "Ustaw jako zdjęcie profilowe" -#: mod/photos.php:965 +#: mod/photos.php:963 msgid "Private Photo" msgstr "Prywatne zdjęcie" -#: mod/photos.php:971 +#: mod/photos.php:969 msgid "View Full Size" msgstr "Zobacz w pełnym rozmiarze" -#: mod/photos.php:1024 +#: mod/photos.php:1022 msgid "Tags: " msgstr "Znaczniki: " -#: mod/photos.php:1027 +#: mod/photos.php:1025 msgid "[Select tags to remove]" msgstr "[Wybierz znaczniki do usunięcia]" -#: mod/photos.php:1042 +#: mod/photos.php:1040 msgid "New album name" msgstr "Nazwa nowego albumu" -#: mod/photos.php:1043 +#: mod/photos.php:1041 msgid "Caption" msgstr "Zawartość" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "Add a Tag" msgstr "Dodaj znacznik" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1045 +#: mod/photos.php:1043 msgid "Do not rotate" msgstr "Nie obracaj" -#: mod/photos.php:1046 +#: mod/photos.php:1044 msgid "Rotate CW (right)" msgstr "Obróć zgodnie z kierunkiem wskazówek zegara (w prawo)" -#: mod/photos.php:1047 +#: mod/photos.php:1045 msgid "Rotate CCW (left)" msgstr "Obróć w przeciwnym kierunku do ruchu wskazówek zegara (w lewo)" -#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: mod/photos.php:1091 mod/photos.php:1147 mod/photos.php:1227 #: src/Module/Contact.php:600 src/Module/Item/Compose.php:184 -#: src/Object/Post.php:1142 +#: src/Object/Post.php:1143 msgid "This is you" msgstr "To jesteś Ty" -#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 -#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:598 -#: src/Object/Post.php:1144 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:599 +#: src/Object/Post.php:1145 msgid "Comment" msgstr "Komentarz" -#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 -#: src/Content/Conversation.php:401 src/Module/Calendar/Event/Form.php:234 +#: 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 -#: src/Object/Post.php:1158 +#: src/Object/Post.php:1159 msgid "Preview" msgstr "Podgląd" -#: mod/photos.php:1098 src/Content/Conversation.php:355 -#: src/Module/Post/Edit.php:121 src/Object/Post.php:1146 +#: mod/photos.php:1096 src/Content/Conversation.php:357 +#: src/Module/Post/Edit.php:121 src/Object/Post.php:1147 msgid "Loading..." msgstr "Wczytywanie..." -#: mod/photos.php:1190 src/Content/Conversation.php:1485 -#: src/Object/Post.php:260 +#: mod/photos.php:1188 src/Content/Conversation.php:1487 +#: src/Object/Post.php:261 msgid "Select" msgstr "Wybierz" -#: mod/photos.php:1191 src/Content/Conversation.php:1486 -#: 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:233 +#: 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 +#: src/Module/Settings/Connectors.php:226 #: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Usuń" -#: mod/photos.php:1252 src/Object/Post.php:426 +#: mod/photos.php:1250 src/Object/Post.php:427 msgid "Like" msgstr "Lubię" -#: mod/photos.php:1253 src/Object/Post.php:426 +#: mod/photos.php:1251 src/Object/Post.php:427 msgid "I like this (toggle)" msgstr "Lubię to (zmień)" -#: mod/photos.php:1254 src/Object/Post.php:427 +#: mod/photos.php:1252 src/Object/Post.php:428 msgid "Dislike" msgstr "Nie lubię" -#: mod/photos.php:1256 src/Object/Post.php:427 +#: mod/photos.php:1254 src/Object/Post.php:428 msgid "I don't like this (toggle)" msgstr "Nie lubię tego (zmień)" -#: mod/photos.php:1278 +#: mod/photos.php:1276 msgid "Map" msgstr "Mapa" -#: src/App.php:467 +#: src/App.php:255 msgid "Apologies but the website is unavailable at the moment." msgstr "Przepraszamy, ale strona jest w tej chwili niedostępna." -#: src/App/Page.php:237 +#: src/App/Page.php:241 msgid "Delete this item?" msgstr "Usunąć ten element?" -#: src/App/Page.php:238 +#: src/App/Page.php:242 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 "Zablokować tego autora? Nie będą mogli Cię obserwować ani widzieć Twoich publicznych wpisów, a Ty nie będziesz widzieć ich wpisów i powiadomień." -#: src/App/Page.php:239 +#: src/App/Page.php:243 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:240 +#: src/App/Page.php:244 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:241 +#: src/App/Page.php:245 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:242 src/Module/Settings/Server/Action.php:47 +#: src/App/Page.php:246 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:244 +#: src/App/Page.php:248 msgid "Like not successful" msgstr "" -#: src/App/Page.php:245 +#: src/App/Page.php:249 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:246 +#: src/App/Page.php:250 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:247 +#: src/App/Page.php:251 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:248 +#: src/App/Page.php:252 msgid "Backend error" msgstr "" -#: src/App/Page.php:249 +#: src/App/Page.php:253 msgid "Network error" msgstr "" -#: src/App/Page.php:252 +#: src/App/Page.php:256 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:257 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:254 +#: src/App/Page.php:258 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:255 +#: src/App/Page.php:259 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:256 +#: src/App/Page.php:260 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:261 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:262 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:263 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:264 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:265 msgid "Remove file" msgstr "" -#: src/App/Page.php:262 +#: src/App/Page.php:266 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:346 +#: src/App/Page.php:350 msgid "toggle mobile" msgstr "przełącz na mobilny" @@ -845,7 +847,7 @@ msgid "All contacts" msgstr "Wszystkie kontakty" #: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 -#: src/Content/Widget.php:254 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Content/Widget.php:254 src/Core/ACL.php:182 src/Module/Contact.php:395 #: src/Module/Privacy/PermissionTooltip.php:150 #: src/Module/Privacy/PermissionTooltip.php:172 #: src/Module/Settings/Channels.php:146 @@ -887,7 +889,7 @@ msgstr "Nie można znaleźć żadnego wpisu kontaktu zarchiwizowanego dla tego a msgid "The contact entries have been archived" msgstr "Wpisy kontaktów zostały zarchiwizowane" -#: src/Console/ClearAvatarCache.php:73 +#: src/Console/ClearAvatarCache.php:74 msgid "" "The avatar cache needs to be disabled in local.config.php to use this " "command." @@ -973,22 +975,22 @@ msgstr "Aby użyć tego polecenia, pamięć podręczna awatarów musi być włą msgid "no resource in photo %s" msgstr "brak zasobu na zdjęciu %s" -#: src/Console/MoveToAvatarCache.php:123 +#: src/Console/MoveToAvatarCache.php:127 #, php-format msgid "no photo with id %s" msgstr "brak zdjęcia z identyfikatorem %s" -#: src/Console/MoveToAvatarCache.php:132 +#: src/Console/MoveToAvatarCache.php:136 #, php-format msgid "no image data for photo with id %s" msgstr "brak danych obrazu dla zdjęcia z identyfikatorem %s" -#: src/Console/MoveToAvatarCache.php:141 +#: src/Console/MoveToAvatarCache.php:145 #, php-format msgid "invalid image for id %s" msgstr "nieprawidłowy obraz dla identyfikatora %s" -#: src/Console/MoveToAvatarCache.php:154 +#: src/Console/MoveToAvatarCache.php:158 #, php-format msgid "Quit on invalid photo %s" msgstr "Zakończ na nieprawidłowym zdjęciu %s" @@ -1018,11 +1020,14 @@ msgstr "Wszystkie oczekujące aktualizacje wpisów są gotowe." msgid "Enter user nickname: " msgstr "Wpisz nazwę użytkownika:" -#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Console/User.php:168 src/Model/User.php:830 #: src/Module/Api/Twitter/ContactEndpoint.php:62 -#: 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/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/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "Użytkownik nie znaleziony" @@ -1032,12 +1037,12 @@ msgid "Enter new password: " msgstr "Wprowadź nowe hasło: " #: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 -#: src/Module/Settings/Account.php:59 +#: src/Module/Settings/Account.php:57 msgid "Password update failed. Please try again." msgstr "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie." #: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 -#: src/Module/Settings/Account.php:62 +#: src/Module/Settings/Account.php:60 msgid "Password changed." msgstr "Hasło zostało zmienione." @@ -1118,86 +1123,86 @@ msgstr "Co tydzień" msgid "Monthly" msgstr "Miesięczne" -#: src/Content/ContactSelector.php:118 +#: src/Content/ContactSelector.php:117 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:119 +#: src/Content/ContactSelector.php:118 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:120 +#: src/Content/ContactSelector.php:119 msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:121 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Content/ContactSelector.php:120 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:58 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "E-mail" -#: src/Content/ContactSelector.php:122 src/Module/Debug/Babel.php:273 +#: src/Content/ContactSelector.php:121 src/Module/Debug/Babel.php:273 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:123 +#: src/Content/ContactSelector.php:122 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:124 +#: src/Content/ContactSelector.php:123 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:125 +#: src/Content/ContactSelector.php:124 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:125 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:126 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:127 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:129 +#: src/Content/ContactSelector.php:128 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:130 +#: src/Content/ContactSelector.php:129 msgid "Discourse" msgstr "Discourse" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:130 msgid "Diaspora Connector" msgstr "Łącze Diaspora" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:131 msgid "GNU Social Connector" msgstr "Łącze GNU Social" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:132 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:133 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:134 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:135 msgid "Bluesky" msgstr "" @@ -1206,16 +1211,16 @@ msgstr "" msgid "%s (via %s)" msgstr "%s (przez %s)" -#: src/Content/Conversation.php:213 +#: src/Content/Conversation.php:215 msgid "and" msgstr "i" -#: src/Content/Conversation.php:216 +#: src/Content/Conversation.php:218 #, php-format msgid "and %d other people" msgstr "i %d inni ludzie" -#: src/Content/Conversation.php:222 +#: src/Content/Conversation.php:224 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." @@ -1224,7 +1229,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:224 +#: src/Content/Conversation.php:226 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." @@ -1233,7 +1238,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:228 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." @@ -1242,7 +1247,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:230 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." @@ -1251,7 +1256,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:230 +#: src/Content/Conversation.php:232 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." @@ -1260,7 +1265,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:232 +#: src/Content/Conversation.php:234 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." @@ -1269,7 +1274,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:263 +#: src/Content/Conversation.php:265 #, php-format msgid " likes this" msgid_plural " like this" @@ -1278,7 +1283,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:266 +#: src/Content/Conversation.php:268 #, php-format msgid " doesn't like this" msgid_plural " don't like this" @@ -1287,7 +1292,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:269 +#: src/Content/Conversation.php:271 #, php-format msgid " attends" msgid_plural " attend" @@ -1296,7 +1301,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:272 +#: src/Content/Conversation.php:274 #, php-format msgid " doesn't attend" msgid_plural " don't attend" @@ -1305,7 +1310,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:275 +#: src/Content/Conversation.php:277 #, php-format msgid " attends maybe" msgid_plural " attend maybe" @@ -1314,7 +1319,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:278 +#: src/Content/Conversation.php:280 #, php-format msgid " reshared this" msgid_plural " reshared this" @@ -1323,281 +1328,281 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Content/Conversation.php:324 +#: src/Content/Conversation.php:326 msgid "Visible to everybody" msgstr "Widoczne dla wszystkich" -#: src/Content/Conversation.php:325 src/Module/Item/Compose.php:196 -#: src/Object/Post.php:1157 +#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196 +#: src/Object/Post.php:1158 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Wprowadź adres URL obrazu/wideo/audio/strony:" -#: src/Content/Conversation.php:326 +#: src/Content/Conversation.php:328 msgid "Tag term:" msgstr "Termin tagu:" -#: src/Content/Conversation.php:327 src/Module/Filer/SaveTag.php:59 +#: src/Content/Conversation.php:329 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Zapisz w katalogu:" -#: src/Content/Conversation.php:328 +#: src/Content/Conversation.php:330 msgid "Where are you right now?" msgstr "Gdzie teraz jesteś?" -#: src/Content/Conversation.php:329 +#: src/Content/Conversation.php:331 msgid "Delete item(s)?" msgstr "Usunąć pozycję (pozycje)?" -#: src/Content/Conversation.php:341 src/Module/Item/Compose.php:171 +#: src/Content/Conversation.php:343 src/Module/Item/Compose.php:171 msgid "Created at" msgstr "Utworzono" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:353 msgid "New Post" msgstr "Nowy wpis" -#: src/Content/Conversation.php:354 +#: src/Content/Conversation.php:356 msgid "Share" msgstr "Podziel się" -#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:123 +#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:123 msgid "upload photo" msgstr "wyślij zdjęcie" -#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:124 +#: src/Content/Conversation.php:360 src/Module/Post/Edit.php:124 msgid "Attach file" msgstr "Załącz plik" -#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:125 +#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:125 msgid "attach file" msgstr "załącz plik" -#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:186 -#: src/Module/Post/Edit.php:162 src/Object/Post.php:1147 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1148 msgid "Bold" msgstr "Pogrubienie" -#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:187 -#: src/Module/Post/Edit.php:163 src/Object/Post.php:1148 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1149 msgid "Italic" msgstr "Kursywa" -#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:188 -#: src/Module/Post/Edit.php:164 src/Object/Post.php:1149 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1150 msgid "Underline" msgstr "Podkreślenie" -#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:189 -#: src/Module/Post/Edit.php:165 src/Object/Post.php:1151 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:165 src/Object/Post.php:1152 msgid "Quote" msgstr "Cytat" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:166 src/Object/Post.php:1152 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:166 src/Object/Post.php:1153 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:191 -#: src/Object/Post.php:1150 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Object/Post.php:1151 msgid "Content Warning" msgstr "" -#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:167 src/Object/Post.php:1153 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:167 src/Object/Post.php:1154 msgid "Code" msgstr "Kod" -#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:193 -#: src/Object/Post.php:1154 +#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1155 msgid "Image" msgstr "Obraz" -#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:168 src/Object/Post.php:1155 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:168 src/Object/Post.php:1156 msgid "Link" msgstr "Odnośnik" -#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:195 -#: src/Module/Post/Edit.php:169 src/Object/Post.php:1156 +#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:169 src/Object/Post.php:1157 msgid "Link or Media" msgstr "Odnośnik lub Media" -#: src/Content/Conversation.php:370 +#: src/Content/Conversation.php:372 msgid "Video" msgstr "Filmy" -#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:198 +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:198 #: src/Module/Post/Edit.php:132 msgid "Set your location" msgstr "Ustaw swoją lokalizację" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:133 msgid "set location" msgstr "wybierz lokalizację" -#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:134 msgid "Clear browser location" msgstr "Wyczyść lokalizację przeglądarki" -#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:135 +#: src/Content/Conversation.php:376 src/Module/Post/Edit.php:135 msgid "clear location" msgstr "wyczyść lokalizację" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:203 +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:203 #: src/Module/Post/Edit.php:148 msgid "Set title" msgstr "Podaj tytuł" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:204 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 #: src/Module/Post/Edit.php:150 msgid "Categories (comma-separated list)" msgstr "Kategorie (lista słów oddzielonych przecinkiem)" -#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:220 +#: src/Content/Conversation.php:385 src/Module/Item/Compose.php:220 msgid "Scheduled at" msgstr "Zaplanowane na" -#: src/Content/Conversation.php:388 src/Module/Post/Edit.php:137 +#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:137 msgid "Permission settings" msgstr "Ustawienia uprawnień" -#: src/Content/Conversation.php:397 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:399 src/Module/Post/Edit.php:146 msgid "Public post" msgstr "Wpis publiczny" -#: src/Content/Conversation.php:411 src/Content/Widget/VCard.php:121 +#: 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 msgid "Message" msgstr "Wiadomość" -#: src/Content/Conversation.php:412 src/Module/Post/Edit.php:173 +#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:173 #: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Przeglądarka" -#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:176 +#: src/Content/Conversation.php:416 src/Module/Post/Edit.php:176 msgid "Open Compose page" msgstr "Otwórz stronę Redagowanie" -#: src/Content/Conversation.php:581 +#: src/Content/Conversation.php:583 msgid "remove" msgstr "usuń" -#: src/Content/Conversation.php:585 +#: src/Content/Conversation.php:587 msgid "Delete Selected Items" msgstr "Usuń zaznaczone elementy" -#: src/Content/Conversation.php:713 src/Content/Conversation.php:716 -#: src/Content/Conversation.php:719 src/Content/Conversation.php:722 -#: src/Content/Conversation.php:725 +#: 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 #, php-format msgid "You had been addressed (%s)." msgstr "Zostałeś zaadresowany (%s)." -#: src/Content/Conversation.php:728 +#: src/Content/Conversation.php:730 #, php-format msgid "You are following %s." msgstr "Zacząłeś obserwować %s." -#: src/Content/Conversation.php:733 +#: src/Content/Conversation.php:735 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:735 +#: src/Content/Conversation.php:737 msgid "You subscribed to one or more tags in this post." msgstr "Zasubskrybowałeś jeden lub więcej znaczników w tym wpisie." -#: src/Content/Conversation.php:755 +#: src/Content/Conversation.php:757 #, php-format msgid "%s reshared this." msgstr "%sudostępnił to. " -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 msgid "Reshared" msgstr "Udostępnione" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 #, php-format msgid "Reshared by %s <%s>" msgstr "Udostępnione przez %s <%s>" -#: src/Content/Conversation.php:760 +#: src/Content/Conversation.php:762 #, php-format msgid "%s is participating in this thread." msgstr "%s bierze udział w tym wątku." -#: src/Content/Conversation.php:763 +#: src/Content/Conversation.php:765 msgid "Stored for general reasons" msgstr "Przechowywane z powodów ogólnych" -#: src/Content/Conversation.php:766 +#: src/Content/Conversation.php:768 msgid "Global post" msgstr "Wpis globalny" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 msgid "Sent via an relay server" msgstr "Wysłane przez serwer przekazujący" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 msgid "Fetched" msgstr "Pobrane" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 #, php-format msgid "Fetched because of %s <%s>" msgstr "Pobrano ponieważ %s <%s>" -#: src/Content/Conversation.php:775 +#: src/Content/Conversation.php:777 msgid "Stored because of a child post to complete this thread." msgstr "Zapisano z powodu wpisu podrzędnego, który miał zakończyć ten wątek." -#: src/Content/Conversation.php:778 +#: src/Content/Conversation.php:780 msgid "Local delivery" msgstr "Dostarczone lokalnie" -#: src/Content/Conversation.php:781 +#: src/Content/Conversation.php:783 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "Przechowywane z powodu Twojej aktywności (polubienie, komentarz, gwiazdka, ...)" -#: src/Content/Conversation.php:784 +#: src/Content/Conversation.php:786 msgid "Distributed" msgstr "Rozpowszechniane" -#: src/Content/Conversation.php:787 +#: src/Content/Conversation.php:789 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1505 src/Object/Post.php:247 +#: src/Content/Conversation.php:1507 src/Object/Post.php:248 msgid "Pinned item" msgstr "Przypięty element" -#: src/Content/Conversation.php:1522 src/Object/Post.php:541 -#: src/Object/Post.php:542 +#: src/Content/Conversation.php:1524 src/Object/Post.php:542 +#: src/Object/Post.php:543 #, php-format msgid "View %s's profile @ %s" msgstr "Pokaż profil %s @ %s" -#: src/Content/Conversation.php:1536 src/Object/Post.php:529 +#: src/Content/Conversation.php:1538 src/Object/Post.php:530 msgid "Categories:" msgstr "Kategorie:" -#: src/Content/Conversation.php:1537 src/Object/Post.php:530 +#: src/Content/Conversation.php:1539 src/Object/Post.php:531 msgid "Filed under:" msgstr "Umieszczono w:" -#: src/Content/Conversation.php:1545 src/Object/Post.php:556 +#: src/Content/Conversation.php:1547 src/Object/Post.php:557 #, php-format msgid "%s from %s" msgstr "%s od %s" -#: src/Content/Conversation.php:1561 +#: src/Content/Conversation.php:1563 msgid "View in context" msgstr "Zobacz w kontekście" @@ -1730,7 +1735,7 @@ msgstr "Osobiste" msgid "Posts that mention or involve you" msgstr "Wpisy, które wspominają lub angażują Ciebie" -#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:398 msgid "Starred" msgstr "Ulubione" @@ -1817,7 +1822,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:552 src/Model/User.php:1390 +#: src/Content/Widget.php:555 src/Model/User.php:1390 msgid "Groups" msgstr "" @@ -1825,7 +1830,7 @@ msgstr "" msgid "Display posts that have been distributed by the selected group." msgstr "" -#: src/Content/Feature.php:117 src/Content/Widget.php:521 +#: src/Content/Feature.php:117 src/Content/Widget.php:524 msgid "Archives" msgstr "Archiwa" @@ -1841,8 +1846,8 @@ msgstr "Protokoły" msgid "Display posts with the selected protocols." msgstr "" -#: src/Content/Feature.php:119 src/Content/Widget.php:558 -#: src/Module/Settings/Account.php:429 +#: src/Content/Feature.php:119 src/Content/Widget.php:561 +#: src/Module/Settings/Account.php:391 msgid "Account Types" msgstr "Rodzaje kont" @@ -1850,7 +1855,7 @@ msgstr "Rodzaje kont" msgid "Display posts done by accounts with the selected account type." msgstr "" -#: src/Content/Feature.php:120 src/Content/Widget.php:607 +#: 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 msgid "Channels" @@ -1876,7 +1881,7 @@ msgstr "Zapisane katalogi" msgid "Display a list of folders in which posts are stored." msgstr "" -#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:189 msgid "Own Contacts" msgstr "Własne kontakty" @@ -1932,12 +1937,12 @@ msgstr "Pozwala anonimowym odwiedzającym przeglądać Twój kalendarz i wydarze msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:139 src/Content/Widget.php:527 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:530 msgid "show less" msgstr "pokaż mniej" #: src/Content/GroupManager.php:140 src/Content/Widget.php:425 -#: src/Content/Widget.php:528 +#: src/Content/Widget.php:531 msgid "show more" msgstr "pokaż więcej" @@ -1945,66 +1950,66 @@ msgstr "pokaż więcej" msgid "Create new group" msgstr "" -#: src/Content/Item.php:317 src/Model/Item.php:3273 +#: src/Content/Item.php:322 src/Model/Item.php:3281 msgid "event" msgstr "wydarzenie" -#: src/Content/Item.php:320 src/Content/Item.php:330 +#: src/Content/Item.php:325 src/Content/Item.php:335 msgid "status" msgstr "stan" -#: src/Content/Item.php:326 src/Model/Item.php:3275 +#: src/Content/Item.php:331 src/Model/Item.php:3283 #: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "zdjęcie" -#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 +#: src/Content/Item.php:345 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s zaznaczył %2$s'go %3$s przy użyciu %4$s" -#: src/Content/Item.php:414 view/theme/frio/theme.php:253 +#: src/Content/Item.php:419 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Śledź wątek" -#: src/Content/Item.php:415 src/Model/Contact.php:1244 +#: src/Content/Item.php:420 src/Model/Contact.php:1245 msgid "View Status" msgstr "Zobacz status" -#: 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/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 msgid "View Profile" msgstr "Zobacz profil" -#: src/Content/Item.php:417 src/Model/Contact.php:1246 +#: src/Content/Item.php:422 src/Model/Contact.php:1247 msgid "View Photos" msgstr "Zobacz zdjęcia" -#: src/Content/Item.php:418 src/Model/Contact.php:1213 +#: src/Content/Item.php:423 src/Model/Contact.php:1214 #: src/Model/Profile.php:446 msgid "Network Posts" msgstr "Wiadomości sieciowe" -#: src/Content/Item.php:419 src/Model/Contact.php:1237 -#: src/Model/Contact.php:1248 +#: src/Content/Item.php:424 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1249 msgid "View Contact" msgstr "Pokaż kontakt" -#: src/Content/Item.php:420 src/Model/Contact.php:1249 +#: src/Content/Item.php:425 src/Model/Contact.php:1250 msgid "Send PM" msgstr "Wyślij prywatną wiadomość" -#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Content/Item.php:426 src/Module/Contact.php:449 #: src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:104 -#: src/Module/Moderation/Users/Active.php:123 -#: src/Module/Moderation/Users/Index.php:138 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Index.php:141 msgid "Block" msgstr "Zablokuj" -#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Content/Item.php:427 src/Module/Contact.php:450 #: src/Module/Contact/Profile.php:532 #: src/Module/Notifications/Introductions.php:126 #: src/Module/Notifications/Introductions.php:199 @@ -2012,27 +2017,27 @@ msgstr "Zablokuj" msgid "Ignore" msgstr "Ignoruj" -#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Content/Item.php:428 src/Module/Contact.php:451 #: src/Module/Contact/Profile.php:540 msgid "Collapse" msgstr "" -#: src/Content/Item.php:424 src/Object/Post.php:288 +#: src/Content/Item.php:429 src/Object/Post.php:289 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 -#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 +#: src/Content/Item.php:433 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:503 msgid "Languages" msgstr "Języki" -#: src/Content/Item.php:431 src/Object/Post.php:582 +#: src/Content/Item.php:436 src/Object/Post.php:583 msgid "Search Text" msgstr "" -#: src/Content/Item.php:436 src/Content/Widget.php:66 -#: src/Model/Contact.php:1238 src/Model/Contact.php:1250 +#: src/Content/Item.php:441 src/Content/Widget.php:66 +#: src/Model/Contact.php:1239 src/Model/Contact.php:1251 #: src/Module/Contact/Follow.php:152 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Połącz/Obserwuj" @@ -2045,7 +2050,7 @@ msgstr "" msgid "Nothing new here" msgstr "Brak nowych zdarzeń" -#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:64 msgid "Go back" msgstr "Wróć" @@ -2259,7 +2264,7 @@ msgstr "Powiadomienia" msgid "See all notifications" msgstr "Zobacz wszystkie powiadomienia" -#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:226 msgid "Mark as seen" msgstr "Oznacz jako przeczytane" @@ -2287,8 +2292,8 @@ msgstr "Konta" msgid "Manage other pages" msgstr "Zarządzaj innymi stronami" -#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 -#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:170 +#: 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/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Ustawienia" @@ -2316,10 +2321,10 @@ msgstr "Konfiguracja i ustawienia strony" #: src/Module/Moderation/Blocklist/Server/Index.php:84 #: 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:119 -#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 #: src/Module/Moderation/Users/Deleted.php:66 -#: src/Module/Moderation/Users/Index.php:133 +#: src/Module/Moderation/Users/Index.php:136 msgid "Moderation" msgstr "Moderacja" @@ -2351,33 +2356,33 @@ msgstr "następny" msgid "last" msgstr "ostatni" -#: src/Content/Text/BBCode.php:908 +#: src/Content/Text/BBCode.php:903 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:931 src/Model/Item.php:4069 -#: src/Model/Item.php:4075 src/Model/Item.php:4076 +#: src/Content/Text/BBCode.php:926 src/Model/Item.php:4080 +#: src/Model/Item.php:4086 src/Model/Item.php:4087 msgid "Link to source" msgstr "Odnośnik do źródła" -#: src/Content/Text/BBCode.php:1745 src/Content/Text/HTML.php:892 +#: src/Content/Text/BBCode.php:1740 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Kliknij aby otworzyć/zamknąć" -#: src/Content/Text/BBCode.php:1800 +#: src/Content/Text/BBCode.php:1795 msgid "$1 wrote:" msgstr "$1 napisał:" -#: src/Content/Text/BBCode.php:1874 src/Content/Text/BBCode.php:1875 +#: src/Content/Text/BBCode.php:1869 src/Content/Text/BBCode.php:1870 msgid "Encrypted content" msgstr "Szyfrowana treść" -#: src/Content/Text/BBCode.php:2208 +#: src/Content/Text/BBCode.php:2203 msgid "Invalid source protocol" msgstr "Nieprawidłowy protokół źródłowy" -#: src/Content/Text/BBCode.php:2227 +#: src/Content/Text/BBCode.php:2222 msgid "Invalid link protocol" msgstr "Niepoprawny link protokołu" @@ -2432,7 +2437,7 @@ msgid "Examples: Robert Morgenstein, Fishing" msgstr "Przykład: Jan Kowalski, Wędkarstwo" #: src/Content/Widget.php:68 src/Module/Contact.php:441 -#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 +#: src/Module/Directory.php:82 view/theme/vier/theme.php:185 msgid "Find" msgstr "Znajdź" @@ -2453,7 +2458,7 @@ msgstr "Domyślny profil" msgid "Invite Friends" msgstr "Zaproś znajomych" -#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: src/Content/Widget.php:73 src/Module/Directory.php:74 #: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Katalog globalny" @@ -2474,7 +2479,7 @@ msgstr "" msgid "Relationships" msgstr "Relacje" -#: src/Content/Widget.php:264 src/Module/Circle.php:280 +#: src/Content/Widget.php:264 src/Module/Circle.php:281 #: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Wszystkie kontakty" @@ -2500,27 +2505,27 @@ msgstr[1] "%d wspólne kontakty" msgstr[2] "%d wspólnych kontaktów" msgstr[3] "%d wspólnych kontaktów" -#: src/Content/Widget.php:529 +#: src/Content/Widget.php:532 msgid "On this date" msgstr "" -#: src/Content/Widget.php:549 +#: src/Content/Widget.php:552 msgid "Persons" msgstr "Osoby" -#: src/Content/Widget.php:550 +#: src/Content/Widget.php:553 msgid "Organisations" msgstr "Organizacje" -#: src/Content/Widget.php:551 src/Model/Contact.php:1750 +#: src/Content/Widget.php:554 src/Model/Contact.php:1751 msgid "News" msgstr "Aktualności" -#: src/Content/Widget.php:553 +#: src/Content/Widget.php:556 msgid "Relays" msgstr "" -#: src/Content/Widget.php:560 src/Module/Moderation/BaseUsers.php:58 +#: src/Content/Widget.php:563 src/Module/Moderation/BaseUsers.php:58 msgid "All" msgstr "Wszyscy" @@ -2570,12 +2575,12 @@ msgstr[3] "Popularne znaczniki (ostatnie %d godzin)" msgid "More Trending Tags" msgstr "Więcej popularnych znaczników" -#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1207 +#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1208 #: src/Model/Profile.php:440 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1211 +#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1212 #: src/Model/Profile.php:444 src/Module/Moderation/Item/Source.php:80 msgid "Mention" msgstr "Wzmianka" @@ -2590,10 +2595,10 @@ msgstr "XMPP:" msgid "Matrix:" msgstr "Matrix:" -#: src/Content/Widget/VCard.php:112 src/Model/Event.php:68 -#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: 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:134 src/Module/Notifications/Introductions.php:180 +#: src/Module/Directory.php:133 src/Module/Notifications/Introductions.php:180 #: src/Module/Profile/Profile.php:212 msgid "Location:" msgstr "Lokalizacja:" @@ -2603,75 +2608,75 @@ msgstr "Lokalizacja:" msgid "Network:" msgstr "Sieć:" -#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1239 -#: src/Model/Contact.php:1251 src/Model/Profile.php:457 +#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1252 src/Model/Profile.php:457 #: src/Module/Contact/Profile.php:476 msgid "Unfollow" msgstr "Przestań obserwować" -#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1209 +#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1210 #: src/Model/Profile.php:442 msgid "View group" msgstr "" -#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:260 +#: src/Core/ACL.php:153 src/Module/Profile/Profile.php:260 msgid "Yourself" msgstr "Siebie" -#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Core/ACL.php:189 src/Module/Privacy/PermissionTooltip.php:156 #: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "Wzajemne" -#: src/Core/ACL.php:280 +#: src/Core/ACL.php:281 msgid "Post to Email" msgstr "Prześlij e-mailem" -#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Core/ACL.php:308 src/Module/Privacy/PermissionTooltip.php:103 #: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "Publiczny" -#: src/Core/ACL.php:308 +#: src/Core/ACL.php:309 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 "Ta treść zostanie wyświetlona wszystkim Twoim obserwatorom i będzie widoczna na stronach społeczności oraz przez każdego z jej linkiem." -#: src/Core/ACL.php:309 src/Module/Privacy/PermissionTooltip.php:105 +#: src/Core/ACL.php:310 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "Ograniczony/Prywatny" -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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 "Ta zawartość będzie wyświetlana tylko osobom w pierwszym polu, z wyjątkiem osób wymienionych w drugim polu. Nie pojawi się nigdzie publicznie." -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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:311 +#: src/Core/ACL.php:312 msgid "Show to:" msgstr "Pokaż na:" -#: src/Core/ACL.php:312 +#: src/Core/ACL.php:313 msgid "Except to:" msgstr "Z wyjątkiem:" -#: src/Core/ACL.php:313 src/Module/Post/Edit.php:145 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:145 msgid "CC: email addresses" msgstr "DW: adresy e-mail" -#: src/Core/ACL.php:314 src/Module/Post/Edit.php:151 +#: src/Core/ACL.php:315 src/Module/Post/Edit.php:151 msgid "Example: bob@example.com, mary@example.com" msgstr "Przykład: bob@example.com, mary@example.com" -#: src/Core/ACL.php:315 +#: src/Core/ACL.php:316 msgid "Connectors" msgstr "Wtyczki" @@ -3006,176 +3011,176 @@ msgstr "Baza danych jest już w użyciu." msgid "Could not connect to database." msgstr "Nie można połączyć się z bazą danych." -#: src/Core/L10n.php:430 src/Model/Item.php:2316 +#: src/Core/L10n.php:426 src/Model/Item.php:2324 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:437 +#: src/Core/L10n.php:433 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Core/L10n.php:481 src/Model/Event.php:418 #: src/Module/Settings/Display.php:292 msgid "Monday" msgstr "Poniedziałek" -#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Core/L10n.php:481 src/Model/Event.php:419 #: src/Module/Settings/Display.php:293 msgid "Tuesday" msgstr "Wtorek" -#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Core/L10n.php:481 src/Model/Event.php:420 #: src/Module/Settings/Display.php:294 msgid "Wednesday" msgstr "Środa" -#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Core/L10n.php:481 src/Model/Event.php:421 #: src/Module/Settings/Display.php:295 msgid "Thursday" msgstr "Czwartek" -#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Core/L10n.php:481 src/Model/Event.php:422 #: src/Module/Settings/Display.php:296 msgid "Friday" msgstr "Piątek" -#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Core/L10n.php:481 src/Model/Event.php:423 #: src/Module/Settings/Display.php:297 msgid "Saturday" msgstr "Sobota" -#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Core/L10n.php:481 src/Model/Event.php:417 #: src/Module/Settings/Display.php:291 msgid "Sunday" msgstr "Niedziela" -#: src/Core/L10n.php:489 src/Model/Event.php:436 +#: src/Core/L10n.php:485 src/Model/Event.php:438 msgid "January" msgstr "Styczeń" -#: src/Core/L10n.php:489 src/Model/Event.php:437 +#: src/Core/L10n.php:485 src/Model/Event.php:439 msgid "February" msgstr "Luty" -#: src/Core/L10n.php:489 src/Model/Event.php:438 +#: src/Core/L10n.php:485 src/Model/Event.php:440 msgid "March" msgstr "Marzec" -#: src/Core/L10n.php:489 src/Model/Event.php:439 +#: src/Core/L10n.php:485 src/Model/Event.php:441 msgid "April" msgstr "Kwiecień" -#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 +#: src/Core/L10n.php:485 src/Core/L10n.php:504 src/Model/Event.php:429 msgid "May" msgstr "Maj" -#: src/Core/L10n.php:489 src/Model/Event.php:440 +#: src/Core/L10n.php:485 src/Model/Event.php:442 msgid "June" msgstr "Czerwiec" -#: src/Core/L10n.php:489 src/Model/Event.php:441 +#: src/Core/L10n.php:485 src/Model/Event.php:443 msgid "July" msgstr "Lipiec" -#: src/Core/L10n.php:489 src/Model/Event.php:442 +#: src/Core/L10n.php:485 src/Model/Event.php:444 msgid "August" msgstr "Sierpień" -#: src/Core/L10n.php:489 src/Model/Event.php:443 +#: src/Core/L10n.php:485 src/Model/Event.php:445 msgid "September" msgstr "Wrzesień" -#: src/Core/L10n.php:489 src/Model/Event.php:444 +#: src/Core/L10n.php:485 src/Model/Event.php:446 msgid "October" msgstr "Październik" -#: src/Core/L10n.php:489 src/Model/Event.php:445 +#: src/Core/L10n.php:485 src/Model/Event.php:447 msgid "November" msgstr "Listopad" -#: src/Core/L10n.php:489 src/Model/Event.php:446 +#: src/Core/L10n.php:485 src/Model/Event.php:448 msgid "December" msgstr "Grudzień" -#: src/Core/L10n.php:504 src/Model/Event.php:408 +#: src/Core/L10n.php:500 src/Model/Event.php:410 msgid "Mon" msgstr "Pon" -#: src/Core/L10n.php:504 src/Model/Event.php:409 +#: src/Core/L10n.php:500 src/Model/Event.php:411 msgid "Tue" msgstr "Wt" -#: src/Core/L10n.php:504 src/Model/Event.php:410 +#: src/Core/L10n.php:500 src/Model/Event.php:412 msgid "Wed" msgstr "Śr" -#: src/Core/L10n.php:504 src/Model/Event.php:411 +#: src/Core/L10n.php:500 src/Model/Event.php:413 msgid "Thu" msgstr "Czw" -#: src/Core/L10n.php:504 src/Model/Event.php:412 +#: src/Core/L10n.php:500 src/Model/Event.php:414 msgid "Fri" msgstr "Pt" -#: src/Core/L10n.php:504 src/Model/Event.php:413 +#: src/Core/L10n.php:500 src/Model/Event.php:415 msgid "Sat" msgstr "Sob" -#: src/Core/L10n.php:504 src/Model/Event.php:407 +#: src/Core/L10n.php:500 src/Model/Event.php:409 msgid "Sun" msgstr "Niedz" -#: src/Core/L10n.php:508 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:425 msgid "Jan" msgstr "Sty" -#: src/Core/L10n.php:508 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:426 msgid "Feb" msgstr "Lut" -#: src/Core/L10n.php:508 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:427 msgid "Mar" msgstr "Mar" -#: src/Core/L10n.php:508 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:428 msgid "Apr" msgstr "Kwi" -#: src/Core/L10n.php:508 src/Model/Event.php:428 +#: src/Core/L10n.php:504 src/Model/Event.php:430 msgid "Jun" msgstr "Cze" -#: src/Core/L10n.php:508 src/Model/Event.php:429 +#: src/Core/L10n.php:504 src/Model/Event.php:431 msgid "Jul" msgstr "Lip" -#: src/Core/L10n.php:508 src/Model/Event.php:430 +#: src/Core/L10n.php:504 src/Model/Event.php:432 msgid "Aug" msgstr "Sie" -#: src/Core/L10n.php:508 +#: src/Core/L10n.php:504 msgid "Sep" msgstr "Wrz" -#: src/Core/L10n.php:508 src/Model/Event.php:432 +#: src/Core/L10n.php:504 src/Model/Event.php:434 msgid "Oct" msgstr "Paź" -#: src/Core/L10n.php:508 src/Model/Event.php:433 +#: src/Core/L10n.php:504 src/Model/Event.php:435 msgid "Nov" msgstr "Lis" -#: src/Core/L10n.php:508 src/Model/Event.php:434 +#: src/Core/L10n.php:504 src/Model/Event.php:436 msgid "Dec" msgstr "Gru" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:44 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "Plik dziennika „%s” nie nadaje się do użytku. Brak możliwości logowania (błąd: '%s')" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:67 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" @@ -3367,7 +3372,7 @@ msgstr "dodaj" msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:592 src/Module/Circle.php:181 +#: src/Model/Circle.php:592 src/Module/Circle.php:185 msgid "Contacts not in any circle" msgstr "" @@ -3375,8 +3380,8 @@ msgstr "" msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:595 src/Module/Circle.php:166 -#: src/Module/Circle.php:189 src/Module/Circle.php:264 +#: src/Model/Circle.php:595 src/Module/Circle.php:168 +#: src/Module/Circle.php:190 src/Module/Circle.php:265 msgid "Circle Name: " msgstr "" @@ -3384,247 +3389,247 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1258 src/Module/Moderation/Users/Pending.php:88 +#: src/Model/Contact.php:1259 src/Module/Moderation/Users/Pending.php:88 #: src/Module/Notifications/Introductions.php:124 #: src/Module/Notifications/Introductions.php:197 msgid "Approve" msgstr "Zatwierdź" -#: src/Model/Contact.php:1594 src/Model/Contact.php:1666 +#: src/Model/Contact.php:1595 src/Model/Contact.php:1667 #: src/Module/Contact/Profile.php:360 #, php-format msgid "%s has blocked you" msgstr "" -#: src/Model/Contact.php:1746 +#: src/Model/Contact.php:1747 msgid "Organisation" msgstr "Organizacja" -#: src/Model/Contact.php:1754 +#: src/Model/Contact.php:1755 msgid "Group" msgstr "" -#: src/Model/Contact.php:1758 src/Module/Moderation/BaseUsers.php:122 +#: src/Model/Contact.php:1759 src/Module/Moderation/BaseUsers.php:122 msgid "Relay" msgstr "Przekaźnik" -#: src/Model/Contact.php:3073 +#: src/Model/Contact.php:3085 msgid "Disallowed profile URL." msgstr "Nie dozwolony adres URL profilu." -#: src/Model/Contact.php:3078 src/Module/Friendica.php:88 +#: src/Model/Contact.php:3090 src/Module/Friendica.php:88 msgid "Blocked domain" msgstr "Zablokowana domena" -#: src/Model/Contact.php:3083 +#: src/Model/Contact.php:3095 msgid "Connect URL missing." msgstr "Brak adresu URL połączenia." -#: src/Model/Contact.php:3092 +#: src/Model/Contact.php:3104 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Nie można dodać kontaktu. Sprawdź odpowiednie poświadczenia sieciowe na stronie Ustawienia -> Sieci społecznościowe." -#: src/Model/Contact.php:3110 +#: src/Model/Contact.php:3122 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3127 +#: src/Model/Contact.php:3139 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3134 +#: src/Model/Contact.php:3146 msgid "The profile address specified does not provide adequate information." msgstr "Dany adres profilu nie dostarcza odpowiednich informacji." -#: src/Model/Contact.php:3136 +#: src/Model/Contact.php:3148 msgid "No compatible communication protocols or feeds were discovered." msgstr "Nie znaleziono żadnych kompatybilnych protokołów komunikacyjnych ani źródeł." -#: src/Model/Contact.php:3139 +#: src/Model/Contact.php:3151 msgid "An author or name was not found." msgstr "Autor lub nazwa nie zostało znalezione." -#: src/Model/Contact.php:3142 +#: src/Model/Contact.php:3154 msgid "No browser URL could be matched to this address." msgstr "Przeglądarka WWW nie może odnaleźć podanego adresu" -#: src/Model/Contact.php:3145 +#: src/Model/Contact.php:3157 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Nie można dopasować @-stylu Adres identyfikacyjny ze znanym protokołem lub kontaktem e-mail." -#: src/Model/Contact.php:3146 +#: src/Model/Contact.php:3158 msgid "Use mailto: in front of address to force email check." msgstr "Użyj mailto: przed adresem, aby wymusić sprawdzanie poczty e-mail." -#: src/Model/Contact.php:3152 +#: src/Model/Contact.php:3164 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie." -#: src/Model/Contact.php:3211 +#: src/Model/Contact.php:3223 msgid "Unable to retrieve contact information." msgstr "Nie można otrzymać informacji kontaktowych" -#: src/Model/Event.php:40 +#: src/Model/Event.php:42 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 -#: src/Model/Event.php:928 +#: src/Model/Event.php:63 src/Model/Event.php:80 src/Model/Event.php:457 +#: src/Model/Event.php:929 msgid "Starts:" msgstr "Rozpoczęcie:" -#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 -#: src/Model/Event.php:932 +#: src/Model/Event.php:66 src/Model/Event.php:86 src/Model/Event.php:458 +#: src/Model/Event.php:933 msgid "Finishes:" msgstr "Zakończenie:" -#: src/Model/Event.php:405 +#: src/Model/Event.php:407 msgid "all-day" msgstr "cały dzień" -#: src/Model/Event.php:431 +#: src/Model/Event.php:433 msgid "Sept" msgstr "Wrz" -#: src/Model/Event.php:448 src/Module/Calendar/Show.php:117 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:117 #: src/Util/Temporal.php:329 msgid "today" msgstr "dzisiaj" -#: src/Model/Event.php:449 src/Module/Calendar/Show.php:118 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:118 #: src/Module/Settings/Display.php:302 src/Util/Temporal.php:339 msgid "month" msgstr "miesiąc" -#: src/Model/Event.php:450 src/Module/Calendar/Show.php:119 +#: src/Model/Event.php:452 src/Module/Calendar/Show.php:119 #: src/Module/Settings/Display.php:303 src/Util/Temporal.php:340 msgid "week" msgstr "tydzień" -#: src/Model/Event.php:451 src/Module/Calendar/Show.php:120 +#: src/Model/Event.php:453 src/Module/Calendar/Show.php:120 #: src/Module/Settings/Display.php:304 src/Util/Temporal.php:341 msgid "day" msgstr "dzień" -#: src/Model/Event.php:453 +#: src/Model/Event.php:455 msgid "No events to display" msgstr "Brak wydarzeń do wyświetlenia" -#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Model/Event.php:504 src/Module/Feed.php:56 #: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "Dostęp do tego profilu został ograniczony." -#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:52 +#: src/Model/Event.php:545 src/Module/Calendar/Event/Show.php:52 msgid "Event not found." msgstr "Nie znaleziono wydarzenia." -#: src/Model/Event.php:623 +#: src/Model/Event.php:624 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:650 +#: src/Model/Event.php:651 msgid "Edit event" msgstr "Edytuj wydarzenie" -#: src/Model/Event.php:651 +#: src/Model/Event.php:652 msgid "Duplicate event" msgstr "Zduplikowane zdarzenie" -#: src/Model/Event.php:652 +#: src/Model/Event.php:653 msgid "Delete event" msgstr "Usuń wydarzenie" -#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 +#: src/Model/Event.php:883 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:883 +#: src/Model/Event.php:884 msgid "D g:i A" msgstr "D g:i A" -#: src/Model/Event.php:884 +#: src/Model/Event.php:885 msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:947 src/Model/Event.php:949 +#: src/Model/Event.php:948 src/Model/Event.php:950 msgid "Show map" msgstr "Pokaż mapę" -#: src/Model/Event.php:948 +#: src/Model/Event.php:949 msgid "Hide map" msgstr "Ukryj mapę" -#: src/Model/Event.php:1041 +#: src/Model/Event.php:1042 #, php-format msgid "%s's birthday" msgstr "Urodziny %s" -#: src/Model/Event.php:1042 +#: src/Model/Event.php:1043 #, php-format msgid "Happy Birthday %s" msgstr "Wszystkiego najlepszego %s" -#: src/Model/Item.php:2323 +#: src/Model/Item.php:2331 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2325 +#: src/Model/Item.php:2333 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2328 +#: src/Model/Item.php:2336 #, php-format msgid "" "Detected languages in this post:\n" "%s" msgstr "" -#: src/Model/Item.php:3277 +#: src/Model/Item.php:3285 msgid "activity" msgstr "aktywność" -#: src/Model/Item.php:3279 +#: src/Model/Item.php:3287 msgid "comment" msgstr "komentarz" -#: src/Model/Item.php:3282 src/Module/Post/Tag/Add.php:109 +#: src/Model/Item.php:3290 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "wpis" -#: src/Model/Item.php:3452 +#: src/Model/Item.php:3463 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3454 +#: src/Model/Item.php:3465 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3456 +#: src/Model/Item.php:3467 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3460 +#: src/Model/Item.php:3471 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3969 +#: src/Model/Item.php:3980 msgid "bytes" msgstr "bajty" -#: src/Model/Item.php:4000 +#: src/Model/Item.php:4011 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3633,7 +3638,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Model/Item.php:4002 +#: src/Model/Item.php:4013 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3642,7 +3647,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Model/Item.php:4007 +#: src/Model/Item.php:4018 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3651,7 +3656,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Model/Item.php:4009 +#: src/Model/Item.php:4020 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3660,12 +3665,12 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: src/Model/Item.php:4011 +#: src/Model/Item.php:4022 #, php-format msgid "Poll end: %s" msgstr "Koniec ankiety: %s" -#: src/Model/Item.php:4052 src/Model/Item.php:4053 +#: src/Model/Item.php:4063 src/Model/Item.php:4064 msgid "View on separate page" msgstr "Zobacz na oddzielnej stronie" @@ -3673,7 +3678,7 @@ msgstr "Zobacz na oddzielnej stronie" msgid "[no subject]" msgstr "[bez tematu]" -#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 +#: src/Model/Photo.php:1192 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Tablica zdjęć" @@ -3686,7 +3691,7 @@ msgstr "Edytuj profil" msgid "Change profile photo" msgstr "Zmień zdjęcie profilowe" -#: src/Model/Profile.php:357 src/Module/Directory.php:139 +#: src/Model/Profile.php:357 src/Module/Directory.php:138 #: src/Module/Profile/Profile.php:200 msgid "Homepage:" msgstr "Strona główna:" @@ -3776,7 +3781,7 @@ msgstr "Nie lubię tego:" msgid "Title/Description:" msgstr "Tytuł/Opis:" -#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:176 +#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:174 #: src/Module/Moderation/Report/Create.php:266 #: src/Module/Moderation/Summary.php:65 msgid "Summary" @@ -3827,59 +3832,59 @@ msgstr "" msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "POWAŻNY BŁĄD: niepowodzenie podczas tworzenia kluczy zabezpieczeń." -#: src/Model/User.php:740 src/Model/User.php:773 +#: src/Model/User.php:739 src/Model/User.php:772 msgid "Login failed" msgstr "Logowanie nieudane" -#: src/Model/User.php:805 +#: src/Model/User.php:804 msgid "Not enough information to authenticate" msgstr "Za mało informacji do uwierzytelnienia" -#: src/Model/User.php:930 +#: src/Model/User.php:929 msgid "Password can't be empty" msgstr "Hasło nie może być puste" -#: src/Model/User.php:972 +#: src/Model/User.php:971 msgid "Empty passwords are not allowed." msgstr "Puste hasła są niedozwolone." -#: src/Model/User.php:976 +#: src/Model/User.php:975 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Nowe hasło zostało ujawnione w publicznym zrzucie danych, wybierz inne." -#: src/Model/User.php:980 +#: src/Model/User.php:979 msgid "The password length is limited to 72 characters." msgstr "Długość hasła jest ograniczona do 72 znaków." -#: src/Model/User.php:984 +#: src/Model/User.php:983 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1193 +#: src/Model/User.php:1192 msgid "Passwords do not match. Password unchanged." msgstr "Hasła nie pasują do siebie. Hasło niezmienione." -#: src/Model/User.php:1200 +#: src/Model/User.php:1199 msgid "An invitation is required." msgstr "Wymagane zaproszenie." -#: src/Model/User.php:1204 +#: src/Model/User.php:1203 msgid "Invitation could not be verified." msgstr "Zaproszenie niezweryfikowane." -#: src/Model/User.php:1212 +#: src/Model/User.php:1211 msgid "Invalid OpenID url" msgstr "Nieprawidłowy adres url OpenID" -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Napotkaliśmy problem podczas logowania z podanym przez nas identyfikatorem OpenID. Sprawdź poprawną pisownię identyfikatora." -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "The error message was:" msgstr "Komunikat o błędzie:" @@ -4074,57 +4079,57 @@ msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:51 +#: src/Module/Admin/Addons/Details.php:49 msgid "Addon not found." msgstr "Nie znaleziono dodatku." -#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 +#: src/Module/Admin/Addons/Details.php:60 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "Dodatek %s wyłączony." -#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 +#: src/Module/Admin/Addons/Details.php:63 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "Dodatek %s włączony." -#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Addons/Details.php:72 #: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "Wyłącz" -#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Addons/Details.php:75 #: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351 msgid "Enable" msgstr "Zezwól" -#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Addons/Details.php:95 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:175 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Summary.php:173 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 "Administracja" -#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/Admin/Addons/Details.php:96 src/Module/Admin/Addons/Index.php:60 #: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:127 msgid "Addons" msgstr "Dodatki" -#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Addons/Details.php:97 #: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Włącz" -#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Addons/Details.php:104 #: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Autor: " -#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Addons/Details.php:105 #: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Opiekun: " @@ -4141,9 +4146,10 @@ msgstr "Instalacja dodatku %s nie powiodła się." #: 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:545 src/Module/Settings/Addons.php:64 -#: src/Module/Settings/Connectors.php:149 -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Account.php:507 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/Features.php:61 msgid "Save Settings" @@ -4160,62 +4166,62 @@ msgid "" "official addon repository at %1$s." msgstr "" -#: src/Module/Admin/DBSync.php:37 +#: src/Module/Admin/DBSync.php:35 msgid "Update has been marked successful" msgstr "Aktualizacja została oznaczona jako udana" -#: src/Module/Admin/DBSync.php:45 +#: src/Module/Admin/DBSync.php:43 #, php-format msgid "Database structure update %s was successfully applied." msgstr "Pomyślnie zastosowano aktualizację %s struktury bazy danych." -#: src/Module/Admin/DBSync.php:47 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "Wykonanie aktualizacji %s struktury bazy danych nie powiodło się z powodu błędu:%s" -#: src/Module/Admin/DBSync.php:62 +#: src/Module/Admin/DBSync.php:60 #, php-format msgid "Executing %s failed with error: %s" msgstr "Wykonanie %s nie powiodło się z powodu błędu:%s" -#: src/Module/Admin/DBSync.php:64 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Update %s was successfully applied." msgstr "Aktualizacja %s została pomyślnie zastosowana." -#: src/Module/Admin/DBSync.php:67 +#: src/Module/Admin/DBSync.php:65 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Aktualizacja %s nie zwróciła statusu. Nieznane, jeśli się udało." -#: src/Module/Admin/DBSync.php:70 +#: src/Module/Admin/DBSync.php:68 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "Nie było dodatkowej funkcji %s aktualizacji, która musiała zostać wywołana." -#: src/Module/Admin/DBSync.php:91 +#: src/Module/Admin/DBSync.php:89 msgid "No failed updates." msgstr "Brak błędów aktualizacji." -#: src/Module/Admin/DBSync.php:92 +#: src/Module/Admin/DBSync.php:90 msgid "Check database structure" msgstr "Sprawdź strukturę bazy danych" -#: src/Module/Admin/DBSync.php:96 +#: src/Module/Admin/DBSync.php:94 msgid "Failed Updates" msgstr "Błąd aktualizacji" -#: src/Module/Admin/DBSync.php:97 +#: src/Module/Admin/DBSync.php:95 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Nie dotyczy to aktualizacji przed 1139, który nie zwrócił statusu." -#: src/Module/Admin/DBSync.php:98 +#: src/Module/Admin/DBSync.php:96 msgid "Mark success (if update was manually applied)" msgstr "Oznacz sukces (jeśli aktualizacja została ręcznie zastosowana)" -#: src/Module/Admin/DBSync.php:99 +#: src/Module/Admin/DBSync.php:97 msgid "Attempt to execute this update step automatically" msgstr "Spróbuj automatycznie wykonać ten krok aktualizacji" @@ -5796,12 +5802,12 @@ msgstr "" msgid "Database (legacy)" msgstr "Baza danych (legacy)" -#: src/Module/Admin/Summary.php:41 +#: src/Module/Admin/Summary.php:39 #, php-format msgid "Template engine (%s) error: %s" msgstr "Silnik szablonów (%s) błąd: %s" -#: src/Module/Admin/Summary.php:45 +#: src/Module/Admin/Summary.php:43 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5812,7 +5818,7 @@ msgid "" " an automatic conversion.
" msgstr "Twoja baza danych nadal używa tabel MyISAM. Powinieneś(-naś) zmienić typ silnika na InnoDB. Ponieważ Friendica będzie używać w przyszłości wyłącznie funkcji InnoDB, powinieneś(-naś) to zmienić! Zobacz tutaj przewodnik, który może być pomocny w konwersji silników tabel. Możesz także użyć polecenia php bin/console.php dbstructure toinnodb instalacji Friendica, aby dokonać automatycznej konwersji.
" -#: src/Module/Admin/Summary.php:50 +#: src/Module/Admin/Summary.php:48 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5823,7 +5829,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "Twoja baza danych nadal działa z tabelami InnoDB w formacie pliku Antelope. Powinieneś zmienić format pliku na Barracuda. Friendica korzysta z funkcji, których nie zapewnia format Antelope. Zobacz tutaj przewodnik, który może być pomocny w konwersji silników tabel. Możesz również użyć polecenia php bin/console.php dbstructure toinnodb Twojej instalacji Friendica do automatycznej konwersji.
" -#: src/Module/Admin/Summary.php:60 +#: src/Module/Admin/Summary.php:58 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5831,46 +5837,46 @@ msgid "" " to %d. See here for more information.
" msgstr "Twoja pamięć podręczna w table_definition_cache jest zbyt niska (%d). Może to prowadzić do błędu bazy danych „Przygotowana instrukcja wymaga ponownego przygotowania”. Ustaw przynajmniej na %d. Zobacz tutaj, aby uzyskać więcej informacji.
" -#: src/Module/Admin/Summary.php:68 +#: src/Module/Admin/Summary.php:66 #, 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 "Dostępna jest nowa wersja aplikacji Friendica. Twoja aktualna wersja to %1$s wyższa wersja to %2$s" -#: src/Module/Admin/Summary.php:76 +#: src/Module/Admin/Summary.php:74 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 "Aktualizacja bazy danych nie powiodła się. Uruchom polecenie \"php bin/console.php dbstructure update\" z wiersza poleceń i sprawdź błędy, które mogą się pojawić." -#: src/Module/Admin/Summary.php:80 +#: src/Module/Admin/Summary.php:78 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 "Ostatnia aktualizacja nie powiodła się. Uruchom polecenie \"php bin/console.php dbstructure update\" z wiersza poleceń i spójrz na błędy, które mogą się pojawić. (Niektóre błędy są prawdopodobnie w pliku dziennika)." -#: src/Module/Admin/Summary.php:84 +#: src/Module/Admin/Summary.php:82 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:89 +#: src/Module/Admin/Summary.php:87 msgid "The worker was never executed. Please check your database structure!" msgstr "Worker nigdy nie został wykonany. Sprawdź swoją strukturę bazy danych!" -#: src/Module/Admin/Summary.php:91 +#: src/Module/Admin/Summary.php:89 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "Ostatnie wykonanie workera było w %s UTC. To jest starsze niż jedna godzina. Sprawdź ustawienia crontab." -#: src/Module/Admin/Summary.php:96 +#: src/Module/Admin/Summary.php:94 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5879,7 +5885,7 @@ msgid "" "help with the transition." msgstr "Konfiguracja Friendiki jest teraz przechowywana w config/local.config.php, skopiuj config/local-sample.config.php i przenieś swoją konfigurację z .htconfig.php. Zobacz stronę pomocy Config, aby uzyskać pomoc dotyczącą przejścia." -#: src/Module/Admin/Summary.php:100 +#: src/Module/Admin/Summary.php:98 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5888,7 +5894,7 @@ msgid "" "page for help with the transition." msgstr "Konfiguracja Friendiki jest teraz przechowywana w config/local.config.php, skopiuj config/local-sample.config.php i przenieś konfigurację z config/local.ini.php. Zobacz stronę pomocy Config, aby uzyskać pomoc dotyczącą przejścia." -#: src/Module/Admin/Summary.php:106 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5896,40 +5902,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "%s nie jest osiągalny w twoim systemie. Jest to poważny problem z konfiguracją, który uniemożliwia komunikację między serwerami. Zobacz pomoc na stronie instalacji." -#: src/Module/Admin/Summary.php:130 +#: src/Module/Admin/Summary.php:128 #, 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 "System.basepath Friendiki został zaktualizowany z '%s' do '%s'. Usuń system.basepath z bazy danych, aby uniknąć różnic." -#: src/Module/Admin/Summary.php:138 +#: src/Module/Admin/Summary.php:136 #, php-format msgid "" "Friendica's current system.basepath '%s' is wrong and the config file '%s' " "isn't used." msgstr "Obecny system.basepath Friendiki '%s' jest nieprawidłowy i plik konfiguracyjny '%s' nie jest używany." -#: src/Module/Admin/Summary.php:146 +#: src/Module/Admin/Summary.php:144 #, php-format msgid "" "Friendica's current system.basepath '%s' is not equal to the config file " "'%s'. Please fix your configuration." msgstr "Obecny system.basepath Friendiki '%s' nie jest równy plikowi konfiguracyjnemu '%s'. Napraw konfigurację." -#: src/Module/Admin/Summary.php:157 +#: src/Module/Admin/Summary.php:155 msgid "Message queues" msgstr "Wiadomości" -#: src/Module/Admin/Summary.php:160 +#: src/Module/Admin/Summary.php:158 msgid "Server Settings" msgstr "Ustawienia serwera" -#: src/Module/Admin/Summary.php:178 +#: src/Module/Admin/Summary.php:176 msgid "Version" msgstr "Wersja" -#: src/Module/Admin/Summary.php:182 +#: src/Module/Admin/Summary.php:180 msgid "Active addons" msgstr "Aktywne dodatki" @@ -6200,8 +6206,8 @@ msgstr "" msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:134 -#: src/Module/Moderation/Users/Index.php:144 +#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:137 +#: src/Module/Moderation/Users/Index.php:147 msgid "Users" msgstr "Użytkownicy" @@ -6237,7 +6243,7 @@ msgstr "" msgid "Only You Can See This" msgstr "Tylko ty możesz to zobaczyć" -#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:67 +#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:65 msgid "Scheduled Posts" msgstr "Zaplanowane wpisy" @@ -6291,7 +6297,7 @@ msgstr "Uwierzytelnianie dwuskładnikowe" msgid "Display" msgstr "Wygląd" -#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:195 +#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:189 msgid "Social Networks" msgstr "Portale społecznościowe" @@ -6307,11 +6313,15 @@ msgstr "Powiązane aplikacje" msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:84 +#: src/Module/BaseSettings.php:155 src/Module/Settings/ContactImport.php:109 +msgid "Import Contacts" +msgstr "Import kontaktów" + +#: src/Module/BaseSettings.php:162 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Eksportuj dane osobiste" -#: src/Module/BaseSettings.php:162 +#: src/Module/BaseSettings.php:169 msgid "Remove account" msgstr "Usuń konto" @@ -6440,8 +6450,8 @@ msgstr "lista" msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:54 src/Module/Circle.php:202 -#: src/Module/Circle.php:226 +#: src/Module/Circle.php:54 src/Module/Circle.php:203 +#: src/Module/Circle.php:227 msgid "Circle not found." msgstr "" @@ -6449,15 +6459,15 @@ msgstr "" msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:78 +#: src/Module/Circle.php:80 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Circle.php:86 src/Module/Circle.php:95 #: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 -#: 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/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/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 @@ -6466,75 +6476,75 @@ msgstr "" msgid "Contact not found." msgstr "Nie znaleziono kontaktu." -#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 +#: src/Module/Circle.php:90 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Nieprawidłowy kontakt." -#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 +#: src/Module/Circle.php:99 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "Kontakt został usunięty." -#: src/Module/Circle.php:103 +#: src/Module/Circle.php:105 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:106 +#: src/Module/Circle.php:108 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:110 +#: src/Module/Circle.php:112 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:113 +#: src/Module/Circle.php:115 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:119 msgid "Bad request." msgstr "Błędne żądanie." -#: src/Module/Circle.php:158 +#: src/Module/Circle.php:160 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:159 +#: src/Module/Circle.php:161 msgid "Filter" msgstr "Filtr" -#: src/Module/Circle.php:165 +#: src/Module/Circle.php:167 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:207 +#: src/Module/Circle.php:208 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:258 +#: src/Module/Circle.php:259 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:268 +#: src/Module/Circle.php:269 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:278 +#: src/Module/Circle.php:279 msgid "Members" msgstr "Członkowie" -#: src/Module/Circle.php:281 +#: src/Module/Circle.php:282 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:297 +#: src/Module/Circle.php:298 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:320 +#: src/Module/Circle.php:321 msgid "Click on a contact to add or remove." msgstr "Kliknij na kontakt w celu dodania lub usunięcia." -#: src/Module/Circle.php:337 +#: src/Module/Circle.php:338 msgid "Add contact to circle" msgstr "" @@ -6570,7 +6580,7 @@ msgid "Only show blocked contacts" msgstr "Pokaż tylko zablokowane kontakty" #: src/Module/Contact.php:349 src/Module/Contact.php:421 -#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:386 msgid "Ignored" msgstr "Ignorowane" @@ -6621,8 +6631,8 @@ msgstr "Zaktualizuj" #: src/Module/Contact.php:449 src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:105 -#: src/Module/Moderation/Users/Blocked.php:124 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Blocked.php:127 +#: src/Module/Moderation/Users/Index.php:143 msgid "Unblock" msgstr "Odblokuj" @@ -6698,12 +6708,12 @@ msgstr "Wróć do edytora kontaktów" #: 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:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:56 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Nazwa" @@ -7278,11 +7288,11 @@ msgstr "" msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:190 +#: src/Module/Conversation/Timeline.php:193 msgid "Include" msgstr "Zawiera" -#: src/Module/Conversation/Timeline.php:191 +#: src/Module/Conversation/Timeline.php:194 msgid "Hide" msgstr "Ukryj" @@ -7553,19 +7563,19 @@ msgstr "Diagnostyka Webfinger" msgid "Lookup address:" msgstr "Wyszukaj adres:" -#: src/Module/Directory.php:61 +#: src/Module/Directory.php:60 msgid "No entries (some entries may be hidden)." msgstr "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)." -#: src/Module/Directory.php:77 +#: src/Module/Directory.php:76 msgid "Find on this site" msgstr "Znajdź na tej stronie" -#: src/Module/Directory.php:79 +#: src/Module/Directory.php:78 msgid "Results for:" msgstr "Wyniki dla:" -#: src/Module/Directory.php:81 +#: src/Module/Directory.php:80 msgid "Site Directory" msgstr "Katalog Witryny" @@ -7818,29 +7828,29 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Przejdź do strony rejestracji nowego węzła Friendica i zarejestruj się jako nowy użytkownik. Pamiętaj, aby użyć adresu e-mail wprowadzonego jako e-mail administratora. To pozwoli Ci wejść do panelu administratora witryny." -#: src/Module/Invite.php:43 +#: src/Module/Invite.php:42 msgid "Total invitation limit exceeded." msgstr "Przekroczono limit zaproszeń ogółem." -#: src/Module/Invite.php:68 +#: src/Module/Invite.php:67 #, php-format msgid "%s : Not a valid email address." msgstr "%s : Nieprawidłowy adres e-mail." -#: src/Module/Invite.php:94 +#: src/Module/Invite.php:93 msgid "Please join us on Friendica" msgstr "Dołącz do nas na Friendica" -#: src/Module/Invite.php:103 +#: src/Module/Invite.php:102 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Przekroczono limit zaproszeń. Skontaktuj się z administratorem witryny." -#: src/Module/Invite.php:107 +#: src/Module/Invite.php:106 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Nie udało się dostarczyć wiadomości." -#: src/Module/Invite.php:111 +#: src/Module/Invite.php:110 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." @@ -7849,11 +7859,11 @@ msgstr[1] "%d wiadomości wysłane." msgstr[2] "%d wysłano ." msgstr[3] "%d wiadomość wysłano." -#: src/Module/Invite.php:129 +#: src/Module/Invite.php:127 msgid "You have no more invitations available" msgstr "Nie masz już dostępnych zaproszeń" -#: src/Module/Invite.php:136 +#: src/Module/Invite.php:134 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7861,14 +7871,14 @@ msgid "" " other social networks." msgstr "Odwiedź %s listę publicznych witryn, do których możesz dołączyć. Członkowie Friendica na innych stronach mogą łączyć się ze sobą, jak również z członkami wielu innych sieci społecznościowych." -#: src/Module/Invite.php:138 +#: src/Module/Invite.php:136 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Aby zaakceptować to zaproszenie, odwiedź i zarejestruj się %s lub w dowolnej innej publicznej witrynie internetowej Friendica." -#: src/Module/Invite.php:139 +#: src/Module/Invite.php:137 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7877,48 +7887,48 @@ msgid "" "sites you can join." msgstr "Strony Friendica łączą się ze sobą, tworząc ogromną sieć społecznościową o zwiększonej prywatności, która jest własnością i jest kontrolowana przez jej członków. Mogą również łączyć się z wieloma tradycyjnymi sieciami społecznościowymi. Zobacz %s listę alternatywnych witryn Friendica, do których możesz dołączyć." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:141 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Przepraszamy. System nie jest obecnie skonfigurowany do łączenia się z innymi publicznymi witrynami lub zapraszania członków." -#: src/Module/Invite.php:146 +#: src/Module/Invite.php:144 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 "Strony Friendica łączą się ze sobą, tworząc ogromną sieć społecznościową o zwiększonej prywatności, która jest własnością i jest kontrolowana przez jej członków. Mogą również łączyć się z wieloma tradycyjnymi sieciami społecznościowymi." -#: src/Module/Invite.php:145 +#: src/Module/Invite.php:143 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "Aby zaakceptować to zaproszenie, odwiedź stronę i zarejestruj się na stronie %s." -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:151 msgid "Send invitations" msgstr "Wyślij zaproszenie" -#: src/Module/Invite.php:154 +#: src/Module/Invite.php:152 msgid "Enter email addresses, one per line:" msgstr "Wprowadź adresy e-mail, po jednym w wierszu:" -#: src/Module/Invite.php:158 +#: src/Module/Invite.php:156 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Serdecznie zapraszam do przyłączenia się do mnie i innych bliskich znajomych na stronie Friendica - i pomóż nam stworzyć lepszą sieć społecznościową." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "You will need to supply this invitation code: $invite_code" msgstr "Musisz podać ten kod zaproszenia: $invite_code" -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Po rejestracji połącz się ze mną na stronie mojego profilu pod adresem:" -#: src/Module/Invite.php:162 +#: src/Module/Invite.php:160 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" @@ -8020,12 +8030,12 @@ msgid "File upload failed." msgstr "Przesyłanie pliku nie powiodło się." #: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 -#: src/Module/Profile/Photos.php:204 +#: src/Module/Profile/Photos.php:212 #: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Przetwarzanie obrazu nie powiodło się." -#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:224 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:232 #: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Przesyłanie obrazu nie powiodło się." @@ -8058,23 +8068,23 @@ msgstr "Usunięte" msgid "List of pending user deletions" msgstr "Lista oczekujących na usunięcie użytkowników" -#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:469 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:431 msgid "Normal Account Page" msgstr "Normalna strona konta" -#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:476 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:438 msgid "Soapbox Page" msgstr "Strona Soapbox" -#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:483 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:445 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:490 +#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:452 msgid "Public Group - Restricted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:497 +#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:459 msgid "Automatic Friend Page" msgstr "Automatyczna strona znajomego" @@ -8083,22 +8093,22 @@ msgid "Private Group" msgstr "" #: src/Module/Moderation/BaseUsers.php:118 -#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:440 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:402 msgid "Personal Page" msgstr "Strona osobista" #: src/Module/Moderation/BaseUsers.php:119 -#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:447 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:409 msgid "Organisation Page" msgstr "Strona Organizacji" #: src/Module/Moderation/BaseUsers.php:120 -#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:454 +#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:416 msgid "News Page" msgstr "Strona Wiadomości" #: src/Module/Moderation/BaseUsers.php:121 -#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:461 +#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:423 msgid "Community Group" msgstr "" @@ -8130,9 +8140,9 @@ msgid "Block Remote Contact" msgstr "Zablokuj kontakt zdalny" #: src/Module/Moderation/Blocklist/Contact.php:102 -#: 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/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:138 #: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "zaznacz wszystko" @@ -8485,9 +8495,9 @@ msgid "Tag" msgstr "Znacznik" #: src/Module/Moderation/Item/Source.php:77 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 -#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 +#: src/Module/Moderation/Users/Index.php:129 msgid "Type" msgstr "Typu" @@ -8754,7 +8764,7 @@ msgstr[3] "" msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:418 +#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:380 msgid "Channel Relay" msgstr "" @@ -8777,11 +8787,11 @@ msgstr[2] "%s użytkowników zablokowanych" msgstr[3] "%s użytkownicy zablokowani" #: src/Module/Moderation/Users/Active.php:37 -#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Active.php:74 #: src/Module/Moderation/Users/Blocked.php:37 -#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Blocked.php:74 #: src/Module/Moderation/Users/Index.php:44 -#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Index.php:81 msgid "You can't remove yourself" msgstr "Nie możesz usunąć siebie" @@ -8796,81 +8806,81 @@ msgstr[1] "usunięto %s użytkowników" msgstr[2] "usunięto %s użytkowników" msgstr[3] "%s usuniętych użytkowników" -#: src/Module/Moderation/Users/Active.php:69 -#: src/Module/Moderation/Users/Blocked.php:69 -#: src/Module/Moderation/Users/Index.php:76 +#: src/Module/Moderation/Users/Active.php:72 +#: src/Module/Moderation/Users/Blocked.php:72 +#: src/Module/Moderation/Users/Index.php:79 #, php-format msgid "User \"%s\" deleted" msgstr "Użytkownik \"%s\" usunięty" -#: src/Module/Moderation/Users/Active.php:79 -#: src/Module/Moderation/Users/Index.php:86 +#: src/Module/Moderation/Users/Active.php:82 +#: src/Module/Moderation/Users/Index.php:89 #, php-format msgid "User \"%s\" blocked" msgstr "Użytkownik \"%s\" zablokowany" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Register date" msgstr "Data rejestracji" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last login" msgstr "Ostatnie logowanie" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last public item" msgstr "Ostatni element publiczny" -#: src/Module/Moderation/Users/Active.php:120 +#: src/Module/Moderation/Users/Active.php:123 msgid "Active Accounts" msgstr "Aktywne konta" -#: src/Module/Moderation/Users/Active.php:124 -#: src/Module/Moderation/Users/Blocked.php:123 -#: src/Module/Moderation/Users/Index.php:139 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "User blocked" msgstr "Użytkownik zablokowany" -#: src/Module/Moderation/Users/Active.php:125 -#: src/Module/Moderation/Users/Blocked.php:125 -#: src/Module/Moderation/Users/Index.php:141 +#: src/Module/Moderation/Users/Active.php:128 +#: src/Module/Moderation/Users/Blocked.php:128 +#: src/Module/Moderation/Users/Index.php:144 msgid "Site admin" msgstr "Administracja stroną" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:142 +#: src/Module/Moderation/Users/Active.php:129 +#: src/Module/Moderation/Users/Blocked.php:129 +#: src/Module/Moderation/Users/Index.php:145 msgid "Account expired" msgstr "Konto wygasło" -#: src/Module/Moderation/Users/Active.php:127 -#: src/Module/Moderation/Users/Index.php:145 +#: src/Module/Moderation/Users/Active.php:130 +#: src/Module/Moderation/Users/Index.php:148 msgid "Create a new user" msgstr "Utwórz nowego użytkownika" -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:132 -#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:154 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Zaznaczeni użytkownicy zostaną usunięci!\\n\\n Wszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\n Jesteś pewien?" -#: src/Module/Moderation/Users/Active.php:134 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:155 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" @@ -8886,13 +8896,13 @@ msgstr[1] "%s użytkowników odblokowanych" msgstr[2] "%s użytkowników odblokowanych" msgstr[3] "%s użytkowników odblokowanych" -#: src/Module/Moderation/Users/Blocked.php:78 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Blocked.php:81 +#: src/Module/Moderation/Users/Index.php:95 #, php-format msgid "User \"%s\" unblocked" msgstr "Użytkownik \"%s\" odblokowany" -#: src/Module/Moderation/Users/Blocked.php:120 +#: src/Module/Moderation/Users/Blocked.php:123 msgid "Blocked Users" msgstr "Zablokowani użytkownicy" @@ -8925,11 +8935,11 @@ msgid "Users awaiting permanent deletion" msgstr "Użytkownicy oczekujący na trwałe usunięcie" #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:149 msgid "Permanent deletion" msgstr "Trwałe usunięcie" -#: src/Module/Moderation/Users/Index.php:136 +#: src/Module/Moderation/Users/Index.php:139 msgid "User waiting for permanent deletion" msgstr "Użytkownik czekający na trwałe usunięcie" @@ -9098,7 +9108,7 @@ msgstr "Skopiuj następujący kod uwierzytelniający do swojej aplikacji i zamkn msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:91 +#: src/Module/OAuth/Token.php:73 msgid "Unsupported or missing grant type" msgstr "Nieobsługiwany lub brakujący typ dotacji" @@ -9150,7 +9160,7 @@ msgstr "ignorowany(-a)" msgid "Keep this window open until done." msgstr "Pozostaw to okno otwarte, dopóki nie będzie gotowe." -#: src/Module/OpenSearch.php:57 +#: src/Module/OpenSearch.php:55 #, php-format msgid "Search in Friendica %s" msgstr "" @@ -9164,12 +9174,12 @@ msgstr "Zdjęcie jest niedostępne." msgid "The Photo with id %s is not available." msgstr "Zdjęcie z identyfikatorem %s nie jest dostępne." -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:178 #, php-format msgid "Invalid external resource with url %s." msgstr "Nieprawidłowy zasób zewnętrzny z adresem URL %s." -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:180 #, php-format msgid "Invalid photo with id %s." msgstr "Nieprawidłowe zdjęcie z identyfikatorem %s." @@ -9202,15 +9212,15 @@ msgstr "Wstaw link do audio" msgid "audio link" msgstr "link do audio" -#: src/Module/Post/Tag/Remove.php:92 +#: src/Module/Post/Tag/Remove.php:93 msgid "Remove Item Tag" msgstr "Usuń pozycję znacznika" -#: src/Module/Post/Tag/Remove.php:93 +#: src/Module/Post/Tag/Remove.php:94 msgid "Select a tag to remove: " msgstr "Wybierz znacznik do usunięcia: " -#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Post/Tag/Remove.php:95 #: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Usuń" @@ -9289,32 +9299,32 @@ msgstr "komentarze %s" msgid "%s's timeline" msgstr "oś czasu %s" -#: src/Module/Profile/Photos.php:153 src/Module/Profile/Photos.php:156 -#: src/Module/Profile/Photos.php:181 +#: src/Module/Profile/Photos.php:157 src/Module/Profile/Photos.php:160 +#: src/Module/Profile/Photos.php:189 #: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "Obraz przekracza limit rozmiaru wynoszący %s" -#: src/Module/Profile/Photos.php:159 +#: src/Module/Profile/Photos.php:163 msgid "Image upload didn't complete, please try again" msgstr "Przesyłanie zdjęć nie zostało zakończone, spróbuj ponownie" -#: src/Module/Profile/Photos.php:162 +#: src/Module/Profile/Photos.php:166 msgid "Image file is missing" msgstr "Brak pliku obrazu" -#: src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:171 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "Serwer nie może teraz przyjąć nowego pliku, skontaktuj się z administratorem" -#: src/Module/Profile/Photos.php:189 +#: src/Module/Profile/Photos.php:197 msgid "Image file is empty." msgstr "Plik obrazka jest pusty." -#: src/Module/Profile/Photos.php:341 +#: src/Module/Profile/Photos.php:349 msgid "View Album" msgstr "Zobacz album" @@ -9432,15 +9442,15 @@ msgid "" "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:69 +#: src/Module/Profile/Schedule.php:67 msgid "Scheduled" msgstr "Zaplanowane" -#: src/Module/Profile/Schedule.php:70 +#: src/Module/Profile/Schedule.php:68 msgid "Content" msgstr "Zawartość" -#: src/Module/Profile/Schedule.php:71 +#: src/Module/Profile/Schedule.php:69 msgid "Remove post" msgstr "Usuń wpis" @@ -9505,7 +9515,7 @@ msgid "Please repeat your e-mail address:" msgstr "Powtórz swój adres e-mail:" #: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:551 +#: src/Module/Settings/Account.php:513 msgid "New Password:" msgstr "Nowe hasło:" @@ -9514,7 +9524,7 @@ msgid "Leave empty for an auto generated password." msgstr "Pozostaw puste dla wygenerowanego automatycznie hasła." #: src/Module/Register.php:157 src/Module/Security/PasswordTooLong.php:87 -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Confirm:" msgstr "Potwierdź:" @@ -9698,20 +9708,20 @@ msgstr "Wylogowano." msgid "OpenID protocol error. No ID returned" msgstr "Błąd protokołu OpenID. Nie zwrócono identyfikatora" -#: src/Module/Security/OpenID.php:76 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "Konto nie znalezione. Zaloguj się do swojego istniejącego konta, aby dodać do niego OpenID." -#: src/Module/Security/OpenID.php:78 +#: src/Module/Security/OpenID.php:80 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "Konto nie znalezione. Zarejestruj nowe konto lub zaloguj się na istniejące konto, aby dodać do niego OpenID." #: src/Module/Security/PasswordTooLong.php:43 -#: src/Module/Settings/Account.php:51 +#: src/Module/Settings/Account.php:49 msgid "Passwords do not match." msgstr "Hasła nie pasują do siebie." @@ -9720,7 +9730,7 @@ msgid "Password does not need changing." msgstr "Hasło nie wymaga zmiany." #: src/Module/Security/PasswordTooLong.php:63 -#: src/Module/Settings/Account.php:65 +#: src/Module/Settings/Account.php:63 msgid "Password unchanged." msgstr "Hasło niezmienione." @@ -9740,24 +9750,24 @@ msgid "Update Password" msgstr "" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Current Password:" msgstr "Aktualne hasło:" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Your current password to confirm the changes" msgstr "Wpisz aktualne hasło, aby potwierdzić zmiany" #: src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:537 +#: src/Module/Settings/Account.php:499 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:538 +#: src/Module/Settings/Account.php:500 msgid "Password length is limited to 72 characters." msgstr "" @@ -9861,129 +9871,121 @@ msgstr "Wprowadź kod z aplikacji uwierzytelniającej" msgid "Verify code and complete login" msgstr "Zweryfikuj kod i zakończ logowanie" -#: src/Module/Settings/Account.php:80 +#: src/Module/Settings/Account.php:78 msgid "Please use a shorter name." msgstr "Użyj krótszej nazwy." -#: src/Module/Settings/Account.php:83 +#: src/Module/Settings/Account.php:81 msgid "Name too short." msgstr "Nazwa jest za krótka. " -#: src/Module/Settings/Account.php:92 +#: src/Module/Settings/Account.php:90 msgid "Wrong Password." msgstr "Nieprawidłowe hasło." -#: src/Module/Settings/Account.php:97 +#: src/Module/Settings/Account.php:95 msgid "Invalid email." msgstr "Niepoprawny e-mail." -#: src/Module/Settings/Account.php:101 +#: src/Module/Settings/Account.php:99 msgid "Cannot change to that email." msgstr "Nie można zmienić tego e-maila." -#: 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 +#: 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 msgid "Settings were not updated." msgstr "Ustawienia nie zostały zaktualizowane." -#: src/Module/Settings/Account.php:331 -msgid "Contact CSV file upload error" -msgstr "Kontakt z plikiem CSV błąd przekazywania plików" - -#: src/Module/Settings/Account.php:350 -msgid "Importing Contacts done" -msgstr "Importowanie kontaktów zakończone" - -#: src/Module/Settings/Account.php:363 +#: src/Module/Settings/Account.php:325 msgid "Relocate message has been send to your contacts" msgstr "Przeniesienie wiadomości zostało wysłane do Twoich kontaktów" -#: src/Module/Settings/Account.php:380 +#: src/Module/Settings/Account.php:342 msgid "Unable to find your profile. Please contact your admin." msgstr "Nie można znaleźć Twojego profilu. Skontaktuj się z administratorem." -#: src/Module/Settings/Account.php:420 +#: src/Module/Settings/Account.php:382 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:430 +#: src/Module/Settings/Account.php:392 msgid "Personal Page Subtypes" msgstr "Podtypy osobistych stron" -#: src/Module/Settings/Account.php:431 +#: src/Module/Settings/Account.php:393 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:442 +#: src/Module/Settings/Account.php:404 msgid "Account for a personal profile." msgstr "Konto dla profilu osobistego." -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:411 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Konto dla organizacji, która automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"." -#: src/Module/Settings/Account.php:456 +#: src/Module/Settings/Account.php:418 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Konto dla reflektora wiadomości, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"." -#: src/Module/Settings/Account.php:463 +#: src/Module/Settings/Account.php:425 msgid "Account for community discussions." msgstr "Konto do dyskusji w społeczności." -#: src/Module/Settings/Account.php:471 +#: src/Module/Settings/Account.php:433 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Konto dla zwykłego profilu osobistego, który wymaga ręcznej zgody \"Przyjaciół\" i \"Obserwatorów\"." -#: src/Module/Settings/Account.php:478 +#: src/Module/Settings/Account.php:440 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Konto dla profilu publicznego, który automatycznie zatwierdza prośby o kontakt jako \"Obserwatorzy\"." -#: src/Module/Settings/Account.php:485 +#: src/Module/Settings/Account.php:447 msgid "Automatically approves all contact requests." msgstr "Automatycznie zatwierdza wszystkie prośby o kontakt." -#: src/Module/Settings/Account.php:492 +#: src/Module/Settings/Account.php:454 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:499 +#: src/Module/Settings/Account.php:461 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Konto popularnego profilu, które automatycznie zatwierdza prośby o kontakt jako \"Przyjaciele\"." -#: src/Module/Settings/Account.php:504 +#: src/Module/Settings/Account.php:466 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:506 +#: src/Module/Settings/Account.php:468 msgid "Requires manual approval of contact requests." msgstr "Wymaga ręcznego zatwierdzania żądań kontaktów." -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Opcjonalnie) Pozwól zalogować się na to konto przy pomocy OpenID." -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 msgid "Publish your profile in your local site directory?" msgstr "Czy opublikować twój profil w katalogu lokalnej witryny?" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9991,94 +9993,94 @@ msgid "" " system settings." msgstr "Twój profil zostanie opublikowany w lokalnym katalogu tego węzła. Dane Twojego profilu mogą być publicznie widoczne w zależności od ustawień systemu." -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:491 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Twój profil zostanie również opublikowany w globalnych katalogach Friendica (np. %s)." -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:504 msgid "Account Settings" msgstr "Ustawienia konta" -#: src/Module/Settings/Account.php:543 +#: src/Module/Settings/Account.php:505 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Twój adres tożsamości to '%s' lub '%s'." -#: src/Module/Settings/Account.php:550 +#: src/Module/Settings/Account.php:512 msgid "Password Settings" msgstr "Ustawienia hasła" -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Leave password fields blank unless changing" msgstr "Pozostaw pole hasła puste, jeżeli nie chcesz go zmienić." -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Password:" msgstr "Hasło:" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Your current password to confirm the changes of the email address" msgstr "Twoje obecne hasło, aby potwierdzić zmiany adresu e-mail" -#: src/Module/Settings/Account.php:557 +#: src/Module/Settings/Account.php:519 msgid "Delete OpenID URL" msgstr "Usuń adres URL OpenID" -#: src/Module/Settings/Account.php:559 +#: src/Module/Settings/Account.php:521 msgid "Basic Settings" msgstr "Ustawienia podstawowe" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:522 #: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "Nazwa wyświetlana:" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:523 msgid "Email Address:" msgstr "Adres email:" -#: src/Module/Settings/Account.php:562 +#: src/Module/Settings/Account.php:524 msgid "Your Timezone:" msgstr "Twoja strefa czasowa:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "Your Language:" msgstr "Twój język:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Wybierz język, ktory bedzie używany do wyświetlania użytkownika friendica i wysłania Ci e-maili" -#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Account.php:526 msgid "Default Post Location:" msgstr "Domyślna lokalizacja wpisów:" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:527 msgid "Use Browser Location:" msgstr "Używaj lokalizacji przeglądarki:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:529 msgid "Security and Privacy Settings" msgstr "Ustawienia bezpieczeństwa i prywatności" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "Maximum Friend Requests/Day:" msgstr "Maksymalna dzienna liczba zaproszeń do grona przyjaciół:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "(to prevent spam abuse)" msgstr "(aby zapobiec spamowaniu)" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 msgid "Allow your profile to be searchable globally?" msgstr "Czy Twój profil ma być dostępny do wyszukiwania na całym świecie?" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 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 " @@ -10086,43 +10088,43 @@ msgid "" "indexed or not." msgstr "Aktywuj to ustawienie, jeśli chcesz, aby inni mogli Cię łatwo znaleźć i śledzić. Twój profil będzie można przeszukiwać na zdalnych systemach. To ustawienie określa również, czy Friendica poinformuje wyszukiwarki, że Twój profil powinien być indeksowany, czy nie." -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Ukryć listę kontaktów/znajomych przed osobami przeglądającymi Twój profil?" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "Lista kontaktów jest wyświetlana na stronie profilu. Aktywuj tę opcję, aby wyłączyć wyświetlanie listy kontaktów." -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:535 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:535 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:574 +#: src/Module/Settings/Account.php:536 msgid "Make public posts unlisted" msgstr "Ustaw publiczne wpisy jako niepubliczne" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:536 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 "Twoje publiczne posty nie będą wyświetlane na stronach społeczności ani w wynikach wyszukiwania ani nie będą wysyłane do serwerów przekazywania. Jednak nadal mogą one pojawiać się w publicznych kanałach na serwerach zdalnych." -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:537 msgid "Make all posted pictures accessible" msgstr "Udostępnij wszystkie opublikowane zdjęcia" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:537 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 " @@ -10130,227 +10132,213 @@ msgid "" "public on your photo albums though." msgstr "Ta opcja powoduje, że każde opublikowane zdjęcie jest dostępne poprzez bezpośredni link. Jest to obejście problemu polegającego na tym, że większość innych sieci nie może obsłużyć uprawnień do zdjęć. Jednak zdjęcia niepubliczne nadal nie będą widoczne publicznie w Twoich albumach." -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "Allow friends to post to your profile page?" msgstr "Zezwalać znajomym na publikowanie postów na stronie Twojego profilu?" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Twoi znajomi mogą pisać posty na stronie Twojego profilu. Posty zostaną przesłane do Twoich kontaktów." -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Allow friends to tag your posts?" msgstr "Zezwolić na oznaczanie Twoich postów przez znajomych?" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Your contacts can add additional tags to your posts." msgstr "Twoje kontakty mogą dodawać do tagów dodatkowe posty." -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:540 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:541 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:542 msgid "Default Post Permissions" msgstr "Domyślne prawa dostępu wiadomości" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:546 msgid "Expiration settings" msgstr "Ustawienia ważności" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "Automatically expire posts after this many days:" msgstr "Posty wygasną automatycznie po następującej liczbie dni:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte." -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "Expire posts" msgstr "Ważność wpisów" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "When activated, posts and comments will be expired." msgstr "Po aktywacji posty i komentarze wygasną." -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "Expire personal notes" msgstr "Ważność osobistych notatek" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Po aktywacji osobiste notatki na stronie profilu wygasną." -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "Expire starred posts" msgstr "Wygasaj wpisy oznaczone gwiazdką" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Oznaczanie postów gwiazdką powoduje, że wygasają. To zachowanie jest zastępowane przez to ustawienie." -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 msgid "Only expire posts by others" msgstr "Wygasają tylko wpisy innych osób" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Po aktywacji Twoje posty nigdy nie wygasają. Zatem powyższe ustawienia obowiązują tylko dla otrzymanych postów." -#: src/Module/Settings/Account.php:592 +#: src/Module/Settings/Account.php:554 msgid "Notification Settings" msgstr "Ustawienia powiadomień" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:555 msgid "Send a notification email when:" msgstr "Wysyłaj powiadmonienia na email, kiedy:" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:556 msgid "You receive an introduction" msgstr "Otrzymałeś zaproszenie" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:557 msgid "Your introductions are confirmed" msgstr "Twoje zaproszenie jest potwierdzone" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:558 msgid "Someone writes on your profile wall" msgstr "Ktoś pisze na Twojej tablicy profilu" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:559 msgid "Someone writes a followup comment" msgstr "Ktoś pisze komentarz nawiązujący." -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:560 msgid "You receive a private message" msgstr "Otrzymałeś prywatną wiadomość" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:561 msgid "You receive a friend suggestion" msgstr "Otrzymałeś propozycję od znajomych" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:562 msgid "You are tagged in a post" msgstr "Jesteś oznaczony znacznikiem we wpisie" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:564 msgid "Create a desktop notification when:" msgstr "Utwórz powiadomienia na pulpicie gdy:" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:565 msgid "Someone tagged you" msgstr "Ktoś Cię oznaczył" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:566 msgid "Someone directly commented on your post" msgstr "Ktoś bezpośrednio skomentował Twój wpis" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:567 msgid "Someone liked your content" msgstr "Ktoś polubił Twoje treści" -#: src/Module/Settings/Account.php:605 src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:567 src/Module/Settings/Account.php:568 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "Można włączyć tylko wtedy, gdy włączone jest bezpośrednie powiadomienie o komentarzach." -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:568 msgid "Someone shared your content" msgstr "Ktoś udostępnił Twoje treści" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:569 msgid "Someone commented in your thread" msgstr "Ktoś skomentował w Twoim wątku" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:570 msgid "Someone commented in a thread where you commented" msgstr "Ktoś skomentował w wątku, w którym Ty skomentowałeś" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:571 msgid "Someone commented in a thread where you interacted" msgstr "Ktoś skomentował w wątku, w którym wchodziłeś w interakcję" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Activate desktop notifications" msgstr "Aktywuj powiadomienia na pulpicie" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Show desktop popup on new notifications" msgstr "Pokazuj wyskakujące okienko gdy otrzymasz powiadomienie" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:577 msgid "Text-only notification emails" msgstr "E-maile z powiadomieniami tekstowymi" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:579 msgid "Send text only notification emails, without the html part" msgstr "Wysyłaj tylko e-maile z powiadomieniami tekstowymi, bez części html" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:583 msgid "Show detailled notifications" msgstr "Pokazuj szczegółowe powiadomienia" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:585 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Domyślne powiadomienia są skondensowane z jednym powiadomieniem dla każdego przedmiotu. Po włączeniu wyświetlane jest każde powiadomienie." -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:589 msgid "Show notifications of ignored contacts" msgstr "Pokaż powiadomienia o zignorowanych kontaktach" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:591 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 "Nie widzisz wpisów od ignorowanych kontaktów. Ale nadal widzisz ich komentarze. To ustawienie określa, czy chcesz nadal otrzymywać regularne powiadomienia, które są powodowane przez ignorowane kontakty, czy nie." -#: src/Module/Settings/Account.php:632 +#: src/Module/Settings/Account.php:594 msgid "Advanced Account/Page Type Settings" msgstr "Zaawansowane ustawienia konta/rodzaju strony" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:595 msgid "Change the behaviour of this account for special situations" msgstr "Zmień zachowanie tego konta w sytuacjach specjalnych" -#: src/Module/Settings/Account.php:636 -msgid "Import Contacts" -msgstr "Import kontaktów" - -#: src/Module/Settings/Account.php:637 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "Prześlij plik CSV zawierający obsługę obserwowanych kont w pierwszej kolumnie wyeksportowanej ze starego konta." - -#: src/Module/Settings/Account.php:638 -msgid "Upload File" -msgstr "Prześlij plik" - -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:598 msgid "Relocate" msgstr "Przeniesienie" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:599 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 "Jeśli ten profil został przeniesiony z innego serwera, a niektóre z Twoich kontaktów nie otrzymają aktualizacji, spróbuj nacisnąć ten przycisk." -#: src/Module/Settings/Account.php:643 +#: src/Module/Settings/Account.php:600 msgid "Resend relocate message to contacts" msgstr "Wyślij ponownie przenieść wiadomości do kontaktów" @@ -10515,214 +10503,232 @@ msgstr "" msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:108 +#: src/Module/Settings/Connectors.php:107 msgid "Failed to connect with email account using the settings provided." msgstr "Połączenie z kontem email używając wybranych ustawień nie powiodło się." -#: src/Module/Settings/Connectors.php:155 -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:150 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:149 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:150 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:161 msgid "Email access is disabled on this site." msgstr "Dostęp do e-maila jest wyłączony na tej stronie." -#: src/Module/Settings/Connectors.php:182 -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:176 +#: src/Module/Settings/Connectors.php:226 msgid "None" msgstr "Brak" -#: src/Module/Settings/Connectors.php:186 +#: src/Module/Settings/Connectors.php:180 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "" -#: src/Module/Settings/Connectors.php:187 +#: src/Module/Settings/Connectors.php:181 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "" -#: src/Module/Settings/Connectors.php:188 +#: src/Module/Settings/Connectors.php:182 msgid "Embed the title in the body" msgstr "" -#: src/Module/Settings/Connectors.php:199 +#: src/Module/Settings/Connectors.php:193 msgid "General Social Media Settings" msgstr "Ogólne ustawienia mediów społecznościowych" -#: src/Module/Settings/Connectors.php:202 +#: src/Module/Settings/Connectors.php:196 msgid "Followed content scope" msgstr "Obserwowany zakres treści" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:198 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "Domyślnie na Twojej osi czasu będą pokazywane wątki, w których uczestniczyli Twoi obserwowani, ale które nie zostały przez nich rozpoczęte. Możesz wyłączyć tę funkcję lub rozszerzyć ją na konwersacje, w których Twoi obserwujący polubili dany wpis." -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:200 msgid "Only conversations my follows started" msgstr "Tylko rozmowy, które rozpoczęli moi obserwowani" -#: src/Module/Settings/Connectors.php:207 +#: src/Module/Settings/Connectors.php:201 msgid "Conversations my follows started or commented on (default)" msgstr "Rozmowy, które rozpoczęli moi obserwowani, lub które komentowali (domyślnie)" -#: src/Module/Settings/Connectors.php:208 +#: src/Module/Settings/Connectors.php:202 msgid "Any conversation my follows interacted with, including likes" msgstr "Wszelkie rozmowy, z którymi wchodziłem w interakcję, w tym polubienia" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "Enable intelligent shortening" msgstr "Włącz inteligentne skracanie" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "Zwykle system próbuje znaleźć najlepszy odnośnik do dodania do skróconych postów. Jeśli wyłączone, każdy skrócony wpis będzie zawsze wskazywał na oryginalny wpis friendica." -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "Enable simple text shortening" msgstr "Włącz proste skracanie tekstu" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "Zwykle system skraca wpisy przy następnym wysunięciu wiersza. Jeśli ta opcja jest włączona, system skróci tekst do maksymalnego limitu znaków." -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "Attach the link title" msgstr "Dołącz tytuł linku" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Po aktywacji tytuł dołączonego linku zostanie dodany jako tytuł postów do Diaspory. Jest to szczególnie pomocne w przypadku kontaktów „zdalnych”, które udostępniają treść kanału." -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "Article Mode" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "" -#: src/Module/Settings/Connectors.php:218 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "Twoje stare konto ActivityPub/GNU Social" - -#: src/Module/Settings/Connectors.php:218 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "Jeśli wprowadzisz tutaj swoją starą nazwę konta z systemu opartego na ActivityPub lub nazwę konta GNU Social/Statusnet (w formacie użytkownik@domena.tld), Twoje kontakty zostaną dodane automatycznie. Po zakończeniu pole zostanie opróżnione." - -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:215 msgid "Email/Mailbox Setup" msgstr "Ustawienia emaila/skrzynki mailowej" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:216 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Jeśli chcesz komunikować się z kontaktami e-mail za pomocą tej usługi (opcjonalnie), określ sposób łączenia się ze skrzynką pocztową." -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:217 msgid "Last successful email check:" msgstr "Ostatni sprawdzony e-mail:" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:219 msgid "IMAP server name:" msgstr "Nazwa serwera IMAP:" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:220 msgid "IMAP port:" msgstr "Port IMAP:" -#: src/Module/Settings/Connectors.php:228 +#: src/Module/Settings/Connectors.php:221 msgid "Security:" msgstr "Bezpieczeństwo:" -#: src/Module/Settings/Connectors.php:229 +#: src/Module/Settings/Connectors.php:222 msgid "Email login name:" msgstr "Nazwa logowania e-mail:" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:223 msgid "Email password:" msgstr "Hasło e-mail:" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:224 msgid "Reply-to address:" msgstr "Adres zwrotny:" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:225 msgid "Send public posts to all email contacts:" msgstr "Wyślij publiczny wpis do wszystkich kontaktów e-mail:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Action after import:" msgstr "Akcja po zaimportowaniu:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Move to folder" msgstr "Przenieś do katalogu" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:227 msgid "Move to folder:" msgstr "Przenieś do katalogu:" +#: src/Module/Settings/ContactImport.php:63 +msgid "Contact CSV file upload error" +msgstr "Kontakt z plikiem CSV błąd przekazywania plików" + +#: src/Module/Settings/ContactImport.php:82 +msgid "Importing Contacts done" +msgstr "Importowanie kontaktów zakończone" + +#: src/Module/Settings/ContactImport.php:112 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "Prześlij plik CSV zawierający obsługę obserwowanych kont w pierwszej kolumnie wyeksportowanej ze starego konta." + +#: src/Module/Settings/ContactImport.php:113 +msgid "Upload File" +msgstr "Prześlij plik" + +#: src/Module/Settings/ContactImport.php:115 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "Twoje stare konto ActivityPub/GNU Social" + +#: src/Module/Settings/ContactImport.php:115 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "Jeśli wprowadzisz tutaj swoją starą nazwę konta z systemu opartego na ActivityPub lub nazwę konta GNU Social/Statusnet (w formacie użytkownik@domena.tld), Twoje kontakty zostaną dodane automatycznie. Po zakończeniu pole zostanie opróżnione." + #: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "Delegacja została pomyślnie przyznana." @@ -11173,42 +11179,42 @@ msgstr "Prywatne słowa kluczowe:" msgid "(Used for searching profiles, never shown to others)" msgstr "(Używany do wyszukiwania profili, niepokazywany innym)" -#: 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/Crop.php:90 +#: src/Module/Settings/Profile/Photo/Crop.php:108 +#: src/Module/Settings/Profile/Photo/Crop.php:126 #: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Redukcja rozmiaru obrazka [%s] nie powiodła się." -#: src/Module/Settings/Profile/Photo/Crop.php:136 +#: src/Module/Settings/Profile/Photo/Crop.php:133 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Ponownie załaduj stronę lub wyczyść pamięć podręczną przeglądarki, jeśli nowe zdjęcie nie pojawi się natychmiast." -#: src/Module/Settings/Profile/Photo/Crop.php:141 +#: src/Module/Settings/Profile/Photo/Crop.php:138 msgid "Unable to process image" msgstr "Nie udało się przetworzyć obrazu" -#: src/Module/Settings/Profile/Photo/Crop.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:157 msgid "Photo not found." msgstr "Nie znaleziono zdjęcia." -#: src/Module/Settings/Profile/Photo/Crop.php:182 +#: src/Module/Settings/Profile/Photo/Crop.php:179 msgid "Profile picture successfully updated." msgstr "Zdjęcie profilowe zostało pomyślnie zaktualizowane." -#: src/Module/Settings/Profile/Photo/Crop.php:208 -#: src/Module/Settings/Profile/Photo/Crop.php:212 +#: src/Module/Settings/Profile/Photo/Crop.php:205 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Crop Image" msgstr "Przytnij zdjęcie" -#: src/Module/Settings/Profile/Photo/Crop.php:209 +#: src/Module/Settings/Profile/Photo/Crop.php:206 msgid "Please adjust the image cropping for optimum viewing." msgstr "Dostosuj kadrowanie obrazu, aby uzyskać optymalny obraz." -#: src/Module/Settings/Profile/Photo/Crop.php:211 +#: src/Module/Settings/Profile/Photo/Crop.php:208 msgid "Use Image As Is" msgstr "Użyj obrazu takim, jaki jest" @@ -11279,17 +11285,17 @@ msgstr "Identyfikatorem użytkownika jest %d" msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:116 +#: src/Module/Settings/RemoveMe.php:114 msgid "Remove My Account" msgstr "Usuń moje konto" -#: src/Module/Settings/RemoveMe.php:117 +#: src/Module/Settings/RemoveMe.php:115 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Spowoduje to całkowite usunięcie Twojego konta. Po wykonaniu tej czynności nie można jej cofnąć." -#: src/Module/Settings/RemoveMe.php:122 +#: src/Module/Settings/RemoveMe.php:120 msgid "Please enter your password for verification:" msgstr "Wprowadź hasło w celu weryfikacji:" @@ -11684,11 +11690,11 @@ msgstr "" msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:64 +#: src/Module/Special/HTTPException.php:65 msgid "Stack trace:" msgstr "Ślad stosu:" -#: src/Module/Special/HTTPException.php:69 +#: src/Module/Special/HTTPException.php:70 #, php-format msgid "Exception thrown in %s:%d" msgstr "Zgłoszono wyjątek %s:%d" @@ -12473,221 +12479,221 @@ msgstr "Jeśli nie chcesz otrzymywać tych wiadomości kontaktuj się z nadawcą msgid "%s posted an update." msgstr "%s zaktualizował wpis." -#: src/Object/Post.php:124 +#: src/Object/Post.php:125 msgid "Private Message" msgstr "Wiadomość prywatna" -#: src/Object/Post.php:128 +#: src/Object/Post.php:129 msgid "Public Message" msgstr "Wiadomość publiczna" -#: src/Object/Post.php:132 +#: src/Object/Post.php:133 msgid "Unlisted Message" msgstr "Wiadomość niepubliczna" -#: src/Object/Post.php:168 +#: src/Object/Post.php:169 msgid "This entry was edited" msgstr "Ten wpis został zedytowany" -#: src/Object/Post.php:196 +#: src/Object/Post.php:197 msgid "Connector Message" msgstr "Komunikat łącznika" -#: src/Object/Post.php:225 src/Object/Post.php:227 +#: src/Object/Post.php:226 src/Object/Post.php:228 msgid "Edit" msgstr "Edytuj" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Delete globally" msgstr "Usuń globalnie" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Remove locally" msgstr "Usuń lokalnie" -#: src/Object/Post.php:268 +#: src/Object/Post.php:269 #, php-format msgid "Block %s" msgstr "Zablokuj %s" -#: src/Object/Post.php:273 +#: src/Object/Post.php:274 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:278 +#: src/Object/Post.php:279 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:282 +#: src/Object/Post.php:283 msgid "Report post" msgstr "" -#: src/Object/Post.php:293 +#: src/Object/Post.php:294 msgid "Save to folder" msgstr "Zapisz w katalogu" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will attend" msgstr "Będę uczestniczyć" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will not attend" msgstr "Nie będę uczestniczyć" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I might attend" msgstr "Mogę wziąć udział" -#: src/Object/Post.php:380 +#: src/Object/Post.php:381 msgid "Ignore thread" msgstr "Zignoruj ​​wątek" -#: src/Object/Post.php:381 +#: src/Object/Post.php:382 msgid "Unignore thread" msgstr "Przestań ignorować ​​wątek" -#: src/Object/Post.php:382 +#: src/Object/Post.php:383 msgid "Toggle ignore status" msgstr "Przełącz stan ignorowania" -#: src/Object/Post.php:392 +#: src/Object/Post.php:393 msgid "Add star" msgstr "Dodaj gwiazdkę" -#: src/Object/Post.php:393 +#: src/Object/Post.php:394 msgid "Remove star" msgstr "Usuń gwiazdkę" -#: src/Object/Post.php:394 +#: src/Object/Post.php:395 msgid "Toggle star status" msgstr "Przełącz stan gwiazdy" -#: src/Object/Post.php:405 +#: src/Object/Post.php:406 msgid "Pin" msgstr "Przypnij" -#: src/Object/Post.php:406 +#: src/Object/Post.php:407 msgid "Unpin" msgstr "Odepnij" -#: src/Object/Post.php:407 +#: src/Object/Post.php:408 msgid "Toggle pin status" msgstr "Przełącz stan podpięcia" -#: src/Object/Post.php:410 +#: src/Object/Post.php:411 msgid "Pinned" msgstr "Przypięty" -#: src/Object/Post.php:415 +#: src/Object/Post.php:416 msgid "Add tag" msgstr "Dodaj znacznik" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote share this" msgstr "Cytuj udostępnij to" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote Share" msgstr "Udostępnienie cytatu" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare this" msgstr "Udostępnij to dalej" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare" msgstr "Udostępnij dalej" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Cancel your Reshare" msgstr "Anuluj swoje dalsze udostępnianie" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Unshare" msgstr "Przestań udostępniać" -#: src/Object/Post.php:478 +#: src/Object/Post.php:479 #, php-format msgid "%s (Received %s)" msgstr "%s (Otrzymano %s)" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Comment this item on your system" msgstr "Skomentuj ten element w swoim systemie" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Remote comment" msgstr "Zdalny komentarz" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via ..." msgstr "Udostępnij poprzez..." -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via external services" msgstr "Udostępnij za pośrednictwem usług zewnętrznych" -#: src/Object/Post.php:513 +#: src/Object/Post.php:514 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:517 +#: src/Object/Post.php:518 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:519 +#: src/Object/Post.php:520 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:543 +#: src/Object/Post.php:544 msgid "to" msgstr "do" -#: src/Object/Post.php:544 +#: src/Object/Post.php:545 msgid "via" msgstr "przez" -#: src/Object/Post.php:545 +#: src/Object/Post.php:546 msgid "Wall-to-Wall" msgstr "Tablica-w-Tablicę" -#: src/Object/Post.php:546 +#: src/Object/Post.php:547 msgid "via Wall-To-Wall:" msgstr "przez Tablica-w-Tablicę:" -#: src/Object/Post.php:599 +#: src/Object/Post.php:600 #, php-format msgid "Reply to %s" msgstr "Odpowiedź %s" -#: src/Object/Post.php:602 +#: src/Object/Post.php:603 msgid "More" msgstr "Więcej" -#: src/Object/Post.php:621 +#: src/Object/Post.php:622 msgid "Notifier task is pending" msgstr "Zadanie Notifier jest w toku" -#: src/Object/Post.php:622 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is pending" msgstr "Trwa przesyłanie do serwerów zdalnych" -#: src/Object/Post.php:623 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is underway" msgstr "Trwa dostawa do serwerów zdalnych" -#: src/Object/Post.php:624 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is mostly done" msgstr "Dostawa do zdalnych serwerów jest w większości wykonywana" -#: src/Object/Post.php:625 +#: src/Object/Post.php:626 msgid "Delivery to remote servers is done" msgstr "Trwa dostarczanie do zdalnych serwerów" -#: src/Object/Post.php:647 +#: src/Object/Post.php:648 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -12696,74 +12702,74 @@ msgstr[1] "%d komentarze" msgstr[2] "%d komentarzy" msgstr[3] "%d komentarzy" -#: src/Object/Post.php:648 +#: src/Object/Post.php:649 msgid "Show more" msgstr "Pokaż więcej" -#: src/Object/Post.php:649 +#: src/Object/Post.php:650 msgid "Show fewer" msgstr "Pokaż mniej" -#: src/Object/Post.php:686 +#: src/Object/Post.php:687 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:691 +#: src/Object/Post.php:692 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:696 +#: src/Object/Post.php:697 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:701 +#: src/Object/Post.php:702 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:706 +#: src/Object/Post.php:707 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:711 +#: src/Object/Post.php:712 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:716 +#: src/Object/Post.php:717 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:721 +#: src/Object/Post.php:722 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:726 +#: src/Object/Post.php:727 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:731 +#: src/Object/Post.php:732 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:754 +#: src/Object/Post.php:755 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:557 +#: src/Protocol/ActivityPub/Receiver.php:558 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:530 +#: src/Protocol/Delivery.php:531 msgid "(no subject)" msgstr "(bez tematu)" @@ -12776,20 +12782,20 @@ msgstr "" msgid "Login failed." msgstr "Logowanie nieudane." -#: src/Security/Authentication.php:260 +#: src/Security/Authentication.php:261 msgid "Login failed. Please check your credentials." msgstr "Logowanie nie powiodło się. Sprawdź swoje dane uwierzytelniające." -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:374 #, php-format msgid "Welcome %s" msgstr "Witaj %s" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:375 msgid "Please upload a profile photo." msgstr "Proszę dodać zdjęcie profilowe." -#: src/Security/OpenWebAuth.php:149 +#: src/Security/OpenWebAuth.php:150 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s wita %2$s" diff --git a/view/lang/pl/strings.php b/view/lang/pl/strings.php index 92f800c8be..c9b5193e6e 100644 --- a/view/lang/pl/strings.php +++ b/view/lang/pl/strings.php @@ -1209,6 +1209,7 @@ $a->strings['Display'] = 'Wygląd'; $a->strings['Social Networks'] = 'Portale społecznościowe'; $a->strings['Manage Accounts'] = 'Zarządzanie kontami'; $a->strings['Connected apps'] = 'Powiązane aplikacje'; +$a->strings['Import Contacts'] = 'Import kontaktów'; $a->strings['Export personal data'] = 'Eksportuj dane osobiste'; $a->strings['Remove account'] = 'Usuń konto'; $a->strings['This page is missing a url parameter.'] = 'Na tej stronie brakuje parametru url.'; @@ -1917,8 +1918,6 @@ $a->strings['Wrong Password.'] = 'Nieprawidłowe hasło.'; $a->strings['Invalid email.'] = 'Niepoprawny e-mail.'; $a->strings['Cannot change to that email.'] = 'Nie można zmienić tego e-maila.'; $a->strings['Settings were not updated.'] = 'Ustawienia nie zostały zaktualizowane.'; -$a->strings['Contact CSV file upload error'] = 'Kontakt z plikiem CSV błąd przekazywania plików'; -$a->strings['Importing Contacts done'] = 'Importowanie kontaktów zakończone'; $a->strings['Relocate message has been send to your contacts'] = 'Przeniesienie wiadomości zostało wysłane do Twoich kontaktów'; $a->strings['Unable to find your profile. Please contact your admin.'] = 'Nie można znaleźć Twojego profilu. Skontaktuj się z administratorem.'; $a->strings['Personal Page Subtypes'] = 'Podtypy osobistych stron'; @@ -2006,9 +2005,6 @@ $a->strings['Show notifications of ignored contacts'] = 'Pokaż powiadomienia o $a->strings['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.'] = 'Nie widzisz wpisów od ignorowanych kontaktów. Ale nadal widzisz ich komentarze. To ustawienie określa, czy chcesz nadal otrzymywać regularne powiadomienia, które są powodowane przez ignorowane kontakty, czy nie.'; $a->strings['Advanced Account/Page Type Settings'] = 'Zaawansowane ustawienia konta/rodzaju strony'; $a->strings['Change the behaviour of this account for special situations'] = 'Zmień zachowanie tego konta w sytuacjach specjalnych'; -$a->strings['Import Contacts'] = 'Import kontaktów'; -$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Prześlij plik CSV zawierający obsługę obserwowanych kont w pierwszej kolumnie wyeksportowanej ze starego konta.'; -$a->strings['Upload File'] = 'Prześlij plik'; $a->strings['Relocate'] = 'Przeniesienie'; $a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'Jeśli ten profil został przeniesiony z innego serwera, a niektóre z Twoich kontaktów nie otrzymają aktualizacji, spróbuj nacisnąć ten przycisk.'; $a->strings['Resend relocate message to contacts'] = 'Wyślij ponownie przenieść wiadomości do kontaktów'; @@ -2032,8 +2028,6 @@ $a->strings['Enable simple text shortening'] = 'Włącz proste skracanie tekstu' $a->strings['Normally the system shortens posts at the next line feed. If this option is enabled then the system will shorten the text at the maximum character limit.'] = 'Zwykle system skraca wpisy przy następnym wysunięciu wiersza. Jeśli ta opcja jest włączona, system skróci tekst do maksymalnego limitu znaków.'; $a->strings['Attach the link title'] = 'Dołącz tytuł linku'; $a->strings['When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with "remote-self" contacts that share feed content.'] = 'Po aktywacji tytuł dołączonego linku zostanie dodany jako tytuł postów do Diaspory. Jest to szczególnie pomocne w przypadku kontaktów „zdalnych”, które udostępniają treść kanału.'; -$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Twoje stare konto ActivityPub/GNU Social'; -$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Jeśli wprowadzisz tutaj swoją starą nazwę konta z systemu opartego na ActivityPub lub nazwę konta GNU Social/Statusnet (w formacie użytkownik@domena.tld), Twoje kontakty zostaną dodane automatycznie. Po zakończeniu pole zostanie opróżnione.'; $a->strings['Email/Mailbox Setup'] = 'Ustawienia emaila/skrzynki mailowej'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Jeśli chcesz komunikować się z kontaktami e-mail za pomocą tej usługi (opcjonalnie), określ sposób łączenia się ze skrzynką pocztową.'; $a->strings['Last successful email check:'] = 'Ostatni sprawdzony e-mail:'; @@ -2047,6 +2041,12 @@ $a->strings['Send public posts to all email contacts:'] = 'Wyślij publiczny wpi $a->strings['Action after import:'] = 'Akcja po zaimportowaniu:'; $a->strings['Move to folder'] = 'Przenieś do katalogu'; $a->strings['Move to folder:'] = 'Przenieś do katalogu:'; +$a->strings['Contact CSV file upload error'] = 'Kontakt z plikiem CSV błąd przekazywania plików'; +$a->strings['Importing Contacts done'] = 'Importowanie kontaktów zakończone'; +$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Prześlij plik CSV zawierający obsługę obserwowanych kont w pierwszej kolumnie wyeksportowanej ze starego konta.'; +$a->strings['Upload File'] = 'Prześlij plik'; +$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Twoje stare konto ActivityPub/GNU Social'; +$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Jeśli wprowadzisz tutaj swoją starą nazwę konta z systemu opartego na ActivityPub lub nazwę konta GNU Social/Statusnet (w formacie użytkownik@domena.tld), Twoje kontakty zostaną dodane automatycznie. Po zakończeniu pole zostanie opróżnione.'; $a->strings['Delegation successfully granted.'] = 'Delegacja została pomyślnie przyznana.'; $a->strings['Parent user not found, unavailable or password doesn\'t match.'] = 'Nie znaleziono użytkownika nadrzędnego, jest on niedostępny lub hasło nie pasuje.'; $a->strings['Delegation successfully revoked.'] = 'Delegacja została pomyślnie odwołana.'; diff --git a/view/lang/ru/messages.po b/view/lang/ru/messages.po index 39e69b6f89..5660bcb61e 100644 --- a/view/lang/ru/messages.po +++ b/view/lang/ru/messages.po @@ -25,7 +25,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: Alexander An , 2020-2024\n" "Language-Team: Russian (http://app.transifex.com/Friendica/friendica/language/ru/)\n" @@ -35,34 +35,34 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\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 @@ -73,7 +73,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 @@ -82,13 +82,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 @@ -97,15 +99,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" @@ -121,7 +123,7 @@ msgid "" "\t\tissued this request." msgstr "\n\t\tПривет, %1$s,\n\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" @@ -138,70 +140,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\n\t\tПерейдите по этой ссылке для подтверждения вашей личности:\n\n\t\t%1$s\n\n\t\tЗатем вы получите ещё одно письмо, содержащее ваш пароль.\n\t\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 "Ник или E-mail: " -#: 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 Settings page after " "successful login." msgstr "Ваш пароль может быть изменен на странице Настройки после успешного входа." -#: 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" @@ -212,7 +214,7 @@ msgid "" "\t\t" msgstr "\n\t\t\tПривет, %1$s!\n\t\t\t\tВаш пароль был сменён по вашему запросу. Пожалуйста, сохраните эту информацию в надёжном месте (или сразу смените пароль на тот, который вы сможете запомнить).\n\t\t" -#: mod/lostpass.php:152 +#: mod/lostpass.php:151 #, php-format msgid "" "\n" @@ -226,7 +228,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" -#: mod/lostpass.php:164 +#: mod/lostpass.php:163 #, php-format msgid "Your password has been changed at %s" msgstr "Ваш пароль был изменен %s" @@ -290,11 +292,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 "Загрузить фото" @@ -303,16 +305,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 @@ -320,7 +322,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 @@ -329,7 +331,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" @@ -389,396 +391,396 @@ msgstr[1] "%d сообщений" msgstr[2] "%d сообщений" msgstr[3] "%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 "%1$s отмечен/а/ в %2$s by %3$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 "Удалить фото" -#: mod/photos.php:958 +#: mod/photos.php:956 msgid "Use as profile photo" msgstr "Использовать как фото профиля" -#: mod/photos.php:965 +#: mod/photos.php:963 msgid "Private Photo" msgstr "Закрытое фото" -#: mod/photos.php:971 +#: mod/photos.php:969 msgid "View Full Size" msgstr "Просмотреть полный размер" -#: mod/photos.php:1024 +#: mod/photos.php:1022 msgid "Tags: " msgstr "Ключевые слова: " -#: mod/photos.php:1027 +#: mod/photos.php:1025 msgid "[Select tags to remove]" msgstr "[выберите тэги для удаления]" -#: mod/photos.php:1042 +#: mod/photos.php:1040 msgid "New album name" msgstr "Название нового альбома" -#: mod/photos.php:1043 +#: mod/photos.php:1041 msgid "Caption" msgstr "Подпись" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "Add a Tag" msgstr "Добавить тег" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Пример: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" -#: mod/photos.php:1045 +#: mod/photos.php:1043 msgid "Do not rotate" msgstr "Не поворачивать" -#: mod/photos.php:1046 +#: mod/photos.php:1044 msgid "Rotate CW (right)" msgstr "Поворот по часовой стрелке (направо)" -#: mod/photos.php:1047 +#: mod/photos.php:1045 msgid "Rotate CCW (left)" msgstr "Поворот против часовой стрелки (налево)" -#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: mod/photos.php:1091 mod/photos.php:1147 mod/photos.php:1227 #: src/Module/Contact.php:600 src/Module/Item/Compose.php:184 -#: src/Object/Post.php:1142 +#: src/Object/Post.php:1143 msgid "This is you" msgstr "Это вы" -#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 -#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:598 -#: src/Object/Post.php:1144 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:599 +#: src/Object/Post.php:1145 msgid "Comment" msgstr "Комментировать" -#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 -#: src/Content/Conversation.php:401 src/Module/Calendar/Event/Form.php:234 +#: 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 -#: src/Object/Post.php:1158 +#: src/Object/Post.php:1159 msgid "Preview" msgstr "Просмотр" -#: mod/photos.php:1098 src/Content/Conversation.php:355 -#: src/Module/Post/Edit.php:121 src/Object/Post.php:1146 +#: mod/photos.php:1096 src/Content/Conversation.php:357 +#: src/Module/Post/Edit.php:121 src/Object/Post.php:1147 msgid "Loading..." msgstr "Загрузка..." -#: mod/photos.php:1190 src/Content/Conversation.php:1485 -#: src/Object/Post.php:260 +#: mod/photos.php:1188 src/Content/Conversation.php:1487 +#: src/Object/Post.php:261 msgid "Select" msgstr "Выберите" -#: mod/photos.php:1191 src/Content/Conversation.php:1486 -#: 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:233 +#: 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 +#: src/Module/Settings/Connectors.php:226 #: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Удалить" -#: mod/photos.php:1252 src/Object/Post.php:426 +#: mod/photos.php:1250 src/Object/Post.php:427 msgid "Like" msgstr "Нравится" -#: mod/photos.php:1253 src/Object/Post.php:426 +#: mod/photos.php:1251 src/Object/Post.php:427 msgid "I like this (toggle)" msgstr "Нравится" -#: mod/photos.php:1254 src/Object/Post.php:427 +#: mod/photos.php:1252 src/Object/Post.php:428 msgid "Dislike" msgstr "Не нравится" -#: mod/photos.php:1256 src/Object/Post.php:427 +#: mod/photos.php:1254 src/Object/Post.php:428 msgid "I don't like this (toggle)" msgstr "Не нравится" -#: mod/photos.php:1278 +#: mod/photos.php:1276 msgid "Map" msgstr "Карта" -#: src/App.php:467 +#: src/App.php:255 msgid "Apologies but the website is unavailable at the moment." msgstr "Приносим извинения, но этот сервис сейчас недоступен." -#: src/App/Page.php:237 +#: src/App/Page.php:241 msgid "Delete this item?" msgstr "Удалить этот элемент?" -#: src/App/Page.php:238 +#: src/App/Page.php:242 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:239 +#: src/App/Page.php:243 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "Игнорировать этого автора? Вы не увидите их записи и уведомления." -#: src/App/Page.php:240 +#: src/App/Page.php:244 msgid "Collapse this author's posts?" msgstr "Сворачивать записи этого автора?" -#: src/App/Page.php:241 +#: src/App/Page.php:245 msgid "Ignore this author's server?" msgstr "Игнорировать сервер этого автора?" -#: src/App/Page.php:242 src/Module/Settings/Server/Action.php:47 +#: src/App/Page.php:246 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:244 +#: src/App/Page.php:248 msgid "Like not successful" msgstr "Ошибка отправки \"мне нравится\"" -#: src/App/Page.php:245 +#: src/App/Page.php:249 msgid "Dislike not successful" msgstr "Ошибка оправки \"мне не нравится\"" -#: src/App/Page.php:246 +#: src/App/Page.php:250 msgid "Sharing not successful" msgstr "Ошибка при попытке поделиться" -#: src/App/Page.php:247 +#: src/App/Page.php:251 msgid "Attendance unsuccessful" msgstr "Ошибка обновления календаря" -#: src/App/Page.php:248 +#: src/App/Page.php:252 msgid "Backend error" msgstr "Ошибка бэкенда" -#: src/App/Page.php:249 +#: src/App/Page.php:253 msgid "Network error" msgstr "Ошибка сети" -#: src/App/Page.php:252 +#: src/App/Page.php:256 msgid "Drop files here to upload" msgstr "Перетащите сюда файлы для загрузки" -#: src/App/Page.php:253 +#: src/App/Page.php:257 msgid "Your browser does not support drag and drop file uploads." msgstr "Ваш браузер не поддерживает перетаскивание файлов для загрузки" -#: src/App/Page.php:254 +#: src/App/Page.php:258 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "Пожалуйста, используйте форму ниже для загрузки файлов" -#: src/App/Page.php:255 +#: src/App/Page.php:259 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "Файл слишком большой ({{filesize}}MiB). Ограничение: {{maxFilesize}}MiB." -#: src/App/Page.php:256 +#: src/App/Page.php:260 msgid "You can't upload files of this type." msgstr "Нельзя загрузить этот тип файла." -#: src/App/Page.php:257 +#: src/App/Page.php:261 msgid "Server responded with {{statusCode}} code." msgstr "Сервер ответил с кодом {{statusCode}}." -#: src/App/Page.php:258 +#: src/App/Page.php:262 msgid "Cancel upload" msgstr "Отменить загрузку" -#: src/App/Page.php:259 +#: src/App/Page.php:263 msgid "Upload canceled." msgstr "Загрузка отменена" -#: src/App/Page.php:260 +#: src/App/Page.php:264 msgid "Are you sure you want to cancel this upload?" msgstr "Вы уверены, что хотите отменить загрузку?" -#: src/App/Page.php:261 +#: src/App/Page.php:265 msgid "Remove file" msgstr "Убрать файл" -#: src/App/Page.php:262 +#: src/App/Page.php:266 msgid "You can't upload any more files." msgstr "Вы не можете загрузить больше файлов." -#: src/App/Page.php:346 +#: src/App/Page.php:350 msgid "toggle mobile" msgstr "мобильная версия" @@ -811,7 +813,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:181 src/Module/Contact.php:395 +#: src/Content/Widget.php:254 src/Core/ACL.php:182 src/Module/Contact.php:395 #: src/Module/Privacy/PermissionTooltip.php:150 #: src/Module/Privacy/PermissionTooltip.php:172 #: src/Module/Settings/Channels.php:146 @@ -853,7 +855,7 @@ msgstr "Не удалось найти не архивированных кон msgid "The contact entries have been archived" msgstr "Записи этого контакта были архивированы." -#: src/Console/ClearAvatarCache.php:73 +#: src/Console/ClearAvatarCache.php:74 msgid "" "The avatar cache needs to be disabled in local.config.php to use this " "command." @@ -939,22 +941,22 @@ msgstr "Кэширование аватаров должно быть включ msgid "no resource in photo %s" msgstr "нет ресурса для фото %s" -#: src/Console/MoveToAvatarCache.php:123 +#: src/Console/MoveToAvatarCache.php:127 #, php-format msgid "no photo with id %s" msgstr "нет фото с id %s" -#: src/Console/MoveToAvatarCache.php:132 +#: src/Console/MoveToAvatarCache.php:136 #, php-format msgid "no image data for photo with id %s" msgstr "нет данных изображения для фото с id %s" -#: src/Console/MoveToAvatarCache.php:141 +#: src/Console/MoveToAvatarCache.php:145 #, php-format msgid "invalid image for id %s" msgstr "неправильное изображение с id %s" -#: src/Console/MoveToAvatarCache.php:154 +#: src/Console/MoveToAvatarCache.php:158 #, php-format msgid "Quit on invalid photo %s" msgstr "Выход на неправильном фото %s" @@ -984,11 +986,14 @@ msgstr "Все операции по обновлению записей вып msgid "Enter user nickname: " msgstr "Введите ник пользователя:" -#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Console/User.php:168 src/Model/User.php:830 #: src/Module/Api/Twitter/ContactEndpoint.php:62 -#: 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/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/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "Пользователь не найден" @@ -998,12 +1003,12 @@ msgid "Enter new password: " msgstr "Введите новый пароль:" #: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 -#: src/Module/Settings/Account.php:59 +#: src/Module/Settings/Account.php:57 msgid "Password update failed. Please try again." msgstr "Обновление пароля не удалось. Пожалуйста, попробуйте еще раз." #: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 -#: src/Module/Settings/Account.php:62 +#: src/Module/Settings/Account.php:60 msgid "Password changed." msgstr "Пароль изменен." @@ -1084,86 +1089,86 @@ msgstr "Раз в неделю" msgid "Monthly" msgstr "Раз в месяц" -#: src/Content/ContactSelector.php:118 +#: src/Content/ContactSelector.php:117 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:119 +#: src/Content/ContactSelector.php:118 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:120 +#: src/Content/ContactSelector.php:119 msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:121 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Content/ContactSelector.php:120 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:58 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "Эл. почта" -#: src/Content/ContactSelector.php:122 src/Module/Debug/Babel.php:273 +#: src/Content/ContactSelector.php:121 src/Module/Debug/Babel.php:273 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:123 +#: src/Content/ContactSelector.php:122 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:124 +#: src/Content/ContactSelector.php:123 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:125 +#: src/Content/ContactSelector.php:124 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:125 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:126 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:127 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:129 +#: src/Content/ContactSelector.php:128 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:130 +#: src/Content/ContactSelector.php:129 msgid "Discourse" msgstr "Discourse" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:130 msgid "Diaspora Connector" msgstr "Diaspora Connector" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:131 msgid "GNU Social Connector" msgstr "GNU Social Connector" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:132 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:133 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:134 msgid "Tumblr" msgstr "Tumblr" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:135 msgid "Bluesky" msgstr "Bluesky" @@ -1172,16 +1177,16 @@ msgstr "Bluesky" msgid "%s (via %s)" msgstr "%s (через %s)" -#: src/Content/Conversation.php:213 +#: src/Content/Conversation.php:215 msgid "and" msgstr "и" -#: src/Content/Conversation.php:216 +#: src/Content/Conversation.php:218 #, php-format msgid "and %d other people" msgstr "и еще %d человек" -#: src/Content/Conversation.php:222 +#: src/Content/Conversation.php:224 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." @@ -1190,7 +1195,7 @@ msgstr[1] "%2$s нравится это." msgstr[2] "%2$s нравится это." msgstr[3] "%2$s нравится это." -#: src/Content/Conversation.php:224 +#: src/Content/Conversation.php:226 #, php-format msgid "%2$s doesn't like this." msgid_plural "%2$s don't like this." @@ -1199,7 +1204,7 @@ msgstr[1] "%2$s не нравится это." msgstr[2] "%2$s не нравится это." msgstr[3] "%2$s не нравится это." -#: src/Content/Conversation.php:226 +#: src/Content/Conversation.php:228 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." @@ -1208,7 +1213,7 @@ msgstr[1] "%2$s посетят." msgstr[2] "%2$s посетят." msgstr[3] "%2$s посетят." -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:230 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." @@ -1217,7 +1222,7 @@ msgstr[1] "%2$s не посетят." msgstr[2] "%2$s не посетят." msgstr[3] "%2$s не посетят." -#: src/Content/Conversation.php:230 +#: src/Content/Conversation.php:232 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." @@ -1226,7 +1231,7 @@ msgstr[1] "%2$s могут посетить." msgstr[2] "%2$s могут посетить." msgstr[3] "%2$s могут посетить." -#: src/Content/Conversation.php:232 +#: src/Content/Conversation.php:234 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." @@ -1235,7 +1240,7 @@ msgstr[1] "%2$s поделились этим." msgstr[2] "%2$s поделились этим." msgstr[3] "%2$s поделились этим." -#: src/Content/Conversation.php:263 +#: src/Content/Conversation.php:265 #, php-format msgid " likes this" msgid_plural " like this" @@ -1244,7 +1249,7 @@ msgstr[1] " нравитс msgstr[2] " нравится это" msgstr[3] " нравится это" -#: src/Content/Conversation.php:266 +#: src/Content/Conversation.php:268 #, php-format msgid " doesn't like this" msgid_plural " don't like this" @@ -1253,7 +1258,7 @@ msgstr[1] " не нрави msgstr[2] " не нравится это" msgstr[3] " не нравится это" -#: src/Content/Conversation.php:269 +#: src/Content/Conversation.php:271 #, php-format msgid " attends" msgid_plural " attend" @@ -1262,7 +1267,7 @@ msgstr[1] " посетят" msgstr[2] " посетят" msgstr[3] " посетят" -#: src/Content/Conversation.php:272 +#: src/Content/Conversation.php:274 #, php-format msgid " doesn't attend" msgid_plural " don't attend" @@ -1271,7 +1276,7 @@ msgstr[1] " не посет msgstr[2] " не посетят" msgstr[3] " не посетят" -#: src/Content/Conversation.php:275 +#: src/Content/Conversation.php:277 #, php-format msgid " attends maybe" msgid_plural " attend maybe" @@ -1280,7 +1285,7 @@ msgstr[1] " возможн msgstr[2] " возможно посетят" msgstr[3] " возможно посетят" -#: src/Content/Conversation.php:278 +#: src/Content/Conversation.php:280 #, php-format msgid " reshared this" msgid_plural " reshared this" @@ -1289,281 +1294,281 @@ msgstr[1] " поделил msgstr[2] " поделились этим" msgstr[3] " поделились этим" -#: src/Content/Conversation.php:324 +#: src/Content/Conversation.php:326 msgid "Visible to everybody" msgstr "Видимое всем" -#: src/Content/Conversation.php:325 src/Module/Item/Compose.php:196 -#: src/Object/Post.php:1157 +#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196 +#: src/Object/Post.php:1158 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Пожалуйста, введите адрес картинки/видео/аудио/странички:" -#: src/Content/Conversation.php:326 +#: src/Content/Conversation.php:328 msgid "Tag term:" msgstr "Тег:" -#: src/Content/Conversation.php:327 src/Module/Filer/SaveTag.php:59 +#: src/Content/Conversation.php:329 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Сохранить в папку:" -#: src/Content/Conversation.php:328 +#: src/Content/Conversation.php:330 msgid "Where are you right now?" msgstr "И где вы сейчас?" -#: src/Content/Conversation.php:329 +#: src/Content/Conversation.php:331 msgid "Delete item(s)?" msgstr "Удалить елемент(ты)?" -#: src/Content/Conversation.php:341 src/Module/Item/Compose.php:171 +#: src/Content/Conversation.php:343 src/Module/Item/Compose.php:171 msgid "Created at" msgstr "Создано" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:353 msgid "New Post" msgstr "Новая запись" -#: src/Content/Conversation.php:354 +#: src/Content/Conversation.php:356 msgid "Share" msgstr "Поделиться" -#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:123 +#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:123 msgid "upload photo" msgstr "загрузить фото" -#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:124 +#: src/Content/Conversation.php:360 src/Module/Post/Edit.php:124 msgid "Attach file" msgstr "Прикрепить файл" -#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:125 +#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:125 msgid "attach file" msgstr "приложить файл" -#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:186 -#: src/Module/Post/Edit.php:162 src/Object/Post.php:1147 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1148 msgid "Bold" msgstr "Жирный" -#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:187 -#: src/Module/Post/Edit.php:163 src/Object/Post.php:1148 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1149 msgid "Italic" msgstr "Kурсивный" -#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:188 -#: src/Module/Post/Edit.php:164 src/Object/Post.php:1149 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1150 msgid "Underline" msgstr "Подчеркнутый" -#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:189 -#: src/Module/Post/Edit.php:165 src/Object/Post.php:1151 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:165 src/Object/Post.php:1152 msgid "Quote" msgstr "Цитата" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:166 src/Object/Post.php:1152 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:166 src/Object/Post.php:1153 msgid "Add emojis" msgstr "Добавить эмодзи" -#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:191 -#: src/Object/Post.php:1150 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Object/Post.php:1151 msgid "Content Warning" msgstr "Предупреждение о контенте (CW)" -#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:167 src/Object/Post.php:1153 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:167 src/Object/Post.php:1154 msgid "Code" msgstr "Код" -#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:193 -#: src/Object/Post.php:1154 +#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1155 msgid "Image" msgstr "Изображение / Фото" -#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:168 src/Object/Post.php:1155 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:168 src/Object/Post.php:1156 msgid "Link" msgstr "Ссылка" -#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:195 -#: src/Module/Post/Edit.php:169 src/Object/Post.php:1156 +#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:169 src/Object/Post.php:1157 msgid "Link or Media" msgstr "Ссылка или медиа" -#: src/Content/Conversation.php:370 +#: src/Content/Conversation.php:372 msgid "Video" msgstr "Видео" -#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:198 +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:198 #: src/Module/Post/Edit.php:132 msgid "Set your location" msgstr "Задать ваше местоположение" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:133 msgid "set location" msgstr "установить местонахождение" -#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:134 msgid "Clear browser location" msgstr "Очистить местонахождение браузера" -#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:135 +#: src/Content/Conversation.php:376 src/Module/Post/Edit.php:135 msgid "clear location" msgstr "убрать местонахождение" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:203 +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:203 #: src/Module/Post/Edit.php:148 msgid "Set title" msgstr "Установить заголовок" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:204 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 #: src/Module/Post/Edit.php:150 msgid "Categories (comma-separated list)" msgstr "Категории (список через запятую)" -#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:220 +#: src/Content/Conversation.php:385 src/Module/Item/Compose.php:220 msgid "Scheduled at" msgstr "Запланировано на" -#: src/Content/Conversation.php:388 src/Module/Post/Edit.php:137 +#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:137 msgid "Permission settings" msgstr "Настройки разрешений" -#: src/Content/Conversation.php:397 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:399 src/Module/Post/Edit.php:146 msgid "Public post" msgstr "Публичная запись" -#: src/Content/Conversation.php:411 src/Content/Widget/VCard.php:121 +#: 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 msgid "Message" msgstr "Написать" -#: src/Content/Conversation.php:412 src/Module/Post/Edit.php:173 +#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:173 #: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Браузер" -#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:176 +#: src/Content/Conversation.php:416 src/Module/Post/Edit.php:176 msgid "Open Compose page" msgstr "Развернуть редактор" -#: src/Content/Conversation.php:581 +#: src/Content/Conversation.php:583 msgid "remove" msgstr "удалить" -#: src/Content/Conversation.php:585 +#: src/Content/Conversation.php:587 msgid "Delete Selected Items" msgstr "Удалить выбранные позиции" -#: src/Content/Conversation.php:713 src/Content/Conversation.php:716 -#: src/Content/Conversation.php:719 src/Content/Conversation.php:722 -#: src/Content/Conversation.php:725 +#: 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 #, php-format msgid "You had been addressed (%s)." msgstr "К вам обратились (%s)." -#: src/Content/Conversation.php:728 +#: src/Content/Conversation.php:730 #, php-format msgid "You are following %s." msgstr "Вы подписаны на %s." -#: src/Content/Conversation.php:733 +#: src/Content/Conversation.php:735 #, php-format msgid "You subscribed to %s." msgstr "Вы подписаны на %s." -#: src/Content/Conversation.php:735 +#: src/Content/Conversation.php:737 msgid "You subscribed to one or more tags in this post." msgstr "Вы подписаны на один или несколько тегов в этой записи." -#: src/Content/Conversation.php:755 +#: src/Content/Conversation.php:757 #, php-format msgid "%s reshared this." msgstr "%s поделился этим." -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 msgid "Reshared" msgstr "Репост" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 #, php-format msgid "Reshared by %s <%s>" msgstr "Репост от %s <%s>" -#: src/Content/Conversation.php:760 +#: src/Content/Conversation.php:762 #, php-format msgid "%s is participating in this thread." msgstr "%s участвует в этом обсуждении" -#: src/Content/Conversation.php:763 +#: src/Content/Conversation.php:765 msgid "Stored for general reasons" msgstr "Загружено по необходимости" -#: src/Content/Conversation.php:766 +#: src/Content/Conversation.php:768 msgid "Global post" msgstr "Глобальная запись" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 msgid "Sent via an relay server" msgstr "Прислано через релей" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "Прислано через релей %s <%s>" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 msgid "Fetched" msgstr "Загружено" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 #, php-format msgid "Fetched because of %s <%s>" msgstr "Загружено из-за %s <%s>" -#: src/Content/Conversation.php:775 +#: src/Content/Conversation.php:777 msgid "Stored because of a child post to complete this thread." msgstr "Загружено из-за комментария в этой ветке." -#: src/Content/Conversation.php:778 +#: src/Content/Conversation.php:780 msgid "Local delivery" msgstr "Местная доставка" -#: src/Content/Conversation.php:781 +#: src/Content/Conversation.php:783 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "Загружено из-за ваших действий (лайк, комментарий, ...)" -#: src/Content/Conversation.php:784 +#: src/Content/Conversation.php:786 msgid "Distributed" msgstr "Распространено" -#: src/Content/Conversation.php:787 +#: src/Content/Conversation.php:789 msgid "Pushed to us" msgstr "Прислано нам" -#: src/Content/Conversation.php:1505 src/Object/Post.php:247 +#: src/Content/Conversation.php:1507 src/Object/Post.php:248 msgid "Pinned item" msgstr "Закреплённая запись" -#: src/Content/Conversation.php:1522 src/Object/Post.php:541 -#: src/Object/Post.php:542 +#: src/Content/Conversation.php:1524 src/Object/Post.php:542 +#: src/Object/Post.php:543 #, php-format msgid "View %s's profile @ %s" msgstr "Просмотреть профиль %s [@ %s]" -#: src/Content/Conversation.php:1536 src/Object/Post.php:529 +#: src/Content/Conversation.php:1538 src/Object/Post.php:530 msgid "Categories:" msgstr "Категории:" -#: src/Content/Conversation.php:1537 src/Object/Post.php:530 +#: src/Content/Conversation.php:1539 src/Object/Post.php:531 msgid "Filed under:" msgstr "В рубрике:" -#: src/Content/Conversation.php:1545 src/Object/Post.php:556 +#: src/Content/Conversation.php:1547 src/Object/Post.php:557 #, php-format msgid "%s from %s" msgstr "%s из %s" -#: src/Content/Conversation.php:1561 +#: src/Content/Conversation.php:1563 msgid "View in context" msgstr "Смотреть в контексте" @@ -1696,7 +1701,7 @@ msgstr "Личные" msgid "Posts that mention or involve you" msgstr "Записи, которые упоминают вас или в которых вы участвуете" -#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:398 msgid "Starred" msgstr "Избранное" @@ -1783,7 +1788,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:552 src/Model/User.php:1390 +#: src/Content/Widget.php:555 src/Model/User.php:1390 msgid "Groups" msgstr "Группы" @@ -1791,7 +1796,7 @@ msgstr "Группы" msgid "Display posts that have been distributed by the selected group." msgstr "Показывать записи из выбранных групп." -#: src/Content/Feature.php:117 src/Content/Widget.php:521 +#: src/Content/Feature.php:117 src/Content/Widget.php:524 msgid "Archives" msgstr "Архивы" @@ -1807,8 +1812,8 @@ msgstr "Протоколы" msgid "Display posts with the selected protocols." msgstr "Показывать записи по выбранным протоколам." -#: src/Content/Feature.php:119 src/Content/Widget.php:558 -#: src/Module/Settings/Account.php:429 +#: src/Content/Feature.php:119 src/Content/Widget.php:561 +#: src/Module/Settings/Account.php:391 msgid "Account Types" msgstr "Тип учетной записи" @@ -1816,7 +1821,7 @@ msgstr "Тип учетной записи" msgid "Display posts done by accounts with the selected account type." msgstr "Показывать записи от выбранных типов контактов." -#: src/Content/Feature.php:120 src/Content/Widget.php:607 +#: 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 msgid "Channels" @@ -1842,7 +1847,7 @@ msgstr "Сохранённые папки" msgid "Display a list of folders in which posts are stored." msgstr "Показывать папки, по которым разложены записи." -#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:189 msgid "Own Contacts" msgstr "Свои контакты" @@ -1898,12 +1903,12 @@ msgstr "Разрешает анонимным пользователям про msgid "External link to group" msgstr "Внешняя ссылка на группу" -#: src/Content/GroupManager.php:139 src/Content/Widget.php:527 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:530 msgid "show less" msgstr "показать меньше" #: src/Content/GroupManager.php:140 src/Content/Widget.php:425 -#: src/Content/Widget.php:528 +#: src/Content/Widget.php:531 msgid "show more" msgstr "показать больше" @@ -1911,66 +1916,66 @@ msgstr "показать больше" msgid "Create new group" msgstr "Создать новую группу" -#: src/Content/Item.php:317 src/Model/Item.php:3273 +#: src/Content/Item.php:322 src/Model/Item.php:3281 msgid "event" msgstr "мероприятие" -#: src/Content/Item.php:320 src/Content/Item.php:330 +#: src/Content/Item.php:325 src/Content/Item.php:335 msgid "status" msgstr "статус" -#: src/Content/Item.php:326 src/Model/Item.php:3275 +#: src/Content/Item.php:331 src/Model/Item.php:3283 #: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "фото" -#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 +#: src/Content/Item.php:345 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s tagged %2$s's %3$s в %4$s" -#: src/Content/Item.php:414 view/theme/frio/theme.php:253 +#: src/Content/Item.php:419 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Подписаться на обсуждение" -#: src/Content/Item.php:415 src/Model/Contact.php:1244 +#: src/Content/Item.php:420 src/Model/Contact.php:1245 msgid "View Status" msgstr "Просмотреть статус" -#: 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/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 msgid "View Profile" msgstr "Просмотреть профиль" -#: src/Content/Item.php:417 src/Model/Contact.php:1246 +#: src/Content/Item.php:422 src/Model/Contact.php:1247 msgid "View Photos" msgstr "Просмотреть фото" -#: src/Content/Item.php:418 src/Model/Contact.php:1213 +#: src/Content/Item.php:423 src/Model/Contact.php:1214 #: src/Model/Profile.php:446 msgid "Network Posts" msgstr "Записи сети" -#: src/Content/Item.php:419 src/Model/Contact.php:1237 -#: src/Model/Contact.php:1248 +#: src/Content/Item.php:424 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1249 msgid "View Contact" msgstr "Просмотреть контакт" -#: src/Content/Item.php:420 src/Model/Contact.php:1249 +#: src/Content/Item.php:425 src/Model/Contact.php:1250 msgid "Send PM" msgstr "Отправить ЛС" -#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Content/Item.php:426 src/Module/Contact.php:449 #: src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:104 -#: src/Module/Moderation/Users/Active.php:123 -#: src/Module/Moderation/Users/Index.php:138 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Index.php:141 msgid "Block" msgstr "Заблокировать" -#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Content/Item.php:427 src/Module/Contact.php:450 #: src/Module/Contact/Profile.php:532 #: src/Module/Notifications/Introductions.php:126 #: src/Module/Notifications/Introductions.php:199 @@ -1978,27 +1983,27 @@ msgstr "Заблокировать" msgid "Ignore" msgstr "Игнорировать" -#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Content/Item.php:428 src/Module/Contact.php:451 #: src/Module/Contact/Profile.php:540 msgid "Collapse" msgstr "Сворачивать" -#: src/Content/Item.php:424 src/Object/Post.php:288 +#: src/Content/Item.php:429 src/Object/Post.php:289 #, php-format msgid "Ignore %s server" msgstr "Игнорировать сервер %s " -#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 -#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 +#: src/Content/Item.php:433 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:503 msgid "Languages" msgstr "Языки" -#: src/Content/Item.php:431 src/Object/Post.php:582 +#: src/Content/Item.php:436 src/Object/Post.php:583 msgid "Search Text" msgstr "Текст поиска" -#: src/Content/Item.php:436 src/Content/Widget.php:66 -#: src/Model/Contact.php:1238 src/Model/Contact.php:1250 +#: src/Content/Item.php:441 src/Content/Widget.php:66 +#: src/Model/Contact.php:1239 src/Model/Contact.php:1251 #: src/Module/Contact/Follow.php:152 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Подключиться/Подписаться" @@ -2011,7 +2016,7 @@ msgstr "Ошибка получения информации пользоват msgid "Nothing new here" msgstr "Ничего нового здесь" -#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:64 msgid "Go back" msgstr "Назад" @@ -2225,7 +2230,7 @@ msgstr "Уведомления" msgid "See all notifications" msgstr "Посмотреть все уведомления" -#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:226 msgid "Mark as seen" msgstr "Отметить, как прочитанное" @@ -2253,8 +2258,8 @@ msgstr "Учётные записи" msgid "Manage other pages" msgstr "Управление другими страницами" -#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 -#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:170 +#: 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/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Настройки" @@ -2282,10 +2287,10 @@ msgstr "Конфигурация сайта" #: src/Module/Moderation/Blocklist/Server/Index.php:84 #: 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:119 -#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 #: src/Module/Moderation/Users/Deleted.php:66 -#: src/Module/Moderation/Users/Index.php:133 +#: src/Module/Moderation/Users/Index.php:136 msgid "Moderation" msgstr "Модерация" @@ -2317,33 +2322,33 @@ msgstr "след." msgid "last" msgstr "последний" -#: src/Content/Text/BBCode.php:908 +#: src/Content/Text/BBCode.php:903 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:931 src/Model/Item.php:4069 -#: src/Model/Item.php:4075 src/Model/Item.php:4076 +#: src/Content/Text/BBCode.php:926 src/Model/Item.php:4080 +#: src/Model/Item.php:4086 src/Model/Item.php:4087 msgid "Link to source" msgstr "Ссылка на источник" -#: src/Content/Text/BBCode.php:1745 src/Content/Text/HTML.php:892 +#: src/Content/Text/BBCode.php:1740 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Нажмите, чтобы открыть / закрыть" -#: src/Content/Text/BBCode.php:1800 +#: src/Content/Text/BBCode.php:1795 msgid "$1 wrote:" msgstr "$1 написал:" -#: src/Content/Text/BBCode.php:1874 src/Content/Text/BBCode.php:1875 +#: src/Content/Text/BBCode.php:1869 src/Content/Text/BBCode.php:1870 msgid "Encrypted content" msgstr "Зашифрованный контент" -#: src/Content/Text/BBCode.php:2208 +#: src/Content/Text/BBCode.php:2203 msgid "Invalid source protocol" msgstr "Неправильный протокол источника" -#: src/Content/Text/BBCode.php:2227 +#: src/Content/Text/BBCode.php:2222 msgid "Invalid link protocol" msgstr "Неправильная протокольная ссылка" @@ -2398,7 +2403,7 @@ msgid "Examples: Robert Morgenstein, Fishing" msgstr "Примеры: Роберт Morgenstein, Рыбалка" #: src/Content/Widget.php:68 src/Module/Contact.php:441 -#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 +#: src/Module/Directory.php:82 view/theme/vier/theme.php:185 msgid "Find" msgstr "Найти" @@ -2419,7 +2424,7 @@ msgstr "Случайный профиль" msgid "Invite Friends" msgstr "Пригласить друзей" -#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: src/Content/Widget.php:73 src/Module/Directory.php:74 #: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Глобальный каталог" @@ -2440,7 +2445,7 @@ msgstr "Нет связи" msgid "Relationships" msgstr "Отношения" -#: src/Content/Widget.php:264 src/Module/Circle.php:280 +#: src/Content/Widget.php:264 src/Module/Circle.php:281 #: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Все контакты" @@ -2466,27 +2471,27 @@ msgstr[1] "%d Контактов" msgstr[2] "%d Контактов" msgstr[3] "%d Контактов" -#: src/Content/Widget.php:529 +#: src/Content/Widget.php:532 msgid "On this date" msgstr "В этот день" -#: src/Content/Widget.php:549 +#: src/Content/Widget.php:552 msgid "Persons" msgstr "Люди" -#: src/Content/Widget.php:550 +#: src/Content/Widget.php:553 msgid "Organisations" msgstr "Организации" -#: src/Content/Widget.php:551 src/Model/Contact.php:1750 +#: src/Content/Widget.php:554 src/Model/Contact.php:1751 msgid "News" msgstr "Новости" -#: src/Content/Widget.php:553 +#: src/Content/Widget.php:556 msgid "Relays" msgstr "Ретрансляторы" -#: src/Content/Widget.php:560 src/Module/Moderation/BaseUsers.php:58 +#: src/Content/Widget.php:563 src/Module/Moderation/BaseUsers.php:58 msgid "All" msgstr "Все" @@ -2536,12 +2541,12 @@ msgstr[3] "Популярные тэги (за %d часов)" msgid "More Trending Tags" msgstr "Больше популярных тэгов" -#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1207 +#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1208 #: src/Model/Profile.php:440 msgid "Post to group" msgstr "Запись для группы" -#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1211 +#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1212 #: src/Model/Profile.php:444 src/Module/Moderation/Item/Source.php:80 msgid "Mention" msgstr "Отметка" @@ -2556,10 +2561,10 @@ msgstr "XMPP:" msgid "Matrix:" msgstr "Matrix:" -#: src/Content/Widget/VCard.php:112 src/Model/Event.php:68 -#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: 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:134 src/Module/Notifications/Introductions.php:180 +#: src/Module/Directory.php:133 src/Module/Notifications/Introductions.php:180 #: src/Module/Profile/Profile.php:212 msgid "Location:" msgstr "Откуда:" @@ -2569,75 +2574,75 @@ msgstr "Откуда:" msgid "Network:" msgstr "Сеть:" -#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1239 -#: src/Model/Contact.php:1251 src/Model/Profile.php:457 +#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1252 src/Model/Profile.php:457 #: src/Module/Contact/Profile.php:476 msgid "Unfollow" msgstr "Отписка" -#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1209 +#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1210 #: src/Model/Profile.php:442 msgid "View group" msgstr "Просмотр группы" -#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:260 +#: src/Core/ACL.php:153 src/Module/Profile/Profile.php:260 msgid "Yourself" msgstr "Вы" -#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Core/ACL.php:189 src/Module/Privacy/PermissionTooltip.php:156 #: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "Взаимные" -#: src/Core/ACL.php:280 +#: src/Core/ACL.php:281 msgid "Post to Email" msgstr "Отправить на Email" -#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Core/ACL.php:308 src/Module/Privacy/PermissionTooltip.php:103 #: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "Публично" -#: src/Core/ACL.php:308 +#: src/Core/ACL.php:309 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:309 src/Module/Privacy/PermissionTooltip.php:105 +#: src/Core/ACL.php:310 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "Ограниченный доступ" -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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:310 +#: src/Core/ACL.php:311 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:311 +#: src/Core/ACL.php:312 msgid "Show to:" msgstr "Доступно:" -#: src/Core/ACL.php:312 +#: src/Core/ACL.php:313 msgid "Except to:" msgstr "За исключением:" -#: src/Core/ACL.php:313 src/Module/Post/Edit.php:145 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:145 msgid "CC: email addresses" msgstr "Копии на email адреса" -#: src/Core/ACL.php:314 src/Module/Post/Edit.php:151 +#: src/Core/ACL.php:315 src/Module/Post/Edit.php:151 msgid "Example: bob@example.com, mary@example.com" msgstr "Пример: bob@example.com, mary@example.com" -#: src/Core/ACL.php:315 +#: src/Core/ACL.php:316 msgid "Connectors" msgstr "Соединители" @@ -2972,176 +2977,176 @@ msgstr "База данных уже используется." msgid "Could not connect to database." msgstr "Не удалось подключиться к базе данных." -#: src/Core/L10n.php:430 src/Model/Item.php:2316 +#: src/Core/L10n.php:426 src/Model/Item.php:2324 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:437 +#: src/Core/L10n.php:433 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Core/L10n.php:481 src/Model/Event.php:418 #: src/Module/Settings/Display.php:292 msgid "Monday" msgstr "Понедельник" -#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Core/L10n.php:481 src/Model/Event.php:419 #: src/Module/Settings/Display.php:293 msgid "Tuesday" msgstr "Вторник" -#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Core/L10n.php:481 src/Model/Event.php:420 #: src/Module/Settings/Display.php:294 msgid "Wednesday" msgstr "Среда" -#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Core/L10n.php:481 src/Model/Event.php:421 #: src/Module/Settings/Display.php:295 msgid "Thursday" msgstr "Четверг" -#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Core/L10n.php:481 src/Model/Event.php:422 #: src/Module/Settings/Display.php:296 msgid "Friday" msgstr "Пятница" -#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Core/L10n.php:481 src/Model/Event.php:423 #: src/Module/Settings/Display.php:297 msgid "Saturday" msgstr "Суббота" -#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Core/L10n.php:481 src/Model/Event.php:417 #: src/Module/Settings/Display.php:291 msgid "Sunday" msgstr "Воскресенье" -#: src/Core/L10n.php:489 src/Model/Event.php:436 +#: src/Core/L10n.php:485 src/Model/Event.php:438 msgid "January" msgstr "Январь" -#: src/Core/L10n.php:489 src/Model/Event.php:437 +#: src/Core/L10n.php:485 src/Model/Event.php:439 msgid "February" msgstr "Февраль" -#: src/Core/L10n.php:489 src/Model/Event.php:438 +#: src/Core/L10n.php:485 src/Model/Event.php:440 msgid "March" msgstr "Март" -#: src/Core/L10n.php:489 src/Model/Event.php:439 +#: src/Core/L10n.php:485 src/Model/Event.php:441 msgid "April" msgstr "Апрель" -#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 +#: src/Core/L10n.php:485 src/Core/L10n.php:504 src/Model/Event.php:429 msgid "May" msgstr "Май" -#: src/Core/L10n.php:489 src/Model/Event.php:440 +#: src/Core/L10n.php:485 src/Model/Event.php:442 msgid "June" msgstr "Июнь" -#: src/Core/L10n.php:489 src/Model/Event.php:441 +#: src/Core/L10n.php:485 src/Model/Event.php:443 msgid "July" msgstr "Июль" -#: src/Core/L10n.php:489 src/Model/Event.php:442 +#: src/Core/L10n.php:485 src/Model/Event.php:444 msgid "August" msgstr "Август" -#: src/Core/L10n.php:489 src/Model/Event.php:443 +#: src/Core/L10n.php:485 src/Model/Event.php:445 msgid "September" msgstr "Сентябрь" -#: src/Core/L10n.php:489 src/Model/Event.php:444 +#: src/Core/L10n.php:485 src/Model/Event.php:446 msgid "October" msgstr "Октябрь" -#: src/Core/L10n.php:489 src/Model/Event.php:445 +#: src/Core/L10n.php:485 src/Model/Event.php:447 msgid "November" msgstr "Ноябрь" -#: src/Core/L10n.php:489 src/Model/Event.php:446 +#: src/Core/L10n.php:485 src/Model/Event.php:448 msgid "December" msgstr "Декабрь" -#: src/Core/L10n.php:504 src/Model/Event.php:408 +#: src/Core/L10n.php:500 src/Model/Event.php:410 msgid "Mon" msgstr "Пн" -#: src/Core/L10n.php:504 src/Model/Event.php:409 +#: src/Core/L10n.php:500 src/Model/Event.php:411 msgid "Tue" msgstr "Вт" -#: src/Core/L10n.php:504 src/Model/Event.php:410 +#: src/Core/L10n.php:500 src/Model/Event.php:412 msgid "Wed" msgstr "Ср" -#: src/Core/L10n.php:504 src/Model/Event.php:411 +#: src/Core/L10n.php:500 src/Model/Event.php:413 msgid "Thu" msgstr "Чт" -#: src/Core/L10n.php:504 src/Model/Event.php:412 +#: src/Core/L10n.php:500 src/Model/Event.php:414 msgid "Fri" msgstr "Пт" -#: src/Core/L10n.php:504 src/Model/Event.php:413 +#: src/Core/L10n.php:500 src/Model/Event.php:415 msgid "Sat" msgstr "Сб" -#: src/Core/L10n.php:504 src/Model/Event.php:407 +#: src/Core/L10n.php:500 src/Model/Event.php:409 msgid "Sun" msgstr "Вс" -#: src/Core/L10n.php:508 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:425 msgid "Jan" msgstr "Янв" -#: src/Core/L10n.php:508 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:426 msgid "Feb" msgstr "Фев" -#: src/Core/L10n.php:508 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:427 msgid "Mar" msgstr "Мрт" -#: src/Core/L10n.php:508 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:428 msgid "Apr" msgstr "Апр" -#: src/Core/L10n.php:508 src/Model/Event.php:428 +#: src/Core/L10n.php:504 src/Model/Event.php:430 msgid "Jun" msgstr "Июн" -#: src/Core/L10n.php:508 src/Model/Event.php:429 +#: src/Core/L10n.php:504 src/Model/Event.php:431 msgid "Jul" msgstr "Июл" -#: src/Core/L10n.php:508 src/Model/Event.php:430 +#: src/Core/L10n.php:504 src/Model/Event.php:432 msgid "Aug" msgstr "Авг" -#: src/Core/L10n.php:508 +#: src/Core/L10n.php:504 msgid "Sep" msgstr "Сен" -#: src/Core/L10n.php:508 src/Model/Event.php:432 +#: src/Core/L10n.php:504 src/Model/Event.php:434 msgid "Oct" msgstr "Окт" -#: src/Core/L10n.php:508 src/Model/Event.php:433 +#: src/Core/L10n.php:504 src/Model/Event.php:435 msgid "Nov" msgstr "Нбр" -#: src/Core/L10n.php:508 src/Model/Event.php:434 +#: src/Core/L10n.php:504 src/Model/Event.php:436 msgid "Dec" msgstr "Дек" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:44 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:67 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" @@ -3333,7 +3338,7 @@ msgstr "добавить" msgid "Edit circle" msgstr "Редактировать круг" -#: src/Model/Circle.php:592 src/Module/Circle.php:181 +#: src/Model/Circle.php:592 src/Module/Circle.php:185 msgid "Contacts not in any circle" msgstr "Контакты вне кругов" @@ -3341,8 +3346,8 @@ msgstr "Контакты вне кругов" msgid "Create a new circle" msgstr "Создать круг" -#: src/Model/Circle.php:595 src/Module/Circle.php:166 -#: src/Module/Circle.php:189 src/Module/Circle.php:264 +#: src/Model/Circle.php:595 src/Module/Circle.php:168 +#: src/Module/Circle.php:190 src/Module/Circle.php:265 msgid "Circle Name: " msgstr "Название круга:" @@ -3350,247 +3355,247 @@ msgstr "Название круга:" msgid "Edit circles" msgstr "Редактировать круги" -#: src/Model/Contact.php:1258 src/Module/Moderation/Users/Pending.php:88 +#: src/Model/Contact.php:1259 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:1594 src/Model/Contact.php:1666 +#: src/Model/Contact.php:1595 src/Model/Contact.php:1667 #: src/Module/Contact/Profile.php:360 #, php-format msgid "%s has blocked you" msgstr "" -#: src/Model/Contact.php:1746 +#: src/Model/Contact.php:1747 msgid "Organisation" msgstr "Организация" -#: src/Model/Contact.php:1754 +#: src/Model/Contact.php:1755 msgid "Group" msgstr "Группа" -#: src/Model/Contact.php:1758 src/Module/Moderation/BaseUsers.php:122 +#: src/Model/Contact.php:1759 src/Module/Moderation/BaseUsers.php:122 msgid "Relay" msgstr "Ретранслятор" -#: src/Model/Contact.php:3073 +#: src/Model/Contact.php:3085 msgid "Disallowed profile URL." msgstr "Запрещенный URL профиля." -#: src/Model/Contact.php:3078 src/Module/Friendica.php:88 +#: src/Model/Contact.php:3090 src/Module/Friendica.php:88 msgid "Blocked domain" msgstr "Заблокированный домен" -#: src/Model/Contact.php:3083 +#: src/Model/Contact.php:3095 msgid "Connect URL missing." msgstr "Connect-URL отсутствует." -#: src/Model/Contact.php:3092 +#: src/Model/Contact.php:3104 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Контакт не может быть добавлен. Пожалуйста проверьте учётные данные на странице Настройки -> Социальные сети." -#: src/Model/Contact.php:3110 +#: src/Model/Contact.php:3122 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "Ожидаемая сеть %s не соответствует обнаруженной сети %s" -#: src/Model/Contact.php:3127 +#: src/Model/Contact.php:3139 msgid "This seems to be a relay account. They can't be followed by users." msgstr "Похоже, что это аккаунт релея. На такие нельзя подписаться." -#: src/Model/Contact.php:3134 +#: src/Model/Contact.php:3146 msgid "The profile address specified does not provide adequate information." msgstr "Указанный адрес профиля не дает адекватной информации." -#: src/Model/Contact.php:3136 +#: src/Model/Contact.php:3148 msgid "No compatible communication protocols or feeds were discovered." msgstr "Обнаружены несовместимые протоколы связи или каналы." -#: src/Model/Contact.php:3139 +#: src/Model/Contact.php:3151 msgid "An author or name was not found." msgstr "Автор или имя не найдены." -#: src/Model/Contact.php:3142 +#: src/Model/Contact.php:3154 msgid "No browser URL could be matched to this address." msgstr "Нет URL браузера, который соответствует этому адресу." -#: src/Model/Contact.php:3145 +#: src/Model/Contact.php:3157 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Не получается совместить этот адрес с известным протоколом или контактом электронной почты." -#: src/Model/Contact.php:3146 +#: src/Model/Contact.php:3158 msgid "Use mailto: in front of address to force email check." msgstr "Bcgjkmpeqnt mailto: перед адресом для быстрого доступа к email." -#: src/Model/Contact.php:3152 +#: src/Model/Contact.php:3164 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Ограниченный профиль. Этот человек не сможет получить прямые / личные уведомления от вас." -#: src/Model/Contact.php:3211 +#: src/Model/Contact.php:3223 msgid "Unable to retrieve contact information." msgstr "Невозможно получить контактную информацию." -#: src/Model/Event.php:40 +#: src/Model/Event.php:42 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 -#: src/Model/Event.php:928 +#: src/Model/Event.php:63 src/Model/Event.php:80 src/Model/Event.php:457 +#: src/Model/Event.php:929 msgid "Starts:" msgstr "Начало:" -#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 -#: src/Model/Event.php:932 +#: src/Model/Event.php:66 src/Model/Event.php:86 src/Model/Event.php:458 +#: src/Model/Event.php:933 msgid "Finishes:" msgstr "Окончание:" -#: src/Model/Event.php:405 +#: src/Model/Event.php:407 msgid "all-day" msgstr "Весь день" -#: src/Model/Event.php:431 +#: src/Model/Event.php:433 msgid "Sept" msgstr "Сен" -#: src/Model/Event.php:448 src/Module/Calendar/Show.php:117 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:117 #: src/Util/Temporal.php:329 msgid "today" msgstr "сегодня" -#: src/Model/Event.php:449 src/Module/Calendar/Show.php:118 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:118 #: src/Module/Settings/Display.php:302 src/Util/Temporal.php:339 msgid "month" msgstr "мес." -#: src/Model/Event.php:450 src/Module/Calendar/Show.php:119 +#: src/Model/Event.php:452 src/Module/Calendar/Show.php:119 #: src/Module/Settings/Display.php:303 src/Util/Temporal.php:340 msgid "week" msgstr "неделя" -#: src/Model/Event.php:451 src/Module/Calendar/Show.php:120 +#: src/Model/Event.php:453 src/Module/Calendar/Show.php:120 #: src/Module/Settings/Display.php:304 src/Util/Temporal.php:341 msgid "day" msgstr "день" -#: src/Model/Event.php:453 +#: src/Model/Event.php:455 msgid "No events to display" msgstr "Нет событий для показа" -#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Model/Event.php:504 src/Module/Feed.php:56 #: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "Доступ к этому профилю ограничен." -#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:52 +#: src/Model/Event.php:545 src/Module/Calendar/Event/Show.php:52 msgid "Event not found." msgstr "Событие не найдено" -#: src/Model/Event.php:623 +#: src/Model/Event.php:624 msgid "l, F j" msgstr "l, j F" -#: src/Model/Event.php:650 +#: src/Model/Event.php:651 msgid "Edit event" msgstr "Редактировать мероприятие" -#: src/Model/Event.php:651 +#: src/Model/Event.php:652 msgid "Duplicate event" msgstr "Дубликат события" -#: src/Model/Event.php:652 +#: src/Model/Event.php:653 msgid "Delete event" msgstr "Удалить событие" -#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 +#: src/Model/Event.php:883 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "l F d, Y \\@ g:i A" -#: src/Model/Event.php:883 +#: src/Model/Event.php:884 msgid "D g:i A" msgstr "D g:i A" -#: src/Model/Event.php:884 +#: src/Model/Event.php:885 msgid "g:i A" msgstr "g:i A" -#: src/Model/Event.php:947 src/Model/Event.php:949 +#: src/Model/Event.php:948 src/Model/Event.php:950 msgid "Show map" msgstr "Показать карту" -#: src/Model/Event.php:948 +#: src/Model/Event.php:949 msgid "Hide map" msgstr "Скрыть карту" -#: src/Model/Event.php:1041 +#: src/Model/Event.php:1042 #, php-format msgid "%s's birthday" msgstr "день рождения %s" -#: src/Model/Event.php:1042 +#: src/Model/Event.php:1043 #, php-format msgid "Happy Birthday %s" msgstr "С днём рождения %s" -#: src/Model/Item.php:2323 +#: src/Model/Item.php:2331 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2325 +#: src/Model/Item.php:2333 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2328 +#: src/Model/Item.php:2336 #, php-format msgid "" "Detected languages in this post:\n" "%s" msgstr "" -#: src/Model/Item.php:3277 +#: src/Model/Item.php:3285 msgid "activity" msgstr "активность" -#: src/Model/Item.php:3279 +#: src/Model/Item.php:3287 msgid "comment" msgstr "комментарий" -#: src/Model/Item.php:3282 src/Module/Post/Tag/Add.php:109 +#: src/Model/Item.php:3290 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "пост" -#: src/Model/Item.php:3452 +#: src/Model/Item.php:3463 #, php-format msgid "%s is blocked" msgstr "%s заблокирован" -#: src/Model/Item.php:3454 +#: src/Model/Item.php:3465 #, php-format msgid "%s is ignored" msgstr "%s игнорируется" -#: src/Model/Item.php:3456 +#: src/Model/Item.php:3467 #, php-format msgid "Content from %s is collapsed" msgstr "Запись от %s скрыта" -#: src/Model/Item.php:3460 +#: src/Model/Item.php:3471 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3969 +#: src/Model/Item.php:3980 msgid "bytes" msgstr "байт" -#: src/Model/Item.php:4000 +#: src/Model/Item.php:4011 #, php-format msgid "%2$s (%3$d%%, %1$d vote)" msgid_plural "%2$s (%3$d%%, %1$d votes)" @@ -3599,7 +3604,7 @@ msgstr[1] "%2$s (%3$d%%, %1$d голоса)" msgstr[2] "%2$s (%3$d%%, %1$d голосов)" msgstr[3] "%2$s (%3$d%%, %1$d голосов)" -#: src/Model/Item.php:4002 +#: src/Model/Item.php:4013 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" @@ -3608,7 +3613,7 @@ msgstr[1] "%2$s (%1$d голоса)" msgstr[2] "%2$s (%1$d голосов)" msgstr[3] "%2$s (%1$d голосов)" -#: src/Model/Item.php:4007 +#: src/Model/Item.php:4018 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" @@ -3617,7 +3622,7 @@ msgstr[1] "%d голоса. Конец опроса: %s" msgstr[2] "%d голосов. Конец опроса: %s" msgstr[3] "%d голосов. Конец опроса: %s" -#: src/Model/Item.php:4009 +#: src/Model/Item.php:4020 #, php-format msgid "%d voter." msgid_plural "%d voters." @@ -3626,12 +3631,12 @@ msgstr[1] "%d голоса." msgstr[2] "%d голосов." msgstr[3] "%d голосов." -#: src/Model/Item.php:4011 +#: src/Model/Item.php:4022 #, php-format msgid "Poll end: %s" msgstr "Конец опроса: %s" -#: src/Model/Item.php:4052 src/Model/Item.php:4053 +#: src/Model/Item.php:4063 src/Model/Item.php:4064 msgid "View on separate page" msgstr "Посмотреть в отдельной вкладке" @@ -3639,7 +3644,7 @@ msgstr "Посмотреть в отдельной вкладке" msgid "[no subject]" msgstr "[без темы]" -#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 +#: src/Model/Photo.php:1192 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Фото стены" @@ -3652,7 +3657,7 @@ msgstr "Редактировать профиль" msgid "Change profile photo" msgstr "Изменить фото профиля" -#: src/Model/Profile.php:357 src/Module/Directory.php:139 +#: src/Model/Profile.php:357 src/Module/Directory.php:138 #: src/Module/Profile/Profile.php:200 msgid "Homepage:" msgstr "Домашняя страничка:" @@ -3742,7 +3747,7 @@ msgstr "Не нравится:" msgid "Title/Description:" msgstr "Заголовок / Описание:" -#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:176 +#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:174 #: src/Module/Moderation/Report/Create.php:266 #: src/Module/Moderation/Summary.php:65 msgid "Summary" @@ -3793,59 +3798,59 @@ msgstr "" msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась." -#: src/Model/User.php:740 src/Model/User.php:773 +#: src/Model/User.php:739 src/Model/User.php:772 msgid "Login failed" msgstr "Вход не удался" -#: src/Model/User.php:805 +#: src/Model/User.php:804 msgid "Not enough information to authenticate" msgstr "Недостаточно информации для входа" -#: src/Model/User.php:930 +#: src/Model/User.php:929 msgid "Password can't be empty" msgstr "Пароль не может быть пустым" -#: src/Model/User.php:972 +#: src/Model/User.php:971 msgid "Empty passwords are not allowed." msgstr "Пароль не должен быть пустым." -#: src/Model/User.php:976 +#: src/Model/User.php:975 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Новый пароль содержится в опубликованных списках украденных паролей, пожалуйста, используйте другой." -#: src/Model/User.php:980 +#: src/Model/User.php:979 msgid "The password length is limited to 72 characters." msgstr "Длина пароля ограничена 72 символами." -#: src/Model/User.php:984 +#: src/Model/User.php:983 msgid "The password can't contain white spaces nor accentuated letters" msgstr "Пароль не может содержать пробелов и букв с акцентами." -#: src/Model/User.php:1193 +#: src/Model/User.php:1192 msgid "Passwords do not match. Password unchanged." msgstr "Пароли не совпадают. Пароль не изменен." -#: src/Model/User.php:1200 +#: src/Model/User.php:1199 msgid "An invitation is required." msgstr "Требуется приглашение." -#: src/Model/User.php:1204 +#: src/Model/User.php:1203 msgid "Invitation could not be verified." msgstr "Приглашение не может быть проверено." -#: src/Model/User.php:1212 +#: src/Model/User.php:1211 msgid "Invalid OpenID url" msgstr "Неверный URL OpenID" -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Мы столкнулись с проблемой при входе с OpenID, который вы указали. Пожалуйста, проверьте правильность написания ID." -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "The error message was:" msgstr "Сообщение об ошибке было:" @@ -4040,57 +4045,57 @@ msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:51 +#: src/Module/Admin/Addons/Details.php:49 msgid "Addon not found." msgstr "Дополнение не найдено." -#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 +#: src/Module/Admin/Addons/Details.php:60 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "Дополнение %s отключено." -#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 +#: src/Module/Admin/Addons/Details.php:63 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "Дополнение %s включено." -#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Addons/Details.php:72 #: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "Отключить" -#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Addons/Details.php:75 #: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351 msgid "Enable" msgstr "Включить" -#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Addons/Details.php:95 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:175 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Summary.php:173 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:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/Admin/Addons/Details.php:96 src/Module/Admin/Addons/Index.php:60 #: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:127 msgid "Addons" msgstr "Дополнения" -#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Addons/Details.php:97 #: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Переключить" -#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Addons/Details.php:104 #: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Автор:" -#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Addons/Details.php:105 #: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Программа обслуживания: " @@ -4107,9 +4112,10 @@ msgstr "Не удалось установить дополнение %s." #: 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:545 src/Module/Settings/Addons.php:64 -#: src/Module/Settings/Connectors.php:149 -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Account.php:507 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/Features.php:61 msgid "Save Settings" @@ -4126,62 +4132,62 @@ msgid "" "official addon repository at %1$s." msgstr "" -#: src/Module/Admin/DBSync.php:37 +#: src/Module/Admin/DBSync.php:35 msgid "Update has been marked successful" msgstr "Обновление было успешно отмечено" -#: src/Module/Admin/DBSync.php:45 +#: src/Module/Admin/DBSync.php:43 #, php-format msgid "Database structure update %s was successfully applied." msgstr "Обновление базы данных %s успешно применено." -#: src/Module/Admin/DBSync.php:47 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "Выполнение обновления базы данных %s завершено с ошибкой: %s" -#: src/Module/Admin/DBSync.php:62 +#: src/Module/Admin/DBSync.php:60 #, php-format msgid "Executing %s failed with error: %s" msgstr "Выполнение %s завершено с ошибкой: %s" -#: src/Module/Admin/DBSync.php:64 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Update %s was successfully applied." msgstr "Обновление %s успешно применено." -#: src/Module/Admin/DBSync.php:67 +#: src/Module/Admin/DBSync.php:65 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Процесс обновления %s не вернул статус. Не известно, выполнено, или нет." -#: src/Module/Admin/DBSync.php:70 +#: src/Module/Admin/DBSync.php:68 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "Не было процедур обновления %s, которые нужно было запустить." -#: src/Module/Admin/DBSync.php:91 +#: src/Module/Admin/DBSync.php:89 msgid "No failed updates." msgstr "Неудавшихся обновлений нет." -#: src/Module/Admin/DBSync.php:92 +#: src/Module/Admin/DBSync.php:90 msgid "Check database structure" msgstr "Проверить структуру базы данных" -#: src/Module/Admin/DBSync.php:96 +#: src/Module/Admin/DBSync.php:94 msgid "Failed Updates" msgstr "Неудавшиеся обновления" -#: src/Module/Admin/DBSync.php:97 +#: src/Module/Admin/DBSync.php:95 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "Эта цифра не включает обновления до 1139, которое не возвращает статус." -#: src/Module/Admin/DBSync.php:98 +#: src/Module/Admin/DBSync.php:96 msgid "Mark success (if update was manually applied)" msgstr "Отмечено успешно (если обновление было применено вручную)" -#: src/Module/Admin/DBSync.php:99 +#: src/Module/Admin/DBSync.php:97 msgid "Attempt to execute this update step automatically" msgstr "Попытаться выполнить этот шаг обновления автоматически" @@ -5762,12 +5768,12 @@ msgstr "" msgid "Database (legacy)" msgstr "База данных (устаревшее)" -#: src/Module/Admin/Summary.php:41 +#: src/Module/Admin/Summary.php:39 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:45 +#: src/Module/Admin/Summary.php:43 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5778,7 +5784,7 @@ msgid "" " an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:50 +#: src/Module/Admin/Summary.php:48 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5789,7 +5795,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:60 +#: src/Module/Admin/Summary.php:58 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5797,46 +5803,46 @@ msgid "" " to %d. See here for more information.
" msgstr "Ваше значение table_definition_cache слишком маленькое (%d). Это может вызвать ошибку базы данных \"Prepared statement needs to be re-prepared\". Пожалуйста, установите его хотя бы в %d. Смотрите здесь для дополнительной информации.
" -#: src/Module/Admin/Summary.php:68 +#: src/Module/Admin/Summary.php:66 #, 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 "Новая версия Friendica доступна для загрузки. Ваша текущая версия %1$s, последняя версия %2$s" -#: src/Module/Admin/Summary.php:76 +#: src/Module/Admin/Summary.php:74 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 "Обновление базы данных завершилось неудачно. Пожалуйста, запустите \"php bin/console.php dbstructure update\" в командной строке и посмотрите какие ошибки там могут появиться." -#: src/Module/Admin/Summary.php:80 +#: src/Module/Admin/Summary.php:78 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:84 +#: src/Module/Admin/Summary.php:82 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:89 +#: src/Module/Admin/Summary.php:87 msgid "The worker was never executed. Please check your database structure!" msgstr "Фоновые задания ни разу не выполнялись. Пожалуйста, проверьте структуру базы данных!" -#: src/Module/Admin/Summary.php:91 +#: src/Module/Admin/Summary.php:89 #, php-format msgid "" "The last worker execution was on %s UTC. This is older than one hour. Please" " check your crontab settings." msgstr "Последний раз фоновое задание выполнялось %s UTC. Это более одного часа назад. Пожалуйста, проверьте настройки crontab." -#: src/Module/Admin/Summary.php:96 +#: src/Module/Admin/Summary.php:94 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5845,7 +5851,7 @@ msgid "" "help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:100 +#: src/Module/Admin/Summary.php:98 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5854,7 +5860,7 @@ msgid "" "page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:106 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5862,40 +5868,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "%s не доступен на вашей системе. Это серьёзная проблема, которая мешает межсерверной коммуникации. Посмотрите страницу установки для помощи." -#: src/Module/Admin/Summary.php:130 +#: src/Module/Admin/Summary.php:128 #, 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:138 +#: src/Module/Admin/Summary.php:136 #, 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:146 +#: src/Module/Admin/Summary.php:144 #, 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:157 +#: src/Module/Admin/Summary.php:155 msgid "Message queues" msgstr "Очереди сообщений" -#: src/Module/Admin/Summary.php:160 +#: src/Module/Admin/Summary.php:158 msgid "Server Settings" msgstr "Настройки сервера" -#: src/Module/Admin/Summary.php:178 +#: src/Module/Admin/Summary.php:176 msgid "Version" msgstr "Версия" -#: src/Module/Admin/Summary.php:182 +#: src/Module/Admin/Summary.php:180 msgid "Active addons" msgstr "Активные дополнения" @@ -6166,8 +6172,8 @@ msgstr "Дополнительная учётная запись не имеет msgid "Reports" msgstr "Обращения" -#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:134 -#: src/Module/Moderation/Users/Index.php:144 +#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:137 +#: src/Module/Moderation/Users/Index.php:147 msgid "Users" msgstr "Пользователи" @@ -6203,7 +6209,7 @@ msgstr "Записи этого автора" msgid "Only You Can See This" msgstr "Только вы можете это видеть" -#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:67 +#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:65 msgid "Scheduled Posts" msgstr "Запланированные записи" @@ -6257,7 +6263,7 @@ msgstr "Двухфакторная аутентификация" msgid "Display" msgstr "Внешний вид" -#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:195 +#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:189 msgid "Social Networks" msgstr "Социальные сети" @@ -6273,11 +6279,15 @@ msgstr "Подключенные приложения" msgid "Remote servers" msgstr "Другие серверы" -#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:84 +#: src/Module/BaseSettings.php:155 src/Module/Settings/ContactImport.php:109 +msgid "Import Contacts" +msgstr "Импорт контактов" + +#: src/Module/BaseSettings.php:162 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Экспорт личных данных" -#: src/Module/BaseSettings.php:162 +#: src/Module/BaseSettings.php:169 msgid "Remove account" msgstr "Удалить аккаунт" @@ -6406,8 +6416,8 @@ msgstr "список" msgid "Could not create circle." msgstr "Не удалось создать круг." -#: src/Module/Circle.php:54 src/Module/Circle.php:202 -#: src/Module/Circle.php:226 +#: src/Module/Circle.php:54 src/Module/Circle.php:203 +#: src/Module/Circle.php:227 msgid "Circle not found." msgstr "Круг не найден." @@ -6415,15 +6425,15 @@ msgstr "Круг не найден." msgid "Circle name was not changed." msgstr "Название круга не изменено." -#: src/Module/Circle.php:78 +#: src/Module/Circle.php:80 msgid "Unknown circle." msgstr "Неизвестный круг." -#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Circle.php:86 src/Module/Circle.php:95 #: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 -#: 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/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/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 @@ -6432,75 +6442,75 @@ msgstr "Неизвестный круг." msgid "Contact not found." msgstr "Контакт не найден." -#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 +#: src/Module/Circle.php:90 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Недопустимый контакт." -#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 +#: src/Module/Circle.php:99 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "Контакт удалён." -#: src/Module/Circle.php:103 +#: src/Module/Circle.php:105 msgid "Unable to add the contact to the circle." msgstr "Не удалось добавить контакт в круг." -#: src/Module/Circle.php:106 +#: src/Module/Circle.php:108 msgid "Contact successfully added to circle." msgstr "Контакт успешно добавлен в круг." -#: src/Module/Circle.php:110 +#: src/Module/Circle.php:112 msgid "Unable to remove the contact from the circle." msgstr "Не удалось удалить контакт из круга." -#: src/Module/Circle.php:113 +#: src/Module/Circle.php:115 msgid "Contact successfully removed from circle." msgstr "Контакт успешно удалён из круга." -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:119 msgid "Bad request." msgstr "Ошибочный запрос." -#: src/Module/Circle.php:158 +#: src/Module/Circle.php:160 msgid "Save Circle" msgstr "Сохранить круг" -#: src/Module/Circle.php:159 +#: src/Module/Circle.php:161 msgid "Filter" msgstr "Фильтр" -#: src/Module/Circle.php:165 +#: src/Module/Circle.php:167 msgid "Create a circle of contacts/friends." msgstr "Создать круг контактов/друзей." -#: src/Module/Circle.php:207 +#: src/Module/Circle.php:208 msgid "Unable to remove circle." msgstr "Не удаётся удалить круг." -#: src/Module/Circle.php:258 +#: src/Module/Circle.php:259 msgid "Delete Circle" msgstr "Удалить круг" -#: src/Module/Circle.php:268 +#: src/Module/Circle.php:269 msgid "Edit Circle Name" msgstr "Изменить имя круга" -#: src/Module/Circle.php:278 +#: src/Module/Circle.php:279 msgid "Members" msgstr "Участники" -#: src/Module/Circle.php:281 +#: src/Module/Circle.php:282 msgid "Circle is empty" msgstr "Круг пуст" -#: src/Module/Circle.php:297 +#: src/Module/Circle.php:298 msgid "Remove contact from circle" msgstr "Удалить контакт из круга" -#: src/Module/Circle.php:320 +#: src/Module/Circle.php:321 msgid "Click on a contact to add or remove." msgstr "Нажмите на контакт, чтобы добавить или удалить." -#: src/Module/Circle.php:337 +#: src/Module/Circle.php:338 msgid "Add contact to circle" msgstr "Добавить контакт в круг" @@ -6536,7 +6546,7 @@ msgid "Only show blocked contacts" msgstr "Показать только блокированные контакты" #: src/Module/Contact.php:349 src/Module/Contact.php:421 -#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:386 msgid "Ignored" msgstr "Игнорируются" @@ -6587,8 +6597,8 @@ 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:124 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Blocked.php:127 +#: src/Module/Moderation/Users/Index.php:143 msgid "Unblock" msgstr "Разблокировать" @@ -6664,12 +6674,12 @@ 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:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:56 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Имя" @@ -7244,11 +7254,11 @@ msgstr "" msgid "Network feed not available." msgstr "Лента недоступна" -#: src/Module/Conversation/Timeline.php:190 +#: src/Module/Conversation/Timeline.php:193 msgid "Include" msgstr "Включить" -#: src/Module/Conversation/Timeline.php:191 +#: src/Module/Conversation/Timeline.php:194 msgid "Hide" msgstr "Скрыть" @@ -7519,19 +7529,19 @@ msgstr "" msgid "Lookup address:" msgstr "" -#: src/Module/Directory.php:61 +#: src/Module/Directory.php:60 msgid "No entries (some entries may be hidden)." msgstr "Нет записей (некоторые записи могут быть скрыты)." -#: src/Module/Directory.php:77 +#: src/Module/Directory.php:76 msgid "Find on this site" msgstr "Найти на этом сайте" -#: src/Module/Directory.php:79 +#: src/Module/Directory.php:78 msgid "Results for:" msgstr "Результаты для:" -#: src/Module/Directory.php:81 +#: src/Module/Directory.php:80 msgid "Site Directory" msgstr "Каталог сайта" @@ -7784,29 +7794,29 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "Зайдите на страницу регистрации вашего нового сервера Friendica и зарегистрируйтесь как новый пользователь. Обратите внимание, что нужно использовать тот же адрес почты, какой вы указали в настройках администратора. Это позволит вам зайти в панель администратора." -#: src/Module/Invite.php:43 +#: src/Module/Invite.php:42 msgid "Total invitation limit exceeded." msgstr "Превышен общий лимит приглашений." -#: src/Module/Invite.php:68 +#: src/Module/Invite.php:67 #, php-format msgid "%s : Not a valid email address." msgstr "%s: Неверный адрес электронной почты." -#: src/Module/Invite.php:94 +#: src/Module/Invite.php:93 msgid "Please join us on Friendica" msgstr "Пожалуйста, присоединяйтесь к нам на Friendica" -#: src/Module/Invite.php:103 +#: src/Module/Invite.php:102 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Лимит приглашений превышен. Пожалуйста, свяжитесь с администратором сайта." -#: src/Module/Invite.php:107 +#: src/Module/Invite.php:106 #, php-format msgid "%s : Message delivery failed." msgstr "%s: Доставка сообщения не удалась." -#: src/Module/Invite.php:111 +#: src/Module/Invite.php:110 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." @@ -7815,11 +7825,11 @@ msgstr[1] "%d сообщений отправлено." msgstr[2] "%d сообщений отправлено." msgstr[3] "%d сообщений отправлено." -#: src/Module/Invite.php:129 +#: src/Module/Invite.php:127 msgid "You have no more invitations available" msgstr "У вас нет больше приглашений" -#: src/Module/Invite.php:136 +#: src/Module/Invite.php:134 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7827,14 +7837,14 @@ msgid "" " other social networks." msgstr "Посетите %s со списком общедоступных сайтов, к которым вы можете присоединиться. Все участники Friendica на других сайтах могут соединиться друг с другом, а также с участниками многих других социальных сетей." -#: src/Module/Invite.php:138 +#: src/Module/Invite.php:136 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "Для одобрения этого приглашения, пожалуйста, посетите и зарегистрируйтесь на %s ,или любом другом публичном сервере Friendica" -#: src/Module/Invite.php:139 +#: src/Module/Invite.php:137 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7843,48 +7853,48 @@ msgid "" "sites you can join." msgstr "Сайты Friendica, подключившись между собой, могут создать сеть с повышенной безопасностью, которая принадлежит и управляется её членами. Они также могут подключаться ко многим традиционным социальным сетям. См. %s со списком альтернативных сайтов Friendica, к которым вы можете присоединиться." -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:141 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "Извините. Эта система в настоящее время не сконфигурирована для соединения с другими общественными сайтами и для приглашения участников." -#: src/Module/Invite.php:146 +#: src/Module/Invite.php:144 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:145 +#: src/Module/Invite.php:143 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "Чтобы принять это приглашение, пожалуйста зайдите на %s и зарегистрируйтесь." -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:151 msgid "Send invitations" msgstr "Отправить приглашения" -#: src/Module/Invite.php:154 +#: src/Module/Invite.php:152 msgid "Enter email addresses, one per line:" msgstr "Введите адреса электронной почты, по одному в строке:" -#: src/Module/Invite.php:158 +#: src/Module/Invite.php:156 msgid "" "You are cordially invited to join me and other close friends on Friendica - " "and help us to create a better social web." msgstr "Приглашаем Вас присоединиться ко мне и другим близким друзьям на Friendica - помочь нам создать лучшую социальную сеть." -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "You will need to supply this invitation code: $invite_code" msgstr "Вам нужно будет предоставить этот код приглашения: $invite_code" -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "После того как вы зарегистрировались, пожалуйста, свяжитесь со мной через мою страницу профиля по адресу:" -#: src/Module/Invite.php:162 +#: src/Module/Invite.php:160 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" @@ -7986,12 +7996,12 @@ msgid "File upload failed." msgstr "Загрузка файла не удалась." #: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 -#: src/Module/Profile/Photos.php:204 +#: src/Module/Profile/Photos.php:212 #: 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:224 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:232 #: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Загрузка фото неудачная." @@ -8024,23 +8034,23 @@ msgstr "Удалённые" msgid "List of pending user deletions" msgstr "Список ожидающих удаления" -#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:469 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:431 msgid "Normal Account Page" msgstr "Стандартная страница аккаунта" -#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:476 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:438 msgid "Soapbox Page" msgstr "Публичная страница" -#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:483 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:445 msgid "Public Group" msgstr "Публичная группа" -#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:490 +#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:452 msgid "Public Group - Restricted" msgstr "Публичная группа - ограниченная" -#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:497 +#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:459 msgid "Automatic Friend Page" msgstr "\"Автоматический друг\" страница" @@ -8049,22 +8059,22 @@ msgid "Private Group" msgstr "Закрытая группа" #: src/Module/Moderation/BaseUsers.php:118 -#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:440 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:402 msgid "Personal Page" msgstr "Личная страница" #: src/Module/Moderation/BaseUsers.php:119 -#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:447 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:409 msgid "Organisation Page" msgstr "Организационная страница" #: src/Module/Moderation/BaseUsers.php:120 -#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:454 +#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:416 msgid "News Page" msgstr "Новостная страница" #: src/Module/Moderation/BaseUsers.php:121 -#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:461 +#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:423 msgid "Community Group" msgstr "Группа сообщества" @@ -8096,9 +8106,9 @@ msgid "Block Remote Contact" msgstr "Заблокировать удалённый контакт" #: src/Module/Moderation/Blocklist/Contact.php:102 -#: 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/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:138 #: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "выбрать все" @@ -8451,9 +8461,9 @@ msgid "Tag" msgstr "Тэг" #: src/Module/Moderation/Item/Source.php:77 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 -#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 +#: src/Module/Moderation/Users/Index.php:129 msgid "Type" msgstr "Тип" @@ -8720,7 +8730,7 @@ msgstr[3] "%s обращений" msgid "URL of the reported contact." msgstr "URL контакта в обращении." -#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:418 +#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:380 msgid "Channel Relay" msgstr "Ретранслятор канала" @@ -8743,11 +8753,11 @@ msgstr[2] "%s пользователей заблокировано" msgstr[3] "%s пользователей заблокировано" #: src/Module/Moderation/Users/Active.php:37 -#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Active.php:74 #: src/Module/Moderation/Users/Blocked.php:37 -#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Blocked.php:74 #: src/Module/Moderation/Users/Index.php:44 -#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Index.php:81 msgid "You can't remove yourself" msgstr "Вы не можете удалить самого себя" @@ -8762,81 +8772,81 @@ msgstr[1] "%s чел. удалено" msgstr[2] "%s чел. удалено" msgstr[3] "%s чел. удалено" -#: src/Module/Moderation/Users/Active.php:69 -#: src/Module/Moderation/Users/Blocked.php:69 -#: src/Module/Moderation/Users/Index.php:76 +#: src/Module/Moderation/Users/Active.php:72 +#: src/Module/Moderation/Users/Blocked.php:72 +#: src/Module/Moderation/Users/Index.php:79 #, php-format msgid "User \"%s\" deleted" msgstr "Пользователь \"%s\" удалён" -#: src/Module/Moderation/Users/Active.php:79 -#: src/Module/Moderation/Users/Index.php:86 +#: src/Module/Moderation/Users/Active.php:82 +#: src/Module/Moderation/Users/Index.php:89 #, php-format msgid "User \"%s\" blocked" msgstr "Пользователь \"%s\" заблокирован" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Register date" msgstr "Дата регистрации" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last login" msgstr "Последний вход" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last public item" msgstr "Последняя публичная запись" -#: src/Module/Moderation/Users/Active.php:120 +#: src/Module/Moderation/Users/Active.php:123 msgid "Active Accounts" msgstr "Активные учётные записи" -#: src/Module/Moderation/Users/Active.php:124 -#: src/Module/Moderation/Users/Blocked.php:123 -#: src/Module/Moderation/Users/Index.php:139 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "User blocked" msgstr "Пользователь заблокирован" -#: src/Module/Moderation/Users/Active.php:125 -#: src/Module/Moderation/Users/Blocked.php:125 -#: src/Module/Moderation/Users/Index.php:141 +#: src/Module/Moderation/Users/Active.php:128 +#: src/Module/Moderation/Users/Blocked.php:128 +#: src/Module/Moderation/Users/Index.php:144 msgid "Site admin" msgstr "Админ сайта" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:142 +#: src/Module/Moderation/Users/Active.php:129 +#: src/Module/Moderation/Users/Blocked.php:129 +#: src/Module/Moderation/Users/Index.php:145 msgid "Account expired" msgstr "Аккаунт просрочен" -#: src/Module/Moderation/Users/Active.php:127 -#: src/Module/Moderation/Users/Index.php:145 +#: src/Module/Moderation/Users/Active.php:130 +#: src/Module/Moderation/Users/Index.php:148 msgid "Create a new user" msgstr "Создать нового" -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:132 -#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:154 msgid "" "Selected users will be deleted!\\n\\nEverything these users had posted on " "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Выбранные пользователи будут удалены!\\n\\nВсе, что эти пользователи написали на этом сайте, будет удалено!\\n\\nВы уверены в вашем действии?" -#: src/Module/Moderation/Users/Active.php:134 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:155 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" @@ -8852,13 +8862,13 @@ msgstr[1] "%s пользователя разблокировано" msgstr[2] "%s пользователей разблокировано" msgstr[3] "%s пользователей разблокировано" -#: src/Module/Moderation/Users/Blocked.php:78 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Blocked.php:81 +#: src/Module/Moderation/Users/Index.php:95 #, php-format msgid "User \"%s\" unblocked" msgstr "Пользователь \"%s\" разблокирован" -#: src/Module/Moderation/Users/Blocked.php:120 +#: src/Module/Moderation/Users/Blocked.php:123 msgid "Blocked Users" msgstr "Заблокированные" @@ -8891,11 +8901,11 @@ msgid "Users awaiting permanent deletion" msgstr "Пользователи, ожидающие окончательного удаления" #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:149 msgid "Permanent deletion" msgstr "Постоянное удаление" -#: src/Module/Moderation/Users/Index.php:136 +#: src/Module/Moderation/Users/Index.php:139 msgid "User waiting for permanent deletion" msgstr "Пользователь ожидает окончательного удаления" @@ -9064,7 +9074,7 @@ msgstr "Пожалуйста, скопируйте следующий код а msgid "Invalid data or unknown client" msgstr "Ошибочные данные или неизвестный клиент" -#: src/Module/OAuth/Token.php:91 +#: src/Module/OAuth/Token.php:73 msgid "Unsupported or missing grant type" msgstr "Неподдерживаемый или отсутствующий тип гранта." @@ -9116,7 +9126,7 @@ msgstr "игнорирован" msgid "Keep this window open until done." msgstr "Держать окно открытым до завершения." -#: src/Module/OpenSearch.php:57 +#: src/Module/OpenSearch.php:55 #, php-format msgid "Search in Friendica %s" msgstr "" @@ -9130,12 +9140,12 @@ msgstr "Фото недоступно." msgid "The Photo with id %s is not available." msgstr "Фотография с id %s недоступна." -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:178 #, php-format msgid "Invalid external resource with url %s." msgstr "Проблема с внешним ресурсом по адресу %s." -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:180 #, php-format msgid "Invalid photo with id %s." msgstr "Неправильное фото с id %s." @@ -9168,15 +9178,15 @@ msgstr "Вставить ссылку аудио" msgid "audio link" msgstr "аудио-ссылка" -#: src/Module/Post/Tag/Remove.php:92 +#: src/Module/Post/Tag/Remove.php:93 msgid "Remove Item Tag" msgstr "Удалить ключевое слово" -#: src/Module/Post/Tag/Remove.php:93 +#: src/Module/Post/Tag/Remove.php:94 msgid "Select a tag to remove: " msgstr "Выберите ключевое слово для удаления: " -#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Post/Tag/Remove.php:95 #: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Удалить" @@ -9255,32 +9265,32 @@ msgstr "Комментарии %s" msgid "%s's timeline" msgstr "Лента %s" -#: src/Module/Profile/Photos.php:153 src/Module/Profile/Photos.php:156 -#: src/Module/Profile/Photos.php:181 +#: src/Module/Profile/Photos.php:157 src/Module/Profile/Photos.php:160 +#: src/Module/Profile/Photos.php:189 #: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "Изображение превышает лимит размера в %s" -#: src/Module/Profile/Photos.php:159 +#: src/Module/Profile/Photos.php:163 msgid "Image upload didn't complete, please try again" msgstr "Не получилось загрузить изображение, попробуйте снова" -#: src/Module/Profile/Photos.php:162 +#: src/Module/Profile/Photos.php:166 msgid "Image file is missing" msgstr "Файл изображения не найден" -#: src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:171 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "Сервер не принимает новые файлы для загрузки в настоящий момент, пожалуйста, свяжитесь с администратором" -#: src/Module/Profile/Photos.php:189 +#: src/Module/Profile/Photos.php:197 msgid "Image file is empty." msgstr "Файл изображения пуст." -#: src/Module/Profile/Photos.php:341 +#: src/Module/Profile/Photos.php:349 msgid "View Album" msgstr "Просмотреть альбом" @@ -9398,15 +9408,15 @@ msgid "" "content from anonymous visitors." msgstr "Доступ к этому профилю был ограничен, анонимные пользователи не могут его просматривать." -#: src/Module/Profile/Schedule.php:69 +#: src/Module/Profile/Schedule.php:67 msgid "Scheduled" msgstr "Запланировано" -#: src/Module/Profile/Schedule.php:70 +#: src/Module/Profile/Schedule.php:68 msgid "Content" msgstr "Содержание" -#: src/Module/Profile/Schedule.php:71 +#: src/Module/Profile/Schedule.php:69 msgid "Remove post" msgstr "Удалить запись" @@ -9471,7 +9481,7 @@ msgid "Please repeat your e-mail address:" msgstr "Пожалуйста, введите адрес электронной почты ещё раз:" #: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:551 +#: src/Module/Settings/Account.php:513 msgid "New Password:" msgstr "Новый пароль:" @@ -9480,7 +9490,7 @@ 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:552 +#: src/Module/Settings/Account.php:514 msgid "Confirm:" msgstr "Подтвердите:" @@ -9664,20 +9674,20 @@ msgstr "Выход из системы." msgid "OpenID protocol error. No ID returned" msgstr "Ошибка протокола OpenID. Не возвращён ID." -#: src/Module/Security/OpenID.php:76 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "Учётная запись не найдена. Пожалуйста, зайдите в вашу существующую запись, чтобы добавить OpenID к ней." -#: src/Module/Security/OpenID.php:78 +#: src/Module/Security/OpenID.php:80 msgid "" "Account not found. Please register a new account or login to your existing " "account to add the OpenID to it." msgstr "Учётная запись не найдена. Пожалуйста, зарегистрируйте новую учётную запись или зайдите в существующую, чтобы добавить к ней OpenID." #: src/Module/Security/PasswordTooLong.php:43 -#: src/Module/Settings/Account.php:51 +#: src/Module/Settings/Account.php:49 msgid "Passwords do not match." msgstr "Пароли не совпадают" @@ -9686,7 +9696,7 @@ msgid "Password does not need changing." msgstr "Смена пароля не требуется." #: src/Module/Security/PasswordTooLong.php:63 -#: src/Module/Settings/Account.php:65 +#: src/Module/Settings/Account.php:63 msgid "Password unchanged." msgstr "Пароль не поменялся" @@ -9706,24 +9716,24 @@ msgid "Update Password" msgstr "Изменить пароль" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Current Password:" msgstr "Текущий пароль:" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Your current password to confirm the changes" msgstr "Ваш текущий пароль, для подтверждения изменений" #: src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:537 +#: src/Module/Settings/Account.php:499 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " "spaces and accentuated letters." msgstr "Допустимые символы a-z, A-Z, 0-9 и специальные символы за исключением пробелов и букв с акцентами." #: src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:538 +#: src/Module/Settings/Account.php:500 msgid "Password length is limited to 72 characters." msgstr "Длина пароля ограничена 72-мя символами." @@ -9827,129 +9837,121 @@ msgstr "Пожалуйста, введите код из вашего прило msgid "Verify code and complete login" msgstr "Введите код для завершения входа" -#: src/Module/Settings/Account.php:80 +#: src/Module/Settings/Account.php:78 msgid "Please use a shorter name." msgstr "Пожалуйста, выберите имя короче." -#: src/Module/Settings/Account.php:83 +#: src/Module/Settings/Account.php:81 msgid "Name too short." msgstr "Имя слишком короткое" -#: src/Module/Settings/Account.php:92 +#: src/Module/Settings/Account.php:90 msgid "Wrong Password." msgstr "Неправильный пароль" -#: src/Module/Settings/Account.php:97 +#: src/Module/Settings/Account.php:95 msgid "Invalid email." msgstr "Неправильный адрес почты" -#: src/Module/Settings/Account.php:101 +#: src/Module/Settings/Account.php:99 msgid "Cannot change to that email." msgstr "Нельзя установить этот адрес почты" -#: 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 +#: 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 msgid "Settings were not updated." msgstr "Настройки не были изменены." -#: src/Module/Settings/Account.php:331 -msgid "Contact CSV file upload error" -msgstr "Ошибка загрузки CSV с контактами" - -#: src/Module/Settings/Account.php:350 -msgid "Importing Contacts done" -msgstr "Импорт контактов завершён" - -#: src/Module/Settings/Account.php:363 +#: src/Module/Settings/Account.php:325 msgid "Relocate message has been send to your contacts" msgstr "Перемещённое сообщение было отправлено списку контактов" -#: src/Module/Settings/Account.php:380 +#: src/Module/Settings/Account.php:342 msgid "Unable to find your profile. Please contact your admin." msgstr "Не получается найти ваш профиль. Пожалуйста свяжитесь с администратором." -#: src/Module/Settings/Account.php:420 +#: src/Module/Settings/Account.php:382 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "Учётная запись, которая автоматически публикует контент из каналов, созданных пользователем." -#: src/Module/Settings/Account.php:430 +#: src/Module/Settings/Account.php:392 msgid "Personal Page Subtypes" msgstr "Подтипы личной страницы" -#: src/Module/Settings/Account.php:431 +#: src/Module/Settings/Account.php:393 msgid "Community Group Subtypes" msgstr "Типы групп сообществ" -#: src/Module/Settings/Account.php:442 +#: src/Module/Settings/Account.php:404 msgid "Account for a personal profile." msgstr "Личная учётная запись" -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:411 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Учётная запись организации, которая автоматически одобряет новых подписчиков." -#: src/Module/Settings/Account.php:456 +#: src/Module/Settings/Account.php:418 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Учётная запись новостной ленты, которая автоматически одобряет новых подписчиков." -#: src/Module/Settings/Account.php:463 +#: src/Module/Settings/Account.php:425 msgid "Account for community discussions." msgstr "Учётная запись для совместных обсуждений." -#: src/Module/Settings/Account.php:471 +#: src/Module/Settings/Account.php:433 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Личная учётная запись, которая требует ручного одобрения для новых подписчиков и друзей." -#: src/Module/Settings/Account.php:478 +#: src/Module/Settings/Account.php:440 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Учётная запись для публичного профиля, которая автоматически одобряет новых подписчиков." -#: src/Module/Settings/Account.php:485 +#: src/Module/Settings/Account.php:447 msgid "Automatically approves all contact requests." msgstr "Автоматически одобряет все запросы на подписку." -#: src/Module/Settings/Account.php:492 +#: src/Module/Settings/Account.php:454 msgid "Contact requests have to be manually approved." msgstr "Запросы на добавление одобряются вручную." -#: src/Module/Settings/Account.php:499 +#: src/Module/Settings/Account.php:461 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Учётная запись для публичной личности, которая автоматически добавляет все новые контакты в друзья." -#: src/Module/Settings/Account.php:504 +#: src/Module/Settings/Account.php:466 msgid "Private Group [Experimental]" msgstr "Частная группа [экспериментально]" -#: src/Module/Settings/Account.php:506 +#: src/Module/Settings/Account.php:468 msgid "Requires manual approval of contact requests." msgstr "Требует ручного одобрения запросов на подписку." -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Необязательно) Разрешить этому OpenID входить в этот аккаунт" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 msgid "Publish your profile in your local site directory?" msgstr "Опубликовать ваш профиль в каталоге вашего сервера?" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9957,94 +9959,94 @@ msgid "" " system settings." msgstr "Ваш профиль будет опубликован в локальном каталоге этого сервера. Данные вашего профиля могут быть доступны публично в зависимости от настроек." -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:491 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "Ваш профиль так же будет опубликован в глобальных каталогах Френдики (напр. %s)." -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:504 msgid "Account Settings" msgstr "Настройки аккаунта" -#: src/Module/Settings/Account.php:543 +#: src/Module/Settings/Account.php:505 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Ваш адрес: '%s' или '%s'." -#: src/Module/Settings/Account.php:550 +#: src/Module/Settings/Account.php:512 msgid "Password Settings" msgstr "Смена пароля" -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Leave password fields blank unless changing" msgstr "Оставьте поля пароля пустыми, если он не изменяется" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Password:" msgstr "Пароль:" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Your current password to confirm the changes of the email address" msgstr "Ваш текущий пароль для подтверждения смены адреса почты" -#: src/Module/Settings/Account.php:557 +#: src/Module/Settings/Account.php:519 msgid "Delete OpenID URL" msgstr "Удалить ссылку OpenID" -#: src/Module/Settings/Account.php:559 +#: src/Module/Settings/Account.php:521 msgid "Basic Settings" msgstr "Основные параметры" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:522 #: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "Отображаемое имя:" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:523 msgid "Email Address:" msgstr "Адрес электронной почты:" -#: src/Module/Settings/Account.php:562 +#: src/Module/Settings/Account.php:524 msgid "Your Timezone:" msgstr "Ваш часовой пояс:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "Your Language:" msgstr "Ваш язык:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Выберите язык, на котором вы будете видеть интерфейс Friendica и на котором вы будете получать письма" -#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Account.php:526 msgid "Default Post Location:" msgstr "Местонахождение по умолчанию:" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:527 msgid "Use Browser Location:" msgstr "Использовать определение местоположения браузером:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:529 msgid "Security and Privacy Settings" msgstr "Параметры безопасности и конфиденциальности" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "Maximum Friend Requests/Day:" msgstr "Максимум запросов в друзья в день:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "(to prevent spam abuse)" msgstr "(для предотвращения спама)" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 msgid "Allow your profile to be searchable globally?" msgstr "Сделать ваш профиль доступным для поиска глобально?" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 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 " @@ -10052,43 +10054,43 @@ msgid "" "indexed or not." msgstr "Включите эту настройку, если вы хотите, чтобы другие люди могли легко вас находить. Ваш профиль станет доступным для поиска на других узлах. Так же эта настройка разрешает поисковым системам индексировать ваш профиль." -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Скрыть список ваших контактов/друзей от просмотра в вашем профиле?" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 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:573 +#: src/Module/Settings/Account.php:535 msgid "Hide your public content from anonymous viewers" msgstr "Скрыть ваши публичные записи от анонимных посетителей" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:535 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:574 +#: src/Module/Settings/Account.php:536 msgid "Make public posts unlisted" msgstr "Скрыть публичные записи из общих лент" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:536 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:575 +#: src/Module/Settings/Account.php:537 msgid "Make all posted pictures accessible" msgstr "Сделать все опубликованные изображения доступными" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:537 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 " @@ -10096,227 +10098,213 @@ msgid "" "public on your photo albums though." msgstr "Эта настройка делает все опубликованные изображения доступными по прямой ссылке. Это можно применить для решения проблем с другими социальными сетями, которые не умеют работать с разрешениями доступа для изображений. Непубличные изображения в любом случае не будут доступны для просмотра публично в ваших альбомах." -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "Allow friends to post to your profile page?" msgstr "Разрешить друзьям оставлять сообщения на страницу вашего профиля?" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "Ваши контакты могут оставлять записи на стене вашего профиля. Эти записи будут распространены вашим подписчикам." -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Allow friends to tag your posts?" msgstr "Разрешить друзьям отмечать ваши сообщения?" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Your contacts can add additional tags to your posts." msgstr "Ваши контакты могут добавлять дополнительные теги к вашим записям." -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:540 msgid "Default privacy circle for new contacts" msgstr "Круг по-умолчанию для новых контактов" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:541 msgid "Default privacy circle for new group contacts" msgstr "Круг по-умолчанию для новых групп" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:542 msgid "Default Post Permissions" msgstr "Разрешение на сообщения по умолчанию" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:546 msgid "Expiration settings" msgstr "Очистка старых записей" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "Automatically expire posts after this many days:" msgstr "Автоматическое истекание срока действия сообщения после стольких дней:" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Если пусто, срок действия сообщений не будет ограничен. Сообщения с истекшим сроком действия будут удалены" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "Expire posts" msgstr "Удалять старые записи" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "When activated, posts and comments will be expired." msgstr "Если включено, то старые записи и комментарии будут удаляться." -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "Expire personal notes" msgstr "Удалять персональные заметки" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Если включено, старые личные заметки из вашего профиля будут удаляться." -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "Expire starred posts" msgstr "Удалять избранные записи" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "Добавление записи в избранные защищает её от удаления. Эта настройка выключает эту защиту." -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 msgid "Only expire posts by others" msgstr "Удалять только записи других людей" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 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:592 +#: src/Module/Settings/Account.php:554 msgid "Notification Settings" msgstr "Настройка уведомлений" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:555 msgid "Send a notification email when:" msgstr "Отправлять уведомление по электронной почте, когда:" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:556 msgid "You receive an introduction" msgstr "Вы получили запрос" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:557 msgid "Your introductions are confirmed" msgstr "Ваши запросы подтверждены" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:558 msgid "Someone writes on your profile wall" msgstr "Кто-то пишет на стене вашего профиля" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:559 msgid "Someone writes a followup comment" msgstr "Кто-то пишет последующий комментарий" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:560 msgid "You receive a private message" msgstr "Вы получаете личное сообщение" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:561 msgid "You receive a friend suggestion" msgstr "Вы получили предложение о добавлении в друзья" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:562 msgid "You are tagged in a post" msgstr "Вы отмечены в записи" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:564 msgid "Create a desktop notification when:" msgstr "Показывать уведомление при:" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:565 msgid "Someone tagged you" msgstr "Вас отметили" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:566 msgid "Someone directly commented on your post" msgstr "На вашу запись написали комментарий" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:567 msgid "Someone liked your content" msgstr "Ваша запись кому-то понравилась" -#: src/Module/Settings/Account.php:605 src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:567 src/Module/Settings/Account.php:568 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "Может быть включено только при включении уведомлений о комментариях к вашим записям." -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:568 msgid "Someone shared your content" msgstr "Вашей записью поделились" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:569 msgid "Someone commented in your thread" msgstr "В обсуждении вашей записи написали комментарий" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:570 msgid "Someone commented in a thread where you commented" msgstr "Написали в диалоге, где вы оставляли комментарии" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:571 msgid "Someone commented in a thread where you interacted" msgstr "Написали в диалоге, где вы принимали любое участие" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Activate desktop notifications" msgstr "Активировать уведомления на рабочем столе" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Show desktop popup on new notifications" msgstr "Показывать уведомления на рабочем столе" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:577 msgid "Text-only notification emails" msgstr "Только текстовые письма" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:579 msgid "Send text only notification emails, without the html part" msgstr "Отправлять только текстовые уведомления, без HTML" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:583 msgid "Show detailled notifications" msgstr "Показывать подробные уведомления" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:585 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "По-умолчанию уведомления группируются в одно для каждой записи. Эта настройка показывает все уведомления по отдельности." -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:589 msgid "Show notifications of ignored contacts" msgstr "Показывать уведомления игнорируемых контактов" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:591 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:632 +#: src/Module/Settings/Account.php:594 msgid "Advanced Account/Page Type Settings" msgstr "Расширенные настройки учётной записи" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:595 msgid "Change the behaviour of this account for special situations" msgstr "Измените поведение этого аккаунта в специальных ситуациях" -#: src/Module/Settings/Account.php:636 -msgid "Import Contacts" -msgstr "Импорт контактов" - -#: src/Module/Settings/Account.php:637 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "Загрузите файл CSV, который содержит адреса ваших контактов в первой колонке. Вы можете экспортировать его из вашей старой учётной записи." - -#: src/Module/Settings/Account.php:638 -msgid "Upload File" -msgstr "Загрузить файл" - -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:598 msgid "Relocate" msgstr "Перемещение" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:599 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:643 +#: src/Module/Settings/Account.php:600 msgid "Resend relocate message to contacts" msgstr "Отправить перемещённые сообщения контактам" @@ -10481,214 +10469,232 @@ msgstr "Удалить из списка каналов" msgid "Delete entry from the channel list?" msgstr "Удалить запись из списка каналов?" -#: src/Module/Settings/Connectors.php:108 +#: src/Module/Settings/Connectors.php:107 msgid "Failed to connect with email account using the settings provided." msgstr "Не удалось подключиться к аккаунту e-mail, используя указанные настройки." -#: src/Module/Settings/Connectors.php:155 -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:150 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:149 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "Встроенная поддержка для %s включена" -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:150 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "Встроенная поддержка для %s отключена" -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:161 msgid "Email access is disabled on this site." msgstr "Доступ эл. почты отключен на этом сайте." -#: src/Module/Settings/Connectors.php:182 -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:176 +#: src/Module/Settings/Connectors.php:226 msgid "None" msgstr "Ничего" -#: src/Module/Settings/Connectors.php:186 +#: src/Module/Settings/Connectors.php:180 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "По-умолчанию (Mastodon будет показывать запись как заголовок и ссылку на статью)" -#: src/Module/Settings/Connectors.php:187 +#: src/Module/Settings/Connectors.php:181 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "Показывать выдержку (Mastodon и некоторые другие платформы покажут это как предупреждение о контенте)" -#: src/Module/Settings/Connectors.php:188 +#: src/Module/Settings/Connectors.php:182 msgid "Embed the title in the body" msgstr "Добавлять заголовок в текст записи" -#: src/Module/Settings/Connectors.php:199 +#: src/Module/Settings/Connectors.php:193 msgid "General Social Media Settings" msgstr "Общие настройки социальных медиа" -#: src/Module/Settings/Connectors.php:202 +#: src/Module/Settings/Connectors.php:196 msgid "Followed content scope" msgstr "Какие записи показывать в ленте" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:198 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "По-умолчанию в вашу ленту попадают и записи, которые ваши контакты не создали сами, а лишь прокомментировали. Вы можете отключить это, либо наоборот расширить до загрузки записей, которым ваши контакты поставили отметку \"нравится\"." -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:200 msgid "Only conversations my follows started" msgstr "Только записи, созданные моими контактами" -#: src/Module/Settings/Connectors.php:207 +#: src/Module/Settings/Connectors.php:201 msgid "Conversations my follows started or commented on (default)" msgstr "Записи, которые мои контакты создали или прокомментировали (по-умолчанию)" -#: src/Module/Settings/Connectors.php:208 +#: src/Module/Settings/Connectors.php:202 msgid "Any conversation my follows interacted with, including likes" msgstr "Любые записи, с которыми мои контакты взаимодействовали, включая лайки" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "Collapse sensitive posts" msgstr "Сворачивать чувствительные записи" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "Если это включено и запись помечена как \"чувствительная\", она будет отображаться в свёрнутом виде." -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "Enable intelligent shortening" msgstr "Включить умное сокращение" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "Обычно система пытается найти лучшую ссылку для добавления к сокращенной записи. Если эта настройка включена, то каждая сокращенная запись будет указывать на оригинальную запись в Friendica." -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "Enable simple text shortening" msgstr "Включить простое сокращение текста" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "Обычно система обрезает записи на следующей строке. Если эта настройка включена, система будет сокращать записи по достижении лимита символов." -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "Attach the link title" msgstr "Присоединять заголовок ссылок" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Если включено. заголовок добавленной ссылки будет добавлен к записи в Диаспоре как заголовок. Это в основном нужно для контактов \"мой двойник\", которые публикуют содержимое ленты." -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "API: Use spoiler field as title" msgstr "API: Использовать спойлер как заголовок" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "Если включено, поле \"spoiler_text\" в API будет использоваться как заголовок для отдельных записей. Если отключено, то оно будет использоваться как спойлер. Для комментариев оно всегда используется как спойлер." -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "API: Automatically links at the end of the post as attached posts" msgstr "API: Автоматически загружать ссылки в конце записей" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "Если включено, ссылки в конце записей будут обрабатываться так же, как ссылки, добавленные через веб-интерфейс." -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "Article Mode" msgstr "Режим статей" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "Как будут передаваться записи, у которых указан заголовок. Mastodon и похожие платформы не показывают содержимое таких записей, если они созданы в обычном формате (по-умолчанию), оставляя лишь ссылку на них." -#: src/Module/Settings/Connectors.php:218 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "Ваша старая учётная запись ActivityPub/GNU Social" - -#: src/Module/Settings/Connectors.php:218 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "Если вы введете тут вашу старую учетную запись от платформы совместимой с ActivityPub или GNU Social/Statusnet (в виде пользователь@домен), ваши контакты оттуда будут автоматически добавлены. Поле будет очищено когда все контакты будут добавлены." - -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:215 msgid "Email/Mailbox Setup" msgstr "Настройка эл. почты / почтового ящика" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:216 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику." -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:217 msgid "Last successful email check:" msgstr "Последняя успешная проверка электронной почты:" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:219 msgid "IMAP server name:" msgstr "Имя IMAP сервера:" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:220 msgid "IMAP port:" msgstr "Порт IMAP:" -#: src/Module/Settings/Connectors.php:228 +#: src/Module/Settings/Connectors.php:221 msgid "Security:" msgstr "Безопасность:" -#: src/Module/Settings/Connectors.php:229 +#: src/Module/Settings/Connectors.php:222 msgid "Email login name:" msgstr "Логин эл. почты:" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:223 msgid "Email password:" msgstr "Пароль эл. почты:" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:224 msgid "Reply-to address:" msgstr "Адрес для ответа:" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:225 msgid "Send public posts to all email contacts:" msgstr "Отправлять открытые сообщения на все контакты электронной почты:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Action after import:" msgstr "Действие после импорта:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Move to folder" msgstr "Переместить в папку" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:227 msgid "Move to folder:" msgstr "Переместить в папку:" +#: src/Module/Settings/ContactImport.php:63 +msgid "Contact CSV file upload error" +msgstr "Ошибка загрузки CSV с контактами" + +#: src/Module/Settings/ContactImport.php:82 +msgid "Importing Contacts done" +msgstr "Импорт контактов завершён" + +#: src/Module/Settings/ContactImport.php:112 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "Загрузите файл CSV, который содержит адреса ваших контактов в первой колонке. Вы можете экспортировать его из вашей старой учётной записи." + +#: src/Module/Settings/ContactImport.php:113 +msgid "Upload File" +msgstr "Загрузить файл" + +#: src/Module/Settings/ContactImport.php:115 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "Ваша старая учётная запись ActivityPub/GNU Social" + +#: src/Module/Settings/ContactImport.php:115 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "Если вы введете тут вашу старую учетную запись от платформы совместимой с ActivityPub или GNU Social/Statusnet (в виде пользователь@домен), ваши контакты оттуда будут автоматически добавлены. Поле будет очищено когда все контакты будут добавлены." + #: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "Делегирование успешно предоставлено." @@ -11139,42 +11145,42 @@ msgstr "Личные ключевые слова:" msgid "(Used for searching profiles, never shown to others)" msgstr "(Используется для поиска профилей, никогда не показывается другим)" -#: 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/Crop.php:90 +#: src/Module/Settings/Profile/Photo/Crop.php:108 +#: src/Module/Settings/Profile/Photo/Crop.php:126 #: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "Уменьшение размера изображения [%s] не удалось." -#: src/Module/Settings/Profile/Photo/Crop.php:136 +#: src/Module/Settings/Profile/Photo/Crop.php:133 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Перезагрузите страницу с зажатой клавишей \"Shift\" для того, чтобы увидеть свое новое фото немедленно." -#: src/Module/Settings/Profile/Photo/Crop.php:141 +#: src/Module/Settings/Profile/Photo/Crop.php:138 msgid "Unable to process image" msgstr "Не удается обработать изображение" -#: src/Module/Settings/Profile/Photo/Crop.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:157 msgid "Photo not found." msgstr "Фото не найдено." -#: src/Module/Settings/Profile/Photo/Crop.php:182 +#: src/Module/Settings/Profile/Photo/Crop.php:179 msgid "Profile picture successfully updated." msgstr "Картинка профиля успешно обновлена." -#: src/Module/Settings/Profile/Photo/Crop.php:208 -#: src/Module/Settings/Profile/Photo/Crop.php:212 +#: src/Module/Settings/Profile/Photo/Crop.php:205 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Crop Image" msgstr "Обрезать изображение" -#: src/Module/Settings/Profile/Photo/Crop.php:209 +#: src/Module/Settings/Profile/Photo/Crop.php:206 msgid "Please adjust the image cropping for optimum viewing." msgstr "Пожалуйста, настройте обрезку изображения для оптимального просмотра." -#: src/Module/Settings/Profile/Photo/Crop.php:211 +#: src/Module/Settings/Profile/Photo/Crop.php:208 msgid "Use Image As Is" msgstr "Использовать картинку как есть" @@ -11245,17 +11251,17 @@ msgstr "id пользователя: %d" msgid "Your account has been successfully removed. Bye bye!" msgstr "Ваша учётная запись была успешно удалена. Всего хорошего!" -#: src/Module/Settings/RemoveMe.php:116 +#: src/Module/Settings/RemoveMe.php:114 msgid "Remove My Account" msgstr "Удалить мой аккаунт" -#: src/Module/Settings/RemoveMe.php:117 +#: src/Module/Settings/RemoveMe.php:115 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Это позволит полностью удалить ваш аккаунт. Как только это будет сделано, аккаунт восстановлению не подлежит." -#: src/Module/Settings/RemoveMe.php:122 +#: src/Module/Settings/RemoveMe.php:120 msgid "Please enter your password for verification:" msgstr "Пожалуйста, введите свой пароль для проверки:" @@ -11650,11 +11656,11 @@ msgstr "К сожалению, эта запись вам недоступна." msgid "Possible reasons include:" msgstr "Возможные причины этого:" -#: src/Module/Special/HTTPException.php:64 +#: src/Module/Special/HTTPException.php:65 msgid "Stack trace:" msgstr "Stack trace:" -#: src/Module/Special/HTTPException.php:69 +#: src/Module/Special/HTTPException.php:70 #, php-format msgid "Exception thrown in %s:%d" msgstr "Exception thrown in %s:%d" @@ -12439,221 +12445,221 @@ msgstr "Пожалуйста, свяжитесь с отправителем, о msgid "%s posted an update." msgstr "%s отправил/а/ обновление." -#: src/Object/Post.php:124 +#: src/Object/Post.php:125 msgid "Private Message" msgstr "Приватная запись" -#: src/Object/Post.php:128 +#: src/Object/Post.php:129 msgid "Public Message" msgstr "Публичная запись" -#: src/Object/Post.php:132 +#: src/Object/Post.php:133 msgid "Unlisted Message" msgstr "Запись без публикации в общих лентах" -#: src/Object/Post.php:168 +#: src/Object/Post.php:169 msgid "This entry was edited" msgstr "Эта запись была отредактирована" -#: src/Object/Post.php:196 +#: src/Object/Post.php:197 msgid "Connector Message" msgstr "Сообщение-коннектор" -#: src/Object/Post.php:225 src/Object/Post.php:227 +#: src/Object/Post.php:226 src/Object/Post.php:228 msgid "Edit" msgstr "Редактировать" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Delete globally" msgstr "Удалить везде" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Remove locally" msgstr "Убрать для себя" -#: src/Object/Post.php:268 +#: src/Object/Post.php:269 #, php-format msgid "Block %s" msgstr "Заблокировать %s" -#: src/Object/Post.php:273 +#: src/Object/Post.php:274 #, php-format msgid "Ignore %s" msgstr "Игнорировать %s" -#: src/Object/Post.php:278 +#: src/Object/Post.php:279 #, php-format msgid "Collapse %s" msgstr "Сворачивать %s" -#: src/Object/Post.php:282 +#: src/Object/Post.php:283 msgid "Report post" msgstr "Пожаловаться" -#: src/Object/Post.php:293 +#: src/Object/Post.php:294 msgid "Save to folder" msgstr "Сохранить в папку" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will attend" msgstr "Я буду" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will not attend" msgstr "Меня не будет" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I might attend" msgstr "Возможно" -#: src/Object/Post.php:380 +#: src/Object/Post.php:381 msgid "Ignore thread" msgstr "Игнорировать обсуждение" -#: src/Object/Post.php:381 +#: src/Object/Post.php:382 msgid "Unignore thread" msgstr "Не игнорировать обсуждение" -#: src/Object/Post.php:382 +#: src/Object/Post.php:383 msgid "Toggle ignore status" msgstr "Переключить игнорирование" -#: src/Object/Post.php:392 +#: src/Object/Post.php:393 msgid "Add star" msgstr "Добавить в Избранное" -#: src/Object/Post.php:393 +#: src/Object/Post.php:394 msgid "Remove star" msgstr "Убрать из Избранного" -#: src/Object/Post.php:394 +#: src/Object/Post.php:395 msgid "Toggle star status" msgstr "Добавить/убрать из Избранного" -#: src/Object/Post.php:405 +#: src/Object/Post.php:406 msgid "Pin" msgstr "Закрепить" -#: src/Object/Post.php:406 +#: src/Object/Post.php:407 msgid "Unpin" msgstr "Открепить" -#: src/Object/Post.php:407 +#: src/Object/Post.php:408 msgid "Toggle pin status" msgstr "Закрепить/открепить" -#: src/Object/Post.php:410 +#: src/Object/Post.php:411 msgid "Pinned" msgstr "Закреплено" -#: src/Object/Post.php:415 +#: src/Object/Post.php:416 msgid "Add tag" msgstr "Добавить тег" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote share this" msgstr "Поделиться с комментарием" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote Share" msgstr "Цитировать" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare this" msgstr "Поделиться этим с подписчиками" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare" msgstr "Поделиться" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Cancel your Reshare" msgstr "Отменить репост" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Unshare" msgstr "Отменить репост" -#: src/Object/Post.php:478 +#: src/Object/Post.php:479 #, php-format msgid "%s (Received %s)" msgstr "%s (Получено %s)" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Comment this item on your system" msgstr "Прокомментировать это на вашем узле" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Remote comment" msgstr "Загруженный комментарий" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via ..." msgstr "Отправить в ..." -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via external services" msgstr "Поделиться через сторонние сервисы" -#: src/Object/Post.php:513 +#: src/Object/Post.php:514 msgid "Unknown parent" msgstr "Источник неизвестен" -#: src/Object/Post.php:517 +#: src/Object/Post.php:518 #, php-format msgid "in reply to %s" msgstr "в ответ на %s" -#: src/Object/Post.php:519 +#: src/Object/Post.php:520 msgid "Parent is probably private or not federated." msgstr "Источник приватный или не федерируется." -#: src/Object/Post.php:543 +#: src/Object/Post.php:544 msgid "to" msgstr "к" -#: src/Object/Post.php:544 +#: src/Object/Post.php:545 msgid "via" msgstr "через" -#: src/Object/Post.php:545 +#: src/Object/Post.php:546 msgid "Wall-to-Wall" msgstr "Стена-на-Стену" -#: src/Object/Post.php:546 +#: src/Object/Post.php:547 msgid "via Wall-To-Wall:" msgstr "через Стена-на-Стену:" -#: src/Object/Post.php:599 +#: src/Object/Post.php:600 #, php-format msgid "Reply to %s" msgstr "Ответ %s" -#: src/Object/Post.php:602 +#: src/Object/Post.php:603 msgid "More" msgstr "Ещё" -#: src/Object/Post.php:621 +#: src/Object/Post.php:622 msgid "Notifier task is pending" msgstr "Постановка в очередь" -#: src/Object/Post.php:622 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is pending" msgstr "Ожидается отправка адресатам" -#: src/Object/Post.php:623 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is underway" msgstr "Отправка адресатам в процессе" -#: src/Object/Post.php:624 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is mostly done" msgstr "Отправка адресатам почти завершилась" -#: src/Object/Post.php:625 +#: src/Object/Post.php:626 msgid "Delivery to remote servers is done" msgstr "Отправка адресатам завершена" -#: src/Object/Post.php:647 +#: src/Object/Post.php:648 #, php-format msgid "%d comment" msgid_plural "%d comments" @@ -12662,74 +12668,74 @@ msgstr[1] "%d комментариев" msgstr[2] "%d комментариев" msgstr[3] "%d комментариев" -#: src/Object/Post.php:648 +#: src/Object/Post.php:649 msgid "Show more" msgstr "Показать больше" -#: src/Object/Post.php:649 +#: src/Object/Post.php:650 msgid "Show fewer" msgstr "Показать меньше" -#: src/Object/Post.php:686 +#: src/Object/Post.php:687 #, php-format msgid "Reshared by: %s" msgstr "Репост от: %s" -#: src/Object/Post.php:691 +#: src/Object/Post.php:692 #, php-format msgid "Viewed by: %s" msgstr "Просмотрено: %s" -#: src/Object/Post.php:696 +#: src/Object/Post.php:697 #, php-format msgid "Read by: %s" msgstr "Прочитано: %s" -#: src/Object/Post.php:701 +#: src/Object/Post.php:702 #, php-format msgid "Liked by: %s" msgstr "Понравилось: %s" -#: src/Object/Post.php:706 +#: src/Object/Post.php:707 #, php-format msgid "Disliked by: %s" msgstr "Не понравилось: %s" -#: src/Object/Post.php:711 +#: src/Object/Post.php:712 #, php-format msgid "Attended by: %s" msgstr "Присутствуют: %s" -#: src/Object/Post.php:716 +#: src/Object/Post.php:717 #, php-format msgid "Maybe attended by: %s" msgstr "Под вопросом: %s" -#: src/Object/Post.php:721 +#: src/Object/Post.php:722 #, php-format msgid "Not attended by: %s" msgstr "Не присутствуют: %s" -#: src/Object/Post.php:726 +#: src/Object/Post.php:727 #, php-format msgid "Commented by: %s" msgstr "Прокомментировали: %s" -#: src/Object/Post.php:731 +#: src/Object/Post.php:732 #, php-format msgid "Reacted with %s by: %s" msgstr "Отреагировали как %s : %s" -#: src/Object/Post.php:754 +#: src/Object/Post.php:755 #, php-format msgid "Quote shared by: %s" msgstr "Процитировано: %s" -#: src/Protocol/ActivityPub/Receiver.php:557 +#: src/Protocol/ActivityPub/Receiver.php:558 msgid "Chat" msgstr "Чат" -#: src/Protocol/Delivery.php:530 +#: src/Protocol/Delivery.php:531 msgid "(no subject)" msgstr "(нет темы)" @@ -12742,20 +12748,20 @@ msgstr "Каталог %s должен быть доступен для запи msgid "Login failed." msgstr "Войти не удалось." -#: src/Security/Authentication.php:260 +#: src/Security/Authentication.php:261 msgid "Login failed. Please check your credentials." msgstr "Ошибка входа. Пожалуйста, проверьте данные для входа." -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:374 #, php-format msgid "Welcome %s" msgstr "Добро пожаловать, %s" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:375 msgid "Please upload a profile photo." msgstr "Пожалуйста, загрузите фотографию профиля." -#: src/Security/OpenWebAuth.php:149 +#: src/Security/OpenWebAuth.php:150 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s приветствует %2$s" diff --git a/view/lang/ru/strings.php b/view/lang/ru/strings.php index 817f657728..6dd888b946 100644 --- a/view/lang/ru/strings.php +++ b/view/lang/ru/strings.php @@ -1444,6 +1444,7 @@ $a->strings['Social Networks'] = 'Социальные сети'; $a->strings['Manage Accounts'] = 'Управление учётными записями'; $a->strings['Connected apps'] = 'Подключенные приложения'; $a->strings['Remote servers'] = 'Другие серверы'; +$a->strings['Import Contacts'] = 'Импорт контактов'; $a->strings['Export personal data'] = 'Экспорт личных данных'; $a->strings['Remove account'] = 'Удалить аккаунт'; $a->strings['The post was created'] = 'Запись создана'; @@ -2250,8 +2251,6 @@ $a->strings['Wrong Password.'] = 'Неправильный пароль'; $a->strings['Invalid email.'] = 'Неправильный адрес почты'; $a->strings['Cannot change to that email.'] = 'Нельзя установить этот адрес почты'; $a->strings['Settings were not updated.'] = 'Настройки не были изменены.'; -$a->strings['Contact CSV file upload error'] = 'Ошибка загрузки CSV с контактами'; -$a->strings['Importing Contacts done'] = 'Импорт контактов завершён'; $a->strings['Relocate message has been send to your contacts'] = 'Перемещённое сообщение было отправлено списку контактов'; $a->strings['Unable to find your profile. Please contact your admin.'] = 'Не получается найти ваш профиль. Пожалуйста свяжитесь с администратором.'; $a->strings['Account for a service that automatically shares content based on user defined channels.'] = 'Учётная запись, которая автоматически публикует контент из каналов, созданных пользователем.'; @@ -2347,9 +2346,6 @@ $a->strings['Show notifications of ignored contacts'] = 'Показывать у $a->strings['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.'] = 'Вы не видите записи от игнорируемых контактов, но вы видите их комментарии. Эта настройка определяет, хотите ли вы получать уведомления от действий игнорируемых контактов или нет.'; $a->strings['Advanced Account/Page Type Settings'] = 'Расширенные настройки учётной записи'; $a->strings['Change the behaviour of this account for special situations'] = 'Измените поведение этого аккаунта в специальных ситуациях'; -$a->strings['Import Contacts'] = 'Импорт контактов'; -$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Загрузите файл CSV, который содержит адреса ваших контактов в первой колонке. Вы можете экспортировать его из вашей старой учётной записи.'; -$a->strings['Upload File'] = 'Загрузить файл'; $a->strings['Relocate'] = 'Перемещение'; $a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'Если вы переместили эту анкету с другого сервера, и некоторые из ваших контактов не получили ваши обновления, попробуйте нажать эту кнопку.'; $a->strings['Resend relocate message to contacts'] = 'Отправить перемещённые сообщения контактам'; @@ -2417,8 +2413,6 @@ $a->strings['API: Automatically links at the end of the post as attached posts'] $a->strings['When activated, added links at the end of the post react the same way as added links in the web interface.'] = 'Если включено, ссылки в конце записей будут обрабатываться так же, как ссылки, добавленные через веб-интерфейс.'; $a->strings['Article Mode'] = 'Режим статей'; $a->strings['Controls how posts with titles are transmitted. Mastodon and its forks don\'t display the content of these posts if the post is created in the correct (default) way.'] = 'Как будут передаваться записи, у которых указан заголовок. Mastodon и похожие платформы не показывают содержимое таких записей, если они созданы в обычном формате (по-умолчанию), оставляя лишь ссылку на них.'; -$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Ваша старая учётная запись ActivityPub/GNU Social'; -$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Если вы введете тут вашу старую учетную запись от платформы совместимой с ActivityPub или GNU Social/Statusnet (в виде пользователь@домен), ваши контакты оттуда будут автоматически добавлены. Поле будет очищено когда все контакты будут добавлены.'; $a->strings['Email/Mailbox Setup'] = 'Настройка эл. почты / почтового ящика'; $a->strings['If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox.'] = 'Если вы хотите общаться с Email контактами, используя этот сервис (по желанию), пожалуйста, уточните, как подключиться к вашему почтовому ящику.'; $a->strings['Last successful email check:'] = 'Последняя успешная проверка электронной почты:'; @@ -2432,6 +2426,12 @@ $a->strings['Send public posts to all email contacts:'] = 'Отправлять $a->strings['Action after import:'] = 'Действие после импорта:'; $a->strings['Move to folder'] = 'Переместить в папку'; $a->strings['Move to folder:'] = 'Переместить в папку:'; +$a->strings['Contact CSV file upload error'] = 'Ошибка загрузки CSV с контактами'; +$a->strings['Importing Contacts done'] = 'Импорт контактов завершён'; +$a->strings['Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account.'] = 'Загрузите файл CSV, который содержит адреса ваших контактов в первой колонке. Вы можете экспортировать его из вашей старой учётной записи.'; +$a->strings['Upload File'] = 'Загрузить файл'; +$a->strings['Your legacy ActivityPub/GNU Social account'] = 'Ваша старая учётная запись ActivityPub/GNU Social'; +$a->strings['If you enter your old account name from an ActivityPub based system or your GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done.'] = 'Если вы введете тут вашу старую учетную запись от платформы совместимой с ActivityPub или GNU Social/Statusnet (в виде пользователь@домен), ваши контакты оттуда будут автоматически добавлены. Поле будет очищено когда все контакты будут добавлены.'; $a->strings['Delegation successfully granted.'] = 'Делегирование успешно предоставлено.'; $a->strings['Parent user not found, unavailable or password doesn\'t match.'] = 'Родительский пользователь не найден, недоступен или пароль не совпадает.'; $a->strings['Delegation successfully revoked.'] = 'Делегирование успешно отменено.'; diff --git a/view/lang/sv/messages.po b/view/lang/sv/messages.po index 54f282d543..468382af27 100644 --- a/view/lang/sv/messages.po +++ b/view/lang/sv/messages.po @@ -14,7 +14,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: Viktor Nilsson, 2022-2023\n" "Language-Team: Swedish (http://app.transifex.com/Friendica/friendica/language/sv/)\n" @@ -24,34 +24,34 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\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 "Hittar inte det ursprungliga inlägget." -#: mod/item.php:127 +#: mod/item.php:126 msgid "Post updated." msgstr "Inlägget uppdaterades." -#: mod/item.php:192 mod/item.php:196 +#: mod/item.php:191 mod/item.php:195 msgid "Item wasn't stored." msgstr "Objektet lagrades inte." -#: mod/item.php:206 +#: mod/item.php:205 msgid "Item couldn't be fetched." msgstr "Objektet kunde inte hämtas." -#: mod/item.php:250 mod/item.php:254 +#: mod/item.php:249 mod/item.php:253 msgid "Empty post discarded." msgstr "Tomt inlägg. Inte sparat." -#: 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 "Hittar inte." -#: 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 @@ -62,7 +62,7 @@ msgstr "Hittar inte." #: 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 @@ -71,13 +71,15 @@ msgstr "Hittar inte." #: 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 @@ -86,15 +88,15 @@ msgstr "Hittar inte." msgid "Permission denied." msgstr "Åtkomst nekad." -#: mod/lostpass.php:28 +#: mod/lostpass.php:27 msgid "No valid account found." msgstr "Inget giltigt konto hittades." -#: mod/lostpass.php:40 +#: mod/lostpass.php:39 msgid "Password reset request issued. Check your email." msgstr "Nytt lösenord har begärts. Kolla din mail." -#: mod/lostpass.php:46 +#: mod/lostpass.php:45 #, php-format msgid "" "\n" @@ -110,7 +112,7 @@ msgid "" "\t\tissued this request." msgstr "\n\t\tHej %1$s,\n\t\t\tNågon begärde nyligen att \"%2$s\" skulle återställa ditt lösenord.\n\t\tFör att utföra denna begäran, vänligen besök länken nedan eller kopiera den till din webläsare.\n\n\t\tOm du INTE begärde återställning av ditt lösenord så ska du INTE följa länken, utan ignorera detta mail. Denna begäran om återställning blir snart ogiltig.\n\n\t\tDitt lösenord kommer inte att återställas om vi inte kan verifiera att det var du som begärde det." -#: mod/lostpass.php:57 +#: mod/lostpass.php:56 #, php-format msgid "" "\n" @@ -127,70 +129,70 @@ msgid "" "\t\tLogin Name:\t%3$s" msgstr "\n\t\tFölj denna länk snart för att bekräfta din identitet:\n\n\t\t%1$s\n\n\t\tDu kommer sedan att få ett mail med det nya lösenordet.\n\t\tDu kan ändra det lösenordet från dina konto-inställningar efter att du loggat in.\n\n\t\tDina inloggningsuppgifter:\n\n\t\tWeb-plats:\t%2$s\n\t\tAnvändarnamn:\t%3$s" -#: mod/lostpass.php:72 +#: mod/lostpass.php:71 #, php-format msgid "Password reset requested at %s" msgstr "Nytt lösenord på %s har begärts" -#: mod/lostpass.php:88 +#: mod/lostpass.php:87 msgid "" "Request could not be verified. (You may have previously submitted it.) " "Password reset failed." msgstr "Begäran kunde inte verifieras. (Du kanske redan skickat den?) Det gick inte att byta lösenord." -#: mod/lostpass.php:101 +#: mod/lostpass.php:100 msgid "Request has expired, please make a new one." msgstr "Förfrågningen har slutat gälla, vänligen gör en ny." -#: mod/lostpass.php:116 +#: mod/lostpass.php:115 msgid "Forgot your Password?" msgstr "Glömt lösenordet?" -#: 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 "Ange din e-postadress för att få ett nytt lösenord. Du kommer att få ett meddelande med vidare instruktioner via e-post." -#: 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 "Användarnamn eller e-post:" -#: mod/lostpass.php:119 +#: mod/lostpass.php:118 msgid "Reset" msgstr "Skicka" -#: mod/lostpass.php:134 src/Module/Security/Login.php:161 +#: mod/lostpass.php:133 src/Module/Security/Login.php:161 msgid "Password Reset" msgstr "Glömt lösenordet?" -#: mod/lostpass.php:135 +#: mod/lostpass.php:134 msgid "Your password has been reset as requested." msgstr "Nu har du fått ett nytt lösenord." -#: mod/lostpass.php:136 +#: mod/lostpass.php:135 msgid "Your new password is" msgstr "Det nya lösenordet är" -#: mod/lostpass.php:137 +#: mod/lostpass.php:136 msgid "Save or copy your new password - and then" msgstr "Spara eller kopiera lösenordet och" -#: mod/lostpass.php:138 +#: mod/lostpass.php:137 msgid "click here to login" msgstr "klicka här för att logga in" -#: mod/lostpass.php:139 +#: mod/lostpass.php:138 msgid "" "Your password may be changed from the Settings page after " "successful login." msgstr "När du loggat in kan du byta lösenord på sidan Inställningar." -#: mod/lostpass.php:143 +#: mod/lostpass.php:142 msgid "Your password has been reset." msgstr "Ditt lösenord har återställts." -#: mod/lostpass.php:146 +#: mod/lostpass.php:145 #, php-format msgid "" "\n" @@ -201,7 +203,7 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:152 +#: mod/lostpass.php:151 #, php-format msgid "" "\n" @@ -215,7 +217,7 @@ msgid "" "\t\t" msgstr "" -#: mod/lostpass.php:164 +#: mod/lostpass.php:163 #, php-format msgid "Your password has been changed at %s" msgstr "Ditt lösenord ändrades den %s" @@ -279,11 +281,11 @@ msgstr "Till:" msgid "Subject:" msgstr "Rubrik:" -#: 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 "Meddelande:" -#: 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 "Ladda upp bild" @@ -292,16 +294,16 @@ msgstr "Ladda upp bild" msgid "Insert web link" msgstr "Infoga länk" -#: 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 "Var god vänta" -#: 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 @@ -309,7 +311,7 @@ msgstr "Var god vänta" #: 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 @@ -318,7 +320,7 @@ msgstr "Var god vänta" #: 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" @@ -376,396 +378,396 @@ msgid_plural "%d messages" msgstr[0] "%d meddelande" msgstr[1] "%d meddelanden" -#: mod/notes.php:40 src/Module/BaseProfile.php:93 +#: mod/notes.php:41 src/Module/BaseProfile.php:93 msgid "Personal Notes" msgstr "Personliga anteckningar" -#: mod/notes.php:44 +#: mod/notes.php:45 msgid "Personal notes are visible only by yourself." msgstr "Personliga anteckningar kan endast ses av dig själv." -#: 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 "Spara" -#: 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 "Användaren hittades inte." -#: 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 "Fotoalbum" -#: 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 "Nyligen tillagda bilder" -#: 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 "Ladda upp bilder" -#: 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 "alla" -#: mod/photos.php:142 +#: mod/photos.php:140 msgid "Contact information unavailable" msgstr "Kommer inte åt kontaktuppgifter." -#: mod/photos.php:171 +#: mod/photos.php:169 msgid "Album not found." msgstr "Albumet finns inte." -#: mod/photos.php:227 +#: mod/photos.php:225 msgid "Album successfully deleted" msgstr "Borttagningen av albumet lyckades" -#: mod/photos.php:229 +#: mod/photos.php:227 msgid "Album was empty." msgstr "Albumet var tomt." -#: mod/photos.php:260 +#: mod/photos.php:258 msgid "Failed to delete the photo." msgstr "Borttagningen av fotot misslyckades." -#: mod/photos.php:504 +#: mod/photos.php:502 msgid "a photo" msgstr "ett foto" -#: mod/photos.php:504 +#: mod/photos.php:502 #, php-format msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s taggades i %2$s av %3$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 "Publik åtkomst nekades." -#: mod/photos.php:546 +#: mod/photos.php:544 msgid "No photos selected" msgstr "Inga bilder har valts" -#: mod/photos.php:674 +#: mod/photos.php:672 #, php-format msgid "The maximum accepted image size is %s" msgstr "" -#: mod/photos.php:681 +#: mod/photos.php:679 msgid "Upload Photos" msgstr "Ladda upp bilder" -#: mod/photos.php:685 mod/photos.php:774 +#: mod/photos.php:683 mod/photos.php:772 msgid "New album name: " msgstr "Nytt album med namn: " -#: mod/photos.php:686 +#: mod/photos.php:684 msgid "or select existing album:" msgstr "eller välj befintligt album:" -#: mod/photos.php:687 +#: mod/photos.php:685 msgid "Do not show a status post for this upload" msgstr "Visa inte ett status-inlägg för den här uppladdningen" -#: 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 "Åtkomst" -#: mod/photos.php:755 +#: mod/photos.php:753 msgid "Do you really want to delete this photo album and all its photos?" msgstr "Vill du verkligen ta bort det här fotoalbumet och alla dess foton?" -#: mod/photos.php:756 mod/photos.php:779 +#: mod/photos.php:754 mod/photos.php:777 msgid "Delete Album" msgstr "Ta bort album" -#: 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 "Avbryt" -#: mod/photos.php:783 +#: mod/photos.php:781 msgid "Edit Album" msgstr "Redigera album" -#: mod/photos.php:784 +#: mod/photos.php:782 msgid "Drop Album" msgstr "Släpp albumet" -#: mod/photos.php:788 +#: mod/photos.php:786 msgid "Show Newest First" msgstr "Visa nyaste först" -#: mod/photos.php:790 +#: mod/photos.php:788 msgid "Show Oldest First" msgstr "Visa äldsta först" -#: mod/photos.php:811 src/Module/Profile/Photos.php:335 +#: mod/photos.php:809 src/Module/Profile/Photos.php:343 msgid "View Photo" msgstr "Visa bild" -#: mod/photos.php:843 +#: mod/photos.php:841 msgid "Permission denied. Access to this item may be restricted." msgstr "Tillståndet nekades. Åtkomst till det här objektet kan vara begränsad." -#: mod/photos.php:845 +#: mod/photos.php:843 msgid "Photo not available" msgstr "Bilden är inte tillgänglig" -#: mod/photos.php:855 +#: mod/photos.php:853 msgid "Do you really want to delete this photo?" msgstr "Vill du verkligen ta bort det här fotot?" -#: mod/photos.php:856 mod/photos.php:1056 +#: mod/photos.php:854 mod/photos.php:1054 msgid "Delete Photo" msgstr "Ta bort bild" -#: mod/photos.php:954 +#: mod/photos.php:952 msgid "View photo" msgstr "Visa fotot" -#: mod/photos.php:956 +#: mod/photos.php:954 msgid "Edit photo" msgstr "Hantera bild" -#: mod/photos.php:957 +#: mod/photos.php:955 msgid "Delete photo" msgstr "Ta bort fotot" -#: mod/photos.php:958 +#: mod/photos.php:956 msgid "Use as profile photo" msgstr "Använd som ett profilfoto" -#: mod/photos.php:965 +#: mod/photos.php:963 msgid "Private Photo" msgstr "Privat foto" -#: mod/photos.php:971 +#: mod/photos.php:969 msgid "View Full Size" msgstr "Visa fullstor" -#: mod/photos.php:1024 +#: mod/photos.php:1022 msgid "Tags: " msgstr "Taggar: " -#: mod/photos.php:1027 +#: mod/photos.php:1025 msgid "[Select tags to remove]" msgstr "[Välj taggar att ta bort]" -#: mod/photos.php:1042 +#: mod/photos.php:1040 msgid "New album name" msgstr "Nytt album med namn" -#: mod/photos.php:1043 +#: mod/photos.php:1041 msgid "Caption" msgstr "Caption" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "Add a Tag" msgstr "Lägg till tagg" -#: mod/photos.php:1044 +#: mod/photos.php:1042 msgid "" "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping" msgstr "Exempel: @adam, @Anna_Andersson, @johan@exempel.com, #Stockholm, #camping" -#: mod/photos.php:1045 +#: mod/photos.php:1043 msgid "Do not rotate" msgstr "Rotera inte" -#: mod/photos.php:1046 +#: mod/photos.php:1044 msgid "Rotate CW (right)" msgstr "Rotera medurs (höger)" -#: mod/photos.php:1047 +#: mod/photos.php:1045 msgid "Rotate CCW (left)" msgstr "Rotera Moturs (vänster)" -#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: mod/photos.php:1091 mod/photos.php:1147 mod/photos.php:1227 #: src/Module/Contact.php:600 src/Module/Item/Compose.php:184 -#: src/Object/Post.php:1142 +#: src/Object/Post.php:1143 msgid "This is you" msgstr "Det här är du" -#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231 -#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:598 -#: src/Object/Post.php:1144 +#: mod/photos.php:1093 mod/photos.php:1149 mod/photos.php:1229 +#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:599 +#: src/Object/Post.php:1145 msgid "Comment" msgstr "Kommentera" -#: mod/photos.php:1097 mod/photos.php:1153 mod/photos.php:1233 -#: src/Content/Conversation.php:401 src/Module/Calendar/Event/Form.php:234 +#: 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 -#: src/Object/Post.php:1158 +#: src/Object/Post.php:1159 msgid "Preview" msgstr "Förhandsgranskning" -#: mod/photos.php:1098 src/Content/Conversation.php:355 -#: src/Module/Post/Edit.php:121 src/Object/Post.php:1146 +#: mod/photos.php:1096 src/Content/Conversation.php:357 +#: src/Module/Post/Edit.php:121 src/Object/Post.php:1147 msgid "Loading..." msgstr "Laddar..." -#: mod/photos.php:1190 src/Content/Conversation.php:1485 -#: src/Object/Post.php:260 +#: mod/photos.php:1188 src/Content/Conversation.php:1487 +#: src/Object/Post.php:261 msgid "Select" msgstr "Välj" -#: mod/photos.php:1191 src/Content/Conversation.php:1486 -#: 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:233 +#: 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 +#: src/Module/Settings/Connectors.php:226 #: src/Module/Settings/Server/Index.php:95 msgid "Delete" msgstr "Ta bort" -#: mod/photos.php:1252 src/Object/Post.php:426 +#: mod/photos.php:1250 src/Object/Post.php:427 msgid "Like" msgstr "Gilla" -#: mod/photos.php:1253 src/Object/Post.php:426 +#: mod/photos.php:1251 src/Object/Post.php:427 msgid "I like this (toggle)" msgstr "Jag gillar det här (växla)" -#: mod/photos.php:1254 src/Object/Post.php:427 +#: mod/photos.php:1252 src/Object/Post.php:428 msgid "Dislike" msgstr "Ogilla" -#: mod/photos.php:1256 src/Object/Post.php:427 +#: mod/photos.php:1254 src/Object/Post.php:428 msgid "I don't like this (toggle)" msgstr "Jag ogillar det här (växla)" -#: mod/photos.php:1278 +#: mod/photos.php:1276 msgid "Map" msgstr "Karta" -#: src/App.php:467 +#: src/App.php:255 msgid "Apologies but the website is unavailable at the moment." msgstr "Ursäkta, men hemsidan är inte tillgänglig för tillfället. " -#: src/App/Page.php:237 +#: src/App/Page.php:241 msgid "Delete this item?" msgstr "Ta bort?" -#: src/App/Page.php:238 +#: src/App/Page.php:242 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:239 +#: src/App/Page.php:243 msgid "" "Ignore this author? You won't be able to see their posts and their " "notifications." msgstr "" -#: src/App/Page.php:240 +#: src/App/Page.php:244 msgid "Collapse this author's posts?" msgstr "" -#: src/App/Page.php:241 +#: src/App/Page.php:245 msgid "Ignore this author's server?" msgstr "" -#: src/App/Page.php:242 src/Module/Settings/Server/Action.php:47 +#: src/App/Page.php:246 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:244 +#: src/App/Page.php:248 msgid "Like not successful" msgstr "" -#: src/App/Page.php:245 +#: src/App/Page.php:249 msgid "Dislike not successful" msgstr "" -#: src/App/Page.php:246 +#: src/App/Page.php:250 msgid "Sharing not successful" msgstr "" -#: src/App/Page.php:247 +#: src/App/Page.php:251 msgid "Attendance unsuccessful" msgstr "" -#: src/App/Page.php:248 +#: src/App/Page.php:252 msgid "Backend error" msgstr "" -#: src/App/Page.php:249 +#: src/App/Page.php:253 msgid "Network error" msgstr "" -#: src/App/Page.php:252 +#: src/App/Page.php:256 msgid "Drop files here to upload" msgstr "" -#: src/App/Page.php:253 +#: src/App/Page.php:257 msgid "Your browser does not support drag and drop file uploads." msgstr "" -#: src/App/Page.php:254 +#: src/App/Page.php:258 msgid "" "Please use the fallback form below to upload your files like in the olden " "days." msgstr "" -#: src/App/Page.php:255 +#: src/App/Page.php:259 msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB." msgstr "" -#: src/App/Page.php:256 +#: src/App/Page.php:260 msgid "You can't upload files of this type." msgstr "" -#: src/App/Page.php:257 +#: src/App/Page.php:261 msgid "Server responded with {{statusCode}} code." msgstr "" -#: src/App/Page.php:258 +#: src/App/Page.php:262 msgid "Cancel upload" msgstr "" -#: src/App/Page.php:259 +#: src/App/Page.php:263 msgid "Upload canceled." msgstr "" -#: src/App/Page.php:260 +#: src/App/Page.php:264 msgid "Are you sure you want to cancel this upload?" msgstr "" -#: src/App/Page.php:261 +#: src/App/Page.php:265 msgid "Remove file" msgstr "" -#: src/App/Page.php:262 +#: src/App/Page.php:266 msgid "You can't upload any more files." msgstr "" -#: src/App/Page.php:346 +#: src/App/Page.php:350 msgid "toggle mobile" msgstr "växla mobil" @@ -798,7 +800,7 @@ msgid "All contacts" msgstr "Alla kontakter" #: src/BaseModule.php:425 src/Content/Conversation/Factory/Channel.php:32 -#: src/Content/Widget.php:254 src/Core/ACL.php:181 src/Module/Contact.php:395 +#: src/Content/Widget.php:254 src/Core/ACL.php:182 src/Module/Contact.php:395 #: src/Module/Privacy/PermissionTooltip.php:150 #: src/Module/Privacy/PermissionTooltip.php:172 #: src/Module/Settings/Channels.php:146 @@ -840,7 +842,7 @@ msgstr "" msgid "The contact entries have been archived" msgstr "Kontaktuppgifterna har arkiverats" -#: src/Console/ClearAvatarCache.php:73 +#: src/Console/ClearAvatarCache.php:74 msgid "" "The avatar cache needs to be disabled in local.config.php to use this " "command." @@ -926,22 +928,22 @@ msgstr "" msgid "no resource in photo %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:123 +#: src/Console/MoveToAvatarCache.php:127 #, php-format msgid "no photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:132 +#: src/Console/MoveToAvatarCache.php:136 #, php-format msgid "no image data for photo with id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:141 +#: src/Console/MoveToAvatarCache.php:145 #, php-format msgid "invalid image for id %s" msgstr "" -#: src/Console/MoveToAvatarCache.php:154 +#: src/Console/MoveToAvatarCache.php:158 #, php-format msgid "Quit on invalid photo %s" msgstr "" @@ -971,11 +973,14 @@ msgstr "" msgid "Enter user nickname: " msgstr "Ange smeknamn för användaren:" -#: src/Console/User.php:168 src/Model/User.php:831 +#: src/Console/User.php:168 src/Model/User.php:830 #: src/Module/Api/Twitter/ContactEndpoint.php:62 -#: 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/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/Module/Moderation/Users/Pending.php:53 msgid "User not found" msgstr "Användaren hittades inte" @@ -985,12 +990,12 @@ msgid "Enter new password: " msgstr "Ange nytt lösenord:" #: src/Console/User.php:196 src/Module/Security/PasswordTooLong.php:55 -#: src/Module/Settings/Account.php:59 +#: src/Module/Settings/Account.php:57 msgid "Password update failed. Please try again." msgstr "Det blev fel när lösenordet skulle ändras. Försök igen." #: src/Console/User.php:199 src/Module/Security/PasswordTooLong.php:58 -#: src/Module/Settings/Account.php:62 +#: src/Module/Settings/Account.php:60 msgid "Password changed." msgstr "Lösenordet har ändrats." @@ -1071,86 +1076,86 @@ msgstr "Varje vecka" msgid "Monthly" msgstr "Varje månad" -#: src/Content/ContactSelector.php:118 +#: src/Content/ContactSelector.php:117 msgid "DFRN" msgstr "DFRN" -#: src/Content/ContactSelector.php:119 +#: src/Content/ContactSelector.php:118 msgid "OStatus" msgstr "OStatus" -#: src/Content/ContactSelector.php:120 +#: src/Content/ContactSelector.php:119 msgid "RSS/Atom" msgstr "RSS/Atom" -#: src/Content/ContactSelector.php:121 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Content/ContactSelector.php:120 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:58 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 msgid "Email" msgstr "E-postadress" -#: src/Content/ContactSelector.php:122 src/Module/Debug/Babel.php:273 +#: src/Content/ContactSelector.php:121 src/Module/Debug/Babel.php:273 msgid "Diaspora" msgstr "Diaspora" -#: src/Content/ContactSelector.php:123 +#: src/Content/ContactSelector.php:122 msgid "Zot!" msgstr "Zot!" -#: src/Content/ContactSelector.php:124 +#: src/Content/ContactSelector.php:123 msgid "LinkedIn" msgstr "LinkedIn" -#: src/Content/ContactSelector.php:125 +#: src/Content/ContactSelector.php:124 msgid "XMPP/IM" msgstr "XMPP/IM" -#: src/Content/ContactSelector.php:126 +#: src/Content/ContactSelector.php:125 msgid "MySpace" msgstr "MySpace" -#: src/Content/ContactSelector.php:127 +#: src/Content/ContactSelector.php:126 msgid "Google+" msgstr "Google+" -#: src/Content/ContactSelector.php:128 +#: src/Content/ContactSelector.php:127 msgid "pump.io" msgstr "pump.io" -#: src/Content/ContactSelector.php:129 +#: src/Content/ContactSelector.php:128 msgid "Twitter" msgstr "Twitter" -#: src/Content/ContactSelector.php:130 +#: src/Content/ContactSelector.php:129 msgid "Discourse" msgstr "Discourse" -#: src/Content/ContactSelector.php:131 +#: src/Content/ContactSelector.php:130 msgid "Diaspora Connector" msgstr "" -#: src/Content/ContactSelector.php:132 +#: src/Content/ContactSelector.php:131 msgid "GNU Social Connector" msgstr "" -#: src/Content/ContactSelector.php:133 +#: src/Content/ContactSelector.php:132 msgid "ActivityPub" msgstr "ActivityPub" -#: src/Content/ContactSelector.php:134 +#: src/Content/ContactSelector.php:133 msgid "pnut" msgstr "pnut" -#: src/Content/ContactSelector.php:135 +#: src/Content/ContactSelector.php:134 msgid "Tumblr" msgstr "" -#: src/Content/ContactSelector.php:136 +#: src/Content/ContactSelector.php:135 msgid "Bluesky" msgstr "" @@ -1159,374 +1164,374 @@ msgstr "" msgid "%s (via %s)" msgstr "" -#: src/Content/Conversation.php:213 +#: src/Content/Conversation.php:215 msgid "and" msgstr "och" -#: src/Content/Conversation.php:216 +#: src/Content/Conversation.php:218 #, php-format msgid "and %d other people" msgstr "och %d andra" -#: src/Content/Conversation.php:222 +#: src/Content/Conversation.php:224 #, php-format msgid "%2$s likes this." msgid_plural "%2$s like this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:224 +#: src/Content/Conversation.php:226 #, 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:226 +#: src/Content/Conversation.php:228 #, php-format msgid "%2$s attends." msgid_plural "%2$s attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:228 +#: src/Content/Conversation.php:230 #, php-format msgid "%2$s doesn't attend." msgid_plural "%2$s don't attend." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:230 +#: src/Content/Conversation.php:232 #, php-format msgid "%2$s attends maybe." msgid_plural "%2$s attend maybe." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:232 +#: src/Content/Conversation.php:234 #, php-format msgid "%2$s reshared this." msgid_plural "%2$s reshared this." msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:263 +#: src/Content/Conversation.php:265 #, php-format msgid " likes this" msgid_plural " like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:266 +#: src/Content/Conversation.php:268 #, php-format msgid " doesn't like this" msgid_plural " don't like this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:269 +#: src/Content/Conversation.php:271 #, php-format msgid " attends" msgid_plural " attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:272 +#: src/Content/Conversation.php:274 #, php-format msgid " doesn't attend" msgid_plural " don't attend" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:275 +#: src/Content/Conversation.php:277 #, php-format msgid " attends maybe" msgid_plural " attend maybe" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:278 +#: src/Content/Conversation.php:280 #, php-format msgid " reshared this" msgid_plural " reshared this" msgstr[0] "" msgstr[1] "" -#: src/Content/Conversation.php:324 +#: src/Content/Conversation.php:326 msgid "Visible to everybody" msgstr "Synlig för alla" -#: src/Content/Conversation.php:325 src/Module/Item/Compose.php:196 -#: src/Object/Post.php:1157 +#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196 +#: src/Object/Post.php:1158 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Vänligen fyll i URL till en bild/video/ljudklipp/hemsida:" -#: src/Content/Conversation.php:326 +#: src/Content/Conversation.php:328 msgid "Tag term:" msgstr "Märkning/tagg:" -#: src/Content/Conversation.php:327 src/Module/Filer/SaveTag.php:59 +#: src/Content/Conversation.php:329 src/Module/Filer/SaveTag.php:59 msgid "Save to Folder:" msgstr "Spara till mapp:" -#: src/Content/Conversation.php:328 +#: src/Content/Conversation.php:330 msgid "Where are you right now?" msgstr "Var är du just nu?" -#: src/Content/Conversation.php:329 +#: src/Content/Conversation.php:331 msgid "Delete item(s)?" msgstr "Ta bort?" -#: src/Content/Conversation.php:341 src/Module/Item/Compose.php:171 +#: src/Content/Conversation.php:343 src/Module/Item/Compose.php:171 msgid "Created at" msgstr "" -#: src/Content/Conversation.php:351 +#: src/Content/Conversation.php:353 msgid "New Post" msgstr "Nytt inlägg" -#: src/Content/Conversation.php:354 +#: src/Content/Conversation.php:356 msgid "Share" msgstr "Publicera" -#: src/Content/Conversation.php:357 src/Module/Post/Edit.php:123 +#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:123 msgid "upload photo" msgstr "ladda upp bild" -#: src/Content/Conversation.php:358 src/Module/Post/Edit.php:124 +#: src/Content/Conversation.php:360 src/Module/Post/Edit.php:124 msgid "Attach file" msgstr "Bifoga fil" -#: src/Content/Conversation.php:359 src/Module/Post/Edit.php:125 +#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:125 msgid "attach file" msgstr "bifoga fil" -#: src/Content/Conversation.php:360 src/Module/Item/Compose.php:186 -#: src/Module/Post/Edit.php:162 src/Object/Post.php:1147 +#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186 +#: src/Module/Post/Edit.php:162 src/Object/Post.php:1148 msgid "Bold" msgstr "Fet" -#: src/Content/Conversation.php:361 src/Module/Item/Compose.php:187 -#: src/Module/Post/Edit.php:163 src/Object/Post.php:1148 +#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187 +#: src/Module/Post/Edit.php:163 src/Object/Post.php:1149 msgid "Italic" msgstr "Kursiv" -#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:188 -#: src/Module/Post/Edit.php:164 src/Object/Post.php:1149 +#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188 +#: src/Module/Post/Edit.php:164 src/Object/Post.php:1150 msgid "Underline" msgstr "Understruken" -#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:189 -#: src/Module/Post/Edit.php:165 src/Object/Post.php:1151 +#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189 +#: src/Module/Post/Edit.php:165 src/Object/Post.php:1152 msgid "Quote" msgstr "Citat" -#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190 -#: src/Module/Post/Edit.php:166 src/Object/Post.php:1152 +#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190 +#: src/Module/Post/Edit.php:166 src/Object/Post.php:1153 msgid "Add emojis" msgstr "" -#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:191 -#: src/Object/Post.php:1150 +#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191 +#: src/Object/Post.php:1151 msgid "Content Warning" msgstr "" -#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:192 -#: src/Module/Post/Edit.php:167 src/Object/Post.php:1153 +#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192 +#: src/Module/Post/Edit.php:167 src/Object/Post.php:1154 msgid "Code" msgstr "Källkod" -#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:193 -#: src/Object/Post.php:1154 +#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193 +#: src/Object/Post.php:1155 msgid "Image" msgstr "Bild" -#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:194 -#: src/Module/Post/Edit.php:168 src/Object/Post.php:1155 +#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194 +#: src/Module/Post/Edit.php:168 src/Object/Post.php:1156 msgid "Link" msgstr "Länk" -#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:195 -#: src/Module/Post/Edit.php:169 src/Object/Post.php:1156 +#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195 +#: src/Module/Post/Edit.php:169 src/Object/Post.php:1157 msgid "Link or Media" msgstr "Länk eller media" -#: src/Content/Conversation.php:370 +#: src/Content/Conversation.php:372 msgid "Video" msgstr "Video" -#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:198 +#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:198 #: src/Module/Post/Edit.php:132 msgid "Set your location" msgstr "Ange plats" -#: src/Content/Conversation.php:372 src/Module/Post/Edit.php:133 +#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:133 msgid "set location" msgstr "ange plats" -#: src/Content/Conversation.php:373 src/Module/Post/Edit.php:134 +#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:134 msgid "Clear browser location" msgstr "Clear browser location" -#: src/Content/Conversation.php:374 src/Module/Post/Edit.php:135 +#: src/Content/Conversation.php:376 src/Module/Post/Edit.php:135 msgid "clear location" msgstr "rensa plats" -#: src/Content/Conversation.php:376 src/Module/Item/Compose.php:203 +#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:203 #: src/Module/Post/Edit.php:148 msgid "Set title" msgstr "Ange rubrik" -#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:204 +#: src/Content/Conversation.php:380 src/Module/Item/Compose.php:204 #: src/Module/Post/Edit.php:150 msgid "Categories (comma-separated list)" msgstr "Kategorier (kommaseparerad lista)" -#: src/Content/Conversation.php:383 src/Module/Item/Compose.php:220 +#: src/Content/Conversation.php:385 src/Module/Item/Compose.php:220 msgid "Scheduled at" msgstr "Schemalades vid" -#: src/Content/Conversation.php:388 src/Module/Post/Edit.php:137 +#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:137 msgid "Permission settings" msgstr "Åtkomstinställningar" -#: src/Content/Conversation.php:397 src/Module/Post/Edit.php:146 +#: src/Content/Conversation.php:399 src/Module/Post/Edit.php:146 msgid "Public post" msgstr "Offentligt inlägg" -#: src/Content/Conversation.php:411 src/Content/Widget/VCard.php:121 +#: 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 msgid "Message" msgstr "Meddelande" -#: src/Content/Conversation.php:412 src/Module/Post/Edit.php:173 +#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:173 #: src/Module/Settings/TwoFactor/Trusted.php:129 msgid "Browser" msgstr "Bläddra" -#: src/Content/Conversation.php:414 src/Module/Post/Edit.php:176 +#: src/Content/Conversation.php:416 src/Module/Post/Edit.php:176 msgid "Open Compose page" msgstr "" -#: src/Content/Conversation.php:581 +#: src/Content/Conversation.php:583 msgid "remove" msgstr "ta bort" -#: src/Content/Conversation.php:585 +#: src/Content/Conversation.php:587 msgid "Delete Selected Items" msgstr "Ta bort valda föremål" -#: src/Content/Conversation.php:713 src/Content/Conversation.php:716 -#: src/Content/Conversation.php:719 src/Content/Conversation.php:722 -#: src/Content/Conversation.php:725 +#: 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 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: src/Content/Conversation.php:728 +#: src/Content/Conversation.php:730 #, php-format msgid "You are following %s." msgstr "Du följer %s." -#: src/Content/Conversation.php:733 +#: src/Content/Conversation.php:735 #, php-format msgid "You subscribed to %s." msgstr "" -#: src/Content/Conversation.php:735 +#: src/Content/Conversation.php:737 msgid "You subscribed to one or more tags in this post." msgstr "" -#: src/Content/Conversation.php:755 +#: src/Content/Conversation.php:757 #, php-format msgid "%s reshared this." msgstr "" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 msgid "Reshared" msgstr "Delad igen" -#: src/Content/Conversation.php:757 +#: src/Content/Conversation.php:759 #, php-format msgid "Reshared by %s <%s>" msgstr "Delad igen av %s <%s>" -#: src/Content/Conversation.php:760 +#: src/Content/Conversation.php:762 #, php-format msgid "%s is participating in this thread." msgstr "%s deltar i den här tråden." -#: src/Content/Conversation.php:763 +#: src/Content/Conversation.php:765 msgid "Stored for general reasons" msgstr "" -#: src/Content/Conversation.php:766 +#: src/Content/Conversation.php:768 msgid "Global post" msgstr "" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 msgid "Sent via an relay server" msgstr "" -#: src/Content/Conversation.php:769 +#: src/Content/Conversation.php:771 #, php-format msgid "Sent via the relay server %s <%s>" msgstr "" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 msgid "Fetched" msgstr "Hämtad" -#: src/Content/Conversation.php:772 +#: src/Content/Conversation.php:774 #, php-format msgid "Fetched because of %s <%s>" msgstr "Hämtades på grund av %s <%s>" -#: src/Content/Conversation.php:775 +#: src/Content/Conversation.php:777 msgid "Stored because of a child post to complete this thread." msgstr "" -#: src/Content/Conversation.php:778 +#: src/Content/Conversation.php:780 msgid "Local delivery" msgstr "" -#: src/Content/Conversation.php:781 +#: src/Content/Conversation.php:783 msgid "Stored because of your activity (like, comment, star, ...)" msgstr "" -#: src/Content/Conversation.php:784 +#: src/Content/Conversation.php:786 msgid "Distributed" msgstr "" -#: src/Content/Conversation.php:787 +#: src/Content/Conversation.php:789 msgid "Pushed to us" msgstr "" -#: src/Content/Conversation.php:1505 src/Object/Post.php:247 +#: src/Content/Conversation.php:1507 src/Object/Post.php:248 msgid "Pinned item" msgstr "" -#: src/Content/Conversation.php:1522 src/Object/Post.php:541 -#: src/Object/Post.php:542 +#: src/Content/Conversation.php:1524 src/Object/Post.php:542 +#: src/Object/Post.php:543 #, php-format msgid "View %s's profile @ %s" msgstr "Visa profilen som tillhör %s @ %s" -#: src/Content/Conversation.php:1536 src/Object/Post.php:529 +#: src/Content/Conversation.php:1538 src/Object/Post.php:530 msgid "Categories:" msgstr "Kategorier:" -#: src/Content/Conversation.php:1537 src/Object/Post.php:530 +#: src/Content/Conversation.php:1539 src/Object/Post.php:531 msgid "Filed under:" msgstr "Sparad under:" -#: src/Content/Conversation.php:1545 src/Object/Post.php:556 +#: src/Content/Conversation.php:1547 src/Object/Post.php:557 #, php-format msgid "%s from %s" msgstr "%s från %s" -#: src/Content/Conversation.php:1561 +#: src/Content/Conversation.php:1563 msgid "View in context" msgstr "Visa i sitt sammanhang" @@ -1659,7 +1664,7 @@ msgstr "Privat" msgid "Posts that mention or involve you" msgstr "Inlägg som nämnde eller involverade dig" -#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397 +#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:398 msgid "Starred" msgstr "Stjärnmärkt" @@ -1746,7 +1751,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:552 src/Model/User.php:1390 +#: src/Content/Widget.php:555 src/Model/User.php:1390 msgid "Groups" msgstr "" @@ -1754,7 +1759,7 @@ msgstr "" msgid "Display posts that have been distributed by the selected group." msgstr "" -#: src/Content/Feature.php:117 src/Content/Widget.php:521 +#: src/Content/Feature.php:117 src/Content/Widget.php:524 msgid "Archives" msgstr "Arkiv" @@ -1770,8 +1775,8 @@ msgstr "Protokoll" msgid "Display posts with the selected protocols." msgstr "" -#: src/Content/Feature.php:119 src/Content/Widget.php:558 -#: src/Module/Settings/Account.php:429 +#: src/Content/Feature.php:119 src/Content/Widget.php:561 +#: src/Module/Settings/Account.php:391 msgid "Account Types" msgstr "Typer av konton" @@ -1779,7 +1784,7 @@ msgstr "Typer av konton" msgid "Display posts done by accounts with the selected account type." msgstr "" -#: src/Content/Feature.php:120 src/Content/Widget.php:607 +#: 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 msgid "Channels" @@ -1805,7 +1810,7 @@ msgstr "Sparade mappar" msgid "Display a list of folders in which posts are stored." msgstr "" -#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:186 +#: src/Content/Feature.php:123 src/Module/Conversation/Timeline.php:189 msgid "Own Contacts" msgstr "Egna kontakter" @@ -1861,12 +1866,12 @@ msgstr "" msgid "External link to group" msgstr "" -#: src/Content/GroupManager.php:139 src/Content/Widget.php:527 +#: src/Content/GroupManager.php:139 src/Content/Widget.php:530 msgid "show less" msgstr "visa mindre" #: src/Content/GroupManager.php:140 src/Content/Widget.php:425 -#: src/Content/Widget.php:528 +#: src/Content/Widget.php:531 msgid "show more" msgstr "visa mer" @@ -1874,66 +1879,66 @@ msgstr "visa mer" msgid "Create new group" msgstr "" -#: src/Content/Item.php:317 src/Model/Item.php:3273 +#: src/Content/Item.php:322 src/Model/Item.php:3281 msgid "event" msgstr "händelse" -#: src/Content/Item.php:320 src/Content/Item.php:330 +#: src/Content/Item.php:325 src/Content/Item.php:335 msgid "status" msgstr "status" -#: src/Content/Item.php:326 src/Model/Item.php:3275 +#: src/Content/Item.php:331 src/Model/Item.php:3283 #: src/Module/Post/Tag/Add.php:109 msgid "photo" msgstr "foto" -#: src/Content/Item.php:340 src/Module/Post/Tag/Add.php:127 +#: src/Content/Item.php:345 src/Module/Post/Tag/Add.php:127 #, php-format msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "%1$s taggade %2$ss %3$s med %4$s" -#: src/Content/Item.php:414 view/theme/frio/theme.php:253 +#: src/Content/Item.php:419 view/theme/frio/theme.php:253 msgid "Follow Thread" msgstr "Följ tråd" -#: src/Content/Item.php:415 src/Model/Contact.php:1244 +#: src/Content/Item.php:420 src/Model/Contact.php:1245 msgid "View Status" msgstr "Visa status" -#: 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/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 msgid "View Profile" msgstr "Visa profil" -#: src/Content/Item.php:417 src/Model/Contact.php:1246 +#: src/Content/Item.php:422 src/Model/Contact.php:1247 msgid "View Photos" msgstr "Visa foton" -#: src/Content/Item.php:418 src/Model/Contact.php:1213 +#: src/Content/Item.php:423 src/Model/Contact.php:1214 #: src/Model/Profile.php:446 msgid "Network Posts" msgstr "Nätverksinlägg" -#: src/Content/Item.php:419 src/Model/Contact.php:1237 -#: src/Model/Contact.php:1248 +#: src/Content/Item.php:424 src/Model/Contact.php:1238 +#: src/Model/Contact.php:1249 msgid "View Contact" msgstr "Visa kontakt" -#: src/Content/Item.php:420 src/Model/Contact.php:1249 +#: src/Content/Item.php:425 src/Model/Contact.php:1250 msgid "Send PM" msgstr "Skicka privat meddelande" -#: src/Content/Item.php:421 src/Module/Contact.php:449 +#: src/Content/Item.php:426 src/Module/Contact.php:449 #: src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:104 -#: src/Module/Moderation/Users/Active.php:123 -#: src/Module/Moderation/Users/Index.php:138 +#: src/Module/Moderation/Users/Active.php:126 +#: src/Module/Moderation/Users/Index.php:141 msgid "Block" msgstr "Blockera" -#: src/Content/Item.php:422 src/Module/Contact.php:450 +#: src/Content/Item.php:427 src/Module/Contact.php:450 #: src/Module/Contact/Profile.php:532 #: src/Module/Notifications/Introductions.php:126 #: src/Module/Notifications/Introductions.php:199 @@ -1941,27 +1946,27 @@ msgstr "Blockera" msgid "Ignore" msgstr "Ignorera" -#: src/Content/Item.php:423 src/Module/Contact.php:451 +#: src/Content/Item.php:428 src/Module/Contact.php:451 #: src/Module/Contact/Profile.php:540 msgid "Collapse" msgstr "" -#: src/Content/Item.php:424 src/Object/Post.php:288 +#: src/Content/Item.php:429 src/Object/Post.php:289 #, php-format msgid "Ignore %s server" msgstr "" -#: src/Content/Item.php:428 src/Module/Settings/Channels.php:188 -#: src/Module/Settings/Channels.php:209 src/Object/Post.php:502 +#: src/Content/Item.php:433 src/Module/Settings/Channels.php:188 +#: src/Module/Settings/Channels.php:209 src/Object/Post.php:503 msgid "Languages" msgstr "Språk" -#: src/Content/Item.php:431 src/Object/Post.php:582 +#: src/Content/Item.php:436 src/Object/Post.php:583 msgid "Search Text" msgstr "" -#: src/Content/Item.php:436 src/Content/Widget.php:66 -#: src/Model/Contact.php:1238 src/Model/Contact.php:1250 +#: src/Content/Item.php:441 src/Content/Widget.php:66 +#: src/Model/Contact.php:1239 src/Model/Contact.php:1251 #: src/Module/Contact/Follow.php:152 view/theme/vier/theme.php:183 msgid "Connect/Follow" msgstr "Gör till kontakt/Följ" @@ -1974,7 +1979,7 @@ msgstr "" msgid "Nothing new here" msgstr "Inget nytt här" -#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:63 +#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:64 msgid "Go back" msgstr "Gå tillbaka" @@ -2188,7 +2193,7 @@ msgstr "Aviseringar" msgid "See all notifications" msgstr "Se alla aviseringar" -#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:233 +#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:226 msgid "Mark as seen" msgstr "Markera som läst" @@ -2216,8 +2221,8 @@ msgstr "Konton" msgid "Manage other pages" msgstr "Hantera andra sidor" -#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:100 -#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:170 +#: 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/Module/Welcome.php:38 view/theme/frio/theme.php:233 msgid "Settings" msgstr "Inställningar" @@ -2245,10 +2250,10 @@ msgstr "" #: src/Module/Moderation/Blocklist/Server/Index.php:84 #: 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:119 -#: src/Module/Moderation/Users/Blocked.php:119 +#: src/Module/Moderation/Users/Active.php:122 +#: src/Module/Moderation/Users/Blocked.php:122 #: src/Module/Moderation/Users/Deleted.php:66 -#: src/Module/Moderation/Users/Index.php:133 +#: src/Module/Moderation/Users/Index.php:136 msgid "Moderation" msgstr "" @@ -2280,33 +2285,33 @@ msgstr "nästa" msgid "last" msgstr "sista" -#: src/Content/Text/BBCode.php:908 +#: src/Content/Text/BBCode.php:903 #, php-format msgid "%2$s %3$s" msgstr "%2$s %3$s" -#: src/Content/Text/BBCode.php:931 src/Model/Item.php:4069 -#: src/Model/Item.php:4075 src/Model/Item.php:4076 +#: src/Content/Text/BBCode.php:926 src/Model/Item.php:4080 +#: src/Model/Item.php:4086 src/Model/Item.php:4087 msgid "Link to source" msgstr "Länk till källa" -#: src/Content/Text/BBCode.php:1745 src/Content/Text/HTML.php:892 +#: src/Content/Text/BBCode.php:1740 src/Content/Text/HTML.php:892 msgid "Click to open/close" msgstr "Klicka för att öppna/stänga" -#: src/Content/Text/BBCode.php:1800 +#: src/Content/Text/BBCode.php:1795 msgid "$1 wrote:" msgstr "$1 skrev:" -#: src/Content/Text/BBCode.php:1874 src/Content/Text/BBCode.php:1875 +#: src/Content/Text/BBCode.php:1869 src/Content/Text/BBCode.php:1870 msgid "Encrypted content" msgstr "Krypterat innehåll" -#: src/Content/Text/BBCode.php:2208 +#: src/Content/Text/BBCode.php:2203 msgid "Invalid source protocol" msgstr "Ogiltigt källprotokoll" -#: src/Content/Text/BBCode.php:2227 +#: src/Content/Text/BBCode.php:2222 msgid "Invalid link protocol" msgstr "Ogiltigt länkprotokoll" @@ -2359,7 +2364,7 @@ msgid "Examples: Robert Morgenstein, Fishing" msgstr "Exempel: Robert Morgenstein, Fiskning" #: src/Content/Widget.php:68 src/Module/Contact.php:441 -#: src/Module/Directory.php:83 view/theme/vier/theme.php:185 +#: src/Module/Directory.php:82 view/theme/vier/theme.php:185 msgid "Find" msgstr "Sök" @@ -2380,7 +2385,7 @@ msgstr "Slumpmässig profil" msgid "Invite Friends" msgstr "Bjud in folk du känner" -#: src/Content/Widget.php:73 src/Module/Directory.php:75 +#: src/Content/Widget.php:73 src/Module/Directory.php:74 #: view/theme/vier/theme.php:190 msgid "Global Directory" msgstr "Medlemskatalog för flera sajter (global)" @@ -2401,7 +2406,7 @@ msgstr "" msgid "Relationships" msgstr "Relationer" -#: src/Content/Widget.php:264 src/Module/Circle.php:280 +#: src/Content/Widget.php:264 src/Module/Circle.php:281 #: src/Module/Contact.php:325 msgid "All Contacts" msgstr "Alla kontakter" @@ -2425,27 +2430,27 @@ msgid_plural "%d contacts in common" msgstr[0] "%d gemensam kontakt" msgstr[1] "%d gemensamma kontakter" -#: src/Content/Widget.php:529 +#: src/Content/Widget.php:532 msgid "On this date" msgstr "" -#: src/Content/Widget.php:549 +#: src/Content/Widget.php:552 msgid "Persons" msgstr "Personer" -#: src/Content/Widget.php:550 +#: src/Content/Widget.php:553 msgid "Organisations" msgstr "Organisationer" -#: src/Content/Widget.php:551 src/Model/Contact.php:1750 +#: src/Content/Widget.php:554 src/Model/Contact.php:1751 msgid "News" msgstr "Nyheter" -#: src/Content/Widget.php:553 +#: src/Content/Widget.php:556 msgid "Relays" msgstr "" -#: src/Content/Widget.php:560 src/Module/Moderation/BaseUsers.php:58 +#: src/Content/Widget.php:563 src/Module/Moderation/BaseUsers.php:58 msgid "All" msgstr "Alla" @@ -2491,12 +2496,12 @@ msgstr[1] "Trendande taggar (de senaste %d timmarna)" msgid "More Trending Tags" msgstr "Fler trendande taggar" -#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1207 +#: src/Content/Widget/VCard.php:95 src/Model/Contact.php:1208 #: src/Model/Profile.php:440 msgid "Post to group" msgstr "" -#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1211 +#: src/Content/Widget/VCard.php:100 src/Model/Contact.php:1212 #: src/Model/Profile.php:444 src/Module/Moderation/Item/Source.php:80 msgid "Mention" msgstr "Nämn" @@ -2511,10 +2516,10 @@ msgstr "XMPP:" msgid "Matrix:" msgstr "Matrix:" -#: src/Content/Widget/VCard.php:112 src/Model/Event.php:68 -#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:946 +#: 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:134 src/Module/Notifications/Introductions.php:180 +#: src/Module/Directory.php:133 src/Module/Notifications/Introductions.php:180 #: src/Module/Profile/Profile.php:212 msgid "Location:" msgstr "Plats:" @@ -2524,75 +2529,75 @@ msgstr "Plats:" msgid "Network:" msgstr "Nätverk:" -#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1239 -#: src/Model/Contact.php:1251 src/Model/Profile.php:457 +#: src/Content/Widget/VCard.php:119 src/Model/Contact.php:1240 +#: src/Model/Contact.php:1252 src/Model/Profile.php:457 #: src/Module/Contact/Profile.php:476 msgid "Unfollow" msgstr "Avfölj" -#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1209 +#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1210 #: src/Model/Profile.php:442 msgid "View group" msgstr "" -#: src/Core/ACL.php:152 src/Module/Profile/Profile.php:260 +#: src/Core/ACL.php:153 src/Module/Profile/Profile.php:260 msgid "Yourself" msgstr "Du själv" -#: src/Core/ACL.php:188 src/Module/Privacy/PermissionTooltip.php:156 +#: src/Core/ACL.php:189 src/Module/Privacy/PermissionTooltip.php:156 #: src/Module/Privacy/PermissionTooltip.php:178 msgid "Mutuals" msgstr "Ömsesidiga" -#: src/Core/ACL.php:280 +#: src/Core/ACL.php:281 msgid "Post to Email" msgstr "" -#: src/Core/ACL.php:307 src/Module/Privacy/PermissionTooltip.php:103 +#: src/Core/ACL.php:308 src/Module/Privacy/PermissionTooltip.php:103 #: src/Module/Privacy/PermissionTooltip.php:217 msgid "Public" msgstr "Publik" -#: src/Core/ACL.php:308 +#: src/Core/ACL.php:309 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:309 src/Module/Privacy/PermissionTooltip.php:105 +#: src/Core/ACL.php:310 src/Module/Privacy/PermissionTooltip.php:105 msgid "Limited/Private" msgstr "Begränsad/Privat" -#: src/Core/ACL.php:310 +#: src/Core/ACL.php:311 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:310 +#: src/Core/ACL.php:311 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:311 +#: src/Core/ACL.php:312 msgid "Show to:" msgstr "Visa till:" -#: src/Core/ACL.php:312 +#: src/Core/ACL.php:313 msgid "Except to:" msgstr "Förutom till:" -#: src/Core/ACL.php:313 src/Module/Post/Edit.php:145 +#: src/Core/ACL.php:314 src/Module/Post/Edit.php:145 msgid "CC: email addresses" msgstr "Kopia: e-postadresser" -#: src/Core/ACL.php:314 src/Module/Post/Edit.php:151 +#: src/Core/ACL.php:315 src/Module/Post/Edit.php:151 msgid "Example: bob@example.com, mary@example.com" msgstr "Exempel: adam@exempel.com, bertil@exempel.com" -#: src/Core/ACL.php:315 +#: src/Core/ACL.php:316 msgid "Connectors" msgstr "" @@ -2927,176 +2932,176 @@ msgstr "Databas används redan." msgid "Could not connect to database." msgstr "Kunde inte ansluta till databasen." -#: src/Core/L10n.php:430 src/Model/Item.php:2316 +#: src/Core/L10n.php:426 src/Model/Item.php:2324 msgid "Undetermined" msgstr "" -#: src/Core/L10n.php:437 +#: src/Core/L10n.php:433 #, php-format msgid "%s (%s)" msgstr "" -#: src/Core/L10n.php:485 src/Model/Event.php:416 +#: src/Core/L10n.php:481 src/Model/Event.php:418 #: src/Module/Settings/Display.php:292 msgid "Monday" msgstr "måndag" -#: src/Core/L10n.php:485 src/Model/Event.php:417 +#: src/Core/L10n.php:481 src/Model/Event.php:419 #: src/Module/Settings/Display.php:293 msgid "Tuesday" msgstr "tisdag" -#: src/Core/L10n.php:485 src/Model/Event.php:418 +#: src/Core/L10n.php:481 src/Model/Event.php:420 #: src/Module/Settings/Display.php:294 msgid "Wednesday" msgstr "onsdag" -#: src/Core/L10n.php:485 src/Model/Event.php:419 +#: src/Core/L10n.php:481 src/Model/Event.php:421 #: src/Module/Settings/Display.php:295 msgid "Thursday" msgstr "torsdag" -#: src/Core/L10n.php:485 src/Model/Event.php:420 +#: src/Core/L10n.php:481 src/Model/Event.php:422 #: src/Module/Settings/Display.php:296 msgid "Friday" msgstr "fredag" -#: src/Core/L10n.php:485 src/Model/Event.php:421 +#: src/Core/L10n.php:481 src/Model/Event.php:423 #: src/Module/Settings/Display.php:297 msgid "Saturday" msgstr "lördag" -#: src/Core/L10n.php:485 src/Model/Event.php:415 +#: src/Core/L10n.php:481 src/Model/Event.php:417 #: src/Module/Settings/Display.php:291 msgid "Sunday" msgstr "söndag" -#: src/Core/L10n.php:489 src/Model/Event.php:436 +#: src/Core/L10n.php:485 src/Model/Event.php:438 msgid "January" msgstr "januari" -#: src/Core/L10n.php:489 src/Model/Event.php:437 +#: src/Core/L10n.php:485 src/Model/Event.php:439 msgid "February" msgstr "februari" -#: src/Core/L10n.php:489 src/Model/Event.php:438 +#: src/Core/L10n.php:485 src/Model/Event.php:440 msgid "March" msgstr "mars" -#: src/Core/L10n.php:489 src/Model/Event.php:439 +#: src/Core/L10n.php:485 src/Model/Event.php:441 msgid "April" msgstr "april" -#: src/Core/L10n.php:489 src/Core/L10n.php:508 src/Model/Event.php:427 +#: src/Core/L10n.php:485 src/Core/L10n.php:504 src/Model/Event.php:429 msgid "May" msgstr "maj" -#: src/Core/L10n.php:489 src/Model/Event.php:440 +#: src/Core/L10n.php:485 src/Model/Event.php:442 msgid "June" msgstr "juni" -#: src/Core/L10n.php:489 src/Model/Event.php:441 +#: src/Core/L10n.php:485 src/Model/Event.php:443 msgid "July" msgstr "juli" -#: src/Core/L10n.php:489 src/Model/Event.php:442 +#: src/Core/L10n.php:485 src/Model/Event.php:444 msgid "August" msgstr "augusti" -#: src/Core/L10n.php:489 src/Model/Event.php:443 +#: src/Core/L10n.php:485 src/Model/Event.php:445 msgid "September" msgstr "september" -#: src/Core/L10n.php:489 src/Model/Event.php:444 +#: src/Core/L10n.php:485 src/Model/Event.php:446 msgid "October" msgstr "oktober" -#: src/Core/L10n.php:489 src/Model/Event.php:445 +#: src/Core/L10n.php:485 src/Model/Event.php:447 msgid "November" msgstr "november" -#: src/Core/L10n.php:489 src/Model/Event.php:446 +#: src/Core/L10n.php:485 src/Model/Event.php:448 msgid "December" msgstr "december" -#: src/Core/L10n.php:504 src/Model/Event.php:408 +#: src/Core/L10n.php:500 src/Model/Event.php:410 msgid "Mon" msgstr "Mån" -#: src/Core/L10n.php:504 src/Model/Event.php:409 +#: src/Core/L10n.php:500 src/Model/Event.php:411 msgid "Tue" msgstr "Tis" -#: src/Core/L10n.php:504 src/Model/Event.php:410 +#: src/Core/L10n.php:500 src/Model/Event.php:412 msgid "Wed" msgstr "Ons" -#: src/Core/L10n.php:504 src/Model/Event.php:411 +#: src/Core/L10n.php:500 src/Model/Event.php:413 msgid "Thu" msgstr "Tor" -#: src/Core/L10n.php:504 src/Model/Event.php:412 +#: src/Core/L10n.php:500 src/Model/Event.php:414 msgid "Fri" msgstr "Fre" -#: src/Core/L10n.php:504 src/Model/Event.php:413 +#: src/Core/L10n.php:500 src/Model/Event.php:415 msgid "Sat" msgstr "Lör" -#: src/Core/L10n.php:504 src/Model/Event.php:407 +#: src/Core/L10n.php:500 src/Model/Event.php:409 msgid "Sun" msgstr "Sön" -#: src/Core/L10n.php:508 src/Model/Event.php:423 +#: src/Core/L10n.php:504 src/Model/Event.php:425 msgid "Jan" msgstr "Jan" -#: src/Core/L10n.php:508 src/Model/Event.php:424 +#: src/Core/L10n.php:504 src/Model/Event.php:426 msgid "Feb" msgstr "Feb" -#: src/Core/L10n.php:508 src/Model/Event.php:425 +#: src/Core/L10n.php:504 src/Model/Event.php:427 msgid "Mar" msgstr "Mar" -#: src/Core/L10n.php:508 src/Model/Event.php:426 +#: src/Core/L10n.php:504 src/Model/Event.php:428 msgid "Apr" msgstr "Apr" -#: src/Core/L10n.php:508 src/Model/Event.php:428 +#: src/Core/L10n.php:504 src/Model/Event.php:430 msgid "Jun" msgstr "Jun" -#: src/Core/L10n.php:508 src/Model/Event.php:429 +#: src/Core/L10n.php:504 src/Model/Event.php:431 msgid "Jul" msgstr "Jul" -#: src/Core/L10n.php:508 src/Model/Event.php:430 +#: src/Core/L10n.php:504 src/Model/Event.php:432 msgid "Aug" msgstr "Aug" -#: src/Core/L10n.php:508 +#: src/Core/L10n.php:504 msgid "Sep" msgstr "Sep" -#: src/Core/L10n.php:508 src/Model/Event.php:432 +#: src/Core/L10n.php:504 src/Model/Event.php:434 msgid "Oct" msgstr "Okt" -#: src/Core/L10n.php:508 src/Model/Event.php:433 +#: src/Core/L10n.php:504 src/Model/Event.php:435 msgid "Nov" msgstr "Nov" -#: src/Core/L10n.php:508 src/Model/Event.php:434 +#: src/Core/L10n.php:504 src/Model/Event.php:436 msgid "Dec" msgstr "Dec" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:46 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:44 #, php-format msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" msgstr "" -#: src/Core/Logger/Util/LoggerSettingsCheck.php:71 +#: src/Core/Logger/Util/LoggerSettingsCheck.php:67 #, php-format msgid "" "The debug logfile '%s' is not usable. No logging possible (error: '%s')" @@ -3288,7 +3293,7 @@ msgstr "lägg till" msgid "Edit circle" msgstr "" -#: src/Model/Circle.php:592 src/Module/Circle.php:181 +#: src/Model/Circle.php:592 src/Module/Circle.php:185 msgid "Contacts not in any circle" msgstr "" @@ -3296,8 +3301,8 @@ msgstr "" msgid "Create a new circle" msgstr "" -#: src/Model/Circle.php:595 src/Module/Circle.php:166 -#: src/Module/Circle.php:189 src/Module/Circle.php:264 +#: src/Model/Circle.php:595 src/Module/Circle.php:168 +#: src/Module/Circle.php:190 src/Module/Circle.php:265 msgid "Circle Name: " msgstr "" @@ -3305,280 +3310,280 @@ msgstr "" msgid "Edit circles" msgstr "" -#: src/Model/Contact.php:1258 src/Module/Moderation/Users/Pending.php:88 +#: src/Model/Contact.php:1259 src/Module/Moderation/Users/Pending.php:88 #: src/Module/Notifications/Introductions.php:124 #: src/Module/Notifications/Introductions.php:197 msgid "Approve" msgstr "Godkänn" -#: src/Model/Contact.php:1594 src/Model/Contact.php:1666 +#: src/Model/Contact.php:1595 src/Model/Contact.php:1667 #: src/Module/Contact/Profile.php:360 #, php-format msgid "%s has blocked you" msgstr "" -#: src/Model/Contact.php:1746 +#: src/Model/Contact.php:1747 msgid "Organisation" msgstr "Organisation" -#: src/Model/Contact.php:1754 +#: src/Model/Contact.php:1755 msgid "Group" msgstr "" -#: src/Model/Contact.php:1758 src/Module/Moderation/BaseUsers.php:122 +#: src/Model/Contact.php:1759 src/Module/Moderation/BaseUsers.php:122 msgid "Relay" msgstr "Fördröj" -#: src/Model/Contact.php:3073 +#: src/Model/Contact.php:3085 msgid "Disallowed profile URL." msgstr "Otillåten profil-URL." -#: src/Model/Contact.php:3078 src/Module/Friendica.php:88 +#: src/Model/Contact.php:3090 src/Module/Friendica.php:88 msgid "Blocked domain" msgstr "Blockerad domän" -#: src/Model/Contact.php:3083 +#: src/Model/Contact.php:3095 msgid "Connect URL missing." msgstr "" -#: src/Model/Contact.php:3092 +#: src/Model/Contact.php:3104 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Contact.php:3110 +#: src/Model/Contact.php:3122 #, php-format msgid "Expected network %s does not match actual network %s" msgstr "" -#: src/Model/Contact.php:3127 +#: src/Model/Contact.php:3139 msgid "This seems to be a relay account. They can't be followed by users." msgstr "" -#: src/Model/Contact.php:3134 +#: src/Model/Contact.php:3146 msgid "The profile address specified does not provide adequate information." msgstr "Angiven profiladress ger inte tillräcklig information." -#: src/Model/Contact.php:3136 +#: src/Model/Contact.php:3148 msgid "No compatible communication protocols or feeds were discovered." msgstr "Inga kompatibla kommunikationsprotokoll eller flöden hittades." -#: src/Model/Contact.php:3139 +#: src/Model/Contact.php:3151 msgid "An author or name was not found." msgstr "En författare eller namnet hittades inte." -#: src/Model/Contact.php:3142 +#: src/Model/Contact.php:3154 msgid "No browser URL could be matched to this address." msgstr "" -#: src/Model/Contact.php:3145 +#: src/Model/Contact.php:3157 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "" -#: src/Model/Contact.php:3146 +#: src/Model/Contact.php:3158 msgid "Use mailto: in front of address to force email check." msgstr "" -#: src/Model/Contact.php:3152 +#: src/Model/Contact.php:3164 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Begränsad profil. Den här personen kommer inte att kunna ta emot personliga meddelanden från dig." -#: src/Model/Contact.php:3211 +#: src/Model/Contact.php:3223 msgid "Unable to retrieve contact information." msgstr "Det gick inte att komma åt kontaktinformationen." -#: src/Model/Event.php:40 +#: src/Model/Event.php:42 msgid "l F d, Y \\@ g:i A \\G\\M\\TP (e)" msgstr "" -#: src/Model/Event.php:61 src/Model/Event.php:78 src/Model/Event.php:455 -#: src/Model/Event.php:928 +#: src/Model/Event.php:63 src/Model/Event.php:80 src/Model/Event.php:457 +#: src/Model/Event.php:929 msgid "Starts:" msgstr "Börjar:" -#: src/Model/Event.php:64 src/Model/Event.php:84 src/Model/Event.php:456 -#: src/Model/Event.php:932 +#: src/Model/Event.php:66 src/Model/Event.php:86 src/Model/Event.php:458 +#: src/Model/Event.php:933 msgid "Finishes:" msgstr "Slutar:" -#: src/Model/Event.php:405 +#: src/Model/Event.php:407 msgid "all-day" msgstr "hela dagen" -#: src/Model/Event.php:431 +#: src/Model/Event.php:433 msgid "Sept" msgstr "Sept" -#: src/Model/Event.php:448 src/Module/Calendar/Show.php:117 +#: src/Model/Event.php:450 src/Module/Calendar/Show.php:117 #: src/Util/Temporal.php:329 msgid "today" msgstr "idag" -#: src/Model/Event.php:449 src/Module/Calendar/Show.php:118 +#: src/Model/Event.php:451 src/Module/Calendar/Show.php:118 #: src/Module/Settings/Display.php:302 src/Util/Temporal.php:339 msgid "month" msgstr "månad" -#: src/Model/Event.php:450 src/Module/Calendar/Show.php:119 +#: src/Model/Event.php:452 src/Module/Calendar/Show.php:119 #: src/Module/Settings/Display.php:303 src/Util/Temporal.php:340 msgid "week" msgstr "vecka" -#: src/Model/Event.php:451 src/Module/Calendar/Show.php:120 +#: src/Model/Event.php:453 src/Module/Calendar/Show.php:120 #: src/Module/Settings/Display.php:304 src/Util/Temporal.php:341 msgid "day" msgstr "dag" -#: src/Model/Event.php:453 +#: src/Model/Event.php:455 msgid "No events to display" msgstr "Inga evenemang att visa" -#: src/Model/Event.php:502 src/Module/Feed.php:56 +#: src/Model/Event.php:504 src/Module/Feed.php:56 #: src/Module/Update/Profile.php:42 msgid "Access to this profile has been restricted." msgstr "Åtkomst till den här profilen har begränsats." -#: src/Model/Event.php:544 src/Module/Calendar/Event/Show.php:52 +#: src/Model/Event.php:545 src/Module/Calendar/Event/Show.php:52 msgid "Event not found." msgstr "" -#: src/Model/Event.php:623 +#: src/Model/Event.php:624 msgid "l, F j" msgstr "l, F j" -#: src/Model/Event.php:650 +#: src/Model/Event.php:651 msgid "Edit event" msgstr "Redigera evenemang" -#: src/Model/Event.php:651 +#: src/Model/Event.php:652 msgid "Duplicate event" msgstr "Fördubbla evenemanget" -#: src/Model/Event.php:652 +#: src/Model/Event.php:653 msgid "Delete event" msgstr "Ta bort evenemanget" -#: src/Model/Event.php:882 src/Module/Debug/Localtime.php:24 +#: src/Model/Event.php:883 src/Module/Debug/Localtime.php:24 msgid "l F d, Y \\@ g:i A" msgstr "" -#: src/Model/Event.php:883 +#: src/Model/Event.php:884 msgid "D g:i A" msgstr "" -#: src/Model/Event.php:884 +#: src/Model/Event.php:885 msgid "g:i A" msgstr "" -#: src/Model/Event.php:947 src/Model/Event.php:949 +#: src/Model/Event.php:948 src/Model/Event.php:950 msgid "Show map" msgstr "Visa karta" -#: src/Model/Event.php:948 +#: src/Model/Event.php:949 msgid "Hide map" msgstr "Göm karta" -#: src/Model/Event.php:1041 +#: src/Model/Event.php:1042 #, php-format msgid "%s's birthday" msgstr "%s's födelsedag" -#: src/Model/Event.php:1042 +#: src/Model/Event.php:1043 #, php-format msgid "Happy Birthday %s" msgstr "Grattis på födelsedagen %s" -#: src/Model/Item.php:2323 +#: src/Model/Item.php:2331 #, php-format msgid "%s (%s - %s): %s" msgstr "" -#: src/Model/Item.php:2325 +#: src/Model/Item.php:2333 #, php-format msgid "%s (%s): %s" msgstr "" -#: src/Model/Item.php:2328 +#: src/Model/Item.php:2336 #, php-format msgid "" "Detected languages in this post:\n" "%s" msgstr "" -#: src/Model/Item.php:3277 +#: src/Model/Item.php:3285 msgid "activity" msgstr "aktivitet" -#: src/Model/Item.php:3279 +#: src/Model/Item.php:3287 msgid "comment" msgstr "kommentar" -#: src/Model/Item.php:3282 src/Module/Post/Tag/Add.php:109 +#: src/Model/Item.php:3290 src/Module/Post/Tag/Add.php:109 msgid "post" msgstr "inlägg" -#: src/Model/Item.php:3452 +#: src/Model/Item.php:3463 #, php-format msgid "%s is blocked" msgstr "" -#: src/Model/Item.php:3454 +#: src/Model/Item.php:3465 #, php-format msgid "%s is ignored" msgstr "" -#: src/Model/Item.php:3456 +#: src/Model/Item.php:3467 #, php-format msgid "Content from %s is collapsed" msgstr "" -#: src/Model/Item.php:3460 +#: src/Model/Item.php:3471 msgid "Sensitive content" msgstr "" -#: src/Model/Item.php:3969 +#: src/Model/Item.php:3980 msgid "bytes" msgstr "bytes" -#: src/Model/Item.php:4000 +#: src/Model/Item.php:4011 #, 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:4002 +#: src/Model/Item.php:4013 #, php-format msgid "%2$s (%1$d vote)" msgid_plural "%2$s (%1$d votes)" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:4007 +#: src/Model/Item.php:4018 #, php-format msgid "%d voter. Poll end: %s" msgid_plural "%d voters. Poll end: %s" msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:4009 +#: src/Model/Item.php:4020 #, php-format msgid "%d voter." msgid_plural "%d voters." msgstr[0] "" msgstr[1] "" -#: src/Model/Item.php:4011 +#: src/Model/Item.php:4022 #, php-format msgid "Poll end: %s" msgstr "Omröstningen slut om: %s" -#: src/Model/Item.php:4052 src/Model/Item.php:4053 +#: src/Model/Item.php:4063 src/Model/Item.php:4064 msgid "View on separate page" msgstr "Visa på en separat sida" @@ -3586,7 +3591,7 @@ msgstr "Visa på en separat sida" msgid "[no subject]" msgstr "[ingen rubrik]" -#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154 +#: src/Model/Photo.php:1192 src/Module/Media/Photo/Upload.php:154 msgid "Wall Photos" msgstr "Loggbilder" @@ -3599,7 +3604,7 @@ msgstr "Redigera profil" msgid "Change profile photo" msgstr "Byt profilbild" -#: src/Model/Profile.php:357 src/Module/Directory.php:139 +#: src/Model/Profile.php:357 src/Module/Directory.php:138 #: src/Module/Profile/Profile.php:200 msgid "Homepage:" msgstr "Hemsida:" @@ -3689,7 +3694,7 @@ msgstr "Ogillar:" msgid "Title/Description:" msgstr "Titel/Beskrivning:" -#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:176 +#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:174 #: src/Module/Moderation/Report/Create.php:266 #: src/Module/Moderation/Summary.php:65 msgid "Summary" @@ -3740,59 +3745,59 @@ msgstr "" msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "SERIOUS ERROR: Generation of security keys failed." -#: src/Model/User.php:740 src/Model/User.php:773 +#: src/Model/User.php:739 src/Model/User.php:772 msgid "Login failed" msgstr "Inloggningen misslyckades" -#: src/Model/User.php:805 +#: src/Model/User.php:804 msgid "Not enough information to authenticate" msgstr "Inte tillräckligt med information för att autentisera" -#: src/Model/User.php:930 +#: src/Model/User.php:929 msgid "Password can't be empty" msgstr "Lösenordet kan inte vara tomt" -#: src/Model/User.php:972 +#: src/Model/User.php:971 msgid "Empty passwords are not allowed." msgstr "Tomma lösenord är inte tillåtna." -#: src/Model/User.php:976 +#: src/Model/User.php:975 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "" -#: src/Model/User.php:980 +#: src/Model/User.php:979 msgid "The password length is limited to 72 characters." msgstr "" -#: src/Model/User.php:984 +#: src/Model/User.php:983 msgid "The password can't contain white spaces nor accentuated letters" msgstr "" -#: src/Model/User.php:1193 +#: src/Model/User.php:1192 msgid "Passwords do not match. Password unchanged." msgstr "Lösenorden skiljer sig åt. Lösenordet ändras inte." -#: src/Model/User.php:1200 +#: src/Model/User.php:1199 msgid "An invitation is required." msgstr "En inbjudning krävs." -#: src/Model/User.php:1204 +#: src/Model/User.php:1203 msgid "Invitation could not be verified." msgstr "Inbjudningen kunde inte bekräftas." -#: src/Model/User.php:1212 +#: src/Model/User.php:1211 msgid "Invalid OpenID url" msgstr "Ogiltig OpenID-URL" -#: src/Model/User.php:1225 src/Security/Authentication.php:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 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:230 +#: src/Model/User.php:1225 src/Security/Authentication.php:231 msgid "The error message was:" msgstr "Felmeddelandet var:" @@ -3983,57 +3988,57 @@ msgid "" "User with delegates can't be removed, please remove delegate users first" msgstr "" -#: src/Module/Admin/Addons/Details.php:51 +#: src/Module/Admin/Addons/Details.php:49 msgid "Addon not found." msgstr "Insticksprogrammet hittades inte." -#: src/Module/Admin/Addons/Details.php:62 src/Module/Admin/Addons/Index.php:41 +#: src/Module/Admin/Addons/Details.php:60 src/Module/Admin/Addons/Index.php:41 #, php-format msgid "Addon %s disabled." msgstr "Insticksprogrammet %s är inaktiverat." -#: src/Module/Admin/Addons/Details.php:65 src/Module/Admin/Addons/Index.php:43 +#: src/Module/Admin/Addons/Details.php:63 src/Module/Admin/Addons/Index.php:43 #, php-format msgid "Addon %s enabled." msgstr "Insticksprogrammet %s är aktiverat." -#: src/Module/Admin/Addons/Details.php:74 +#: src/Module/Admin/Addons/Details.php:72 #: src/Module/Admin/Themes/Details.php:38 msgid "Disable" msgstr "Inaktivera" -#: src/Module/Admin/Addons/Details.php:77 +#: src/Module/Admin/Addons/Details.php:75 #: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351 msgid "Enable" msgstr "Aktivera" -#: src/Module/Admin/Addons/Details.php:97 src/Module/Admin/Addons/Index.php:59 +#: src/Module/Admin/Addons/Details.php:95 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:175 src/Module/Admin/Themes/Details.php:82 +#: src/Module/Admin/Summary.php:173 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 "Administration" -#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:60 +#: src/Module/Admin/Addons/Details.php:96 src/Module/Admin/Addons/Index.php:60 #: src/Module/BaseAdmin.php:78 src/Module/BaseSettings.php:127 msgid "Addons" msgstr "Insticksprogram" -#: src/Module/Admin/Addons/Details.php:99 +#: src/Module/Admin/Addons/Details.php:97 #: src/Module/Admin/Themes/Details.php:84 msgid "Toggle" msgstr "Växla" -#: src/Module/Admin/Addons/Details.php:106 +#: src/Module/Admin/Addons/Details.php:104 #: src/Module/Admin/Themes/Details.php:92 msgid "Author: " msgstr "Författare:" -#: src/Module/Admin/Addons/Details.php:107 +#: src/Module/Admin/Addons/Details.php:105 #: src/Module/Admin/Themes/Details.php:93 msgid "Maintainer: " msgstr "Underhållare:" @@ -4050,9 +4055,10 @@ 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:545 src/Module/Settings/Addons.php:64 -#: src/Module/Settings/Connectors.php:149 -#: src/Module/Settings/Connectors.php:235 +#: src/Module/Settings/Account.php:507 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/Features.php:61 msgid "Save Settings" @@ -4069,62 +4075,62 @@ msgid "" "official addon repository at %1$s." msgstr "" -#: src/Module/Admin/DBSync.php:37 +#: src/Module/Admin/DBSync.php:35 msgid "Update has been marked successful" msgstr "Uppdateringen har blivit markerad som lyckad" -#: src/Module/Admin/DBSync.php:45 +#: src/Module/Admin/DBSync.php:43 #, php-format msgid "Database structure update %s was successfully applied." msgstr "" -#: src/Module/Admin/DBSync.php:47 +#: src/Module/Admin/DBSync.php:45 #, php-format msgid "Executing of database structure update %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:62 +#: src/Module/Admin/DBSync.php:60 #, php-format msgid "Executing %s failed with error: %s" msgstr "" -#: src/Module/Admin/DBSync.php:64 +#: src/Module/Admin/DBSync.php:62 #, php-format msgid "Update %s was successfully applied." msgstr "Verkställningen av uppdateringen av %s lyckades." -#: src/Module/Admin/DBSync.php:67 +#: src/Module/Admin/DBSync.php:65 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: src/Module/Admin/DBSync.php:70 +#: src/Module/Admin/DBSync.php:68 #, php-format msgid "There was no additional update function %s that needed to be called." msgstr "" -#: src/Module/Admin/DBSync.php:91 +#: src/Module/Admin/DBSync.php:89 msgid "No failed updates." msgstr "Inga misslyckade uppdateringar." -#: src/Module/Admin/DBSync.php:92 +#: src/Module/Admin/DBSync.php:90 msgid "Check database structure" msgstr "Kolla databas-strukturen" -#: src/Module/Admin/DBSync.php:96 +#: src/Module/Admin/DBSync.php:94 msgid "Failed Updates" msgstr "Misslyckade uppdatering" -#: src/Module/Admin/DBSync.php:97 +#: src/Module/Admin/DBSync.php:95 msgid "" "This does not include updates prior to 1139, which did not return a status." msgstr "" -#: src/Module/Admin/DBSync.php:98 +#: src/Module/Admin/DBSync.php:96 msgid "Mark success (if update was manually applied)" msgstr "" -#: src/Module/Admin/DBSync.php:99 +#: src/Module/Admin/DBSync.php:97 msgid "Attempt to execute this update step automatically" msgstr "" @@ -5689,12 +5695,12 @@ msgstr "" msgid "Database (legacy)" msgstr "" -#: src/Module/Admin/Summary.php:41 +#: src/Module/Admin/Summary.php:39 #, php-format msgid "Template engine (%s) error: %s" msgstr "" -#: src/Module/Admin/Summary.php:45 +#: src/Module/Admin/Summary.php:43 #, php-format msgid "" "Your DB still runs with MyISAM tables. You should change the engine type to " @@ -5705,7 +5711,7 @@ msgid "" " an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:50 +#: src/Module/Admin/Summary.php:48 #, php-format msgid "" "Your DB still runs with InnoDB tables in the Antelope file format. You " @@ -5716,7 +5722,7 @@ msgid "" " installation for an automatic conversion.
" msgstr "" -#: src/Module/Admin/Summary.php:60 +#: src/Module/Admin/Summary.php:58 #, php-format msgid "" "Your table_definition_cache is too low (%d). This can lead to the database " @@ -5724,46 +5730,46 @@ msgid "" " to %d. See here for more information.
" msgstr "" -#: src/Module/Admin/Summary.php:68 +#: src/Module/Admin/Summary.php:66 #, 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:76 +#: src/Module/Admin/Summary.php:74 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:80 +#: src/Module/Admin/Summary.php:78 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:84 +#: src/Module/Admin/Summary.php:82 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:89 +#: src/Module/Admin/Summary.php:87 msgid "The worker was never executed. Please check your database structure!" msgstr "" -#: src/Module/Admin/Summary.php:91 +#: src/Module/Admin/Summary.php:89 #, 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:96 +#: src/Module/Admin/Summary.php:94 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5772,7 +5778,7 @@ msgid "" "help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:100 +#: src/Module/Admin/Summary.php:98 #, php-format msgid "" "Friendica's configuration now is stored in config/local.config.php, please " @@ -5781,7 +5787,7 @@ msgid "" "page for help with the transition." msgstr "" -#: src/Module/Admin/Summary.php:106 +#: src/Module/Admin/Summary.php:104 #, php-format msgid "" "%s is not reachable on your system. This is a severe " @@ -5789,40 +5795,40 @@ msgid "" "href=\"%s\">the installation page for help." msgstr "" -#: src/Module/Admin/Summary.php:130 +#: src/Module/Admin/Summary.php:128 #, 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:138 +#: src/Module/Admin/Summary.php:136 #, 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:146 +#: src/Module/Admin/Summary.php:144 #, 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:157 +#: src/Module/Admin/Summary.php:155 msgid "Message queues" msgstr "Meddelandeköer" -#: src/Module/Admin/Summary.php:160 +#: src/Module/Admin/Summary.php:158 msgid "Server Settings" msgstr "" -#: src/Module/Admin/Summary.php:178 +#: src/Module/Admin/Summary.php:176 msgid "Version" msgstr "Version" -#: src/Module/Admin/Summary.php:182 +#: src/Module/Admin/Summary.php:180 msgid "Active addons" msgstr "" @@ -6087,8 +6093,8 @@ msgstr "" msgid "Reports" msgstr "" -#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:134 -#: src/Module/Moderation/Users/Index.php:144 +#: src/Module/BaseModeration.php:102 src/Module/Moderation/Users/Index.php:137 +#: src/Module/Moderation/Users/Index.php:147 msgid "Users" msgstr "Användare" @@ -6124,7 +6130,7 @@ msgstr "" msgid "Only You Can See This" msgstr "Endast du kan se det här" -#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:67 +#: src/Module/BaseProfile.php:101 src/Module/Profile/Schedule.php:65 msgid "Scheduled Posts" msgstr "" @@ -6176,7 +6182,7 @@ msgstr "" msgid "Display" msgstr "Skärm" -#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:195 +#: src/Module/BaseSettings.php:120 src/Module/Settings/Connectors.php:189 msgid "Social Networks" msgstr "Sociala nätverk" @@ -6192,11 +6198,15 @@ msgstr "Anslutna appar" msgid "Remote servers" msgstr "" -#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:84 +#: src/Module/BaseSettings.php:155 src/Module/Settings/ContactImport.php:109 +msgid "Import Contacts" +msgstr "Importera kontakter" + +#: src/Module/BaseSettings.php:162 src/Module/Settings/UserExport.php:84 msgid "Export personal data" msgstr "Exporter personlig data" -#: src/Module/BaseSettings.php:162 +#: src/Module/BaseSettings.php:169 msgid "Remove account" msgstr "Ta bort konto" @@ -6325,8 +6335,8 @@ msgstr "lista" msgid "Could not create circle." msgstr "" -#: src/Module/Circle.php:54 src/Module/Circle.php:202 -#: src/Module/Circle.php:226 +#: src/Module/Circle.php:54 src/Module/Circle.php:203 +#: src/Module/Circle.php:227 msgid "Circle not found." msgstr "" @@ -6334,15 +6344,15 @@ msgstr "" msgid "Circle name was not changed." msgstr "" -#: src/Module/Circle.php:78 +#: src/Module/Circle.php:80 msgid "Unknown circle." msgstr "" -#: src/Module/Circle.php:84 src/Module/Circle.php:93 +#: src/Module/Circle.php:86 src/Module/Circle.php:95 #: src/Module/Contact/Advanced.php:56 src/Module/Contact/Advanced.php:95 -#: 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/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/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 @@ -6351,75 +6361,75 @@ msgstr "" msgid "Contact not found." msgstr "Kontakten hittades inte." -#: src/Module/Circle.php:88 src/Module/Contact/Contacts.php:52 +#: src/Module/Circle.php:90 src/Module/Contact/Contacts.php:52 msgid "Invalid contact." msgstr "Ogiltig kontakt." -#: src/Module/Circle.php:97 src/Module/Contact/Revoke.php:56 +#: src/Module/Circle.php:99 src/Module/Contact/Revoke.php:56 msgid "Contact is deleted." msgstr "" -#: src/Module/Circle.php:103 +#: src/Module/Circle.php:105 msgid "Unable to add the contact to the circle." msgstr "" -#: src/Module/Circle.php:106 +#: src/Module/Circle.php:108 msgid "Contact successfully added to circle." msgstr "" -#: src/Module/Circle.php:110 +#: src/Module/Circle.php:112 msgid "Unable to remove the contact from the circle." msgstr "" -#: src/Module/Circle.php:113 +#: src/Module/Circle.php:115 msgid "Contact successfully removed from circle." msgstr "" -#: src/Module/Circle.php:117 +#: src/Module/Circle.php:119 msgid "Bad request." msgstr "" -#: src/Module/Circle.php:158 +#: src/Module/Circle.php:160 msgid "Save Circle" msgstr "" -#: src/Module/Circle.php:159 +#: src/Module/Circle.php:161 msgid "Filter" msgstr "" -#: src/Module/Circle.php:165 +#: src/Module/Circle.php:167 msgid "Create a circle of contacts/friends." msgstr "" -#: src/Module/Circle.php:207 +#: src/Module/Circle.php:208 msgid "Unable to remove circle." msgstr "" -#: src/Module/Circle.php:258 +#: src/Module/Circle.php:259 msgid "Delete Circle" msgstr "" -#: src/Module/Circle.php:268 +#: src/Module/Circle.php:269 msgid "Edit Circle Name" msgstr "" -#: src/Module/Circle.php:278 +#: src/Module/Circle.php:279 msgid "Members" msgstr "Medlemmar" -#: src/Module/Circle.php:281 +#: src/Module/Circle.php:282 msgid "Circle is empty" msgstr "" -#: src/Module/Circle.php:297 +#: src/Module/Circle.php:298 msgid "Remove contact from circle" msgstr "" -#: src/Module/Circle.php:320 +#: src/Module/Circle.php:321 msgid "Click on a contact to add or remove." msgstr "Klicka på en kontakt för att lägga till eller ta bort." -#: src/Module/Circle.php:337 +#: src/Module/Circle.php:338 msgid "Add contact to circle" msgstr "" @@ -6453,7 +6463,7 @@ msgid "Only show blocked contacts" msgstr "Visa endast blockerade kontakter" #: src/Module/Contact.php:349 src/Module/Contact.php:421 -#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385 +#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:386 msgid "Ignored" msgstr "Ignorerade" @@ -6504,8 +6514,8 @@ msgstr "Uppdatera" #: src/Module/Contact.php:449 src/Module/Contact/Profile.php:524 #: src/Module/Moderation/Blocklist/Contact.php:105 -#: src/Module/Moderation/Users/Blocked.php:124 -#: src/Module/Moderation/Users/Index.php:140 +#: src/Module/Moderation/Users/Blocked.php:127 +#: src/Module/Moderation/Users/Index.php:143 msgid "Unblock" msgstr "Avblockera" @@ -6581,12 +6591,12 @@ 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:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Create.php:56 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 #: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58 msgid "Name" msgstr "Namn" @@ -7151,11 +7161,11 @@ msgstr "" msgid "Network feed not available." msgstr "" -#: src/Module/Conversation/Timeline.php:190 +#: src/Module/Conversation/Timeline.php:193 msgid "Include" msgstr "Inkludera" -#: src/Module/Conversation/Timeline.php:191 +#: src/Module/Conversation/Timeline.php:194 msgid "Hide" msgstr "Dölj" @@ -7424,19 +7434,19 @@ msgstr "" msgid "Lookup address:" msgstr "" -#: src/Module/Directory.php:61 +#: src/Module/Directory.php:60 msgid "No entries (some entries may be hidden)." msgstr "Inget att visa. (Man kan välja att inte synas här)" -#: src/Module/Directory.php:77 +#: src/Module/Directory.php:76 msgid "Find on this site" msgstr "Hitta på den här sidan" -#: src/Module/Directory.php:79 +#: src/Module/Directory.php:78 msgid "Results for:" msgstr "" -#: src/Module/Directory.php:81 +#: src/Module/Directory.php:80 msgid "Site Directory" msgstr "Medlemskatalog" @@ -7689,40 +7699,40 @@ msgid "" " administrator email. This will allow you to enter the site admin panel." msgstr "" -#: src/Module/Invite.php:43 +#: src/Module/Invite.php:42 msgid "Total invitation limit exceeded." msgstr "" -#: src/Module/Invite.php:68 +#: src/Module/Invite.php:67 #, php-format msgid "%s : Not a valid email address." msgstr "%s : Ogiltig e-postadress." -#: src/Module/Invite.php:94 +#: src/Module/Invite.php:93 msgid "Please join us on Friendica" msgstr "" -#: src/Module/Invite.php:103 +#: src/Module/Invite.php:102 msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: src/Module/Invite.php:107 +#: src/Module/Invite.php:106 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Meddelandet kom inte fram." -#: src/Module/Invite.php:111 +#: src/Module/Invite.php:110 #, php-format msgid "%d message sent." msgid_plural "%d messages sent." msgstr[0] "%d meddelande har skickats." msgstr[1] "%d meddelanden har skickats." -#: src/Module/Invite.php:129 +#: src/Module/Invite.php:127 msgid "You have no more invitations available" msgstr "Du har inga fler inbjudningar tillgängliga" -#: src/Module/Invite.php:136 +#: src/Module/Invite.php:134 #, php-format msgid "" "Visit %s for a list of public sites that you can join. Friendica members on " @@ -7730,14 +7740,14 @@ msgid "" " other social networks." msgstr "" -#: src/Module/Invite.php:138 +#: src/Module/Invite.php:136 #, php-format msgid "" "To accept this invitation, please visit and register at %s or any other " "public Friendica website." msgstr "" -#: src/Module/Invite.php:139 +#: src/Module/Invite.php:137 #, php-format msgid "" "Friendica sites all inter-connect to create a huge privacy-enhanced social " @@ -7746,48 +7756,48 @@ msgid "" "sites you can join." msgstr "" -#: src/Module/Invite.php:143 +#: src/Module/Invite.php:141 msgid "" "Our apologies. This system is not currently configured to connect with other" " public sites or invite members." msgstr "" -#: src/Module/Invite.php:146 +#: src/Module/Invite.php:144 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:145 +#: src/Module/Invite.php:143 #, php-format msgid "To accept this invitation, please visit and register at %s." msgstr "" -#: src/Module/Invite.php:153 +#: src/Module/Invite.php:151 msgid "Send invitations" msgstr "Skicka inbjudningar" -#: src/Module/Invite.php:154 +#: src/Module/Invite.php:152 msgid "Enter email addresses, one per line:" msgstr "Ange e-postadresser, en per rad:" -#: src/Module/Invite.php:158 +#: src/Module/Invite.php:156 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:160 +#: src/Module/Invite.php:158 msgid "You will need to supply this invitation code: $invite_code" msgstr "" -#: src/Module/Invite.php:160 +#: src/Module/Invite.php:158 msgid "" "Once you have registered, please connect with me via my profile page at:" msgstr "Vi kan bli kontakter via min profil. Besök min profil här när du har registrerat dig:" -#: src/Module/Invite.php:162 +#: src/Module/Invite.php:160 msgid "" "For more information about the Friendica project and why we feel it is " "important, please visit http://friendi.ca" @@ -7889,12 +7899,12 @@ msgid "File upload failed." msgstr "Uppladdning av filen misslyckades." #: src/Module/Media/Photo/Upload.php:136 src/Module/Media/Photo/Upload.php:137 -#: src/Module/Profile/Photos.php:204 +#: src/Module/Profile/Photos.php:212 #: src/Module/Settings/Profile/Photo/Index.php:53 msgid "Unable to process image." msgstr "Det gick inte att behandla bilden." -#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:224 +#: src/Module/Media/Photo/Upload.php:162 src/Module/Profile/Photos.php:232 #: src/Module/Settings/Profile/Photo/Index.php:80 msgid "Image upload failed." msgstr "Fel vid bilduppladdning." @@ -7927,23 +7937,23 @@ msgstr "Ta bort" msgid "List of pending user deletions" msgstr "Lista över väntande borttagningar av användare" -#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:469 +#: src/Module/Moderation/BaseUsers.php:110 src/Module/Settings/Account.php:431 msgid "Normal Account Page" msgstr "Normal konto-sida" -#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:476 +#: src/Module/Moderation/BaseUsers.php:111 src/Module/Settings/Account.php:438 msgid "Soapbox Page" msgstr "" -#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:483 +#: src/Module/Moderation/BaseUsers.php:112 src/Module/Settings/Account.php:445 msgid "Public Group" msgstr "" -#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:490 +#: src/Module/Moderation/BaseUsers.php:113 src/Module/Settings/Account.php:452 msgid "Public Group - Restricted" msgstr "" -#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:497 +#: src/Module/Moderation/BaseUsers.php:114 src/Module/Settings/Account.php:459 msgid "Automatic Friend Page" msgstr "" @@ -7952,22 +7962,22 @@ msgid "Private Group" msgstr "" #: src/Module/Moderation/BaseUsers.php:118 -#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:440 +#: src/Module/Moderation/Summary.php:42 src/Module/Settings/Account.php:402 msgid "Personal Page" msgstr "Personlig sida" #: src/Module/Moderation/BaseUsers.php:119 -#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:447 +#: src/Module/Moderation/Summary.php:43 src/Module/Settings/Account.php:409 msgid "Organisation Page" msgstr "Sida för organisation" #: src/Module/Moderation/BaseUsers.php:120 -#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:454 +#: src/Module/Moderation/Summary.php:44 src/Module/Settings/Account.php:416 msgid "News Page" msgstr "" #: src/Module/Moderation/BaseUsers.php:121 -#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:461 +#: src/Module/Moderation/Summary.php:45 src/Module/Settings/Account.php:423 msgid "Community Group" msgstr "" @@ -7997,9 +8007,9 @@ msgid "Block Remote Contact" msgstr "" #: src/Module/Moderation/Blocklist/Contact.php:102 -#: 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/Active.php:124 +#: src/Module/Moderation/Users/Blocked.php:124 +#: src/Module/Moderation/Users/Index.php:138 #: src/Module/Moderation/Users/Pending.php:84 msgid "select all" msgstr "välj alla" @@ -8340,9 +8350,9 @@ msgid "Tag" msgstr "Taggar" #: src/Module/Moderation/Item/Source.php:77 -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 -#: src/Module/Moderation/Users/Index.php:126 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 +#: src/Module/Moderation/Users/Index.php:129 msgid "Type" msgstr "Typ" @@ -8607,7 +8617,7 @@ msgstr[1] "" msgid "URL of the reported contact." msgstr "" -#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:418 +#: src/Module/Moderation/Summary.php:46 src/Module/Settings/Account.php:380 msgid "Channel Relay" msgstr "" @@ -8628,11 +8638,11 @@ msgstr[0] "" msgstr[1] "" #: src/Module/Moderation/Users/Active.php:37 -#: src/Module/Moderation/Users/Active.php:71 +#: src/Module/Moderation/Users/Active.php:74 #: src/Module/Moderation/Users/Blocked.php:37 -#: src/Module/Moderation/Users/Blocked.php:71 +#: src/Module/Moderation/Users/Blocked.php:74 #: src/Module/Moderation/Users/Index.php:44 -#: src/Module/Moderation/Users/Index.php:78 +#: src/Module/Moderation/Users/Index.php:81 msgid "You can't remove yourself" msgstr "" @@ -8645,81 +8655,81 @@ msgid_plural "%s users deleted" msgstr[0] "%sanvändare togs bort" msgstr[1] "%s användare togs bort" -#: src/Module/Moderation/Users/Active.php:69 -#: src/Module/Moderation/Users/Blocked.php:69 -#: src/Module/Moderation/Users/Index.php:76 +#: src/Module/Moderation/Users/Active.php:72 +#: src/Module/Moderation/Users/Blocked.php:72 +#: src/Module/Moderation/Users/Index.php:79 #, php-format msgid "User \"%s\" deleted" msgstr "" -#: src/Module/Moderation/Users/Active.php:79 -#: src/Module/Moderation/Users/Index.php:86 +#: src/Module/Moderation/Users/Active.php:82 +#: src/Module/Moderation/Users/Index.php:89 #, php-format msgid "User \"%s\" blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Register date" msgstr "Datum för registrering" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last login" msgstr "Senaste inloggning" -#: src/Module/Moderation/Users/Active.php:112 -#: src/Module/Moderation/Users/Blocked.php:112 +#: src/Module/Moderation/Users/Active.php:115 +#: src/Module/Moderation/Users/Blocked.php:115 #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:126 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:129 +#: src/Module/Moderation/Users/Index.php:149 msgid "Last public item" msgstr "" -#: src/Module/Moderation/Users/Active.php:120 +#: src/Module/Moderation/Users/Active.php:123 msgid "Active Accounts" msgstr "" -#: src/Module/Moderation/Users/Active.php:124 -#: src/Module/Moderation/Users/Blocked.php:123 -#: src/Module/Moderation/Users/Index.php:139 +#: src/Module/Moderation/Users/Active.php:127 +#: src/Module/Moderation/Users/Blocked.php:126 +#: src/Module/Moderation/Users/Index.php:142 msgid "User blocked" msgstr "" -#: src/Module/Moderation/Users/Active.php:125 -#: src/Module/Moderation/Users/Blocked.php:125 -#: src/Module/Moderation/Users/Index.php:141 +#: src/Module/Moderation/Users/Active.php:128 +#: src/Module/Moderation/Users/Blocked.php:128 +#: src/Module/Moderation/Users/Index.php:144 msgid "Site admin" msgstr "" -#: src/Module/Moderation/Users/Active.php:126 -#: src/Module/Moderation/Users/Blocked.php:126 -#: src/Module/Moderation/Users/Index.php:142 +#: src/Module/Moderation/Users/Active.php:129 +#: src/Module/Moderation/Users/Blocked.php:129 +#: src/Module/Moderation/Users/Index.php:145 msgid "Account expired" msgstr "Kontot slutade gälla" -#: src/Module/Moderation/Users/Active.php:127 -#: src/Module/Moderation/Users/Index.php:145 +#: src/Module/Moderation/Users/Active.php:130 +#: src/Module/Moderation/Users/Index.php:148 msgid "Create a new user" msgstr "" -#: src/Module/Moderation/Users/Active.php:133 -#: src/Module/Moderation/Users/Blocked.php:132 -#: src/Module/Moderation/Users/Index.php:151 +#: src/Module/Moderation/Users/Active.php:136 +#: src/Module/Moderation/Users/Blocked.php:135 +#: src/Module/Moderation/Users/Index.php:154 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:134 -#: src/Module/Moderation/Users/Blocked.php:133 -#: src/Module/Moderation/Users/Index.php:152 +#: src/Module/Moderation/Users/Active.php:137 +#: src/Module/Moderation/Users/Blocked.php:136 +#: src/Module/Moderation/Users/Index.php:155 msgid "" "The user {0} will be deleted!\\n\\nEverything this user has posted on this " "site will be permanently deleted!\\n\\nAre you sure?" @@ -8733,13 +8743,13 @@ msgid_plural "%s users unblocked" msgstr[0] "" msgstr[1] "" -#: src/Module/Moderation/Users/Blocked.php:78 -#: src/Module/Moderation/Users/Index.php:92 +#: src/Module/Moderation/Users/Blocked.php:81 +#: src/Module/Moderation/Users/Index.php:95 #, php-format msgid "User \"%s\" unblocked" msgstr "" -#: src/Module/Moderation/Users/Blocked.php:120 +#: src/Module/Moderation/Users/Blocked.php:123 msgid "Blocked Users" msgstr "" @@ -8772,11 +8782,11 @@ msgid "Users awaiting permanent deletion" msgstr "" #: src/Module/Moderation/Users/Deleted.php:69 -#: src/Module/Moderation/Users/Index.php:146 +#: src/Module/Moderation/Users/Index.php:149 msgid "Permanent deletion" msgstr "" -#: src/Module/Moderation/Users/Index.php:136 +#: src/Module/Moderation/Users/Index.php:139 msgid "User waiting for permanent deletion" msgstr "" @@ -8941,7 +8951,7 @@ msgstr "" msgid "Invalid data or unknown client" msgstr "" -#: src/Module/OAuth/Token.php:91 +#: src/Module/OAuth/Token.php:73 msgid "Unsupported or missing grant type" msgstr "" @@ -8993,7 +9003,7 @@ msgstr "ignorerades" msgid "Keep this window open until done." msgstr "Håll det här fönstret öppet tills du är klar." -#: src/Module/OpenSearch.php:57 +#: src/Module/OpenSearch.php:55 #, php-format msgid "Search in Friendica %s" msgstr "" @@ -9007,12 +9017,12 @@ msgstr "" msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:174 +#: src/Module/Photo.php:178 #, php-format msgid "Invalid external resource with url %s." msgstr "" -#: src/Module/Photo.php:176 +#: src/Module/Photo.php:180 #, php-format msgid "Invalid photo with id %s." msgstr "" @@ -9045,15 +9055,15 @@ msgstr "Klistra in ljudlänk" msgid "audio link" msgstr "ljudlänk" -#: src/Module/Post/Tag/Remove.php:92 +#: src/Module/Post/Tag/Remove.php:93 msgid "Remove Item Tag" msgstr "Ta bort tagg" -#: src/Module/Post/Tag/Remove.php:93 +#: src/Module/Post/Tag/Remove.php:94 msgid "Select a tag to remove: " msgstr "Välj vilken tagg som ska tas bort: " -#: src/Module/Post/Tag/Remove.php:94 +#: src/Module/Post/Tag/Remove.php:95 #: src/Module/Settings/TwoFactor/Trusted.php:133 msgid "Remove" msgstr "Ta bort" @@ -9132,32 +9142,32 @@ msgstr "" msgid "%s's timeline" msgstr "" -#: src/Module/Profile/Photos.php:153 src/Module/Profile/Photos.php:156 -#: src/Module/Profile/Photos.php:181 +#: src/Module/Profile/Photos.php:157 src/Module/Profile/Photos.php:160 +#: src/Module/Profile/Photos.php:189 #: src/Module/Settings/Profile/Photo/Index.php:44 #, php-format msgid "Image exceeds size limit of %s" msgstr "Bildstorlek överstiger %s" -#: src/Module/Profile/Photos.php:159 +#: src/Module/Profile/Photos.php:163 msgid "Image upload didn't complete, please try again" msgstr "Uppladdningen av bilden slutfördes inte, vänligen försök igen." -#: src/Module/Profile/Photos.php:162 +#: src/Module/Profile/Photos.php:166 msgid "Image file is missing" msgstr "Bildfilen saknas" -#: src/Module/Profile/Photos.php:167 +#: src/Module/Profile/Photos.php:171 msgid "" "Server can't accept new file upload at this time, please contact your " "administrator" msgstr "Servern kan just nu inte acceptera uppladdning av en ny fil, vänligen kontakta din administratör" -#: src/Module/Profile/Photos.php:189 +#: src/Module/Profile/Photos.php:197 msgid "Image file is empty." msgstr "Bildfilen är tom." -#: src/Module/Profile/Photos.php:341 +#: src/Module/Profile/Photos.php:349 msgid "View Album" msgstr "Titta i album" @@ -9273,15 +9283,15 @@ msgid "" "content from anonymous visitors." msgstr "" -#: src/Module/Profile/Schedule.php:69 +#: src/Module/Profile/Schedule.php:67 msgid "Scheduled" msgstr "" -#: src/Module/Profile/Schedule.php:70 +#: src/Module/Profile/Schedule.php:68 msgid "Content" msgstr "" -#: src/Module/Profile/Schedule.php:71 +#: src/Module/Profile/Schedule.php:69 msgid "Remove post" msgstr "" @@ -9346,7 +9356,7 @@ msgid "Please repeat your e-mail address:" msgstr "" #: src/Module/Register.php:156 src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:551 +#: src/Module/Settings/Account.php:513 msgid "New Password:" msgstr "Nytt lösenord" @@ -9355,7 +9365,7 @@ 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:552 +#: src/Module/Settings/Account.php:514 msgid "Confirm:" msgstr "Bekräfta (repetera):" @@ -9539,20 +9549,20 @@ msgstr "Utloggad." msgid "OpenID protocol error. No ID returned" msgstr "" -#: src/Module/Security/OpenID.php:76 +#: src/Module/Security/OpenID.php:78 msgid "" "Account not found. Please login to your existing account to add the OpenID " "to it." msgstr "" -#: src/Module/Security/OpenID.php:78 +#: src/Module/Security/OpenID.php:80 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:51 +#: src/Module/Settings/Account.php:49 msgid "Passwords do not match." msgstr "Lösenorden matchar inte." @@ -9561,7 +9571,7 @@ msgid "Password does not need changing." msgstr "" #: src/Module/Security/PasswordTooLong.php:63 -#: src/Module/Settings/Account.php:65 +#: src/Module/Settings/Account.php:63 msgid "Password unchanged." msgstr "Lösenordet oändrat." @@ -9581,24 +9591,24 @@ msgid "Update Password" msgstr "" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Current Password:" msgstr "Nuvarande lösenord:" #: src/Module/Security/PasswordTooLong.php:85 -#: src/Module/Settings/Account.php:553 +#: src/Module/Settings/Account.php:515 msgid "Your current password to confirm the changes" msgstr "Ditt nuvarande lösenord för att bekräfta ändringar" #: src/Module/Security/PasswordTooLong.php:86 -#: src/Module/Settings/Account.php:537 +#: src/Module/Settings/Account.php:499 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:538 +#: src/Module/Settings/Account.php:500 msgid "Password length is limited to 72 characters." msgstr "" @@ -9702,129 +9712,121 @@ msgstr "" msgid "Verify code and complete login" msgstr "" -#: src/Module/Settings/Account.php:80 +#: src/Module/Settings/Account.php:78 msgid "Please use a shorter name." msgstr "Vänligen ange ett kortare namn." -#: src/Module/Settings/Account.php:83 +#: src/Module/Settings/Account.php:81 msgid "Name too short." msgstr "Namnet för kort." -#: src/Module/Settings/Account.php:92 +#: src/Module/Settings/Account.php:90 msgid "Wrong Password." msgstr "Fel lösenord." -#: src/Module/Settings/Account.php:97 +#: src/Module/Settings/Account.php:95 msgid "Invalid email." msgstr "Ogiltig e-postadress." -#: src/Module/Settings/Account.php:101 +#: src/Module/Settings/Account.php:99 msgid "Cannot change to that email." msgstr "Kan inte byta till den e-postadressen." -#: 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 +#: 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 msgid "Settings were not updated." msgstr "Inställningarna uppdaterades inte." -#: src/Module/Settings/Account.php:331 -msgid "Contact CSV file upload error" -msgstr "" - -#: src/Module/Settings/Account.php:350 -msgid "Importing Contacts done" -msgstr "" - -#: src/Module/Settings/Account.php:363 +#: src/Module/Settings/Account.php:325 msgid "Relocate message has been send to your contacts" msgstr "" -#: src/Module/Settings/Account.php:380 +#: src/Module/Settings/Account.php:342 msgid "Unable to find your profile. Please contact your admin." msgstr "Kunde inte hitta din profil. Vänligen kontakta din admin." -#: src/Module/Settings/Account.php:420 +#: src/Module/Settings/Account.php:382 msgid "" "Account for a service that automatically shares content based on user " "defined channels." msgstr "" -#: src/Module/Settings/Account.php:430 +#: src/Module/Settings/Account.php:392 msgid "Personal Page Subtypes" msgstr "" -#: src/Module/Settings/Account.php:431 +#: src/Module/Settings/Account.php:393 msgid "Community Group Subtypes" msgstr "" -#: src/Module/Settings/Account.php:442 +#: src/Module/Settings/Account.php:404 msgid "Account for a personal profile." msgstr "Konto för personlig profil." -#: src/Module/Settings/Account.php:449 +#: src/Module/Settings/Account.php:411 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:456 +#: src/Module/Settings/Account.php:418 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:463 +#: src/Module/Settings/Account.php:425 msgid "Account for community discussions." msgstr "" -#: src/Module/Settings/Account.php:471 +#: src/Module/Settings/Account.php:433 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:478 +#: src/Module/Settings/Account.php:440 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "" -#: src/Module/Settings/Account.php:485 +#: src/Module/Settings/Account.php:447 msgid "Automatically approves all contact requests." msgstr "Godkänner automatiskt alla kontaktförfrågningar." -#: src/Module/Settings/Account.php:492 +#: src/Module/Settings/Account.php:454 msgid "Contact requests have to be manually approved." msgstr "" -#: src/Module/Settings/Account.php:499 +#: src/Module/Settings/Account.php:461 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "" -#: src/Module/Settings/Account.php:504 +#: src/Module/Settings/Account.php:466 msgid "Private Group [Experimental]" msgstr "" -#: src/Module/Settings/Account.php:506 +#: src/Module/Settings/Account.php:468 msgid "Requires manual approval of contact requests." msgstr "" -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "OpenID:" msgstr "OpenID:" -#: src/Module/Settings/Account.php:515 +#: src/Module/Settings/Account.php:477 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Valfritt) Tillåt detta OpenID för att logga in till det här kontot." -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 msgid "Publish your profile in your local site directory?" msgstr "" -#: src/Module/Settings/Account.php:523 +#: src/Module/Settings/Account.php:485 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9832,94 +9834,94 @@ msgid "" " system settings." msgstr "" -#: src/Module/Settings/Account.php:529 +#: src/Module/Settings/Account.php:491 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "" -#: src/Module/Settings/Account.php:542 +#: src/Module/Settings/Account.php:504 msgid "Account Settings" msgstr "Kontoinställningar" -#: src/Module/Settings/Account.php:543 +#: src/Module/Settings/Account.php:505 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: src/Module/Settings/Account.php:550 +#: src/Module/Settings/Account.php:512 msgid "Password Settings" msgstr "Lösenordsinställningar" -#: src/Module/Settings/Account.php:552 +#: src/Module/Settings/Account.php:514 msgid "Leave password fields blank unless changing" msgstr "Lämna fältet tomt om du inte vill byta lösenord" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Password:" msgstr "Lösenord:" -#: src/Module/Settings/Account.php:554 +#: src/Module/Settings/Account.php:516 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: src/Module/Settings/Account.php:557 +#: src/Module/Settings/Account.php:519 msgid "Delete OpenID URL" msgstr "" -#: src/Module/Settings/Account.php:559 +#: src/Module/Settings/Account.php:521 msgid "Basic Settings" msgstr "Grundläggande inställningar" -#: src/Module/Settings/Account.php:560 +#: src/Module/Settings/Account.php:522 #: src/Module/Settings/Profile/Index.php:274 msgid "Display name:" msgstr "" -#: src/Module/Settings/Account.php:561 +#: src/Module/Settings/Account.php:523 msgid "Email Address:" msgstr "E-postadress:" -#: src/Module/Settings/Account.php:562 +#: src/Module/Settings/Account.php:524 msgid "Your Timezone:" msgstr "Tidszon:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "Your Language:" msgstr "Ditt språk:" -#: src/Module/Settings/Account.php:563 +#: src/Module/Settings/Account.php:525 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "" -#: src/Module/Settings/Account.php:564 +#: src/Module/Settings/Account.php:526 msgid "Default Post Location:" msgstr "Default Post Location:" -#: src/Module/Settings/Account.php:565 +#: src/Module/Settings/Account.php:527 msgid "Use Browser Location:" msgstr "Använd webbläsarens positionering:" -#: src/Module/Settings/Account.php:567 +#: src/Module/Settings/Account.php:529 msgid "Security and Privacy Settings" msgstr "Inställningar för säkerhet och sekretess" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "Maximum Friend Requests/Day:" msgstr "Maximalt antal kontaktförfrågningar per dygn:" -#: src/Module/Settings/Account.php:569 +#: src/Module/Settings/Account.php:531 msgid "(to prevent spam abuse)" msgstr "(för att motverka spam)" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 msgid "Allow your profile to be searchable globally?" msgstr "Tillåta att din profil ska vara sökbar globalt?" -#: src/Module/Settings/Account.php:571 +#: src/Module/Settings/Account.php:533 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 " @@ -9927,43 +9929,43 @@ msgid "" "indexed or not." msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: src/Module/Settings/Account.php:572 +#: src/Module/Settings/Account.php:534 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:573 +#: src/Module/Settings/Account.php:535 msgid "Hide your public content from anonymous viewers" msgstr "" -#: src/Module/Settings/Account.php:573 +#: src/Module/Settings/Account.php:535 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:574 +#: src/Module/Settings/Account.php:536 msgid "Make public posts unlisted" msgstr "" -#: src/Module/Settings/Account.php:574 +#: src/Module/Settings/Account.php:536 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:575 +#: src/Module/Settings/Account.php:537 msgid "Make all posted pictures accessible" msgstr "" -#: src/Module/Settings/Account.php:575 +#: src/Module/Settings/Account.php:537 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 " @@ -9971,227 +9973,213 @@ msgid "" "public on your photo albums though." msgstr "" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "Allow friends to post to your profile page?" msgstr "Tillåta vänner att göra inlägg på din profilsida?" -#: src/Module/Settings/Account.php:576 +#: src/Module/Settings/Account.php:538 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Allow friends to tag your posts?" msgstr "Tillåt vänner att tagga dina inlägg?" -#: src/Module/Settings/Account.php:577 +#: src/Module/Settings/Account.php:539 msgid "Your contacts can add additional tags to your posts." msgstr "Dina kontakter kan lägga till ytterligare taggar till dina inlägg." -#: src/Module/Settings/Account.php:578 +#: src/Module/Settings/Account.php:540 msgid "Default privacy circle for new contacts" msgstr "" -#: src/Module/Settings/Account.php:579 +#: src/Module/Settings/Account.php:541 msgid "Default privacy circle for new group contacts" msgstr "" -#: src/Module/Settings/Account.php:580 +#: src/Module/Settings/Account.php:542 msgid "Default Post Permissions" msgstr "Standardåtkomst för inlägg" -#: src/Module/Settings/Account.php:584 +#: src/Module/Settings/Account.php:546 msgid "Expiration settings" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "Automatically expire posts after this many days:" msgstr "" -#: src/Module/Settings/Account.php:585 +#: src/Module/Settings/Account.php:547 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "Expire posts" msgstr "" -#: src/Module/Settings/Account.php:586 +#: src/Module/Settings/Account.php:548 msgid "When activated, posts and comments will be expired." msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "Expire personal notes" msgstr "" -#: src/Module/Settings/Account.php:587 +#: src/Module/Settings/Account.php:549 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "Expire starred posts" msgstr "" -#: src/Module/Settings/Account.php:588 +#: src/Module/Settings/Account.php:550 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 msgid "Only expire posts by others" msgstr "" -#: src/Module/Settings/Account.php:589 +#: src/Module/Settings/Account.php:551 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:592 +#: src/Module/Settings/Account.php:554 msgid "Notification Settings" msgstr "Aviseringsinställningar" -#: src/Module/Settings/Account.php:593 +#: src/Module/Settings/Account.php:555 msgid "Send a notification email when:" msgstr "Skicka ett aviseringsmail när:" -#: src/Module/Settings/Account.php:594 +#: src/Module/Settings/Account.php:556 msgid "You receive an introduction" msgstr "En kontaktförfrågan anländer" -#: src/Module/Settings/Account.php:595 +#: src/Module/Settings/Account.php:557 msgid "Your introductions are confirmed" msgstr "Dina förfrågningar godkänns" -#: src/Module/Settings/Account.php:596 +#: src/Module/Settings/Account.php:558 msgid "Someone writes on your profile wall" msgstr "Någon gör inlägg på din profilsida" -#: src/Module/Settings/Account.php:597 +#: src/Module/Settings/Account.php:559 msgid "Someone writes a followup comment" msgstr "Någon gör ett inlägg i samma tråd som du" -#: src/Module/Settings/Account.php:598 +#: src/Module/Settings/Account.php:560 msgid "You receive a private message" msgstr "Du får personliga meddelanden" -#: src/Module/Settings/Account.php:599 +#: src/Module/Settings/Account.php:561 msgid "You receive a friend suggestion" msgstr "Du tar emot ett vän-förslag" -#: src/Module/Settings/Account.php:600 +#: src/Module/Settings/Account.php:562 msgid "You are tagged in a post" msgstr "Du är taggad i ett inlägg" -#: src/Module/Settings/Account.php:602 +#: src/Module/Settings/Account.php:564 msgid "Create a desktop notification when:" msgstr "Skapa en skrivbordsavisering när:" -#: src/Module/Settings/Account.php:603 +#: src/Module/Settings/Account.php:565 msgid "Someone tagged you" msgstr "" -#: src/Module/Settings/Account.php:604 +#: src/Module/Settings/Account.php:566 msgid "Someone directly commented on your post" msgstr "" -#: src/Module/Settings/Account.php:605 +#: src/Module/Settings/Account.php:567 msgid "Someone liked your content" msgstr "Någon gillade ditt innehåll" -#: src/Module/Settings/Account.php:605 src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:567 src/Module/Settings/Account.php:568 msgid "Can only be enabled, when the direct comment notification is enabled." msgstr "" -#: src/Module/Settings/Account.php:606 +#: src/Module/Settings/Account.php:568 msgid "Someone shared your content" msgstr "Någon delade ditt innehåll" -#: src/Module/Settings/Account.php:607 +#: src/Module/Settings/Account.php:569 msgid "Someone commented in your thread" msgstr "" -#: src/Module/Settings/Account.php:608 +#: src/Module/Settings/Account.php:570 msgid "Someone commented in a thread where you commented" msgstr "" -#: src/Module/Settings/Account.php:609 +#: src/Module/Settings/Account.php:571 msgid "Someone commented in a thread where you interacted" msgstr "" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Activate desktop notifications" msgstr "Aktivera skrivbordsaviseringar" -#: src/Module/Settings/Account.php:611 +#: src/Module/Settings/Account.php:573 msgid "Show desktop popup on new notifications" msgstr "" -#: src/Module/Settings/Account.php:615 +#: src/Module/Settings/Account.php:577 msgid "Text-only notification emails" msgstr "" -#: src/Module/Settings/Account.php:617 +#: src/Module/Settings/Account.php:579 msgid "Send text only notification emails, without the html part" msgstr "" -#: src/Module/Settings/Account.php:621 +#: src/Module/Settings/Account.php:583 msgid "Show detailled notifications" msgstr "Visa detaljerade aviseringar" -#: src/Module/Settings/Account.php:623 +#: src/Module/Settings/Account.php:585 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "" -#: src/Module/Settings/Account.php:627 +#: src/Module/Settings/Account.php:589 msgid "Show notifications of ignored contacts" msgstr "" -#: src/Module/Settings/Account.php:629 +#: src/Module/Settings/Account.php:591 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:632 +#: src/Module/Settings/Account.php:594 msgid "Advanced Account/Page Type Settings" msgstr "" -#: src/Module/Settings/Account.php:633 +#: src/Module/Settings/Account.php:595 msgid "Change the behaviour of this account for special situations" msgstr "" -#: src/Module/Settings/Account.php:636 -msgid "Import Contacts" -msgstr "Importera kontakter" - -#: src/Module/Settings/Account.php:637 -msgid "" -"Upload a CSV file that contains the handle of your followed accounts in the " -"first column you exported from the old account." -msgstr "" - -#: src/Module/Settings/Account.php:638 -msgid "Upload File" -msgstr "Ladda upp fil" - -#: src/Module/Settings/Account.php:641 +#: src/Module/Settings/Account.php:598 msgid "Relocate" msgstr "Omlokalisera" -#: src/Module/Settings/Account.php:642 +#: src/Module/Settings/Account.php:599 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 "Om du har flyttat den här profilen från en annan server och några av dina kontakter inte får dina uppdateringar, försök att trycka på den här knappen." -#: src/Module/Settings/Account.php:643 +#: src/Module/Settings/Account.php:600 msgid "Resend relocate message to contacts" msgstr "" @@ -10356,214 +10344,232 @@ msgstr "" msgid "Delete entry from the channel list?" msgstr "" -#: src/Module/Settings/Connectors.php:108 +#: src/Module/Settings/Connectors.php:107 msgid "Failed to connect with email account using the settings provided." msgstr "Kunde inte ansluta till e-postkontot med aktuella inställningar" -#: src/Module/Settings/Connectors.php:155 -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:149 +#: src/Module/Settings/Connectors.php:150 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: src/Module/Settings/Connectors.php:155 +#: src/Module/Settings/Connectors.php:149 #, php-format msgid "Built-in support for %s connectivity is enabled" msgstr "" -#: src/Module/Settings/Connectors.php:156 +#: src/Module/Settings/Connectors.php:150 #, php-format msgid "Built-in support for %s connectivity is disabled" msgstr "" -#: src/Module/Settings/Connectors.php:167 +#: src/Module/Settings/Connectors.php:161 msgid "Email access is disabled on this site." msgstr "E-poståtkomst är inaktiverat på den här sidan." -#: src/Module/Settings/Connectors.php:182 -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:176 +#: src/Module/Settings/Connectors.php:226 msgid "None" msgstr "Ingen" -#: src/Module/Settings/Connectors.php:186 +#: src/Module/Settings/Connectors.php:180 msgid "Default (Mastodon will display the title and a link to the post)" msgstr "" -#: src/Module/Settings/Connectors.php:187 +#: src/Module/Settings/Connectors.php:181 msgid "" "Use the summary (Mastodon and some others will treat it as content warning)" msgstr "" -#: src/Module/Settings/Connectors.php:188 +#: src/Module/Settings/Connectors.php:182 msgid "Embed the title in the body" msgstr "" -#: src/Module/Settings/Connectors.php:199 +#: src/Module/Settings/Connectors.php:193 msgid "General Social Media Settings" msgstr "Generella inställningar för sociala medier" -#: src/Module/Settings/Connectors.php:202 +#: src/Module/Settings/Connectors.php:196 msgid "Followed content scope" msgstr "" -#: src/Module/Settings/Connectors.php:204 +#: src/Module/Settings/Connectors.php:198 msgid "" "By default, conversations in which your follows participated but didn't " "start will be shown in your timeline. You can turn this behavior off, or " "expand it to the conversations in which your follows liked a post." msgstr "" -#: src/Module/Settings/Connectors.php:206 +#: src/Module/Settings/Connectors.php:200 msgid "Only conversations my follows started" msgstr "" -#: src/Module/Settings/Connectors.php:207 +#: src/Module/Settings/Connectors.php:201 msgid "Conversations my follows started or commented on (default)" msgstr "" -#: src/Module/Settings/Connectors.php:208 +#: src/Module/Settings/Connectors.php:202 msgid "Any conversation my follows interacted with, including likes" msgstr "" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "Collapse sensitive posts" msgstr "" -#: src/Module/Settings/Connectors.php:211 +#: src/Module/Settings/Connectors.php:205 msgid "" "If a post is marked as \"sensitive\", it will be displayed in a collapsed " "state, if this option is enabled." msgstr "" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "Enable intelligent shortening" msgstr "Aktivera intelligent förkortning" -#: src/Module/Settings/Connectors.php:212 +#: src/Module/Settings/Connectors.php:206 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If disabled, every shortened post will always point to the original " "friendica post." msgstr "" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "Enable simple text shortening" msgstr "" -#: src/Module/Settings/Connectors.php:213 +#: src/Module/Settings/Connectors.php:207 msgid "" "Normally the system shortens posts at the next line feed. If this option is " "enabled then the system will shorten the text at the maximum character " "limit." msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "Attach the link title" msgstr "" -#: src/Module/Settings/Connectors.php:214 +#: src/Module/Settings/Connectors.php:208 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "API: Use spoiler field as title" msgstr "" -#: src/Module/Settings/Connectors.php:215 +#: src/Module/Settings/Connectors.php:209 msgid "" "When activated, the \"spoiler_text\" field in the API will be used for the " "title on standalone posts. When deactivated it will be used for spoiler " "text. For comments it will always be used for spoiler text." msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "API: Automatically links at the end of the post as attached posts" msgstr "" -#: src/Module/Settings/Connectors.php:216 +#: src/Module/Settings/Connectors.php:210 msgid "" "When activated, added links at the end of the post react the same way as " "added links in the web interface." msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "Article Mode" msgstr "" -#: src/Module/Settings/Connectors.php:217 +#: src/Module/Settings/Connectors.php:211 msgid "" "Controls how posts with titles are transmitted. Mastodon and its forks don't" " display the content of these posts if the post is created in the correct " "(default) way." msgstr "" -#: src/Module/Settings/Connectors.php:218 -msgid "Your legacy ActivityPub/GNU Social account" -msgstr "" - -#: src/Module/Settings/Connectors.php:218 -msgid "" -"If you enter your old account name from an ActivityPub based system or your " -"GNU Social/Statusnet account name here (in the format user@domain.tld), your" -" contacts will be added automatically. The field will be emptied when done." -msgstr "" - -#: src/Module/Settings/Connectors.php:222 +#: src/Module/Settings/Connectors.php:215 msgid "Email/Mailbox Setup" msgstr "" -#: src/Module/Settings/Connectors.php:223 +#: src/Module/Settings/Connectors.php:216 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "För att kommunicera via e-post med denna tjänst (valfritt), vänligen ange anslutningssätt till ditt e-postkonto." -#: src/Module/Settings/Connectors.php:224 +#: src/Module/Settings/Connectors.php:217 msgid "Last successful email check:" msgstr "" -#: src/Module/Settings/Connectors.php:226 +#: src/Module/Settings/Connectors.php:219 msgid "IMAP server name:" msgstr "Namn på IMAP-server:" -#: src/Module/Settings/Connectors.php:227 +#: src/Module/Settings/Connectors.php:220 msgid "IMAP port:" msgstr "Port för IMAP:" -#: src/Module/Settings/Connectors.php:228 +#: src/Module/Settings/Connectors.php:221 msgid "Security:" msgstr "Säkerhet:" -#: src/Module/Settings/Connectors.php:229 +#: src/Module/Settings/Connectors.php:222 msgid "Email login name:" msgstr "Inloggningsnamn för e-post:" -#: src/Module/Settings/Connectors.php:230 +#: src/Module/Settings/Connectors.php:223 msgid "Email password:" msgstr "Lösenord för e-post:" -#: src/Module/Settings/Connectors.php:231 +#: src/Module/Settings/Connectors.php:224 msgid "Reply-to address:" msgstr "Svara till-adress:" -#: src/Module/Settings/Connectors.php:232 +#: src/Module/Settings/Connectors.php:225 msgid "Send public posts to all email contacts:" msgstr "Skicka publika inlägg till alla e-postkontakter:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Action after import:" msgstr "Åtgärd efter importering:" -#: src/Module/Settings/Connectors.php:233 +#: src/Module/Settings/Connectors.php:226 msgid "Move to folder" msgstr "Flytta till mapp" -#: src/Module/Settings/Connectors.php:234 +#: src/Module/Settings/Connectors.php:227 msgid "Move to folder:" msgstr "Flytta till mapp:" +#: src/Module/Settings/ContactImport.php:63 +msgid "Contact CSV file upload error" +msgstr "" + +#: src/Module/Settings/ContactImport.php:82 +msgid "Importing Contacts done" +msgstr "" + +#: src/Module/Settings/ContactImport.php:112 +msgid "" +"Upload a CSV file that contains the handle of your followed accounts in the " +"first column you exported from the old account." +msgstr "" + +#: src/Module/Settings/ContactImport.php:113 +msgid "Upload File" +msgstr "Ladda upp fil" + +#: src/Module/Settings/ContactImport.php:115 +msgid "Your legacy ActivityPub/GNU Social account" +msgstr "" + +#: src/Module/Settings/ContactImport.php:115 +msgid "" +"If you enter your old account name from an ActivityPub based system or your " +"GNU Social/Statusnet account name here (in the format user@domain.tld), your" +" contacts will be added automatically. The field will be emptied when done." +msgstr "" + #: src/Module/Settings/Delegation.php:59 msgid "Delegation successfully granted." msgstr "" @@ -11014,42 +11020,42 @@ msgstr "Privata nyckelord:" msgid "(Used for searching profiles, never shown to others)" msgstr "(Obs, kan ge sökträffar vid sökning av profiler. Visas annars inte för andra.)" -#: 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/Crop.php:90 +#: src/Module/Settings/Profile/Photo/Crop.php:108 +#: src/Module/Settings/Profile/Photo/Crop.php:126 #: src/Module/Settings/Profile/Photo/Index.php:86 #, php-format msgid "Image size reduction [%s] failed." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:136 +#: src/Module/Settings/Profile/Photo/Crop.php:133 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:141 +#: src/Module/Settings/Profile/Photo/Crop.php:138 msgid "Unable to process image" msgstr "Det gick inte att behandla bilden" -#: src/Module/Settings/Profile/Photo/Crop.php:160 +#: src/Module/Settings/Profile/Photo/Crop.php:157 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:182 +#: src/Module/Settings/Profile/Photo/Crop.php:179 msgid "Profile picture successfully updated." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:208 -#: src/Module/Settings/Profile/Photo/Crop.php:212 +#: src/Module/Settings/Profile/Photo/Crop.php:205 +#: src/Module/Settings/Profile/Photo/Crop.php:209 msgid "Crop Image" msgstr "Beskär bild" -#: src/Module/Settings/Profile/Photo/Crop.php:209 +#: src/Module/Settings/Profile/Photo/Crop.php:206 msgid "Please adjust the image cropping for optimum viewing." msgstr "Välj hur bilden ska beskäras för att bli så bra som möjligt." -#: src/Module/Settings/Profile/Photo/Crop.php:211 +#: src/Module/Settings/Profile/Photo/Crop.php:208 msgid "Use Image As Is" msgstr "" @@ -11120,17 +11126,17 @@ msgstr "ID för användaren är %d" msgid "Your account has been successfully removed. Bye bye!" msgstr "" -#: src/Module/Settings/RemoveMe.php:116 +#: src/Module/Settings/RemoveMe.php:114 msgid "Remove My Account" msgstr "Ta bort mitt konto" -#: src/Module/Settings/RemoveMe.php:117 +#: src/Module/Settings/RemoveMe.php:115 msgid "" "This will completely remove your account. Once this has been done it is not " "recoverable." msgstr "Detta kommer att ta bort kontot helt och hållet. Efter att det är gjort går det inte att återställa." -#: src/Module/Settings/RemoveMe.php:122 +#: src/Module/Settings/RemoveMe.php:120 msgid "Please enter your password for verification:" msgstr "Ange lösenordet igen för säkerhets skull:" @@ -11525,11 +11531,11 @@ msgstr "" msgid "Possible reasons include:" msgstr "" -#: src/Module/Special/HTTPException.php:64 +#: src/Module/Special/HTTPException.php:65 msgid "Stack trace:" msgstr "" -#: src/Module/Special/HTTPException.php:69 +#: src/Module/Special/HTTPException.php:70 #, php-format msgid "Exception thrown in %s:%d" msgstr "" @@ -12312,295 +12318,295 @@ msgstr "Kontakta avsändaren genom att svara på det här meddelandet om du inte msgid "%s posted an update." msgstr "%s har gjort ett inlägg." -#: src/Object/Post.php:124 +#: src/Object/Post.php:125 msgid "Private Message" msgstr "Privat meddelande" -#: src/Object/Post.php:128 +#: src/Object/Post.php:129 msgid "Public Message" msgstr "" -#: src/Object/Post.php:132 +#: src/Object/Post.php:133 msgid "Unlisted Message" msgstr "" -#: src/Object/Post.php:168 +#: src/Object/Post.php:169 msgid "This entry was edited" msgstr "Den här posten redigerades" -#: src/Object/Post.php:196 +#: src/Object/Post.php:197 msgid "Connector Message" msgstr "" -#: src/Object/Post.php:225 src/Object/Post.php:227 +#: src/Object/Post.php:226 src/Object/Post.php:228 msgid "Edit" msgstr "Ändra" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Delete globally" msgstr "" -#: src/Object/Post.php:261 +#: src/Object/Post.php:262 msgid "Remove locally" msgstr "" -#: src/Object/Post.php:268 +#: src/Object/Post.php:269 #, php-format msgid "Block %s" msgstr "" -#: src/Object/Post.php:273 +#: src/Object/Post.php:274 #, php-format msgid "Ignore %s" msgstr "" -#: src/Object/Post.php:278 +#: src/Object/Post.php:279 #, php-format msgid "Collapse %s" msgstr "" -#: src/Object/Post.php:282 +#: src/Object/Post.php:283 msgid "Report post" msgstr "" -#: src/Object/Post.php:293 +#: src/Object/Post.php:294 msgid "Save to folder" msgstr "" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will attend" msgstr "" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I will not attend" msgstr "" -#: src/Object/Post.php:333 +#: src/Object/Post.php:334 msgid "I might attend" msgstr "" -#: src/Object/Post.php:380 +#: src/Object/Post.php:381 msgid "Ignore thread" msgstr "" -#: src/Object/Post.php:381 +#: src/Object/Post.php:382 msgid "Unignore thread" msgstr "" -#: src/Object/Post.php:382 +#: src/Object/Post.php:383 msgid "Toggle ignore status" msgstr "" -#: src/Object/Post.php:392 +#: src/Object/Post.php:393 msgid "Add star" msgstr "" -#: src/Object/Post.php:393 +#: src/Object/Post.php:394 msgid "Remove star" msgstr "" -#: src/Object/Post.php:394 +#: src/Object/Post.php:395 msgid "Toggle star status" msgstr "" -#: src/Object/Post.php:405 +#: src/Object/Post.php:406 msgid "Pin" msgstr "" -#: src/Object/Post.php:406 +#: src/Object/Post.php:407 msgid "Unpin" msgstr "" -#: src/Object/Post.php:407 +#: src/Object/Post.php:408 msgid "Toggle pin status" msgstr "" -#: src/Object/Post.php:410 +#: src/Object/Post.php:411 msgid "Pinned" msgstr "" -#: src/Object/Post.php:415 +#: src/Object/Post.php:416 msgid "Add tag" msgstr "" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote share this" msgstr "" -#: src/Object/Post.php:430 +#: src/Object/Post.php:431 msgid "Quote Share" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare this" msgstr "" -#: src/Object/Post.php:433 +#: src/Object/Post.php:434 msgid "Reshare" msgstr "" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Cancel your Reshare" msgstr "" -#: src/Object/Post.php:434 +#: src/Object/Post.php:435 msgid "Unshare" msgstr "" -#: src/Object/Post.php:478 +#: src/Object/Post.php:479 #, php-format msgid "%s (Received %s)" msgstr "" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Comment this item on your system" msgstr "" -#: src/Object/Post.php:484 +#: src/Object/Post.php:485 msgid "Remote comment" msgstr "" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via ..." msgstr "" -#: src/Object/Post.php:506 +#: src/Object/Post.php:507 msgid "Share via external services" msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:514 msgid "Unknown parent" msgstr "" -#: src/Object/Post.php:517 +#: src/Object/Post.php:518 #, php-format msgid "in reply to %s" msgstr "" -#: src/Object/Post.php:519 +#: src/Object/Post.php:520 msgid "Parent is probably private or not federated." msgstr "" -#: src/Object/Post.php:543 +#: src/Object/Post.php:544 msgid "to" msgstr "till" -#: src/Object/Post.php:544 +#: src/Object/Post.php:545 msgid "via" msgstr "via" -#: src/Object/Post.php:545 +#: src/Object/Post.php:546 msgid "Wall-to-Wall" msgstr "Profil-till-profil" -#: src/Object/Post.php:546 +#: src/Object/Post.php:547 msgid "via Wall-To-Wall:" msgstr "via profil-till-profil:" -#: src/Object/Post.php:599 +#: src/Object/Post.php:600 #, php-format msgid "Reply to %s" msgstr "" -#: src/Object/Post.php:602 +#: src/Object/Post.php:603 msgid "More" msgstr "" -#: src/Object/Post.php:621 +#: src/Object/Post.php:622 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:622 +#: src/Object/Post.php:623 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:623 +#: src/Object/Post.php:624 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:624 +#: src/Object/Post.php:625 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:625 +#: src/Object/Post.php:626 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:647 +#: src/Object/Post.php:648 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d kommentar" msgstr[1] "%d kommentarer" -#: src/Object/Post.php:648 +#: src/Object/Post.php:649 msgid "Show more" msgstr "" -#: src/Object/Post.php:649 +#: src/Object/Post.php:650 msgid "Show fewer" msgstr "" -#: src/Object/Post.php:686 +#: src/Object/Post.php:687 #, php-format msgid "Reshared by: %s" msgstr "" -#: src/Object/Post.php:691 +#: src/Object/Post.php:692 #, php-format msgid "Viewed by: %s" msgstr "" -#: src/Object/Post.php:696 +#: src/Object/Post.php:697 #, php-format msgid "Read by: %s" msgstr "" -#: src/Object/Post.php:701 +#: src/Object/Post.php:702 #, php-format msgid "Liked by: %s" msgstr "" -#: src/Object/Post.php:706 +#: src/Object/Post.php:707 #, php-format msgid "Disliked by: %s" msgstr "" -#: src/Object/Post.php:711 +#: src/Object/Post.php:712 #, php-format msgid "Attended by: %s" msgstr "" -#: src/Object/Post.php:716 +#: src/Object/Post.php:717 #, php-format msgid "Maybe attended by: %s" msgstr "" -#: src/Object/Post.php:721 +#: src/Object/Post.php:722 #, php-format msgid "Not attended by: %s" msgstr "" -#: src/Object/Post.php:726 +#: src/Object/Post.php:727 #, php-format msgid "Commented by: %s" msgstr "" -#: src/Object/Post.php:731 +#: src/Object/Post.php:732 #, php-format msgid "Reacted with %s by: %s" msgstr "" -#: src/Object/Post.php:754 +#: src/Object/Post.php:755 #, php-format msgid "Quote shared by: %s" msgstr "" -#: src/Protocol/ActivityPub/Receiver.php:557 +#: src/Protocol/ActivityPub/Receiver.php:558 msgid "Chat" msgstr "" -#: src/Protocol/Delivery.php:530 +#: src/Protocol/Delivery.php:531 msgid "(no subject)" msgstr "" @@ -12613,20 +12619,20 @@ msgstr "" msgid "Login failed." msgstr "Inloggningen misslyckades." -#: src/Security/Authentication.php:260 +#: src/Security/Authentication.php:261 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:373 +#: src/Security/Authentication.php:374 #, php-format msgid "Welcome %s" msgstr "" -#: src/Security/Authentication.php:374 +#: src/Security/Authentication.php:375 msgid "Please upload a profile photo." msgstr "Vänligen ladda upp ett profil-foto." -#: src/Security/OpenWebAuth.php:149 +#: src/Security/OpenWebAuth.php:150 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s välkomnar %2$s" diff --git a/view/lang/sv/strings.php b/view/lang/sv/strings.php index 1072eab08e..577a9a5947 100644 --- a/view/lang/sv/strings.php +++ b/view/lang/sv/strings.php @@ -730,6 +730,7 @@ $a->strings['Account'] = 'Konto'; $a->strings['Display'] = 'Skärm'; $a->strings['Social Networks'] = 'Sociala nätverk'; $a->strings['Connected apps'] = 'Anslutna appar'; +$a->strings['Import Contacts'] = 'Importera kontakter'; $a->strings['Export personal data'] = 'Exporter personlig data'; $a->strings['Remove account'] = 'Ta bort konto'; $a->strings['The post was created'] = 'Inlägget skapades'; @@ -1079,8 +1080,6 @@ $a->strings['Someone liked your content'] = 'Någon gillade ditt innehåll'; $a->strings['Someone shared your content'] = 'Någon delade ditt innehåll'; $a->strings['Activate desktop notifications'] = 'Aktivera skrivbordsaviseringar'; $a->strings['Show detailled notifications'] = 'Visa detaljerade aviseringar'; -$a->strings['Import Contacts'] = 'Importera kontakter'; -$a->strings['Upload File'] = 'Ladda upp fil'; $a->strings['Relocate'] = 'Omlokalisera'; $a->strings['If you have moved this profile from another server, and some of your contacts don\'t receive your updates, try pushing this button.'] = 'Om du har flyttat den här profilen från en annan server och några av dina kontakter inte får dina uppdateringar, försök att trycka på den här knappen.'; $a->strings['Addon Settings'] = 'Inställningar för Tillägg'; @@ -1103,6 +1102,7 @@ $a->strings['Send public posts to all email contacts:'] = 'Skicka publika inläg $a->strings['Action after import:'] = 'Åtgärd efter importering:'; $a->strings['Move to folder'] = 'Flytta till mapp'; $a->strings['Move to folder:'] = 'Flytta till mapp:'; +$a->strings['Upload File'] = 'Ladda upp fil'; $a->strings['Potential Delegates'] = 'Potentiella delegater'; $a->strings['No entries.'] = 'Inga poster.'; $a->strings['Display Settings'] = 'Skärm-inställningar';