Merge branch 'develop' into replace-hooks-with-eventdispatcher
This commit is contained in:
commit
caef97752a
47 changed files with 5176 additions and 4037 deletions
32
.github/workflows/code-quality.yml
vendored
32
.github/workflows/code-quality.yml
vendored
|
|
@ -75,3 +75,35 @@ jobs:
|
|||
|
||||
- name: Run PHPStan
|
||||
run: composer run phpstan
|
||||
|
||||
phpmd:
|
||||
name: PHPMD (PHP ${{ matrix.php }})
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
operating-system: ['ubuntu-latest']
|
||||
php: ['8.4']
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 2
|
||||
|
||||
- name: Setup PHP with composer and extensions
|
||||
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
|
||||
with:
|
||||
php-version: ${{ matrix.php }}
|
||||
coverage: none
|
||||
tools: none
|
||||
|
||||
- name: Clone addon repository
|
||||
run: git clone -b develop --single-branch https://git.friendi.ca/friendica/friendica-addons.git addon
|
||||
|
||||
- name: Install Composer dependencies
|
||||
uses: "ramsey/composer-install@v2"
|
||||
|
||||
- name: Run PHPMD
|
||||
run: vendor/bin/phpmd src/ text .phpmd-ruleset.xml --color
|
||||
|
|
|
|||
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -89,6 +89,7 @@ venv/
|
|||
#Ignore cache files
|
||||
.php_cs.cache
|
||||
.php-cs-fixer.cache
|
||||
.phpmd.result-cache.php
|
||||
|
||||
#ignore avatar picture cache path
|
||||
/avatar
|
||||
|
|
|
|||
26
.phpmd-ruleset.xml
Normal file
26
.phpmd-ruleset.xml
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
<?xml version="1.0"?>
|
||||
<ruleset name="Friendica Ruleset"
|
||||
xmlns="http://pmd.sf.net/ruleset/1.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0
|
||||
http://pmd.sf.net/ruleset_xml_schema.xsd"
|
||||
xsi:noNamespaceSchemaLocation="
|
||||
http://pmd.sf.net/ruleset_xml_schema.xsd">
|
||||
<description>
|
||||
PHPMD ruleset for friendica code.
|
||||
</description>
|
||||
|
||||
<rule ref="rulesets/codesize.xml/ExcessiveClassComplexity">
|
||||
<priority>3</priority>
|
||||
<properties>
|
||||
<property name="maximum" value="800" />
|
||||
</properties>
|
||||
</rule>
|
||||
<rule ref="rulesets/codesize.xml/CyclomaticComplexity">
|
||||
<priority>3</priority>
|
||||
<properties>
|
||||
<property name="reportLevel" value="100" />
|
||||
</properties>
|
||||
</rule>
|
||||
|
||||
</ruleset>
|
||||
3
.phpmd-ruleset.xml.license
Normal file
3
.phpmd-ruleset.xml.license
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
||||
|
||||
SPDX-License-Identifier: CC0-1.0
|
||||
46
.woodpecker/.phpmd_check.yml
Normal file
46
.woodpecker/.phpmd_check.yml
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
# SPDX-FileCopyrightText: 2010 - 2024 the Friendica project
|
||||
#
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
# The phpmd 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
|
||||
settings:
|
||||
backend: "filesystem"
|
||||
restore: true
|
||||
cache_key: "{{ .Repo.Name }}_php${PHP_MAJOR_VERSION}_{{ arch }}_{{ os }}"
|
||||
archive_format: "gzip"
|
||||
mount:
|
||||
- '.composer'
|
||||
volumes:
|
||||
- /tmp/drone-cache:/tmp/cache
|
||||
|
||||
composer_install:
|
||||
image: friendicaci/php8.3:php8.3.3
|
||||
commands:
|
||||
- mkdir addon # create empty addon folder to appease composer
|
||||
- export COMPOSER_HOME=.composer
|
||||
- ./bin/composer.phar install --prefer-dist
|
||||
|
||||
rebuild_cache:
|
||||
image: meltwater/drone-cache:dev
|
||||
settings:
|
||||
backend: "filesystem"
|
||||
rebuild: true
|
||||
cache_key: "{{ .Repo.Name }}_php${PHP_MAJOR_VERSION}_{{ arch }}_{{ os }}"
|
||||
archive_format: "gzip"
|
||||
mount:
|
||||
- '.composer'
|
||||
volumes:
|
||||
- /tmp/drone-cache:/tmp/cache
|
||||
|
||||
phpmd:
|
||||
image: friendicaci/php8.3:php8.3.3
|
||||
commands:
|
||||
- ./bin/composer.phar run phpmd
|
||||
|
|
@ -70,7 +70,7 @@
|
|||
"pragmarx/google2fa": "^5.0",
|
||||
"pragmarx/recovery": "^0.2",
|
||||
"psr/clock": "^1.0",
|
||||
"psr/container": "^2.0",
|
||||
"psr/container": "^1.1|^2.0",
|
||||
"psr/event-dispatcher": "^1.0",
|
||||
"psr/log": "^1.1",
|
||||
"seld/cli-prompt": "^1.0",
|
||||
|
|
@ -154,12 +154,14 @@
|
|||
"mikey179/vfsstream": "^1.6",
|
||||
"mockery/mockery": "^1.3",
|
||||
"php-mock/php-mock-phpunit": "^2.10",
|
||||
"phpmd/phpmd": "^2.15",
|
||||
"phpstan/phpstan": "^2.0",
|
||||
"phpunit/phpunit": "^9"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "phpunit",
|
||||
"test:unit": "phpunit -c tests/phpunit.xml --testsuite unit",
|
||||
"phpmd": "phpmd src/ text .phpmd-ruleset.xml --color --cache",
|
||||
"phpstan": "phpstan analyze --memory-limit 1024M --configuration .phpstan.neon",
|
||||
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './view/asset/*' -print0 | xargs -0 -n1 php -l",
|
||||
"docker:translate": "docker run --rm -v $PWD:/data -w /data friendicaci/transifex bin/run_xgettext.sh",
|
||||
|
|
|
|||
892
composer.lock
generated
892
composer.lock
generated
|
|
@ -4,7 +4,7 @@
|
|||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "8ee8f9186d271b65b83c2ddbd12c5c03",
|
||||
"content-hash": "b77bf714197f04022a5feb001bf07852",
|
||||
"packages": [
|
||||
{
|
||||
"name": "asika/simple-console",
|
||||
|
|
@ -3139,6 +3139,9 @@
|
|||
"psr",
|
||||
"psr-6"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/php-fig/cache/tree/master"
|
||||
},
|
||||
"time": "2016-08-06T20:24:11+00:00"
|
||||
},
|
||||
{
|
||||
|
|
@ -3187,27 +3190,22 @@
|
|||
},
|
||||
{
|
||||
"name": "psr/container",
|
||||
"version": "2.0.2",
|
||||
"version": "1.1.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/php-fig/container.git",
|
||||
"reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
|
||||
"reference": "513e0666f7216c7459170d56df27dfcefe1689ea"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
|
||||
"reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
|
||||
"url": "https://api.github.com/repos/php-fig/container/zipball/513e0666f7216c7459170d56df27dfcefe1689ea",
|
||||
"reference": "513e0666f7216c7459170d56df27dfcefe1689ea",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.4.0"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "2.0.x-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Psr\\Container\\": "src/"
|
||||
|
|
@ -3232,7 +3230,11 @@
|
|||
"container-interop",
|
||||
"psr"
|
||||
],
|
||||
"time": "2021-11-05T16:47:00+00:00"
|
||||
"support": {
|
||||
"issues": "https://github.com/php-fig/container/issues",
|
||||
"source": "https://github.com/php-fig/container/tree/1.1.2"
|
||||
},
|
||||
"time": "2021-11-05T16:50:12+00:00"
|
||||
},
|
||||
{
|
||||
"name": "psr/event-dispatcher",
|
||||
|
|
@ -3480,6 +3482,9 @@
|
|||
"psr",
|
||||
"psr-3"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/php-fig/log/tree/1.1.4"
|
||||
},
|
||||
"time": "2021-05-03T11:20:27+00:00"
|
||||
},
|
||||
{
|
||||
|
|
@ -3697,16 +3702,16 @@
|
|||
},
|
||||
{
|
||||
"name": "symfony/deprecation-contracts",
|
||||
"version": "v2.5.2",
|
||||
"version": "v2.5.4",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/deprecation-contracts.git",
|
||||
"reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
|
||||
"reference": "605389f2a7e5625f273b53960dc46aeaf9c62918"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
|
||||
"reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
|
||||
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/605389f2a7e5625f273b53960dc46aeaf9c62918",
|
||||
"reference": "605389f2a7e5625f273b53960dc46aeaf9c62918",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
|
|
@ -3714,12 +3719,12 @@
|
|||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"thanks": {
|
||||
"url": "https://github.com/symfony/contracts",
|
||||
"name": "symfony/contracts"
|
||||
},
|
||||
"branch-alias": {
|
||||
"dev-main": "2.5-dev"
|
||||
},
|
||||
"thanks": {
|
||||
"name": "symfony/contracts",
|
||||
"url": "https://github.com/symfony/contracts"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
|
|
@ -3743,6 +3748,9 @@
|
|||
],
|
||||
"description": "A generic function and convention to trigger deprecation notices",
|
||||
"homepage": "https://symfony.com",
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.4"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://symfony.com/sponsor",
|
||||
|
|
@ -3757,7 +3765,7 @@
|
|||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2022-01-02T09:53:40+00:00"
|
||||
"time": "2024-09-25T14:11:13+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/event-dispatcher",
|
||||
|
|
@ -4591,6 +4599,151 @@
|
|||
}
|
||||
],
|
||||
"packages-dev": [
|
||||
{
|
||||
"name": "composer/pcre",
|
||||
"version": "3.3.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/composer/pcre.git",
|
||||
"reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
|
||||
"reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.4 || ^8.0"
|
||||
},
|
||||
"conflict": {
|
||||
"phpstan/phpstan": "<1.11.10"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpstan/phpstan": "^1.12 || ^2",
|
||||
"phpstan/phpstan-strict-rules": "^1 || ^2",
|
||||
"phpunit/phpunit": "^8 || ^9"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"phpstan": {
|
||||
"includes": [
|
||||
"extension.neon"
|
||||
]
|
||||
},
|
||||
"branch-alias": {
|
||||
"dev-main": "3.x-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Composer\\Pcre\\": "src"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Jordi Boggiano",
|
||||
"email": "j.boggiano@seld.be",
|
||||
"homepage": "http://seld.be"
|
||||
}
|
||||
],
|
||||
"description": "PCRE wrapping library that offers type-safe preg_* replacements.",
|
||||
"keywords": [
|
||||
"PCRE",
|
||||
"preg",
|
||||
"regex",
|
||||
"regular expression"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/composer/pcre/issues",
|
||||
"source": "https://github.com/composer/pcre/tree/3.3.2"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://packagist.com",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/composer",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2024-11-12T16:29:46+00:00"
|
||||
},
|
||||
{
|
||||
"name": "composer/xdebug-handler",
|
||||
"version": "3.0.5",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/composer/xdebug-handler.git",
|
||||
"reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
|
||||
"reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"composer/pcre": "^1 || ^2 || ^3",
|
||||
"php": "^7.2.5 || ^8.0",
|
||||
"psr/log": "^1 || ^2 || ^3"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpstan/phpstan": "^1.0",
|
||||
"phpstan/phpstan-strict-rules": "^1.1",
|
||||
"phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Composer\\XdebugHandler\\": "src"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "John Stevenson",
|
||||
"email": "john-stevenson@blueyonder.co.uk"
|
||||
}
|
||||
],
|
||||
"description": "Restarts a process without Xdebug.",
|
||||
"keywords": [
|
||||
"Xdebug",
|
||||
"performance"
|
||||
],
|
||||
"support": {
|
||||
"irc": "ircs://irc.libera.chat:6697/composer",
|
||||
"issues": "https://github.com/composer/xdebug-handler/issues",
|
||||
"source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://packagist.com",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/composer",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2024-05-06T16:37:16+00:00"
|
||||
},
|
||||
{
|
||||
"name": "dms/phpunit-arraysubset-asserts",
|
||||
"version": "v0.3.1",
|
||||
|
|
@ -4976,6 +5129,69 @@
|
|||
],
|
||||
"time": "2024-03-05T20:51:40+00:00"
|
||||
},
|
||||
{
|
||||
"name": "pdepend/pdepend",
|
||||
"version": "2.16.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/pdepend/pdepend.git",
|
||||
"reference": "f942b208dc2a0868454d01b29f0c75bbcfc6ed58"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/pdepend/pdepend/zipball/f942b208dc2a0868454d01b29f0c75bbcfc6ed58",
|
||||
"reference": "f942b208dc2a0868454d01b29f0c75bbcfc6ed58",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3.7",
|
||||
"symfony/config": "^2.3.0|^3|^4|^5|^6.0|^7.0",
|
||||
"symfony/dependency-injection": "^2.3.0|^3|^4|^5|^6.0|^7.0",
|
||||
"symfony/filesystem": "^2.3.0|^3|^4|^5|^6.0|^7.0",
|
||||
"symfony/polyfill-mbstring": "^1.19"
|
||||
},
|
||||
"require-dev": {
|
||||
"easy-doc/easy-doc": "0.0.0|^1.2.3",
|
||||
"gregwar/rst": "^1.0",
|
||||
"squizlabs/php_codesniffer": "^2.0.0"
|
||||
},
|
||||
"bin": [
|
||||
"src/bin/pdepend"
|
||||
],
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "2.x-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"PDepend\\": "src/main/php/PDepend"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"BSD-3-Clause"
|
||||
],
|
||||
"description": "Official version of pdepend to be handled with Composer",
|
||||
"keywords": [
|
||||
"PHP Depend",
|
||||
"PHP_Depend",
|
||||
"dev",
|
||||
"pdepend"
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/pdepend/pdepend/issues",
|
||||
"source": "https://github.com/pdepend/pdepend/tree/2.16.2"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/pdepend/pdepend",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2023-12-17T18:09:59+00:00"
|
||||
},
|
||||
{
|
||||
"name": "phar-io/manifest",
|
||||
"version": "2.0.4",
|
||||
|
|
@ -5293,6 +5509,89 @@
|
|||
],
|
||||
"time": "2024-02-11T07:24:16+00:00"
|
||||
},
|
||||
{
|
||||
"name": "phpmd/phpmd",
|
||||
"version": "2.15.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/phpmd/phpmd.git",
|
||||
"reference": "74a1f56e33afad4128b886e334093e98e1b5e7c0"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/phpmd/phpmd/zipball/74a1f56e33afad4128b886e334093e98e1b5e7c0",
|
||||
"reference": "74a1f56e33afad4128b886e334093e98e1b5e7c0",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"composer/xdebug-handler": "^1.0 || ^2.0 || ^3.0",
|
||||
"ext-xml": "*",
|
||||
"pdepend/pdepend": "^2.16.1",
|
||||
"php": ">=5.3.9"
|
||||
},
|
||||
"require-dev": {
|
||||
"easy-doc/easy-doc": "0.0.0 || ^1.3.2",
|
||||
"ext-json": "*",
|
||||
"ext-simplexml": "*",
|
||||
"gregwar/rst": "^1.0",
|
||||
"mikey179/vfsstream": "^1.6.8",
|
||||
"squizlabs/php_codesniffer": "^2.9.2 || ^3.7.2"
|
||||
},
|
||||
"bin": [
|
||||
"src/bin/phpmd"
|
||||
],
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-0": {
|
||||
"PHPMD\\": "src/main/php"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"BSD-3-Clause"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Manuel Pichler",
|
||||
"email": "github@manuel-pichler.de",
|
||||
"homepage": "https://github.com/manuelpichler",
|
||||
"role": "Project Founder"
|
||||
},
|
||||
{
|
||||
"name": "Marc Würth",
|
||||
"email": "ravage@bluewin.ch",
|
||||
"homepage": "https://github.com/ravage84",
|
||||
"role": "Project Maintainer"
|
||||
},
|
||||
{
|
||||
"name": "Other contributors",
|
||||
"homepage": "https://github.com/phpmd/phpmd/graphs/contributors",
|
||||
"role": "Contributors"
|
||||
}
|
||||
],
|
||||
"description": "PHPMD is a spin-off project of PHP Depend and aims to be a PHP equivalent of the well known Java tool PMD.",
|
||||
"homepage": "https://phpmd.org/",
|
||||
"keywords": [
|
||||
"dev",
|
||||
"mess detection",
|
||||
"mess detector",
|
||||
"pdepend",
|
||||
"phpmd",
|
||||
"pmd"
|
||||
],
|
||||
"support": {
|
||||
"irc": "irc://irc.freenode.org/phpmd",
|
||||
"issues": "https://github.com/phpmd/phpmd/issues",
|
||||
"source": "https://github.com/phpmd/phpmd/tree/2.15.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/phpmd/phpmd",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2023-12-11T08:22:20+00:00"
|
||||
},
|
||||
{
|
||||
"name": "phpstan/phpstan",
|
||||
"version": "2.0.1",
|
||||
|
|
@ -6647,6 +6946,559 @@
|
|||
],
|
||||
"time": "2020-09-28T06:39:44+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/config",
|
||||
"version": "v5.4.46",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/config.git",
|
||||
"reference": "977c88a02d7d3f16904a81907531b19666a08e78"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/config/zipball/977c88a02d7d3f16904a81907531b19666a08e78",
|
||||
"reference": "977c88a02d7d3f16904a81907531b19666a08e78",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.2.5",
|
||||
"symfony/deprecation-contracts": "^2.1|^3",
|
||||
"symfony/filesystem": "^4.4|^5.0|^6.0",
|
||||
"symfony/polyfill-ctype": "~1.8",
|
||||
"symfony/polyfill-php80": "^1.16",
|
||||
"symfony/polyfill-php81": "^1.22"
|
||||
},
|
||||
"conflict": {
|
||||
"symfony/finder": "<4.4"
|
||||
},
|
||||
"require-dev": {
|
||||
"symfony/event-dispatcher": "^4.4|^5.0|^6.0",
|
||||
"symfony/finder": "^4.4|^5.0|^6.0",
|
||||
"symfony/messenger": "^4.4|^5.0|^6.0",
|
||||
"symfony/service-contracts": "^1.1|^2|^3",
|
||||
"symfony/yaml": "^4.4|^5.0|^6.0"
|
||||
},
|
||||
"suggest": {
|
||||
"symfony/yaml": "To use the yaml reference dumper"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Symfony\\Component\\Config\\": ""
|
||||
},
|
||||
"exclude-from-classmap": [
|
||||
"/Tests/"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Fabien Potencier",
|
||||
"email": "fabien@symfony.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
|
||||
"homepage": "https://symfony.com",
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/config/tree/v5.4.46"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://symfony.com/sponsor",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/fabpot",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2024-10-30T07:58:02+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/dependency-injection",
|
||||
"version": "v5.4.48",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/dependency-injection.git",
|
||||
"reference": "e5ca16dee39ef7d63e552ff0bf0a2526a1142c92"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e5ca16dee39ef7d63e552ff0bf0a2526a1142c92",
|
||||
"reference": "e5ca16dee39ef7d63e552ff0bf0a2526a1142c92",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.2.5",
|
||||
"psr/container": "^1.1.1",
|
||||
"symfony/deprecation-contracts": "^2.1|^3",
|
||||
"symfony/polyfill-php80": "^1.16",
|
||||
"symfony/polyfill-php81": "^1.22",
|
||||
"symfony/service-contracts": "^1.1.6|^2"
|
||||
},
|
||||
"conflict": {
|
||||
"ext-psr": "<1.1|>=2",
|
||||
"symfony/config": "<5.3",
|
||||
"symfony/finder": "<4.4",
|
||||
"symfony/proxy-manager-bridge": "<4.4",
|
||||
"symfony/yaml": "<4.4.26"
|
||||
},
|
||||
"provide": {
|
||||
"psr/container-implementation": "1.0",
|
||||
"symfony/service-implementation": "1.0|2.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"symfony/config": "^5.3|^6.0",
|
||||
"symfony/expression-language": "^4.4|^5.0|^6.0",
|
||||
"symfony/yaml": "^4.4.26|^5.0|^6.0"
|
||||
},
|
||||
"suggest": {
|
||||
"symfony/config": "",
|
||||
"symfony/expression-language": "For using expressions in service container configuration",
|
||||
"symfony/finder": "For using double-star glob patterns or when GLOB_BRACE portability is required",
|
||||
"symfony/proxy-manager-bridge": "Generate service proxies to lazy load them",
|
||||
"symfony/yaml": ""
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Symfony\\Component\\DependencyInjection\\": ""
|
||||
},
|
||||
"exclude-from-classmap": [
|
||||
"/Tests/"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Fabien Potencier",
|
||||
"email": "fabien@symfony.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Allows you to standardize and centralize the way objects are constructed in your application",
|
||||
"homepage": "https://symfony.com",
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/dependency-injection/tree/v5.4.48"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://symfony.com/sponsor",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/fabpot",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2024-11-20T10:51:57+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/filesystem",
|
||||
"version": "v5.4.45",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/filesystem.git",
|
||||
"reference": "57c8294ed37d4a055b77057827c67f9558c95c54"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/filesystem/zipball/57c8294ed37d4a055b77057827c67f9558c95c54",
|
||||
"reference": "57c8294ed37d4a055b77057827c67f9558c95c54",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.2.5",
|
||||
"symfony/polyfill-ctype": "~1.8",
|
||||
"symfony/polyfill-mbstring": "~1.8",
|
||||
"symfony/polyfill-php80": "^1.16"
|
||||
},
|
||||
"require-dev": {
|
||||
"symfony/process": "^5.4|^6.4"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Symfony\\Component\\Filesystem\\": ""
|
||||
},
|
||||
"exclude-from-classmap": [
|
||||
"/Tests/"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Fabien Potencier",
|
||||
"email": "fabien@symfony.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Provides basic utilities for the filesystem",
|
||||
"homepage": "https://symfony.com",
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/filesystem/tree/v5.4.45"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://symfony.com/sponsor",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/fabpot",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2024-10-22T13:05:35+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/polyfill-ctype",
|
||||
"version": "v1.31.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/polyfill-ctype.git",
|
||||
"reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
|
||||
"reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.2"
|
||||
},
|
||||
"provide": {
|
||||
"ext-ctype": "*"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-ctype": "For best performance"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"thanks": {
|
||||
"url": "https://github.com/symfony/polyfill",
|
||||
"name": "symfony/polyfill"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"files": [
|
||||
"bootstrap.php"
|
||||
],
|
||||
"psr-4": {
|
||||
"Symfony\\Polyfill\\Ctype\\": ""
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Gert de Pagter",
|
||||
"email": "BackEndTea@gmail.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Symfony polyfill for ctype functions",
|
||||
"homepage": "https://symfony.com",
|
||||
"keywords": [
|
||||
"compatibility",
|
||||
"ctype",
|
||||
"polyfill",
|
||||
"portable"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://symfony.com/sponsor",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/fabpot",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2024-09-09T11:45:10+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/polyfill-mbstring",
|
||||
"version": "v1.31.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/polyfill-mbstring.git",
|
||||
"reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
|
||||
"reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.2"
|
||||
},
|
||||
"provide": {
|
||||
"ext-mbstring": "*"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-mbstring": "For best performance"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"thanks": {
|
||||
"url": "https://github.com/symfony/polyfill",
|
||||
"name": "symfony/polyfill"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"files": [
|
||||
"bootstrap.php"
|
||||
],
|
||||
"psr-4": {
|
||||
"Symfony\\Polyfill\\Mbstring\\": ""
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Nicolas Grekas",
|
||||
"email": "p@tchwork.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Symfony polyfill for the Mbstring extension",
|
||||
"homepage": "https://symfony.com",
|
||||
"keywords": [
|
||||
"compatibility",
|
||||
"mbstring",
|
||||
"polyfill",
|
||||
"portable",
|
||||
"shim"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://symfony.com/sponsor",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/fabpot",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2024-09-09T11:45:10+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/polyfill-php81",
|
||||
"version": "v1.31.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/polyfill-php81.git",
|
||||
"reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
|
||||
"reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.2"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"thanks": {
|
||||
"url": "https://github.com/symfony/polyfill",
|
||||
"name": "symfony/polyfill"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"files": [
|
||||
"bootstrap.php"
|
||||
],
|
||||
"psr-4": {
|
||||
"Symfony\\Polyfill\\Php81\\": ""
|
||||
},
|
||||
"classmap": [
|
||||
"Resources/stubs"
|
||||
]
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Nicolas Grekas",
|
||||
"email": "p@tchwork.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
|
||||
"homepage": "https://symfony.com",
|
||||
"keywords": [
|
||||
"compatibility",
|
||||
"polyfill",
|
||||
"portable",
|
||||
"shim"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://symfony.com/sponsor",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/fabpot",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2024-09-09T11:45:10+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/service-contracts",
|
||||
"version": "v2.5.4",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/service-contracts.git",
|
||||
"reference": "f37b419f7aea2e9abf10abd261832cace12e3300"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/service-contracts/zipball/f37b419f7aea2e9abf10abd261832cace12e3300",
|
||||
"reference": "f37b419f7aea2e9abf10abd261832cace12e3300",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.2.5",
|
||||
"psr/container": "^1.1",
|
||||
"symfony/deprecation-contracts": "^2.1|^3"
|
||||
},
|
||||
"conflict": {
|
||||
"ext-psr": "<1.1|>=2"
|
||||
},
|
||||
"suggest": {
|
||||
"symfony/service-implementation": ""
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"thanks": {
|
||||
"url": "https://github.com/symfony/contracts",
|
||||
"name": "symfony/contracts"
|
||||
},
|
||||
"branch-alias": {
|
||||
"dev-main": "2.5-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Symfony\\Contracts\\Service\\": ""
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "Nicolas Grekas",
|
||||
"email": "p@tchwork.com"
|
||||
},
|
||||
{
|
||||
"name": "Symfony Community",
|
||||
"homepage": "https://symfony.com/contributors"
|
||||
}
|
||||
],
|
||||
"description": "Generic abstractions related to writing services",
|
||||
"homepage": "https://symfony.com",
|
||||
"keywords": [
|
||||
"abstractions",
|
||||
"contracts",
|
||||
"decoupling",
|
||||
"interfaces",
|
||||
"interoperability",
|
||||
"standards"
|
||||
],
|
||||
"support": {
|
||||
"source": "https://github.com/symfony/service-contracts/tree/v2.5.4"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
"url": "https://symfony.com/sponsor",
|
||||
"type": "custom"
|
||||
},
|
||||
{
|
||||
"url": "https://github.com/fabpot",
|
||||
"type": "github"
|
||||
},
|
||||
{
|
||||
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2024-09-25T14:11:13+00:00"
|
||||
},
|
||||
{
|
||||
"name": "theseer/tokenizer",
|
||||
"version": "1.2.3",
|
||||
|
|
|
|||
11
doc/FAQ.md
11
doc/FAQ.md
|
|
@ -177,15 +177,18 @@ Example: Friendica Support
|
|||
Friendica supports [Mastodon API](help/API-Mastodon) and [Twitter API | gnusocial](help/api).
|
||||
This means you can use some of the Mastodon and Twitter clients for Friendica.
|
||||
The available features are client specific and may differ.
|
||||
Clients dedicated to Friendica are marked in **bold**.
|
||||
|
||||
#### Android
|
||||
|
||||
* [AndStatus](http://andstatus.org) ([F-Droid](https://f-droid.org/repository/browse/?fdid=org.andstatus.app), [Google Play](https://play.google.com/store/apps/details?id=org.andstatus.app))
|
||||
* [Fedilab](https://fedilab.app) ([F-Droid](https://f-droid.org/app/fr.gouv.etalab.mastodon), [Google Play](https://play.google.com/store/apps/details?id=app.fedilab.android))
|
||||
* [Friendiqa](https://git.friendi.ca/lubuwest/Friendiqa) ([F-Droid](https://git.friendi.ca/lubuwest/Friendiqa#install), [Google Play](https://play.google.com/store/apps/details?id=org.qtproject.friendiqa))
|
||||
* **[Friendiqa](https://git.friendi.ca/lubuwest/Friendiqa)** ([F-Droid](https://git.friendi.ca/lubuwest/Friendiqa#install), [Google Play](https://play.google.com/store/apps/details?id=org.qtproject.friendiqa))
|
||||
* [Husky](https://codeberg.org/husky/husky) ([F-Droid](https://f-droid.org/repository/browse/?fdid=su.xash.husky), [Google Play](https://play.google.com/store/apps/details?id=su.xash.husky))
|
||||
* [Mastodon](https://github.com/mastodon/mastodon-android) ([F-Droid](https://f-droid.org/en/packages/org.joinmastodon.android/), [Google Play](https://play.google.com/store/apps/details?id=org.joinmastodon.android))
|
||||
* [Pachli](https://pachli.app/) ([F-Droid](https://f-droid.org/en/packages/app.pachli/), [Google Play](https://play.google.com/store/apps/details?id=app.pachli))
|
||||
* **[Raccoon for Friendica](https://github.com/LiveFastEatTrashRaccoon/RaccoonForFriendica)** ([F-Droid](https://f-droid.org/packages/com.livefast.eattrash.raccoonforfriendica), [Google Play](https://play.google.com/apps/testing/com.livefast.eattrash.raccoonforfriendica))
|
||||
* **[Relatica](https://gitlab.com/mysocialportal/relatica)**
|
||||
* [Subway Tooter](https://github.com/tateisu/SubwayTooter) ([F-Droid via Izzy](https://android.izzysoft.de/repo/apk/jp.juggler.subwaytooter.noFcm))
|
||||
* [Tooot](https://tooot.app/) ([Google Play](https://play.google.com/store/apps/details?id=com.xmflsct.app.tooot))
|
||||
* [Tusky](https://tusky.app) ([F-Droid](https://f-droid.org/repository/browse/?fdid=com.keylesspalace.tusky), [Google Play](https://play.google.com/store/apps/details?id=com.keylesspalace.tusky))
|
||||
|
|
@ -195,6 +198,7 @@ The available features are client specific and may differ.
|
|||
#### iOS
|
||||
|
||||
* [Mastodon](https://joinmastodon.org/apps) ([App Store](https://apps.apple.com/us/app/mastodon-for-iphone/id1571998974))
|
||||
* **[Relatica](https://gitlab.com/mysocialportal/relatica)**
|
||||
* [Stella*](https://www.stella-app.net/) ([App Store](https://apps.apple.com/us/app/stella-for-mastodon-twitter/id921372048))
|
||||
* [Tooot](https://github.com/tooot-app) ([App Store](https://apps.apple.com/app/id1549772269))
|
||||
* [TwidereX](https://github.com/TwidereProject/TwidereX-iOS) ([App Store](https://apps.apple.com/app/twidere-x/id1530314034))
|
||||
|
|
@ -202,17 +206,20 @@ The available features are client specific and may differ.
|
|||
#### Linux
|
||||
|
||||
* [Choqok](https://choqok.kde.org)
|
||||
* [Whalebird](https://whalebird.social/en/desktop/contents) ([GitHub](https://github.com/h3poteto/whalebird-desktop))
|
||||
* **[Relatica](https://gitlab.com/mysocialportal/relatica)**
|
||||
* [TheDesk](https://thedesk.top/en/) ([GitHub](https://github.com/cutls/TheDesk))
|
||||
* [Toot](https://toot.readthedocs.io/en/latest/)
|
||||
* [Whalebird](https://whalebird.social/en/desktop/contents) ([GitHub](https://github.com/h3poteto/whalebird-desktop))
|
||||
|
||||
#### macOS
|
||||
|
||||
* **[Relatica](https://gitlab.com/mysocialportal/relatica)**
|
||||
* [TheDesk](https://thedesk.top/en/) ([GitHub](https://github.com/cutls/TheDesk))
|
||||
* [Whalebird](https://whalebird.social/en/desktop/contents) ([App Store](https://apps.apple.com/de/app/whalebird/id1378283354), [GitHub](https://github.com/h3poteto/whalebird-desktop))
|
||||
|
||||
#### Windows
|
||||
|
||||
* **[Relatica](https://gitlab.com/mysocialportal/relatica)**
|
||||
* [TheDesk](https://thedesk.top/en/) ([GitHub](https://github.com/cutls/TheDesk))
|
||||
* [Whalebird](https://whalebird.social/en/desktop/contents) ([Microsoft Store](https://apps.microsoft.com/detail/9nbw4csdv5hc), [GitHub](https://github.com/h3poteto/whalebird-desktop))
|
||||
|
||||
|
|
|
|||
|
|
@ -162,6 +162,8 @@ class APContact
|
|||
DI::cache()->set($cachekey, System::callstack(20), Duration::FIVE_MINUTES);
|
||||
}
|
||||
|
||||
$local_owner = [];
|
||||
|
||||
if (DI::baseUrl()->isLocalUrl($url) && ($local_uid = User::getIdForURL($url))) {
|
||||
try {
|
||||
$data = Transmitter::getProfile($local_uid);
|
||||
|
|
@ -205,6 +207,15 @@ class APContact
|
|||
return $fetched_contact;
|
||||
}
|
||||
|
||||
return self::compactProfile($apcontact, $compacted, $url, $fetched_contact, $webfinger, $local_owner);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array|bool $fetched_contact
|
||||
* @param array|bool $local_owner
|
||||
*/
|
||||
private static function compactProfile(array $apcontact, array $compacted, string $url, $fetched_contact, bool $webfinger, $local_owner): array
|
||||
{
|
||||
$apcontact['url'] = $compacted['@id'];
|
||||
$apcontact['uuid'] = JsonLD::fetchElement($compacted, 'diaspora:guid', '@value');
|
||||
$apcontact['type'] = str_replace('as:', '', JsonLD::fetchElement($compacted, '@type'));
|
||||
|
|
|
|||
|
|
@ -817,6 +817,25 @@ class GServer
|
|||
}
|
||||
|
||||
// Count the number of known contacts from this server
|
||||
self::countNumberOfKnownContacts((int) $id, $serverdata);
|
||||
|
||||
if (in_array($serverdata['network'], [Protocol::DFRN, Protocol::DIASPORA])) {
|
||||
self::discoverRelay($url);
|
||||
}
|
||||
|
||||
if (!empty($systemactor)) {
|
||||
$contact = Contact::getByURL($systemactor, true, ['gsid', 'baseurl', 'id', 'network', 'url', 'name']);
|
||||
DI::logger()->debug('Fetched system actor', ['url' => $url, 'gsid' => $id, 'contact' => $contact]);
|
||||
}
|
||||
|
||||
return $ret;
|
||||
}
|
||||
|
||||
/**
|
||||
* Count the number of known contacts from this server
|
||||
*/
|
||||
private static function countNumberOfKnownContacts(int $id, array $serverdata): void
|
||||
{
|
||||
if (!empty($id) && !in_array($serverdata['network'], [Protocol::PHANTOM, Protocol::FEED])) {
|
||||
$apcontacts = DBA::count('apcontact', ['gsid' => $id]);
|
||||
$contacts = DBA::count('contact', ['uid' => 0, 'gsid' => $id, 'failed' => false]);
|
||||
|
|
@ -842,17 +861,6 @@ class GServer
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (in_array($serverdata['network'], [Protocol::DFRN, Protocol::DIASPORA])) {
|
||||
self::discoverRelay($url);
|
||||
}
|
||||
|
||||
if (!empty($systemactor)) {
|
||||
$contact = Contact::getByURL($systemactor, true, ['gsid', 'baseurl', 'id', 'network', 'url', 'name']);
|
||||
DI::logger()->debug('Fetched system actor', ['url' => $url, 'gsid' => $id, 'contact' => $contact]);
|
||||
}
|
||||
|
||||
return $ret;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -581,52 +581,6 @@ class Item
|
|||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if the item array is a duplicate
|
||||
*
|
||||
* @param array $item Item record
|
||||
* @return boolean is it a duplicate?
|
||||
*/
|
||||
private static function isDuplicate(array $item): bool
|
||||
{
|
||||
// Checking if there is already an item with the same guid
|
||||
$condition = ['guid' => $item['guid'], 'network' => $item['network'], 'uid' => $item['uid']];
|
||||
if (Post::exists($condition)) {
|
||||
DI::logger()->notice('Found already existing item', $condition);
|
||||
return true;
|
||||
}
|
||||
|
||||
$condition = [
|
||||
'uri-id' => $item['uri-id'], 'uid' => $item['uid'],
|
||||
'network' => [$item['network'], Protocol::DFRN]
|
||||
];
|
||||
if (Post::exists($condition)) {
|
||||
DI::logger()->notice('duplicated item with the same uri found.', $condition);
|
||||
return true;
|
||||
}
|
||||
|
||||
// On Friendica and Diaspora the GUID is unique
|
||||
if (in_array($item['network'], [Protocol::DFRN, Protocol::DIASPORA])) {
|
||||
$condition = ['guid' => $item['guid'], 'uid' => $item['uid']];
|
||||
if (Post::exists($condition)) {
|
||||
DI::logger()->notice('duplicated item with the same guid found.', $condition);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Check for already added items.
|
||||
* There is a timing issue here that sometimes creates double postings.
|
||||
* An unique index would help - but the limitations of MySQL (maximum size of index values) prevent this.
|
||||
*/
|
||||
if (($item['uid'] == 0) && Post::exists(['uri-id' => $item['uri-id'], 'uid' => 0])) {
|
||||
DI::logger()->notice('Global item already stored.', ['uri-id' => $item['uri-id'], 'network' => $item['network']]);
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if the item array is valid
|
||||
*
|
||||
|
|
@ -695,42 +649,6 @@ class Item
|
|||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the id of the given item array if it has been stored before
|
||||
*
|
||||
* @param array $item Item record
|
||||
* @return integer Item id or zero on error
|
||||
*/
|
||||
private static function getDuplicateID(array $item): int
|
||||
{
|
||||
if (empty($item['network']) || in_array($item['network'], Protocol::FEDERATED)) {
|
||||
$condition = [
|
||||
'`uri-id` = ? AND `uid` = ? AND `network` IN (?, ?, ?)',
|
||||
$item['uri-id'],
|
||||
$item['uid'],
|
||||
Protocol::ACTIVITYPUB,
|
||||
Protocol::DIASPORA,
|
||||
Protocol::DFRN
|
||||
];
|
||||
$existing = Post::selectFirst(['id', 'network'], $condition);
|
||||
if (DBA::isResult($existing)) {
|
||||
// We only log the entries with a different user id than 0. Otherwise we would have too many false positives
|
||||
if ($item['uid'] != 0) {
|
||||
DI::logger()->notice('Item already existed for user', [
|
||||
'uri-id' => $item['uri-id'],
|
||||
'uid' => $item['uid'],
|
||||
'network' => $item['network'],
|
||||
'existing_id' => $existing['id'],
|
||||
'existing_network' => $existing['network']
|
||||
]);
|
||||
}
|
||||
|
||||
return $existing['id'];
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch the uri-id of the parent for the given uri-id
|
||||
*
|
||||
|
|
@ -751,106 +669,6 @@ class Item
|
|||
return self::getParent($thread_parent['thr-parent-id']);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch top-level parent data for the given item array
|
||||
*
|
||||
* @param array $item
|
||||
* @return array item array with parent data
|
||||
* @throws \Exception
|
||||
*/
|
||||
private static function getTopLevelParent(array $item): array
|
||||
{
|
||||
$fields = [
|
||||
'uid', 'uri', 'parent-uri', 'id', 'deleted',
|
||||
'uri-id', 'parent-uri-id', 'restrictions', 'verb',
|
||||
'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
|
||||
'wall', 'private', 'origin', 'author-id'
|
||||
];
|
||||
$condition = ['uri-id' => [$item['thr-parent-id'], $item['parent-uri-id']], 'uid' => $item['uid']];
|
||||
$params = ['order' => ['id' => false]];
|
||||
$parent = Post::selectFirst($fields, $condition, $params);
|
||||
|
||||
if (!DBA::isResult($parent) && Post::exists(['uri-id' => [$item['thr-parent-id'], $item['parent-uri-id']], 'uid' => 0])) {
|
||||
$stored = Item::storeForUserByUriId($item['thr-parent-id'], $item['uid'], ['post-reason' => Item::PR_COMPLETION]);
|
||||
if (!$stored && ($item['thr-parent-id'] != $item['parent-uri-id'])) {
|
||||
$stored = Item::storeForUserByUriId($item['parent-uri-id'], $item['uid'], ['post-reason' => Item::PR_COMPLETION]);
|
||||
}
|
||||
if ($stored) {
|
||||
DI::logger()->info('Stored thread parent item for user', ['uri-id' => $item['thr-parent-id'], 'uid' => $item['uid'], 'stored' => $stored]);
|
||||
$parent = Post::selectFirst($fields, $condition, $params);
|
||||
}
|
||||
}
|
||||
|
||||
if (!DBA::isResult($parent)) {
|
||||
DI::logger()->notice('item parent was not found - ignoring item', ['uri-id' => $item['uri-id'], 'thr-parent-id' => $item['thr-parent-id'], 'uid' => $item['uid']]);
|
||||
return [];
|
||||
}
|
||||
|
||||
if (self::hasRestrictions($item, $parent['author-id'], $parent['restrictions'])) {
|
||||
DI::logger()->notice('Restrictions apply - ignoring item', ['restrictions' => $parent['restrictions'], 'verb' => $parent['verb'], 'uri-id' => $item['uri-id'], 'thr-parent-id' => $item['thr-parent-id'], 'uid' => $item['uid']]);
|
||||
return [];
|
||||
}
|
||||
|
||||
if ($parent['uri-id'] == $parent['parent-uri-id']) {
|
||||
return $parent;
|
||||
}
|
||||
|
||||
$condition = [
|
||||
'uri-id' => $parent['parent-uri-id'],
|
||||
'parent-uri-id' => $parent['parent-uri-id'],
|
||||
'uid' => $parent['uid']
|
||||
];
|
||||
$params = ['order' => ['id' => false]];
|
||||
$toplevel_parent = Post::selectFirst($fields, $condition, $params);
|
||||
|
||||
if (!DBA::isResult($toplevel_parent) && $item['origin']) {
|
||||
$stored = Item::storeForUserByUriId($item['parent-uri-id'], $item['uid'], ['post-reason' => Item::PR_COMPLETION]);
|
||||
DI::logger()->info('Stored parent item for user', ['uri-id' => $item['parent-uri-id'], 'uid' => $item['uid'], 'stored' => $stored]);
|
||||
$toplevel_parent = Post::selectFirst($fields, $condition, $params);
|
||||
}
|
||||
|
||||
if (!DBA::isResult($toplevel_parent)) {
|
||||
DI::logger()->notice('item top level parent was not found - ignoring item', ['parent-uri-id' => $parent['parent-uri-id'], 'uid' => $parent['uid']]);
|
||||
return [];
|
||||
}
|
||||
|
||||
return $toplevel_parent;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the gravity for the given item array
|
||||
*
|
||||
* @param array $item
|
||||
* @return integer gravity
|
||||
*/
|
||||
private static function getGravity(array $item): int
|
||||
{
|
||||
$activity = DI::activity();
|
||||
|
||||
if (isset($item['gravity'])) {
|
||||
return intval($item['gravity']);
|
||||
} elseif ($item['parent-uri-id'] === $item['uri-id']) {
|
||||
return self::GRAVITY_PARENT;
|
||||
} elseif ($activity->match($item['verb'], Activity::POST)) {
|
||||
return self::GRAVITY_COMMENT;
|
||||
} elseif ($activity->match($item['verb'], Activity::FOLLOW)) {
|
||||
return self::GRAVITY_ACTIVITY;
|
||||
} elseif ($activity->match($item['verb'], Activity::ANNOUNCE)) {
|
||||
return self::GRAVITY_ACTIVITY;
|
||||
}
|
||||
|
||||
DI::logger()->info('Unknown gravity for verb', ['verb' => $item['verb']]);
|
||||
return self::GRAVITY_UNKNOWN; // Should not happen
|
||||
}
|
||||
|
||||
private static function prepareOriginPost(array $item): array
|
||||
{
|
||||
$item = DI::contentItem()->initializePost($item);
|
||||
$item = DI::contentItem()->finalizePost($item, false);
|
||||
|
||||
return $item;
|
||||
}
|
||||
|
||||
/**
|
||||
* Inserts item record
|
||||
*
|
||||
|
|
@ -861,6 +679,14 @@ class Item
|
|||
*/
|
||||
public static function insert(array $item, int $notify = 0, bool $post_local = true): int
|
||||
{
|
||||
$itemHelper = new ItemHelper(
|
||||
DI::contentItem(),
|
||||
DI::activity(),
|
||||
DI::logger(),
|
||||
DI::dba(),
|
||||
DI::baseUrl(),
|
||||
);
|
||||
|
||||
$orig_item = $item;
|
||||
|
||||
$priority = Worker::PRIORITY_HIGH;
|
||||
|
|
@ -869,7 +695,7 @@ class Item
|
|||
|
||||
// If it is a posting where users should get notifications, then define it as wall posting
|
||||
if ($notify) {
|
||||
$item = self::prepareOriginPost($item);
|
||||
$item = $itemHelper->prepareOriginPost($item);
|
||||
|
||||
if (is_int($notify) && in_array($notify, Worker::PRIORITIES)) {
|
||||
$priority = $notify;
|
||||
|
|
@ -882,23 +708,7 @@ class Item
|
|||
$item['network'] = trim(($item['network'] ?? '') ?: Protocol::PHANTOM);
|
||||
}
|
||||
|
||||
$uid = intval($item['uid']);
|
||||
|
||||
$item['guid'] = self::guid($item, $notify);
|
||||
$item['uri'] = substr(trim($item['uri'] ?? '') ?: self::newURI($item['guid']), 0, 255);
|
||||
|
||||
// Store URI data
|
||||
$item['uri-id'] = ItemURI::insert(['uri' => $item['uri'], 'guid' => $item['guid']]);
|
||||
|
||||
// Backward compatibility: parent-uri used to be the direct parent uri.
|
||||
// If it is provided without a thr-parent, it probably is the old behavior.
|
||||
if (empty($item['thr-parent']) || empty($item['parent-uri'])) {
|
||||
$item['thr-parent'] = trim($item['thr-parent'] ?? $item['parent-uri'] ?? $item['uri']);
|
||||
$item['parent-uri'] = $item['thr-parent'];
|
||||
}
|
||||
|
||||
$item['thr-parent-id'] = ItemURI::getIdByURI($item['thr-parent']);
|
||||
$item['parent-uri-id'] = ItemURI::getIdByURI($item['parent-uri']);
|
||||
$item = $itemHelper->prepareItemData($item, (bool) $notify);
|
||||
|
||||
// Store conversation data
|
||||
$source = $item['source'] ?? '';
|
||||
|
|
@ -911,14 +721,14 @@ class Item
|
|||
* We have to check several networks since Friendica posts could be repeated
|
||||
* via Diaspora.
|
||||
*/
|
||||
$duplicate = self::getDuplicateID($item);
|
||||
$duplicate = $itemHelper->getDuplicateID($item);
|
||||
if ($duplicate) {
|
||||
return $duplicate;
|
||||
}
|
||||
|
||||
// Additional duplicate checks
|
||||
/// @todo Check why the first duplication check returns the item number and the second a 0
|
||||
if (self::isDuplicate($item)) {
|
||||
if ($itemHelper->isDuplicate($item)) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
@ -928,44 +738,7 @@ class Item
|
|||
|
||||
$defined_permissions = isset($item['allow_cid']) && isset($item['allow_gid']) && isset($item['deny_cid']) && isset($item['deny_gid']) && isset($item['private']);
|
||||
|
||||
$item['wall'] = intval($item['wall'] ?? 0);
|
||||
$item['extid'] = trim($item['extid'] ?? '');
|
||||
$item['author-name'] = trim($item['author-name'] ?? '');
|
||||
$item['author-link'] = trim($item['author-link'] ?? '');
|
||||
$item['author-avatar'] = trim($item['author-avatar'] ?? '');
|
||||
$item['owner-name'] = trim($item['owner-name'] ?? '');
|
||||
$item['owner-link'] = trim($item['owner-link'] ?? '');
|
||||
$item['owner-avatar'] = trim($item['owner-avatar'] ?? '');
|
||||
$item['received'] = (isset($item['received']) ? DateTimeFormat::utc($item['received']) : DateTimeFormat::utcNow());
|
||||
$item['created'] = (isset($item['created']) ? DateTimeFormat::utc($item['created']) : $item['received']);
|
||||
$item['edited'] = (isset($item['edited']) ? DateTimeFormat::utc($item['edited']) : $item['created']);
|
||||
$item['changed'] = (isset($item['changed']) ? DateTimeFormat::utc($item['changed']) : $item['created']);
|
||||
$item['commented'] = (isset($item['commented']) ? DateTimeFormat::utc($item['commented']) : $item['created']);
|
||||
$item['title'] = substr(trim($item['title'] ?? ''), 0, 255);
|
||||
$item['location'] = trim($item['location'] ?? '');
|
||||
$item['coord'] = trim($item['coord'] ?? '');
|
||||
$item['visible'] = (isset($item['visible']) ? intval($item['visible']) : 1);
|
||||
$item['deleted'] = 0;
|
||||
$item['verb'] = trim($item['verb'] ?? '');
|
||||
$item['object-type'] = trim($item['object-type'] ?? '');
|
||||
$item['object'] = trim($item['object'] ?? '');
|
||||
$item['target-type'] = trim($item['target-type'] ?? '');
|
||||
$item['target'] = trim($item['target'] ?? '');
|
||||
$item['plink'] = substr(trim($item['plink'] ?? ''), 0, 255);
|
||||
$item['allow_cid'] = trim($item['allow_cid'] ?? '');
|
||||
$item['allow_gid'] = trim($item['allow_gid'] ?? '');
|
||||
$item['deny_cid'] = trim($item['deny_cid'] ?? '');
|
||||
$item['deny_gid'] = trim($item['deny_gid'] ?? '');
|
||||
$item['private'] = intval($item['private'] ?? self::PUBLIC);
|
||||
$item['body'] = trim($item['body'] ?? '');
|
||||
$item['raw-body'] = trim($item['raw-body'] ?? $item['body']);
|
||||
$item['app'] = trim($item['app'] ?? '');
|
||||
$item['origin'] = intval($item['origin'] ?? 0);
|
||||
$item['postopts'] = trim($item['postopts'] ?? '');
|
||||
$item['resource-id'] = trim($item['resource-id'] ?? '');
|
||||
$item['event-id'] = intval($item['event-id'] ?? 0);
|
||||
$item['inform'] = trim($item['inform'] ?? '');
|
||||
$item['file'] = trim($item['file'] ?? '');
|
||||
$uid = intval($item['uid']);
|
||||
|
||||
// Communities aren't working with the Diaspora protocol
|
||||
if (($uid != 0) && ($item['network'] == Protocol::DIASPORA)) {
|
||||
|
|
@ -976,33 +749,7 @@ class Item
|
|||
}
|
||||
}
|
||||
|
||||
// Items cannot be stored before they happen ...
|
||||
if ($item['created'] > DateTimeFormat::utcNow()) {
|
||||
$item['created'] = DateTimeFormat::utcNow();
|
||||
}
|
||||
|
||||
// We haven't invented time travel by now.
|
||||
if ($item['edited'] > DateTimeFormat::utcNow()) {
|
||||
$item['edited'] = DateTimeFormat::utcNow();
|
||||
}
|
||||
|
||||
$item['plink'] = ($item['plink'] ?? '') ?: DI::baseUrl() . '/display/' . urlencode($item['guid']);
|
||||
|
||||
$item['gravity'] = self::getGravity($item);
|
||||
|
||||
$default = [
|
||||
'url' => $item['author-link'], 'name' => $item['author-name'],
|
||||
'photo' => $item['author-avatar'], 'network' => $item['network']
|
||||
];
|
||||
$item['author-id'] = ($item['author-id'] ?? 0) ?: Contact::getIdForURL($item['author-link'], 0, null, $default);
|
||||
|
||||
$default = [
|
||||
'url' => $item['owner-link'], 'name' => $item['owner-name'],
|
||||
'photo' => $item['owner-avatar'], 'network' => $item['network']
|
||||
];
|
||||
$item['owner-id'] = ($item['owner-id'] ?? 0) ?: Contact::getIdForURL($item['owner-link'], 0, null, $default);
|
||||
|
||||
$item['post-reason'] = self::getPostReason($item);
|
||||
$item = $itemHelper->validateItemData($item);
|
||||
|
||||
// Ensure that there is an avatar cache
|
||||
Contact::checkAvatarCache($item['author-id']);
|
||||
|
|
@ -1023,55 +770,14 @@ class Item
|
|||
}
|
||||
|
||||
if ($item['gravity'] !== self::GRAVITY_PARENT) {
|
||||
$toplevel_parent = self::getTopLevelParent($item);
|
||||
$toplevel_parent = $itemHelper->getTopLevelParent($item);
|
||||
if (empty($toplevel_parent)) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
$parent_id = $toplevel_parent['id'];
|
||||
$item['parent-uri'] = $toplevel_parent['uri'];
|
||||
$item['parent-uri-id'] = $toplevel_parent['uri-id'];
|
||||
$item['deleted'] = $toplevel_parent['deleted'];
|
||||
$item['wall'] = $toplevel_parent['wall'];
|
||||
|
||||
// Reshares have to keep their permissions to allow groups to work
|
||||
if (!$defined_permissions && (!$item['origin'] || ($item['verb'] != Activity::ANNOUNCE))) {
|
||||
// Don't store the permissions on pure AP posts
|
||||
$store_permissions = ($item['network'] != Protocol::ACTIVITYPUB) || $item['origin'] || !empty($item['diaspora_signed_text']);
|
||||
$item['allow_cid'] = $store_permissions ? $toplevel_parent['allow_cid'] : '';
|
||||
$item['allow_gid'] = $store_permissions ? $toplevel_parent['allow_gid'] : '';
|
||||
$item['deny_cid'] = $store_permissions ? $toplevel_parent['deny_cid'] : '';
|
||||
$item['deny_gid'] = $store_permissions ? $toplevel_parent['deny_gid'] : '';
|
||||
}
|
||||
|
||||
$parent_id = (int) $toplevel_parent['id'];
|
||||
$item = $itemHelper->handleToplevelParent($item, $toplevel_parent, $defined_permissions);
|
||||
$parent_origin = $toplevel_parent['origin'];
|
||||
|
||||
// Don't federate received participation messages
|
||||
if ($item['verb'] != Activity::FOLLOW) {
|
||||
$item['wall'] = $toplevel_parent['wall'];
|
||||
} else {
|
||||
$item['wall'] = false;
|
||||
// Participations are technical messages, so they are set to "seen" automatically
|
||||
$item['unseen'] = false;
|
||||
}
|
||||
|
||||
/*
|
||||
* If the parent is private, force privacy for the entire conversation
|
||||
* This differs from the above settings as it subtly allows comments from
|
||||
* email correspondents to be private even if the overall thread is not.
|
||||
*/
|
||||
if (!$defined_permissions && $toplevel_parent['private']) {
|
||||
$item['private'] = $toplevel_parent['private'];
|
||||
}
|
||||
|
||||
// If its a post that originated here then tag the thread as "mention"
|
||||
if ($item['origin'] && $item['uid']) {
|
||||
DBA::update('post-thread-user', ['mention' => true], ['uri-id' => $item['parent-uri-id'], 'uid' => $item['uid']]);
|
||||
DI::logger()->info('tagged thread as mention', ['parent' => $parent_id, 'parent-uri-id' => $item['parent-uri-id'], 'uid' => $item['uid']]);
|
||||
}
|
||||
|
||||
// Update the contact relations
|
||||
Contact\Relation::store($toplevel_parent['author-id'], $item['author-id'], $item['created']);
|
||||
} else {
|
||||
$parent_id = 0;
|
||||
$parent_origin = $item['origin'];
|
||||
|
|
@ -1351,6 +1057,11 @@ class Item
|
|||
|
||||
DI::logger()->notice('created item', ['post-id' => $post_user_id, 'uid' => $item['uid'], 'network' => $item['network'], 'uri-id' => $item['uri-id'], 'guid' => $item['guid']]);
|
||||
|
||||
return self::handleCreatedItem($orig_item, $post_user_id, $uid, $notify, $copy_permissions, $parent_origin, $priority, $notify_type, $inserted, $source);
|
||||
}
|
||||
|
||||
private static function handleCreatedItem(array $orig_item, int $post_user_id, int $uid, int $notify, bool $copy_permissions, $parent_origin, int $priority, string $notify_type, bool $inserted, $source): int
|
||||
{
|
||||
$posted_item = Post::selectFirst(self::ITEM_FIELDLIST, ['post-user-id' => $post_user_id]);
|
||||
if (!DBA::isResult($posted_item)) {
|
||||
// On failure store the data into a spool file so that the "SpoolPost" worker can try again later.
|
||||
|
|
@ -1491,33 +1202,6 @@ class Item
|
|||
return $post_user_id;
|
||||
}
|
||||
|
||||
private static function hasRestrictions(array $item, int $author_id, int $restrictions = null): bool
|
||||
{
|
||||
if (empty($restrictions) || ($author_id == $item['author-id'])) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// We only have to apply restrictions if the post originates from our server or is federated.
|
||||
// Every other time we can trust the remote system.
|
||||
if (!in_array($item['network'], Protocol::FEDERATED) && !$item['origin']) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (($restrictions & self::CANT_REPLY) && ($item['verb'] == Activity::POST)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (($restrictions & self::CANT_ANNOUNCE) && ($item['verb'] == Activity::ANNOUNCE)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (($restrictions & self::CANT_LIKE) && in_array($item['verb'], [Activity::LIKE, Activity::DISLIKE, Activity::ATTEND, Activity::ATTENDMAYBE, Activity::ATTENDNO])) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
private static function reshareChannelPost(int $uri_id, int $reshare_id = 0)
|
||||
{
|
||||
if (!DI::config()->get('system', 'allow_relay_channels')) {
|
||||
|
|
@ -1897,7 +1581,7 @@ class Item
|
|||
*
|
||||
* @param int $uriid
|
||||
* @param int $uid
|
||||
* @return int
|
||||
* @return int|null
|
||||
*/
|
||||
private static function GetOriginUidForUriId(int $uriid, int $uid)
|
||||
{
|
||||
|
|
|
|||
404
src/Model/ItemHelper.php
Normal file
404
src/Model/ItemHelper.php
Normal file
|
|
@ -0,0 +1,404 @@
|
|||
<?php
|
||||
|
||||
// Copyright (C) 2010-2024, the Friendica project
|
||||
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
||||
//
|
||||
// SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
|
||||
namespace Friendica\Model;
|
||||
|
||||
use Friendica\App\BaseURL;
|
||||
use Friendica\Content\Item as ItemContent;
|
||||
use Friendica\Core\Protocol;
|
||||
use Friendica\Database\Database;
|
||||
use Friendica\Protocol\Activity;
|
||||
use Friendica\Util\DateTimeFormat;
|
||||
use Psr\Log\LoggerInterface;
|
||||
|
||||
/**
|
||||
* A helper class for handling an Item Model
|
||||
*
|
||||
* @internal ONLY for use in Friendica\Content\Item class
|
||||
*
|
||||
* @see Item::insert()
|
||||
*/
|
||||
final class ItemHelper
|
||||
{
|
||||
private ItemContent $itemContent;
|
||||
|
||||
private Activity $activity;
|
||||
|
||||
private LoggerInterface $logger;
|
||||
|
||||
private Database $database;
|
||||
|
||||
private string $baseUrl;
|
||||
|
||||
public function __construct(
|
||||
ItemContent $itemContent,
|
||||
Activity $activity,
|
||||
LoggerInterface $logger,
|
||||
Database $database,
|
||||
BaseURL $baseURL
|
||||
) {
|
||||
$this->itemContent = $itemContent;
|
||||
$this->activity = $activity;
|
||||
$this->logger = $logger;
|
||||
$this->database = $database;
|
||||
$this->baseUrl = $baseURL->__toString();
|
||||
}
|
||||
|
||||
public function prepareOriginPost(array $item): array
|
||||
{
|
||||
$item = $this->itemContent->initializePost($item);
|
||||
$item = $this->itemContent->finalizePost($item, false);
|
||||
|
||||
return $item;
|
||||
}
|
||||
|
||||
public function prepareItemData(array $item, bool $notify): array
|
||||
{
|
||||
$item['guid'] = Item::guid($item, $notify);
|
||||
$item['uri'] = substr(trim($item['uri'] ?? '') ?: Item::newURI($item['guid']), 0, 255);
|
||||
|
||||
// Store URI data
|
||||
$item['uri-id'] = ItemURI::insert(['uri' => $item['uri'], 'guid' => $item['guid']]);
|
||||
|
||||
// Backward compatibility: parent-uri used to be the direct parent uri.
|
||||
// If it is provided without a thr-parent, it probably is the old behavior.
|
||||
if (empty($item['thr-parent']) || empty($item['parent-uri'])) {
|
||||
$item['thr-parent'] = trim($item['thr-parent'] ?? $item['parent-uri'] ?? $item['uri']);
|
||||
$item['parent-uri'] = $item['thr-parent'];
|
||||
}
|
||||
|
||||
$item['thr-parent-id'] = ItemURI::getIdByURI($item['thr-parent']);
|
||||
$item['parent-uri-id'] = ItemURI::getIdByURI($item['parent-uri']);
|
||||
|
||||
return $item;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the id of the given item array if it has been stored before
|
||||
*
|
||||
* @param array $item Item record
|
||||
* @return integer Item id or zero on error
|
||||
*/
|
||||
public function getDuplicateID(array $item): int
|
||||
{
|
||||
if (empty($item['network']) || in_array($item['network'], Protocol::FEDERATED)) {
|
||||
$condition = [
|
||||
'`uri-id` = ? AND `uid` = ? AND `network` IN (?, ?, ?)',
|
||||
$item['uri-id'],
|
||||
$item['uid'],
|
||||
Protocol::ACTIVITYPUB,
|
||||
Protocol::DIASPORA,
|
||||
Protocol::DFRN
|
||||
];
|
||||
|
||||
$existing = Post::selectFirst(['id', 'network'], $condition);
|
||||
|
||||
if ($this->database->isResult($existing)) {
|
||||
// We only log the entries with a different user id than 0. Otherwise we would have too many false positives
|
||||
if ($item['uid'] != 0) {
|
||||
$this->logger->notice('Item already existed for user', [
|
||||
'uri-id' => $item['uri-id'],
|
||||
'uid' => $item['uid'],
|
||||
'network' => $item['network'],
|
||||
'existing_id' => $existing['id'],
|
||||
'existing_network' => $existing['network']
|
||||
]);
|
||||
}
|
||||
|
||||
return $existing['id'];
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if the item array is a duplicate
|
||||
*
|
||||
* @private
|
||||
*
|
||||
* @param array $item Item record
|
||||
* @return boolean is it a duplicate?
|
||||
*/
|
||||
public function isDuplicate(array $item): bool
|
||||
{
|
||||
// Checking if there is already an item with the same guid
|
||||
$condition = ['guid' => $item['guid'], 'network' => $item['network'], 'uid' => $item['uid']];
|
||||
if (Post::exists($condition)) {
|
||||
$this->logger->notice('Found already existing item', $condition);
|
||||
return true;
|
||||
}
|
||||
|
||||
$condition = [
|
||||
'uri-id' => $item['uri-id'], 'uid' => $item['uid'],
|
||||
'network' => [$item['network'], Protocol::DFRN]
|
||||
];
|
||||
if (Post::exists($condition)) {
|
||||
$this->logger->notice('duplicated item with the same uri found.', $condition);
|
||||
return true;
|
||||
}
|
||||
|
||||
// On Friendica and Diaspora the GUID is unique
|
||||
if (in_array($item['network'], [Protocol::DFRN, Protocol::DIASPORA])) {
|
||||
$condition = ['guid' => $item['guid'], 'uid' => $item['uid']];
|
||||
if (Post::exists($condition)) {
|
||||
$this->logger->notice('duplicated item with the same guid found.', $condition);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Check for already added items.
|
||||
* There is a timing issue here that sometimes creates double postings.
|
||||
* An unique index would help - but the limitations of MySQL (maximum size of index values) prevent this.
|
||||
*/
|
||||
if (($item['uid'] == 0) && Post::exists(['uri-id' => $item['uri-id'], 'uid' => 0])) {
|
||||
$this->logger->notice('Global item already stored.', ['uri-id' => $item['uri-id'], 'network' => $item['network']]);
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
public function validateItemData(array $item): array
|
||||
{
|
||||
$item['wall'] = intval($item['wall'] ?? 0);
|
||||
$item['extid'] = trim($item['extid'] ?? '');
|
||||
$item['author-name'] = trim($item['author-name'] ?? '');
|
||||
$item['author-link'] = trim($item['author-link'] ?? '');
|
||||
$item['author-avatar'] = trim($item['author-avatar'] ?? '');
|
||||
$item['owner-name'] = trim($item['owner-name'] ?? '');
|
||||
$item['owner-link'] = trim($item['owner-link'] ?? '');
|
||||
$item['owner-avatar'] = trim($item['owner-avatar'] ?? '');
|
||||
$item['received'] = (isset($item['received']) ? DateTimeFormat::utc($item['received']) : DateTimeFormat::utcNow());
|
||||
$item['created'] = (isset($item['created']) ? DateTimeFormat::utc($item['created']) : $item['received']);
|
||||
$item['edited'] = (isset($item['edited']) ? DateTimeFormat::utc($item['edited']) : $item['created']);
|
||||
$item['changed'] = (isset($item['changed']) ? DateTimeFormat::utc($item['changed']) : $item['created']);
|
||||
$item['commented'] = (isset($item['commented']) ? DateTimeFormat::utc($item['commented']) : $item['created']);
|
||||
$item['title'] = substr(trim($item['title'] ?? ''), 0, 255);
|
||||
$item['location'] = trim($item['location'] ?? '');
|
||||
$item['coord'] = trim($item['coord'] ?? '');
|
||||
$item['visible'] = (isset($item['visible']) ? intval($item['visible']) : 1);
|
||||
$item['deleted'] = 0;
|
||||
$item['verb'] = trim($item['verb'] ?? '');
|
||||
$item['object-type'] = trim($item['object-type'] ?? '');
|
||||
$item['object'] = trim($item['object'] ?? '');
|
||||
$item['target-type'] = trim($item['target-type'] ?? '');
|
||||
$item['target'] = trim($item['target'] ?? '');
|
||||
$item['plink'] = substr(trim($item['plink'] ?? ''), 0, 255);
|
||||
$item['allow_cid'] = trim($item['allow_cid'] ?? '');
|
||||
$item['allow_gid'] = trim($item['allow_gid'] ?? '');
|
||||
$item['deny_cid'] = trim($item['deny_cid'] ?? '');
|
||||
$item['deny_gid'] = trim($item['deny_gid'] ?? '');
|
||||
$item['private'] = intval($item['private'] ?? Item::PUBLIC);
|
||||
$item['body'] = trim($item['body'] ?? '');
|
||||
$item['raw-body'] = trim($item['raw-body'] ?? $item['body']);
|
||||
$item['app'] = trim($item['app'] ?? '');
|
||||
$item['origin'] = intval($item['origin'] ?? 0);
|
||||
$item['postopts'] = trim($item['postopts'] ?? '');
|
||||
$item['resource-id'] = trim($item['resource-id'] ?? '');
|
||||
$item['event-id'] = intval($item['event-id'] ?? 0);
|
||||
$item['inform'] = trim($item['inform'] ?? '');
|
||||
$item['file'] = trim($item['file'] ?? '');
|
||||
|
||||
// Items cannot be stored before they happen ...
|
||||
if ($item['created'] > DateTimeFormat::utcNow()) {
|
||||
$item['created'] = DateTimeFormat::utcNow();
|
||||
}
|
||||
|
||||
// We haven't invented time travel by now.
|
||||
if ($item['edited'] > DateTimeFormat::utcNow()) {
|
||||
$item['edited'] = DateTimeFormat::utcNow();
|
||||
}
|
||||
|
||||
$item['plink'] = ($item['plink'] ?? '') ?: $this->baseUrl . '/display/' . urlencode($item['guid']);
|
||||
|
||||
$item['gravity'] = $this->getGravity($item);
|
||||
|
||||
if ($item['gravity'] === Item::GRAVITY_UNKNOWN) {
|
||||
$this->logger->info('Unknown gravity for verb', ['verb' => $item['verb']]);
|
||||
}
|
||||
|
||||
$default = [
|
||||
'url' => $item['author-link'], 'name' => $item['author-name'],
|
||||
'photo' => $item['author-avatar'], 'network' => $item['network']
|
||||
];
|
||||
$item['author-id'] = ($item['author-id'] ?? 0) ?: Contact::getIdForURL($item['author-link'], 0, null, $default);
|
||||
|
||||
$default = [
|
||||
'url' => $item['owner-link'], 'name' => $item['owner-name'],
|
||||
'photo' => $item['owner-avatar'], 'network' => $item['network']
|
||||
];
|
||||
$item['owner-id'] = ($item['owner-id'] ?? 0) ?: Contact::getIdForURL($item['owner-link'], 0, null, $default);
|
||||
|
||||
$item['post-reason'] = Item::getPostReason($item);
|
||||
|
||||
return $item;
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch top-level parent data for the given item array
|
||||
*
|
||||
* @param array $item
|
||||
* @return array item array with parent data
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function getTopLevelParent(array $item): array
|
||||
{
|
||||
$fields = [
|
||||
'uid', 'uri', 'parent-uri', 'id', 'deleted',
|
||||
'uri-id', 'parent-uri-id', 'restrictions', 'verb',
|
||||
'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid',
|
||||
'wall', 'private', 'origin', 'author-id'
|
||||
];
|
||||
$condition = ['uri-id' => [$item['thr-parent-id'], $item['parent-uri-id']], 'uid' => $item['uid']];
|
||||
$params = ['order' => ['id' => false]];
|
||||
$parent = Post::selectFirst($fields, $condition, $params);
|
||||
|
||||
if (!$this->database->isResult($parent) && Post::exists(['uri-id' => [$item['thr-parent-id'], $item['parent-uri-id']], 'uid' => 0])) {
|
||||
$stored = Item::storeForUserByUriId($item['thr-parent-id'], $item['uid'], ['post-reason' => Item::PR_COMPLETION]);
|
||||
if (!$stored && ($item['thr-parent-id'] != $item['parent-uri-id'])) {
|
||||
$stored = Item::storeForUserByUriId($item['parent-uri-id'], $item['uid'], ['post-reason' => Item::PR_COMPLETION]);
|
||||
}
|
||||
if ($stored) {
|
||||
$this->logger->info('Stored thread parent item for user', ['uri-id' => $item['thr-parent-id'], 'uid' => $item['uid'], 'stored' => $stored]);
|
||||
$parent = Post::selectFirst($fields, $condition, $params);
|
||||
}
|
||||
}
|
||||
|
||||
if (!$this->database->isResult($parent)) {
|
||||
$this->logger->notice('item parent was not found - ignoring item', ['uri-id' => $item['uri-id'], 'thr-parent-id' => $item['thr-parent-id'], 'uid' => $item['uid']]);
|
||||
return [];
|
||||
}
|
||||
|
||||
if ($this->hasRestrictions($item, $parent['author-id'], $parent['restrictions'])) {
|
||||
$this->logger->notice('Restrictions apply - ignoring item', ['restrictions' => $parent['restrictions'], 'verb' => $parent['verb'], 'uri-id' => $item['uri-id'], 'thr-parent-id' => $item['thr-parent-id'], 'uid' => $item['uid']]);
|
||||
return [];
|
||||
}
|
||||
|
||||
if ($parent['uri-id'] == $parent['parent-uri-id']) {
|
||||
return $parent;
|
||||
}
|
||||
|
||||
$condition = [
|
||||
'uri-id' => $parent['parent-uri-id'],
|
||||
'parent-uri-id' => $parent['parent-uri-id'],
|
||||
'uid' => $parent['uid']
|
||||
];
|
||||
$params = ['order' => ['id' => false]];
|
||||
$toplevel_parent = Post::selectFirst($fields, $condition, $params);
|
||||
|
||||
if (!$this->database->isResult($toplevel_parent) && $item['origin']) {
|
||||
$stored = Item::storeForUserByUriId($item['parent-uri-id'], $item['uid'], ['post-reason' => Item::PR_COMPLETION]);
|
||||
$this->logger->info('Stored parent item for user', ['uri-id' => $item['parent-uri-id'], 'uid' => $item['uid'], 'stored' => $stored]);
|
||||
$toplevel_parent = Post::selectFirst($fields, $condition, $params);
|
||||
}
|
||||
|
||||
if (!$this->database->isResult($toplevel_parent)) {
|
||||
$this->logger->notice('item top level parent was not found - ignoring item', ['parent-uri-id' => $parent['parent-uri-id'], 'uid' => $parent['uid']]);
|
||||
return [];
|
||||
}
|
||||
|
||||
return $toplevel_parent;
|
||||
}
|
||||
|
||||
public function handleToplevelParent(array $item, array $toplevel_parent, bool $defined_permissions): array
|
||||
{
|
||||
$parent_id = (int) $toplevel_parent['id'];
|
||||
$item['parent-uri'] = $toplevel_parent['uri'];
|
||||
$item['parent-uri-id'] = $toplevel_parent['uri-id'];
|
||||
$item['deleted'] = $toplevel_parent['deleted'];
|
||||
$item['wall'] = $toplevel_parent['wall'];
|
||||
|
||||
// Reshares have to keep their permissions to allow groups to work
|
||||
if (!$defined_permissions && (!$item['origin'] || ($item['verb'] != Activity::ANNOUNCE))) {
|
||||
// Don't store the permissions on pure AP posts
|
||||
$store_permissions = ($item['network'] != Protocol::ACTIVITYPUB) || $item['origin'] || !empty($item['diaspora_signed_text']);
|
||||
$item['allow_cid'] = $store_permissions ? $toplevel_parent['allow_cid'] : '';
|
||||
$item['allow_gid'] = $store_permissions ? $toplevel_parent['allow_gid'] : '';
|
||||
$item['deny_cid'] = $store_permissions ? $toplevel_parent['deny_cid'] : '';
|
||||
$item['deny_gid'] = $store_permissions ? $toplevel_parent['deny_gid'] : '';
|
||||
}
|
||||
|
||||
// Don't federate received participation messages
|
||||
if ($item['verb'] != Activity::FOLLOW) {
|
||||
$item['wall'] = $toplevel_parent['wall'];
|
||||
} else {
|
||||
$item['wall'] = false;
|
||||
// Participations are technical messages, so they are set to "seen" automatically
|
||||
$item['unseen'] = false;
|
||||
}
|
||||
|
||||
/*
|
||||
* If the parent is private, force privacy for the entire conversation
|
||||
* This differs from the above settings as it subtly allows comments from
|
||||
* email correspondents to be private even if the overall thread is not.
|
||||
*/
|
||||
if (!$defined_permissions && $toplevel_parent['private']) {
|
||||
$item['private'] = $toplevel_parent['private'];
|
||||
}
|
||||
|
||||
// If its a post that originated here then tag the thread as "mention"
|
||||
if ($item['origin'] && $item['uid']) {
|
||||
$this->database->update('post-thread-user', ['mention' => true], ['uri-id' => $item['parent-uri-id'], 'uid' => $item['uid']]);
|
||||
$this->logger->info('tagged thread as mention', ['parent' => $parent_id, 'parent-uri-id' => $item['parent-uri-id'], 'uid' => $item['uid']]);
|
||||
}
|
||||
|
||||
// Update the contact relations
|
||||
Contact\Relation::store($toplevel_parent['author-id'], $item['author-id'], $item['created']);
|
||||
|
||||
return $item;
|
||||
}
|
||||
|
||||
private function hasRestrictions(array $item, int $author_id, int $restrictions = null): bool
|
||||
{
|
||||
if (empty($restrictions) || ($author_id == $item['author-id'])) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// We only have to apply restrictions if the post originates from our server or is federated.
|
||||
// Every other time we can trust the remote system.
|
||||
if (!in_array($item['network'], Protocol::FEDERATED) && !$item['origin']) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (($restrictions & Item::CANT_REPLY) && ($item['verb'] == Activity::POST)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (($restrictions & Item::CANT_ANNOUNCE) && ($item['verb'] == Activity::ANNOUNCE)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (($restrictions & Item::CANT_LIKE) && in_array($item['verb'], [Activity::LIKE, Activity::DISLIKE, Activity::ATTEND, Activity::ATTENDMAYBE, Activity::ATTENDNO])) {
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the gravity for the given item array
|
||||
*
|
||||
* @return int gravity
|
||||
*/
|
||||
private function getGravity(array $item): int
|
||||
{
|
||||
if (isset($item['gravity'])) {
|
||||
return intval($item['gravity']);
|
||||
} elseif ($item['parent-uri-id'] === $item['uri-id']) {
|
||||
return Item::GRAVITY_PARENT;
|
||||
} elseif ($this->activity->match($item['verb'], Activity::POST)) {
|
||||
return Item::GRAVITY_COMMENT;
|
||||
} elseif ($this->activity->match($item['verb'], Activity::FOLLOW)) {
|
||||
return Item::GRAVITY_ACTIVITY;
|
||||
} elseif ($this->activity->match($item['verb'], Activity::ANNOUNCE)) {
|
||||
return Item::GRAVITY_ACTIVITY;
|
||||
}
|
||||
|
||||
return Item::GRAVITY_UNKNOWN; // Should not happen
|
||||
}
|
||||
}
|
||||
|
|
@ -807,25 +807,45 @@ class Transmitter
|
|||
}
|
||||
}
|
||||
|
||||
$data = self::filterReceiverData($data, $item['author-link']);
|
||||
|
||||
$receivers = ['to' => array_values($data['to']), 'cc' => array_values($data['cc']), 'bto' => array_values($data['bto']), 'bcc' => array_values($data['bcc']), 'audience' => array_values($data['audience'])];
|
||||
|
||||
if (!$blindcopy) {
|
||||
unset($receivers['bto']);
|
||||
unset($receivers['bcc']);
|
||||
}
|
||||
|
||||
if (!$blindcopy && count($receivers['audience']) == 1) {
|
||||
$receivers['audience'] = $receivers['audience'][0];
|
||||
} elseif (!$receivers['audience']) {
|
||||
unset($receivers['audience']);
|
||||
}
|
||||
|
||||
return $receivers;
|
||||
}
|
||||
|
||||
private static function filterReceiverData(array $data, string $author_link): array
|
||||
{
|
||||
$data['to'] = array_unique($data['to']);
|
||||
$data['cc'] = array_unique($data['cc']);
|
||||
$data['bto'] = array_unique($data['bto']);
|
||||
$data['bcc'] = array_unique($data['bcc']);
|
||||
$data['audience'] = array_unique($data['audience']);
|
||||
|
||||
if (($key = array_search($item['author-link'], $data['to'])) !== false) {
|
||||
if (($key = array_search($author_link, $data['to'])) !== false) {
|
||||
unset($data['to'][$key]);
|
||||
}
|
||||
|
||||
if (($key = array_search($item['author-link'], $data['cc'])) !== false) {
|
||||
if (($key = array_search($author_link, $data['cc'])) !== false) {
|
||||
unset($data['cc'][$key]);
|
||||
}
|
||||
|
||||
if (($key = array_search($item['author-link'], $data['bto'])) !== false) {
|
||||
if (($key = array_search($author_link, $data['bto'])) !== false) {
|
||||
unset($data['bto'][$key]);
|
||||
}
|
||||
|
||||
if (($key = array_search($item['author-link'], $data['bcc'])) !== false) {
|
||||
if (($key = array_search($author_link, $data['bcc'])) !== false) {
|
||||
unset($data['bcc'][$key]);
|
||||
}
|
||||
|
||||
|
|
@ -859,20 +879,7 @@ class Transmitter
|
|||
}
|
||||
}
|
||||
|
||||
$receivers = ['to' => array_values($data['to']), 'cc' => array_values($data['cc']), 'bto' => array_values($data['bto']), 'bcc' => array_values($data['bcc']), 'audience' => array_values($data['audience'])];
|
||||
|
||||
if (!$blindcopy) {
|
||||
unset($receivers['bto']);
|
||||
unset($receivers['bcc']);
|
||||
}
|
||||
|
||||
if (!$blindcopy && count($receivers['audience']) == 1) {
|
||||
$receivers['audience'] = $receivers['audience'][0];
|
||||
} elseif (!$receivers['audience']) {
|
||||
unset($receivers['audience']);
|
||||
}
|
||||
|
||||
return $receivers;
|
||||
return $data;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -9,6 +9,8 @@ namespace Friendica\Protocol;
|
|||
|
||||
use DOMDocument;
|
||||
use DOMElement;
|
||||
use DOMNode;
|
||||
use DOMNodeList;
|
||||
use DOMXPath;
|
||||
use Friendica\App;
|
||||
use Friendica\Contact\LocalRelationship\Entity\LocalRelationship;
|
||||
|
|
@ -67,12 +69,12 @@ class Feed
|
|||
return [];
|
||||
}
|
||||
|
||||
$basepath = '';
|
||||
|
||||
if (!empty($contact['poll'])) {
|
||||
$basepath = $contact['poll'];
|
||||
$basepath = (string) $contact['poll'];
|
||||
} elseif (!empty($contact['url'])) {
|
||||
$basepath = $contact['url'];
|
||||
} else {
|
||||
$basepath = '';
|
||||
$basepath = (string) $contact['url'];
|
||||
}
|
||||
|
||||
$doc = new DOMDocument();
|
||||
|
|
@ -287,6 +289,77 @@ class Feed
|
|||
$total_items = $max_items;
|
||||
}
|
||||
|
||||
$postings = self::importOlderEntries($entries, $total_items, $header, $author, $contact, $importer, $xpath, $atomns, $basepath, $dryRun);
|
||||
|
||||
if (!empty($postings)) {
|
||||
$min_posting = DI::config()->get('system', 'minimum_posting_interval', 0);
|
||||
$total = count($postings);
|
||||
if ($total > 1) {
|
||||
// Posts shouldn't be delayed more than a day
|
||||
$interval = min(1440, self::getPollInterval($contact));
|
||||
$delay = max(round(($interval * 60) / $total), 60 * $min_posting);
|
||||
DI::logger()->info('Got posting delay', ['delay' => $delay, 'interval' => $interval, 'items' => $total, 'cid' => $contact['id'], 'url' => $contact['url']]);
|
||||
} else {
|
||||
$delay = 0;
|
||||
}
|
||||
|
||||
$post_delay = 0;
|
||||
|
||||
foreach ($postings as $posting) {
|
||||
if ($delay > 0) {
|
||||
$publish_time = time() + $post_delay;
|
||||
$post_delay += $delay;
|
||||
} else {
|
||||
$publish_time = time();
|
||||
}
|
||||
|
||||
$last_publish = DI::pConfig()->get($posting['item']['uid'], 'system', 'last_publish', 0, true);
|
||||
$next_publish = max($last_publish + (60 * $min_posting), time());
|
||||
if ($publish_time < $next_publish) {
|
||||
$publish_time = $next_publish;
|
||||
}
|
||||
$publish_at = date(DateTimeFormat::MYSQL, $publish_time);
|
||||
|
||||
if (Post\Delayed::add($posting['item']['uri'], $posting['item'], $posting['notify'], Post\Delayed::PREPARED, $publish_at, $posting['taglist'], $posting['attachments'])) {
|
||||
DI::pConfig()->set($posting['item']['uid'], 'system', 'last_publish', $publish_time);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (!$dryRun && DI::config()->get('system', 'adjust_poll_frequency')) {
|
||||
self::adjustPollFrequency($contact, $creation_dates);
|
||||
}
|
||||
|
||||
return ['header' => $author, 'items' => $items];
|
||||
}
|
||||
|
||||
private static function getTitleFromItemOrEntry(array $item, DOMXPath $xpath, string $atomns, ?DOMNode $entry): string
|
||||
{
|
||||
$title = (string) $item['title'];
|
||||
|
||||
if (empty($title)) {
|
||||
$title = XML::getFirstNodeValue($xpath, $atomns . ':title/text()', $entry);
|
||||
}
|
||||
|
||||
if (empty($title)) {
|
||||
$title = XML::getFirstNodeValue($xpath, 'title/text()', $entry);
|
||||
}
|
||||
|
||||
if (empty($title)) {
|
||||
$title = XML::getFirstNodeValue($xpath, 'rss:title/text()', $entry);
|
||||
}
|
||||
|
||||
if (empty($title)) {
|
||||
$title = XML::getFirstNodeValue($xpath, 'itunes:title/text()', $entry);
|
||||
}
|
||||
|
||||
$title = trim(html_entity_decode($title, ENT_QUOTES, 'UTF-8'));
|
||||
|
||||
return $title;
|
||||
}
|
||||
|
||||
private static function importOlderEntries(DOMNodeList $entries, int $total_items, array $header, array $author, array $contact, array $importer, DOMXPath $xpath, string $atomns, string $basepath, bool $dryRun): array
|
||||
{
|
||||
$postings = [];
|
||||
|
||||
// Importing older entries first
|
||||
|
|
@ -386,23 +459,7 @@ class Feed
|
|||
}
|
||||
}
|
||||
|
||||
if (empty($item['title'])) {
|
||||
$item['title'] = XML::getFirstNodeValue($xpath, $atomns . ':title/text()', $entry);
|
||||
}
|
||||
|
||||
if (empty($item['title'])) {
|
||||
$item['title'] = XML::getFirstNodeValue($xpath, 'title/text()', $entry);
|
||||
}
|
||||
|
||||
if (empty($item['title'])) {
|
||||
$item['title'] = XML::getFirstNodeValue($xpath, 'rss:title/text()', $entry);
|
||||
}
|
||||
|
||||
if (empty($item['title'])) {
|
||||
$item['title'] = XML::getFirstNodeValue($xpath, 'itunes:title/text()', $entry);
|
||||
}
|
||||
|
||||
$item['title'] = trim(html_entity_decode($item['title'], ENT_QUOTES, 'UTF-8'));
|
||||
$item['title'] = self::getTitleFromItemOrEntry($item, $xpath, $atomns, $entry);
|
||||
|
||||
$published = XML::getFirstNodeValue($xpath, $atomns . ':published/text()', $entry);
|
||||
|
||||
|
|
@ -705,46 +762,7 @@ class Feed
|
|||
}
|
||||
}
|
||||
|
||||
if (!empty($postings)) {
|
||||
$min_posting = DI::config()->get('system', 'minimum_posting_interval', 0);
|
||||
$total = count($postings);
|
||||
if ($total > 1) {
|
||||
// Posts shouldn't be delayed more than a day
|
||||
$interval = min(1440, self::getPollInterval($contact));
|
||||
$delay = max(round(($interval * 60) / $total), 60 * $min_posting);
|
||||
DI::logger()->info('Got posting delay', ['delay' => $delay, 'interval' => $interval, 'items' => $total, 'cid' => $contact['id'], 'url' => $contact['url']]);
|
||||
} else {
|
||||
$delay = 0;
|
||||
}
|
||||
|
||||
$post_delay = 0;
|
||||
|
||||
foreach ($postings as $posting) {
|
||||
if ($delay > 0) {
|
||||
$publish_time = time() + $post_delay;
|
||||
$post_delay += $delay;
|
||||
} else {
|
||||
$publish_time = time();
|
||||
}
|
||||
|
||||
$last_publish = DI::pConfig()->get($posting['item']['uid'], 'system', 'last_publish', 0, true);
|
||||
$next_publish = max($last_publish + (60 * $min_posting), time());
|
||||
if ($publish_time < $next_publish) {
|
||||
$publish_time = $next_publish;
|
||||
}
|
||||
$publish_at = date(DateTimeFormat::MYSQL, $publish_time);
|
||||
|
||||
if (Post\Delayed::add($posting['item']['uri'], $posting['item'], $posting['notify'], Post\Delayed::PREPARED, $publish_at, $posting['taglist'], $posting['attachments'])) {
|
||||
DI::pConfig()->set($posting['item']['uid'], 'system', 'last_publish', $publish_time);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (!$dryRun && DI::config()->get('system', 'adjust_poll_frequency')) {
|
||||
self::adjustPollFrequency($contact, $creation_dates);
|
||||
}
|
||||
|
||||
return ['header' => $author, 'items' => $items];
|
||||
return $postings;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: 2025.02-dev\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-09 20:13+0000\n"
|
||||
"POT-Creation-Date: 2025-02-11 07:41+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
@ -45,7 +45,7 @@ msgid "Item not found."
|
|||
msgstr ""
|
||||
|
||||
#: mod/item.php:447 mod/message.php:54 mod/message.php:100 mod/notes.php:34
|
||||
#: mod/photos.php:132 mod/photos.php:624 src/Model/Event.php:506
|
||||
#: mod/photos.php:131 mod/photos.php:623 src/Model/Event.php:506
|
||||
#: src/Module/Attach.php:40 src/Module/BaseApi.php:90
|
||||
#: src/Module/BaseNotifications.php:83 src/Module/BaseSettings.php:38
|
||||
#: src/Module/Calendar/Event/API.php:75 src/Module/Calendar/Event/Form.php:70
|
||||
|
|
@ -289,8 +289,8 @@ msgstr ""
|
|||
msgid "Please wait"
|
||||
msgstr ""
|
||||
|
||||
#: mod/message.php:189 mod/message.php:343 mod/photos.php:655
|
||||
#: mod/photos.php:775 mod/photos.php:1052 mod/photos.php:1093
|
||||
#: mod/message.php:189 mod/message.php:343 mod/photos.php:654
|
||||
#: mod/photos.php:774 mod/photos.php:1051 mod/photos.php:1093
|
||||
#: mod/photos.php:1149 mod/photos.php:1229
|
||||
#: src/Module/Calendar/Event/Form.php:236 src/Module/Contact/Advanced.php:118
|
||||
#: src/Module/Contact/Profile.php:376
|
||||
|
|
@ -377,7 +377,7 @@ msgstr ""
|
|||
msgid "Save"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:51 mod/photos.php:114 mod/photos.php:534
|
||||
#: mod/photos.php:50 mod/photos.php:113 mod/photos.php:533
|
||||
#: src/Model/Event.php:498 src/Model/Profile.php:211
|
||||
#: src/Module/Calendar/Export.php:60 src/Module/Calendar/Show.php:62
|
||||
#: src/Module/Feed.php:52 src/Module/HCard.php:37
|
||||
|
|
@ -389,100 +389,100 @@ msgstr ""
|
|||
msgid "User not found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:88 src/Module/BaseProfile.php:53
|
||||
#: mod/photos.php:87 src/Module/BaseProfile.php:53
|
||||
#: src/Module/Profile/Photos.php:372
|
||||
msgid "Photo Albums"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:89 src/Module/Profile/Photos.php:373
|
||||
#: mod/photos.php:88 src/Module/Profile/Photos.php:373
|
||||
#: src/Module/Profile/Photos.php:393
|
||||
msgid "Recent Photos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:91 mod/photos.php:823 src/Module/Profile/Photos.php:375
|
||||
#: mod/photos.php:90 mod/photos.php:822 src/Module/Profile/Photos.php:375
|
||||
#: src/Module/Profile/Photos.php:395
|
||||
msgid "Upload New Photos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:103 src/Module/BaseSettings.php:60
|
||||
#: mod/photos.php:102 src/Module/BaseSettings.php:60
|
||||
#: src/Module/Profile/Photos.php:356
|
||||
msgid "everybody"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:139
|
||||
#: mod/photos.php:138
|
||||
msgid "Contact information unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:168
|
||||
#: mod/photos.php:167
|
||||
msgid "Album not found."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:224
|
||||
#: mod/photos.php:223
|
||||
msgid "Album successfully deleted"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:226
|
||||
#: mod/photos.php:225
|
||||
msgid "Album was empty."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:257
|
||||
#: mod/photos.php:256
|
||||
msgid "Failed to delete the photo."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:501
|
||||
#: mod/photos.php:500
|
||||
msgid "a photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:501
|
||||
#: mod/photos.php:500
|
||||
#, php-format
|
||||
msgid "%1$s was tagged in %2$s by %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:538 src/Module/Conversation/Community.php:148
|
||||
#: mod/photos.php:537 src/Module/Conversation/Community.php:148
|
||||
#: src/Module/Directory.php:34 src/Module/Profile/Photos.php:290
|
||||
#: src/Module/Search/Index.php:50
|
||||
msgid "Public access denied."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:543
|
||||
#: mod/photos.php:542
|
||||
msgid "No photos selected"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:671
|
||||
#: mod/photos.php:670
|
||||
#, php-format
|
||||
msgid "The maximum accepted image size is %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:678
|
||||
#: mod/photos.php:677
|
||||
msgid "Upload Photos"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:682 mod/photos.php:771
|
||||
#: mod/photos.php:681 mod/photos.php:770
|
||||
msgid "New album name: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:683
|
||||
#: mod/photos.php:682
|
||||
msgid "or select existing album:"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:684
|
||||
#: mod/photos.php:683
|
||||
msgid "Do not show a status post for this upload"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:687 mod/photos.php:1048 src/Content/Conversation.php:391
|
||||
#: mod/photos.php:686 mod/photos.php:1047 src/Content/Conversation.php:391
|
||||
#: src/Module/Calendar/Event/Form.php:239 src/Module/Post/Edit.php:174
|
||||
msgid "Permissions"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:752
|
||||
#: mod/photos.php:751
|
||||
msgid "Do you really want to delete this photo album and all its photos?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:753 mod/photos.php:776
|
||||
#: mod/photos.php:752 mod/photos.php:775
|
||||
msgid "Delete Album"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:754 mod/photos.php:854 src/Content/Conversation.php:406
|
||||
#: mod/photos.php:753 mod/photos.php:853 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
|
||||
|
|
@ -492,99 +492,99 @@ msgstr ""
|
|||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:780
|
||||
#: mod/photos.php:779
|
||||
msgid "Edit Album"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:781
|
||||
#: mod/photos.php:780
|
||||
msgid "Drop Album"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:785
|
||||
#: mod/photos.php:784
|
||||
msgid "Show Newest First"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:787
|
||||
#: mod/photos.php:786
|
||||
msgid "Show Oldest First"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:808 src/Module/Profile/Photos.php:343
|
||||
#: mod/photos.php:807 src/Module/Profile/Photos.php:343
|
||||
msgid "View Photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:840
|
||||
#: mod/photos.php:839
|
||||
msgid "Permission denied. Access to this item may be restricted."
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:842
|
||||
#: mod/photos.php:841
|
||||
msgid "Photo not available"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:852
|
||||
#: mod/photos.php:851
|
||||
msgid "Do you really want to delete this photo?"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:853 mod/photos.php:1053
|
||||
#: mod/photos.php:852 mod/photos.php:1052
|
||||
msgid "Delete Photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:951
|
||||
#: mod/photos.php:950
|
||||
msgid "View photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:953
|
||||
#: mod/photos.php:952
|
||||
msgid "Edit photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:954
|
||||
#: mod/photos.php:953
|
||||
msgid "Delete photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:955
|
||||
#: mod/photos.php:954
|
||||
msgid "Use as profile photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:962
|
||||
#: mod/photos.php:961
|
||||
msgid "Private Photo"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:968
|
||||
#: mod/photos.php:967
|
||||
msgid "View Full Size"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1021
|
||||
#: mod/photos.php:1020
|
||||
msgid "Tags: "
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1024
|
||||
#: mod/photos.php:1023
|
||||
msgid "[Select tags to remove]"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1039
|
||||
#: mod/photos.php:1038
|
||||
msgid "New album name"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1040
|
||||
#: mod/photos.php:1039
|
||||
msgid "Caption"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1041
|
||||
#: mod/photos.php:1040
|
||||
msgid "Add a Tag"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1041
|
||||
#: mod/photos.php:1040
|
||||
msgid "Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1042
|
||||
#: mod/photos.php:1041
|
||||
msgid "Do not rotate"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1043
|
||||
#: mod/photos.php:1042
|
||||
msgid "Rotate CW (right)"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1044
|
||||
#: mod/photos.php:1043
|
||||
msgid "Rotate CCW (left)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -646,7 +646,7 @@ msgstr ""
|
|||
msgid "Map"
|
||||
msgstr ""
|
||||
|
||||
#: src/App.php:442
|
||||
#: src/App.php:451
|
||||
msgid "Apologies but the website is unavailable at the moment."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -752,17 +752,17 @@ msgstr ""
|
|||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Router.php:286
|
||||
#: src/App/Router.php:287
|
||||
#, php-format
|
||||
msgid "Method not allowed for this module. Allowed method(s): %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Router.php:288 src/Module/HTTPException/PageNotFound.php:35
|
||||
#: src/App/Router.php:289 src/Module/HTTPException/PageNotFound.php:35
|
||||
#: src/Module/Stats.php:56
|
||||
msgid "Page not found."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Router.php:300
|
||||
#: src/App/Router.php:301
|
||||
msgid "You must be logged in to use addons. "
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -779,19 +779,19 @@ msgid "All contacts"
|
|||
msgstr ""
|
||||
|
||||
#: src/BaseModule.php:440 src/Content/Conversation/Factory/Channel.php:32
|
||||
#: src/Content/Widget.php:254 src/Core/ACL.php:182 src/Module/Contact.php:394
|
||||
#: src/Content/Widget.php:257 src/Core/ACL.php:182 src/Module/Contact.php:394
|
||||
#: src/Module/Privacy/PermissionTooltip.php:150
|
||||
#: src/Module/Privacy/PermissionTooltip.php:172
|
||||
#: src/Module/Settings/Channels.php:146
|
||||
msgid "Followers"
|
||||
msgstr ""
|
||||
|
||||
#: src/BaseModule.php:445 src/Content/Widget.php:255 src/Module/Contact.php:397
|
||||
#: src/BaseModule.php:445 src/Content/Widget.php:258 src/Module/Contact.php:397
|
||||
#: src/Module/Settings/Channels.php:145
|
||||
msgid "Following"
|
||||
msgstr ""
|
||||
|
||||
#: src/BaseModule.php:450 src/Content/Widget.php:256 src/Module/Contact.php:400
|
||||
#: src/BaseModule.php:450 src/Content/Widget.php:259 src/Module/Contact.php:400
|
||||
msgid "Mutual friends"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -799,15 +799,15 @@ msgstr ""
|
|||
msgid "Common"
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/Addon.php:163 src/Console/Addon.php:187
|
||||
#: src/Console/Addon.php:164 src/Console/Addon.php:188
|
||||
msgid "Addon not found"
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/Addon.php:167
|
||||
#: src/Console/Addon.php:168
|
||||
msgid "Addon already enabled"
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/Addon.php:191
|
||||
#: src/Console/Addon.php:192
|
||||
msgid "Addon already disabled"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1701,7 +1701,7 @@ msgstr ""
|
|||
msgid "Network Widgets"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:126 src/Content/Widget.php:230
|
||||
#: src/Content/Feature.php:126 src/Content/Widget.php:233
|
||||
#: src/Model/Circle.php:587 src/Module/Contact.php:380
|
||||
#: src/Module/Welcome.php:62
|
||||
msgid "Circles"
|
||||
|
|
@ -1713,7 +1713,7 @@ msgstr ""
|
|||
|
||||
#: src/Content/Feature.php:127 src/Content/GroupManager.php:128
|
||||
#: src/Content/Nav.php:274 src/Content/Text/HTML.php:868
|
||||
#: src/Content/Widget.php:555 src/Model/User.php:1393
|
||||
#: src/Content/Widget.php:558 src/Model/User.php:1393
|
||||
msgid "Groups"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1721,7 +1721,7 @@ msgstr ""
|
|||
msgid "Display posts that have been distributed by the selected group."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:128 src/Content/Widget.php:524
|
||||
#: src/Content/Feature.php:128 src/Content/Widget.php:527
|
||||
msgid "Archives"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1729,7 +1729,7 @@ msgstr ""
|
|||
msgid "Display an archive where posts can be selected by month and year."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:129 src/Content/Widget.php:303
|
||||
#: src/Content/Feature.php:129 src/Content/Widget.php:306
|
||||
msgid "Protocols"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1737,7 +1737,7 @@ msgstr ""
|
|||
msgid "Display posts with the selected protocols."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:130 src/Content/Widget.php:561
|
||||
#: src/Content/Feature.php:130 src/Content/Widget.php:564
|
||||
#: src/Module/Settings/Account.php:391
|
||||
msgid "Account Types"
|
||||
msgstr ""
|
||||
|
|
@ -1746,7 +1746,7 @@ msgstr ""
|
|||
msgid "Display posts done by accounts with the selected account type."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:131 src/Content/Widget.php:610
|
||||
#: src/Content/Feature.php:131 src/Content/Widget.php:613
|
||||
#: src/Module/Admin/Site.php:463 src/Module/BaseSettings.php:113
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:313
|
||||
msgid "Channels"
|
||||
|
|
@ -1764,7 +1764,7 @@ msgstr ""
|
|||
msgid "Display posts that contain subscribed hashtags."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:133 src/Content/Widget.php:333
|
||||
#: src/Content/Feature.php:133 src/Content/Widget.php:336
|
||||
msgid "Saved Folders"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1824,12 +1824,12 @@ msgstr ""
|
|||
msgid "External link to group"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/GroupManager.php:134 src/Content/Widget.php:530
|
||||
#: src/Content/GroupManager.php:134 src/Content/Widget.php:533
|
||||
msgid "show less"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/GroupManager.php:135 src/Content/Widget.php:425
|
||||
#: src/Content/Widget.php:531
|
||||
#: src/Content/GroupManager.php:135 src/Content/Widget.php:428
|
||||
#: src/Content/Widget.php:534
|
||||
msgid "show more"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1837,7 +1837,7 @@ msgstr ""
|
|||
msgid "Create new group"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Item.php:321 src/Model/Item.php:3296
|
||||
#: src/Content/Item.php:321 src/Model/Item.php:2980
|
||||
msgid "event"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1845,7 +1845,7 @@ msgstr ""
|
|||
msgid "status"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Item.php:330 src/Model/Item.php:3298
|
||||
#: src/Content/Item.php:330 src/Model/Item.php:2982
|
||||
#: src/Module/Post/Tag/Add.php:109
|
||||
msgid "photo"
|
||||
msgstr ""
|
||||
|
|
@ -1922,7 +1922,7 @@ msgstr ""
|
|||
msgid "Search Text"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Item.php:440 src/Content/Widget.php:66
|
||||
#: src/Content/Item.php:440 src/Content/Widget.php:65
|
||||
#: src/Model/Contact.php:1247 src/Model/Contact.php:1259
|
||||
#: src/Module/Contact/Follow.php:152 view/theme/vier/theme.php:183
|
||||
msgid "Connect/Follow"
|
||||
|
|
@ -2102,7 +2102,7 @@ msgstr ""
|
|||
msgid "People directory"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:294 src/Module/BaseAdmin.php:71
|
||||
#: src/Content/Nav.php:294 src/Module/BaseAdmin.php:70
|
||||
#: src/Module/BaseModeration.php:97
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
|
|
@ -2112,7 +2112,7 @@ msgid "Information about this friendica instance"
|
|||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:297 src/Module/Admin/Tos.php:64
|
||||
#: src/Module/BaseAdmin.php:81 src/Module/Register.php:169
|
||||
#: src/Module/BaseAdmin.php:80 src/Module/Register.php:169
|
||||
#: src/Module/Tos.php:87
|
||||
msgid "Terms of Service"
|
||||
msgstr ""
|
||||
|
|
@ -2178,7 +2178,7 @@ msgstr ""
|
|||
msgid "Manage other pages"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:323 src/Module/Admin/Addons/Details.php:98
|
||||
#: src/Content/Nav.php:323 src/Module/Admin/Addons/Details.php:101
|
||||
#: src/Module/Admin/Themes/Details.php:85 src/Module/BaseSettings.php:177
|
||||
#: src/Module/Welcome.php:38 view/theme/frio/theme.php:231
|
||||
msgid "Settings"
|
||||
|
|
@ -2192,7 +2192,7 @@ msgstr ""
|
|||
msgid "Manage/edit friends and contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:330 src/Module/BaseAdmin.php:105
|
||||
#: src/Content/Nav.php:330 src/Module/BaseAdmin.php:114
|
||||
msgid "Admin"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2247,8 +2247,8 @@ msgstr ""
|
|||
msgid "<a href=\"%1$s\" target=\"_blank\" rel=\"noopener noreferrer\">%2$s</a> %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Text/BBCode.php:926 src/Model/Item.php:4103
|
||||
#: src/Model/Item.php:4109 src/Model/Item.php:4110
|
||||
#: src/Content/Text/BBCode.php:926 src/Model/Item.php:3787
|
||||
#: src/Model/Item.php:3793 src/Model/Item.php:3794
|
||||
msgid "Link to source"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2285,129 +2285,129 @@ msgstr ""
|
|||
msgid "Follow"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:37
|
||||
#: src/Content/Widget.php:36
|
||||
msgid "Add New Contact"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:38
|
||||
#: src/Content/Widget.php:37
|
||||
msgid "Enter address or web location"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:39
|
||||
#: src/Content/Widget.php:38
|
||||
msgid "Example: bob@example.com, http://example.com/barbara"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:41
|
||||
#: src/Content/Widget.php:40
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:58
|
||||
#: src/Content/Widget.php:57
|
||||
#, php-format
|
||||
msgid "%d invitation available"
|
||||
msgid_plural "%d invitations available"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Content/Widget.php:64 view/theme/vier/theme.php:181
|
||||
#: src/Content/Widget.php:63 view/theme/vier/theme.php:181
|
||||
msgid "Find People"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:65 view/theme/vier/theme.php:182
|
||||
#: src/Content/Widget.php:64 view/theme/vier/theme.php:182
|
||||
msgid "Enter name or interest"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:67 view/theme/vier/theme.php:184
|
||||
#: src/Content/Widget.php:66 view/theme/vier/theme.php:184
|
||||
msgid "Examples: Robert Morgenstein, Fishing"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:68 src/Module/Contact.php:440
|
||||
#: src/Content/Widget.php:67 src/Module/Contact.php:440
|
||||
#: src/Module/Directory.php:82 view/theme/vier/theme.php:185
|
||||
msgid "Find"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:69 src/Module/Contact/Suggestions.php:59
|
||||
#: src/Content/Widget.php:68 src/Module/Contact/Suggestions.php:59
|
||||
#: view/theme/vier/theme.php:186
|
||||
msgid "Friend Suggestions"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:70 view/theme/vier/theme.php:187
|
||||
#: src/Content/Widget.php:69 view/theme/vier/theme.php:187
|
||||
msgid "Similar Interests"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:71 view/theme/vier/theme.php:188
|
||||
#: src/Content/Widget.php:70 view/theme/vier/theme.php:188
|
||||
msgid "Random Profile"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:72 view/theme/vier/theme.php:189
|
||||
#: src/Content/Widget.php:71 view/theme/vier/theme.php:189
|
||||
msgid "Invite Friends"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:73 src/Module/Directory.php:74
|
||||
#: src/Content/Widget.php:72 src/Module/Directory.php:74
|
||||
#: view/theme/vier/theme.php:190
|
||||
msgid "Global Directory"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:75 view/theme/vier/theme.php:192
|
||||
#: src/Content/Widget.php:74 view/theme/vier/theme.php:192
|
||||
msgid "Local Directory"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:232
|
||||
#: src/Content/Widget.php:235
|
||||
msgid "Everyone"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:257 src/Module/Contact.php:403
|
||||
#: src/Content/Widget.php:260 src/Module/Contact.php:403
|
||||
msgid "No relationship"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:262
|
||||
#: src/Content/Widget.php:265
|
||||
msgid "Relationships"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:264 src/Module/Circle.php:281
|
||||
#: src/Content/Widget.php:267 src/Module/Circle.php:281
|
||||
#: src/Module/Contact.php:324
|
||||
msgid "All Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:305
|
||||
#: src/Content/Widget.php:308
|
||||
msgid "All Protocols"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:335 src/Content/Widget.php:366
|
||||
#: src/Content/Widget.php:338 src/Content/Widget.php:369
|
||||
msgid "Everything"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:364
|
||||
#: src/Content/Widget.php:367
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:421
|
||||
#: src/Content/Widget.php:424
|
||||
#, php-format
|
||||
msgid "%d contact in common"
|
||||
msgid_plural "%d contacts in common"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Content/Widget.php:532
|
||||
#: src/Content/Widget.php:535
|
||||
msgid "On this date"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:552
|
||||
#: src/Content/Widget.php:555
|
||||
msgid "Persons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:553
|
||||
#: src/Content/Widget.php:556
|
||||
msgid "Organisations"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:554 src/Model/Contact.php:1757
|
||||
#: src/Content/Widget.php:557 src/Model/Contact.php:1757
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:556
|
||||
#: src/Content/Widget.php:559
|
||||
msgid "Relays"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:563 src/Module/Moderation/BaseUsers.php:58
|
||||
#: src/Content/Widget.php:566 src/Module/Moderation/BaseUsers.php:58
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2836,7 +2836,7 @@ msgstr ""
|
|||
msgid "Could not connect to database."
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/L10n.php:426 src/Model/Item.php:2339
|
||||
#: src/Core/L10n.php:426 src/Model/Item.php:2023
|
||||
msgid "Undetermined"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3224,7 +3224,7 @@ msgstr ""
|
|||
msgid "Disallowed profile URL."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:3096 src/Module/Friendica.php:88
|
||||
#: src/Model/Contact.php:3096 src/Module/Friendica.php:90
|
||||
msgid "Blocked domain"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3378,92 +3378,92 @@ msgstr ""
|
|||
msgid "Happy Birthday %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:2346
|
||||
#: src/Model/Item.php:2030
|
||||
#, php-format
|
||||
msgid "%s (%s - %s): %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:2348
|
||||
#: src/Model/Item.php:2032
|
||||
#, php-format
|
||||
msgid "%s (%s): %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:2351
|
||||
#: src/Model/Item.php:2035
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Detected languages in this post:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:3300
|
||||
#: src/Model/Item.php:2984
|
||||
msgid "activity"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:3302
|
||||
#: src/Model/Item.php:2986
|
||||
msgid "comment"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:3305 src/Module/Post/Tag/Add.php:109
|
||||
#: src/Model/Item.php:2989 src/Module/Post/Tag/Add.php:109
|
||||
msgid "post"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:3478
|
||||
#: src/Model/Item.php:3162
|
||||
#, php-format
|
||||
msgid "%s is blocked"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:3480
|
||||
#: src/Model/Item.php:3164
|
||||
#, php-format
|
||||
msgid "%s is ignored"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:3482
|
||||
#: src/Model/Item.php:3166
|
||||
#, php-format
|
||||
msgid "Content from %s is collapsed"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:3486
|
||||
#: src/Model/Item.php:3170
|
||||
msgid "Sensitive content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:4003
|
||||
#: src/Model/Item.php:3687
|
||||
msgid "bytes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:4034
|
||||
#: src/Model/Item.php:3718
|
||||
#, 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:4036
|
||||
#: src/Model/Item.php:3720
|
||||
#, php-format
|
||||
msgid "%2$s (%1$d vote)"
|
||||
msgid_plural "%2$s (%1$d votes)"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Model/Item.php:4041
|
||||
#: src/Model/Item.php:3725
|
||||
#, php-format
|
||||
msgid "%d voter. Poll end: %s"
|
||||
msgid_plural "%d voters. Poll end: %s"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Model/Item.php:4043
|
||||
#: src/Model/Item.php:3727
|
||||
#, php-format
|
||||
msgid "%d voter."
|
||||
msgid_plural "%d voters."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Model/Item.php:4045
|
||||
#: src/Model/Item.php:3729
|
||||
#, php-format
|
||||
msgid "Poll end: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:4086 src/Model/Item.php:4087
|
||||
#: src/Model/Item.php:3770 src/Model/Item.php:3771
|
||||
msgid "View on separate page"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3574,7 +3574,7 @@ msgstr ""
|
|||
msgid "Title/Description:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Profile.php:793 src/Module/Admin/Summary.php:174
|
||||
#: src/Model/Profile.php:793 src/Module/Admin/Summary.php:184
|
||||
#: src/Module/Moderation/Report/Create.php:266
|
||||
#: src/Module/Moderation/Summary.php:65
|
||||
msgid "Summary"
|
||||
|
|
@ -3860,71 +3860,71 @@ msgstr ""
|
|||
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:48
|
||||
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:59 src/Module/Admin/Addons/Index.php:43
|
||||
#, 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:62 src/Module/Admin/Addons/Index.php:45
|
||||
#, php-format
|
||||
msgid "Addon %s enabled."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Addons/Details.php:72
|
||||
#: src/Module/Admin/Addons/Details.php:71
|
||||
#: src/Module/Admin/Themes/Details.php:38
|
||||
msgid "Disable"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Addons/Details.php:75
|
||||
#: src/Module/Admin/Addons/Details.php:74
|
||||
#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:341
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Addons/Details.php:95 src/Module/Admin/Addons/Index.php:59
|
||||
#: src/Module/Admin/Addons/Details.php:98 src/Module/Admin/Addons/Index.php:77
|
||||
#: 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:446 src/Module/Admin/Storage.php:124
|
||||
#: src/Module/Admin/Summary.php:173 src/Module/Admin/Themes/Details.php:82
|
||||
#: src/Module/Admin/Summary.php:183 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:99 src/Module/Admin/Addons/Index.php:78
|
||||
#: src/Module/BaseAdmin.php:77 src/Module/BaseSettings.php:127
|
||||
msgid "Addons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Addons/Details.php:97
|
||||
#: src/Module/Admin/Addons/Details.php:100
|
||||
#: src/Module/Admin/Themes/Details.php:84
|
||||
msgid "Toggle"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Addons/Details.php:104
|
||||
#: src/Module/Admin/Addons/Details.php:113
|
||||
#: src/Module/Admin/Themes/Details.php:92
|
||||
msgid "Author: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Addons/Details.php:105
|
||||
#: src/Module/Admin/Addons/Details.php:114
|
||||
#: src/Module/Admin/Themes/Details.php:93
|
||||
msgid "Maintainer: "
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Addons/Index.php:34
|
||||
#: src/Module/Admin/Addons/Index.php:35
|
||||
msgid "Addons reloaded"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Addons/Index.php:45
|
||||
#: src/Module/Admin/Addons/Index.php:47
|
||||
#, php-format
|
||||
msgid "Addon %s failed to install."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Addons/Index.php:61 src/Module/Admin/Features.php:69
|
||||
#: src/Module/Admin/Addons/Index.php:79 src/Module/Admin/Features.php:69
|
||||
#: src/Module/Admin/Logs/Settings.php:76 src/Module/Admin/Site.php:449
|
||||
#: 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
|
||||
|
|
@ -3936,11 +3936,11 @@ msgstr ""
|
|||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Addons/Index.php:62
|
||||
#: src/Module/Admin/Addons/Index.php:80
|
||||
msgid "Reload active addons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Addons/Index.php:66
|
||||
#: src/Module/Admin/Addons/Index.php:84
|
||||
#, php-format
|
||||
msgid "There are currently no addons available on your node. You can find the official addon repository at %1$s."
|
||||
msgstr ""
|
||||
|
|
@ -4088,7 +4088,7 @@ msgstr[1] ""
|
|||
msgid "This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Federation.php:214 src/Module/BaseAdmin.php:73
|
||||
#: src/Module/Admin/Federation.php:214 src/Module/BaseAdmin.php:72
|
||||
msgid "Federation Statistics"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -4112,8 +4112,8 @@ msgstr ""
|
|||
msgid "PHP log currently disabled."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Logs/Settings.php:75 src/Module/BaseAdmin.php:88
|
||||
#: src/Module/BaseAdmin.php:89
|
||||
#: src/Module/Admin/Logs/Settings.php:75 src/Module/BaseAdmin.php:87
|
||||
#: src/Module/BaseAdmin.php:88
|
||||
msgid "Logs"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -4161,7 +4161,7 @@ msgstr ""
|
|||
msgid "Couldn't open <strong>%1$s</strong> log file.<br/>Check to see if file %1$s is readable."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Logs/View.php:72 src/Module/BaseAdmin.php:90
|
||||
#: src/Module/Admin/Logs/View.php:72 src/Module/BaseAdmin.php:89
|
||||
msgid "View Logs"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -4351,7 +4351,7 @@ msgstr ""
|
|||
msgid "Interactors"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:447 src/Module/BaseAdmin.php:76
|
||||
#: src/Module/Admin/Site.php:447 src/Module/BaseAdmin.php:75
|
||||
msgid "Site"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5324,7 +5324,7 @@ msgstr ""
|
|||
msgid "Storage Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:77
|
||||
#: src/Module/Admin/Storage.php:127 src/Module/BaseAdmin.php:76
|
||||
msgid "Storage"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5408,39 +5408,39 @@ msgstr ""
|
|||
msgid "Friendica's configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your config from <code>config/local.ini.php</code>. See <a href=\"%s\">the Config help page</a> for help with the transition."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Summary.php:104
|
||||
#: src/Module/Admin/Summary.php:105
|
||||
#, php-format
|
||||
msgid "<a href=\"%s\">%s</a> is not reachable on your system. This is a severe configuration issue that prevents server to server communication. See <a href=\"%s\">the installation page</a> for help."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Summary.php:128
|
||||
#: src/Module/Admin/Summary.php:133
|
||||
#, 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:143
|
||||
#, 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:153
|
||||
#, 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:165
|
||||
msgid "Message queues"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Summary.php:158
|
||||
#: src/Module/Admin/Summary.php:168
|
||||
msgid "Server Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Summary.php:176
|
||||
#: src/Module/Admin/Summary.php:186
|
||||
msgid "Version"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Summary.php:180
|
||||
#: src/Module/Admin/Summary.php:190
|
||||
msgid "Active addons"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5464,7 +5464,7 @@ msgid "Screenshot"
|
|||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Themes/Details.php:83 src/Module/Admin/Themes/Index.php:104
|
||||
#: src/Module/BaseAdmin.php:79
|
||||
#: src/Module/BaseAdmin.php:78
|
||||
msgid "Themes"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5581,76 +5581,76 @@ msgstr ""
|
|||
msgid "Item was not found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:40 src/Module/BaseAdmin.php:44
|
||||
#: src/Module/BaseAdmin.php:39 src/Module/BaseAdmin.php:43
|
||||
#: src/Module/BaseModeration.php:66 src/Module/BaseModeration.php:70
|
||||
msgid "Please login to continue."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:49
|
||||
#: src/Module/BaseAdmin.php:48
|
||||
msgid "You don't have access to administration pages."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:53
|
||||
#: src/Module/BaseAdmin.php:52
|
||||
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:71 src/Module/BaseModeration.php:98
|
||||
msgid "Overview"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:75 src/Module/BaseModeration.php:101
|
||||
#: src/Module/BaseAdmin.php:74 src/Module/BaseModeration.php:101
|
||||
msgid "Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:80 src/Module/BaseSettings.php:98
|
||||
#: src/Module/BaseAdmin.php:79 src/Module/BaseSettings.php:98
|
||||
msgid "Additional features"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:83
|
||||
#: src/Module/BaseAdmin.php:82
|
||||
msgid "Database"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:84
|
||||
#: src/Module/BaseAdmin.php:83
|
||||
msgid "DB updates"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:85
|
||||
#: src/Module/BaseAdmin.php:84
|
||||
msgid "Inspect Deferred Workers"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:86
|
||||
#: src/Module/BaseAdmin.php:85
|
||||
msgid "Inspect worker Queue"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:92 src/Module/BaseModeration.php:109
|
||||
#: src/Module/BaseAdmin.php:91 src/Module/BaseModeration.php:109
|
||||
msgid "Diagnostics"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:93
|
||||
#: src/Module/BaseAdmin.php:92
|
||||
msgid "PHP Info"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:94
|
||||
#: src/Module/BaseAdmin.php:93
|
||||
msgid "probe address"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:95
|
||||
#: src/Module/BaseAdmin.php:94
|
||||
msgid "check webfinger"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:96
|
||||
#: src/Module/BaseAdmin.php:95
|
||||
msgid "Babel"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:97 src/Module/Debug/ActivityPubConversion.php:125
|
||||
#: src/Module/BaseAdmin.php:96 src/Module/Debug/ActivityPubConversion.php:125
|
||||
msgid "ActivityPub Conversion"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:106
|
||||
#: src/Module/BaseAdmin.php:115
|
||||
msgid "Addon Features"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseAdmin.php:107 src/Module/BaseModeration.php:118
|
||||
#: src/Module/BaseAdmin.php:116 src/Module/BaseModeration.php:118
|
||||
msgid "User registrations waiting for confirmation"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -7049,52 +7049,52 @@ msgstr ""
|
|||
msgid "Suggest a friend for %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:69
|
||||
#: src/Module/Friendica.php:71
|
||||
msgid "Installed addons/apps:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:74
|
||||
#: src/Module/Friendica.php:76
|
||||
msgid "No installed addons/apps"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:79
|
||||
#: src/Module/Friendica.php:81
|
||||
#, php-format
|
||||
msgid "Read about the <a href=\"%1$s/tos\">Terms of Service</a> of this node."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:86
|
||||
#: src/Module/Friendica.php:88
|
||||
msgid "On this server the following remote servers are blocked."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:89
|
||||
#: src/Module/Friendica.php:91
|
||||
#: src/Module/Moderation/Blocklist/Server/Index.php:76
|
||||
#: src/Module/Moderation/Blocklist/Server/Index.php:100
|
||||
#: src/Module/Settings/Channels.php:218
|
||||
msgid "Reason for the block"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:91
|
||||
#: src/Module/Friendica.php:93
|
||||
msgid "Download this list in CSV format"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:105
|
||||
#: src/Module/Friendica.php:108
|
||||
#, 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:114
|
||||
msgid "Please visit <a href=\"https://friendi.ca\">Friendi.ca</a> to learn more about the Friendica project."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:111
|
||||
#: src/Module/Friendica.php:115
|
||||
msgid "Bug reports and issues: please visit"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:111
|
||||
#: src/Module/Friendica.php:115
|
||||
msgid "the bugtracker at github"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Friendica.php:112
|
||||
#: src/Module/Friendica.php:116
|
||||
msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -8571,19 +8571,19 @@ msgid "No contacts."
|
|||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Conversations.php:96 src/Module/Profile/Profile.php:342
|
||||
#: src/Protocol/Feed.php:1096
|
||||
#: src/Protocol/Feed.php:1114
|
||||
#, php-format
|
||||
msgid "%s's posts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Conversations.php:97 src/Module/Profile/Profile.php:343
|
||||
#: src/Protocol/Feed.php:1099
|
||||
#: src/Protocol/Feed.php:1117
|
||||
#, php-format
|
||||
msgid "%s's comments"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Profile/Conversations.php:98 src/Module/Profile/Profile.php:344
|
||||
#: src/Protocol/Feed.php:1092
|
||||
#: src/Protocol/Feed.php:1110
|
||||
#, php-format
|
||||
msgid "%s's timeline"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-05 22:44+0000\n"
|
||||
"POT-Creation-Date: 2025-02-09 20:13+0000\n"
|
||||
"PO-Revision-Date: 2011-05-05 10:19+0000\n"
|
||||
"Last-Translator: abidin toumi <abidin24@tutanota.com>, 2020-2021,2023\n"
|
||||
"Language-Team: Arabic (http://app.transifex.com/Friendica/friendica/language/ar/)\n"
|
||||
|
|
@ -78,7 +78,7 @@ msgstr "لم يُعثر على العنصر."
|
|||
#: 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/Display.php:188
|
||||
#: src/Module/Settings/Profile/Photo/Crop.php:148
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:96
|
||||
#: src/Module/Settings/RemoveMe.php:103 src/Module/Settings/UserExport.php:64
|
||||
|
|
@ -299,7 +299,7 @@ msgstr "أدرج رابط ويب"
|
|||
#: mod/message.php:188 mod/message.php:344 mod/photos.php:1252
|
||||
#: 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:607
|
||||
#: src/Object/Post.php:608
|
||||
msgid "Please wait"
|
||||
msgstr "يرجى الانتظار"
|
||||
|
||||
|
|
@ -322,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:1148 view/theme/duepuntozero/config.php:73
|
||||
#: src/Object/Post.php:1149 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"
|
||||
|
|
@ -612,25 +612,25 @@ msgstr "أدر عكس اتجاه عقارب الساعة"
|
|||
|
||||
#: mod/photos.php:1090 mod/photos.php:1146 mod/photos.php:1226
|
||||
#: src/Module/Contact.php:599 src/Module/Item/Compose.php:184
|
||||
#: src/Object/Post.php:1145
|
||||
#: src/Object/Post.php:1146
|
||||
msgid "This is you"
|
||||
msgstr "هذا أنت"
|
||||
|
||||
#: mod/photos.php:1092 mod/photos.php:1148 mod/photos.php:1228
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:601
|
||||
#: src/Object/Post.php:1147
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:602
|
||||
#: src/Object/Post.php:1148
|
||||
msgid "Comment"
|
||||
msgstr "علِّق"
|
||||
|
||||
#: mod/photos.php:1094 mod/photos.php:1150 mod/photos.php:1230
|
||||
#: 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:1161
|
||||
#: src/Object/Post.php:1162
|
||||
msgid "Preview"
|
||||
msgstr "معاينة"
|
||||
|
||||
#: mod/photos.php:1095 src/Content/Conversation.php:357
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1149
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1150
|
||||
msgid "Loading..."
|
||||
msgstr "يحمل..."
|
||||
|
||||
|
|
@ -672,112 +672,112 @@ msgstr "خريطة"
|
|||
msgid "Apologies but the website is unavailable at the moment."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:247
|
||||
#: src/App/Page.php:236
|
||||
msgid "Delete this item?"
|
||||
msgstr "أتريد حذف العنصر؟"
|
||||
|
||||
#: src/App/Page.php:248
|
||||
#: 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:249
|
||||
#: 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:250
|
||||
#: src/App/Page.php:239
|
||||
msgid "Collapse this author's posts?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:251
|
||||
#: src/App/Page.php:240
|
||||
msgid "Ignore this author's server?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:252 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:254
|
||||
#: src/App/Page.php:243
|
||||
msgid "Like not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:255
|
||||
#: src/App/Page.php:244
|
||||
msgid "Dislike not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:256
|
||||
#: src/App/Page.php:245
|
||||
msgid "Sharing not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:257
|
||||
#: src/App/Page.php:246
|
||||
msgid "Attendance unsuccessful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:258
|
||||
#: src/App/Page.php:247
|
||||
msgid "Backend error"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:259
|
||||
#: src/App/Page.php:248
|
||||
msgid "Network error"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:262
|
||||
#: src/App/Page.php:251
|
||||
msgid "Drop files here to upload"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:263
|
||||
#: src/App/Page.php:252
|
||||
msgid "Your browser does not support drag and drop file uploads."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:264
|
||||
#: 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:265
|
||||
#: src/App/Page.php:254
|
||||
msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:266
|
||||
#: src/App/Page.php:255
|
||||
msgid "You can't upload files of this type."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:267
|
||||
#: src/App/Page.php:256
|
||||
msgid "Server responded with {{statusCode}} code."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:268
|
||||
#: src/App/Page.php:257
|
||||
msgid "Cancel upload"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:269
|
||||
#: src/App/Page.php:258
|
||||
msgid "Upload canceled."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:270
|
||||
#: src/App/Page.php:259
|
||||
msgid "Are you sure you want to cancel this upload?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:271
|
||||
#: src/App/Page.php:260
|
||||
msgid "Remove file"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:272
|
||||
#: src/App/Page.php:261
|
||||
msgid "You can't upload any more files."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:356
|
||||
#: src/App/Page.php:345
|
||||
msgid "toggle mobile"
|
||||
msgstr "بدّل واجهة الهاتف"
|
||||
|
||||
#: src/App/Page.php:367 src/Module/Admin/Logs/View.php:92
|
||||
#: src/App/Page.php:356 src/Module/Admin/Logs/View.php:92
|
||||
#: view/theme/frio/php/minimal.php:39 view/theme/frio/php/standard.php:138
|
||||
msgid "Close"
|
||||
msgstr "أغلق"
|
||||
|
|
@ -1318,7 +1318,7 @@ msgid "Visible to <strong>everybody</strong>"
|
|||
msgstr "مرئي <strong>للجميع</strong>"
|
||||
|
||||
#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196
|
||||
#: src/Object/Post.php:1160
|
||||
#: src/Object/Post.php:1161
|
||||
msgid "Please enter a image/video/audio/webpage URL:"
|
||||
msgstr "رجاء أدخل رابط صورة/فيديو/صوت/صفحة ويب:"
|
||||
|
||||
|
|
@ -1363,52 +1363,52 @@ 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:1150
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1151
|
||||
msgid "Bold"
|
||||
msgstr "عريض"
|
||||
|
||||
#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1151
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1152
|
||||
msgid "Italic"
|
||||
msgstr "مائل"
|
||||
|
||||
#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1152
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1153
|
||||
msgid "Underline"
|
||||
msgstr "تحته خط"
|
||||
|
||||
#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1154
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1155
|
||||
msgid "Quote"
|
||||
msgstr "اقتبس"
|
||||
|
||||
#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1155
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1156
|
||||
msgid "Add emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191
|
||||
#: src/Object/Post.php:1153
|
||||
#: src/Object/Post.php:1154
|
||||
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:1156
|
||||
#: src/Module/Post/Edit.php:167 src/Object/Post.php:1157
|
||||
msgid "Code"
|
||||
msgstr "شفرة"
|
||||
|
||||
#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193
|
||||
#: src/Object/Post.php:1157
|
||||
#: src/Object/Post.php:1158
|
||||
msgid "Image"
|
||||
msgstr "صورة"
|
||||
|
||||
#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1158
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1159
|
||||
msgid "Link"
|
||||
msgstr "رابط"
|
||||
|
||||
#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1159
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1160
|
||||
msgid "Link or Media"
|
||||
msgstr "رابط أو وسائط"
|
||||
|
||||
|
|
@ -1582,7 +1582,7 @@ msgstr "الفئات:"
|
|||
msgid "Filed under:"
|
||||
msgstr "مصنف كـ:"
|
||||
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:558
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:559
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "%s من %s"
|
||||
|
|
@ -1842,7 +1842,7 @@ msgstr ""
|
|||
|
||||
#: src/Content/Feature.php:131 src/Content/Widget.php:610
|
||||
#: src/Module/Admin/Site.php:463 src/Module/BaseSettings.php:113
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:323
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:313
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2017,7 +2017,7 @@ msgstr ""
|
|||
msgid "Languages"
|
||||
msgstr "اللغات"
|
||||
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:585
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:586
|
||||
msgid "Search Text"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2110,7 +2110,7 @@ msgstr "مشاركاتك التي تحوي وسائط"
|
|||
#: src/Content/Nav.php:229 src/Content/Nav.php:289
|
||||
#: 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:225
|
||||
#: src/Module/Settings/Display.php:314 view/theme/frio/theme.php:225
|
||||
#: view/theme/frio/theme.php:229
|
||||
msgid "Calendar"
|
||||
msgstr "التقويم"
|
||||
|
|
@ -3014,37 +3014,37 @@ msgid "%s (%s)"
|
|||
msgstr ""
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:416
|
||||
#: src/Module/Settings/Display.php:292
|
||||
#: src/Module/Settings/Display.php:282
|
||||
msgid "Monday"
|
||||
msgstr "الإثنين"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:417
|
||||
#: src/Module/Settings/Display.php:293
|
||||
#: src/Module/Settings/Display.php:283
|
||||
msgid "Tuesday"
|
||||
msgstr "الثلاثاء"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:418
|
||||
#: src/Module/Settings/Display.php:294
|
||||
#: src/Module/Settings/Display.php:284
|
||||
msgid "Wednesday"
|
||||
msgstr "الأربعاء"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:419
|
||||
#: src/Module/Settings/Display.php:295
|
||||
#: src/Module/Settings/Display.php:285
|
||||
msgid "Thursday"
|
||||
msgstr "الخميس"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:420
|
||||
#: src/Module/Settings/Display.php:296
|
||||
#: src/Module/Settings/Display.php:286
|
||||
msgid "Friday"
|
||||
msgstr "الجمعة"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:421
|
||||
#: src/Module/Settings/Display.php:297
|
||||
#: src/Module/Settings/Display.php:287
|
||||
msgid "Saturday"
|
||||
msgstr "السبت"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:415
|
||||
#: src/Module/Settings/Display.php:291
|
||||
#: src/Module/Settings/Display.php:281
|
||||
msgid "Sunday"
|
||||
msgstr "الأحد"
|
||||
|
||||
|
|
@ -3497,17 +3497,17 @@ msgid "today"
|
|||
msgstr "اليوم"
|
||||
|
||||
#: src/Model/Event.php:449 src/Module/Calendar/Show.php:117
|
||||
#: src/Module/Settings/Display.php:302 src/Util/Temporal.php:343
|
||||
#: src/Module/Settings/Display.php:292 src/Util/Temporal.php:343
|
||||
msgid "month"
|
||||
msgstr "شهر"
|
||||
|
||||
#: src/Model/Event.php:450 src/Module/Calendar/Show.php:118
|
||||
#: src/Module/Settings/Display.php:303 src/Util/Temporal.php:344
|
||||
#: src/Module/Settings/Display.php:293 src/Util/Temporal.php:344
|
||||
msgid "week"
|
||||
msgstr "أسبوع"
|
||||
|
||||
#: src/Model/Event.php:451 src/Module/Calendar/Show.php:119
|
||||
#: src/Module/Settings/Display.php:304 src/Util/Temporal.php:345
|
||||
#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:345
|
||||
msgid "day"
|
||||
msgstr "يوم"
|
||||
|
||||
|
|
@ -4104,7 +4104,7 @@ 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/Themes/Details.php:41 src/Module/Settings/Display.php:341
|
||||
msgid "Enable"
|
||||
msgstr "فعّل"
|
||||
|
||||
|
|
@ -4155,7 +4155,7 @@ msgstr "فشل تثبيت إضافة %s."
|
|||
#: 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:307
|
||||
#: src/Module/Settings/Features.php:61
|
||||
msgid "Save Settings"
|
||||
msgstr "احفظ الإعدادات"
|
||||
|
|
@ -4566,11 +4566,11 @@ msgstr ""
|
|||
msgid "%s is no valid input for maximum image size"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:212
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:206
|
||||
msgid "No special theme for mobile devices"
|
||||
msgstr "لا توجد سمة مخصصة للهاتف"
|
||||
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:222
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:216
|
||||
#, php-format
|
||||
msgid "%s - (Experimental)"
|
||||
msgstr "%s - (اختباري)"
|
||||
|
|
@ -5647,7 +5647,7 @@ msgid ""
|
|||
msgstr "إما أن يكون \"الكل\" أو \"الوسوم\". يعني \"الكل\" وُجوب تلقي كل المشاركات العلنية. تعني \"الوسوم\" وجوب تلقي المشاركات ذات الوسوم المحددة فقط."
|
||||
|
||||
#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:315
|
||||
#: src/Module/Settings/Display.php:259
|
||||
#: src/Module/Settings/Display.php:249
|
||||
#: src/Module/Settings/TwoFactor/Index.php:132
|
||||
msgid "Disabled"
|
||||
msgstr "معطّل"
|
||||
|
|
@ -6292,7 +6292,7 @@ msgstr "تلميحات للأعضاء الجدد"
|
|||
#: src/Module/Contact.php:537 src/Module/Conversation/Channel.php:98
|
||||
#: src/Module/Conversation/Community.php:91
|
||||
#: src/Module/Conversation/Network.php:295
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:605
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:606
|
||||
msgid "More"
|
||||
msgstr "المزيد"
|
||||
|
||||
|
|
@ -6485,7 +6485,7 @@ msgstr "اعرض"
|
|||
msgid "Create New Event"
|
||||
msgstr "أنشئ حدثاً جديدًا"
|
||||
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:305
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:295
|
||||
msgid "list"
|
||||
msgstr "قائمة"
|
||||
|
||||
|
|
@ -10463,12 +10463,12 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
|
||||
#: src/Module/Settings/Display.php:349
|
||||
#: src/Module/Settings/Display.php:339
|
||||
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:340
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:123
|
||||
msgid "Description"
|
||||
msgstr "الوصف"
|
||||
|
|
@ -10904,213 +10904,215 @@ msgstr "المندوبون المحتملون"
|
|||
msgid "No entries."
|
||||
msgstr "لا مدخلات."
|
||||
|
||||
#: src/Module/Settings/Display.php:180
|
||||
#: src/Module/Settings/Display.php:174
|
||||
msgid "The theme you chose isn't available."
|
||||
msgstr "السمة التي اخترتها غير متوفرة."
|
||||
|
||||
#: src/Module/Settings/Display.php:220
|
||||
#: src/Module/Settings/Display.php:214
|
||||
#, php-format
|
||||
msgid "%s - (Unsupported)"
|
||||
msgstr "%s - (غير مدعوم)"
|
||||
|
||||
#: src/Module/Settings/Display.php:260
|
||||
#: src/Module/Settings/Display.php:250
|
||||
msgid "Color/Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:261 view/theme/frio/php/scheme.php:95
|
||||
#: src/Module/Settings/Display.php:251 view/theme/frio/php/scheme.php:95
|
||||
msgid "Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:262
|
||||
#: src/Module/Settings/Display.php:252
|
||||
msgid "Color/White"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:263
|
||||
#: src/Module/Settings/Display.php:253
|
||||
msgid "White"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:268
|
||||
#: src/Module/Settings/Display.php:258
|
||||
msgid "No preview"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:269
|
||||
#: src/Module/Settings/Display.php:259
|
||||
msgid "No image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:270
|
||||
#: src/Module/Settings/Display.php:260
|
||||
msgid "Small Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:271
|
||||
#: src/Module/Settings/Display.php:261
|
||||
msgid "Large Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:316
|
||||
#: src/Module/Settings/Display.php:306
|
||||
msgid "Display Settings"
|
||||
msgstr "إعدادات العرض"
|
||||
|
||||
#: src/Module/Settings/Display.php:318
|
||||
#: src/Module/Settings/Display.php:308
|
||||
msgid "General Theme Settings"
|
||||
msgstr "الإعدادات العامة للسمة"
|
||||
|
||||
#: src/Module/Settings/Display.php:319
|
||||
#: src/Module/Settings/Display.php:309
|
||||
msgid "Custom Theme Settings"
|
||||
msgstr "الإعدادات المخصصة للسمة"
|
||||
|
||||
#: src/Module/Settings/Display.php:320
|
||||
#: src/Module/Settings/Display.php:310
|
||||
msgid "Content Settings"
|
||||
msgstr "إعدادات المحتوى"
|
||||
|
||||
#: src/Module/Settings/Display.php:321 view/theme/duepuntozero/config.php:74
|
||||
#: src/Module/Settings/Display.php:311 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:312
|
||||
msgid "Timelines"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:329
|
||||
#: src/Module/Settings/Display.php:319
|
||||
msgid "Display Theme:"
|
||||
msgstr "سمة العرض:"
|
||||
|
||||
#: src/Module/Settings/Display.php:330
|
||||
#: src/Module/Settings/Display.php:320
|
||||
msgid "Mobile Theme:"
|
||||
msgstr "سمة الهاتف:"
|
||||
|
||||
#: src/Module/Settings/Display.php:333
|
||||
#: src/Module/Settings/Display.php:323
|
||||
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:323 src/Module/Settings/Display.php:324
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr "الحد الأقصى هو 100 عنصر"
|
||||
|
||||
#: src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:324
|
||||
msgid "Number of items to display per page when viewed from mobile device:"
|
||||
msgstr "عدد العناصر التي سيتم عرضها في كل صفحة في وضع الهاتف:"
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr "حدّث المتصفح كل xx ثانية"
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid "Regularly update the page content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Minimum of 10 seconds. Enter -1 to disable it."
|
||||
msgstr "الحد الأدنى هو 10 ثواني. أدخل -1 لتعطيله."
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid ""
|
||||
"When enabled, new content on network, community and channels are added on "
|
||||
"top."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "Display emoticons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "When enabled, emoticons are replaced with matching symbols."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Infinite scroll"
|
||||
msgstr "التمرير اللانهائي"
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Automatic fetch new items when reaching the page end."
|
||||
msgstr "يجلب عناصر جديدة تلقائياً عند الوصول إلى نهاية الصفحة."
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable Smart Threading"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable the automatic suppression of extraneous thread indentation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid "Display the Dislike feature"
|
||||
msgstr "اعرض ميزة \"لم يعجبني\""
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid ""
|
||||
"Display the Dislike button and dislike reactions on posts and comments."
|
||||
msgstr "يعرض زر لم يعجبني والتفاعلات السلبية في المشاركات والتعليقات."
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
msgid "Display the resharer"
|
||||
msgstr "اعرض صاحب إعادة النشر"
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
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:331
|
||||
msgid "Stay local"
|
||||
msgstr "ابقى في الخادم المحلي"
|
||||
|
||||
#: src/Module/Settings/Display.php:341
|
||||
#: src/Module/Settings/Display.php:331
|
||||
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:332
|
||||
msgid "Show the post deletion checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:342
|
||||
#: src/Module/Settings/Display.php:332
|
||||
msgid "Display the checkbox for the post deletion on the network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "DIsplay the event list"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "Display the birthday reminder and event list on the network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
msgid "Link preview mode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
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:335
|
||||
msgid "Hide pictures with empty alternative text"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:345
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Don't display pictures that are missing the alternative text."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Hide custom emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Don't display custom emojis."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Platform icons style"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Style of the platform icons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:352
|
||||
#: src/Module/Settings/Display.php:342
|
||||
msgid "Bookmark"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:354
|
||||
#: src/Module/Settings/Display.php:344
|
||||
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:346
|
||||
msgid "Channel languages:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:356
|
||||
#: src/Module/Settings/Display.php:346
|
||||
msgid ""
|
||||
"Select all the languages you want to see in your channels. \"Unspecified\" "
|
||||
"describes all posts for which no language information was detected (e.g. "
|
||||
|
|
@ -11119,11 +11121,11 @@ msgid ""
|
|||
"list."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:358
|
||||
#: src/Module/Settings/Display.php:348
|
||||
msgid "Beginning of week:"
|
||||
msgstr "بداية الأسبوع:"
|
||||
|
||||
#: src/Module/Settings/Display.php:359
|
||||
#: src/Module/Settings/Display.php:349
|
||||
msgid "Default calendar view:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -12775,32 +12777,32 @@ msgstr "حائط لحائط"
|
|||
msgid "via Wall-To-Wall:"
|
||||
msgstr "عير حائط لحائط"
|
||||
|
||||
#: src/Object/Post.php:602
|
||||
#: src/Object/Post.php:603
|
||||
#, php-format
|
||||
msgid "Reply to %s"
|
||||
msgstr "رد على %s"
|
||||
|
||||
#: src/Object/Post.php:624
|
||||
#: src/Object/Post.php:625
|
||||
msgid "Notifier task is pending"
|
||||
msgstr "مهمة التنبيه معلقة"
|
||||
|
||||
#: src/Object/Post.php:625
|
||||
#: src/Object/Post.php:626
|
||||
msgid "Delivery to remote servers is pending"
|
||||
msgstr "التسليم للخوادم البعيدة معلق"
|
||||
|
||||
#: src/Object/Post.php:626
|
||||
#: src/Object/Post.php:627
|
||||
msgid "Delivery to remote servers is underway"
|
||||
msgstr "التسليم إلى الخوادم البعيدة جار"
|
||||
|
||||
#: src/Object/Post.php:627
|
||||
#: src/Object/Post.php:628
|
||||
msgid "Delivery to remote servers is mostly done"
|
||||
msgstr "التسليم إلى الخوادم البعيدة يكاد يكتمل"
|
||||
|
||||
#: src/Object/Post.php:628
|
||||
#: src/Object/Post.php:629
|
||||
msgid "Delivery to remote servers is done"
|
||||
msgstr "التسليم للخوادم البعيدة اكتمل"
|
||||
|
||||
#: src/Object/Post.php:650
|
||||
#: src/Object/Post.php:651
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
|
|
@ -12811,65 +12813,65 @@ msgstr[3] "%d تعليقات"
|
|||
msgstr[4] "%d تعليقا"
|
||||
msgstr[5] "%d تعليق"
|
||||
|
||||
#: src/Object/Post.php:651
|
||||
#: src/Object/Post.php:652
|
||||
msgid "Show more"
|
||||
msgstr "اعرض المزيد"
|
||||
|
||||
#: src/Object/Post.php:652
|
||||
#: src/Object/Post.php:653
|
||||
msgid "Show fewer"
|
||||
msgstr "اعرض أقل"
|
||||
|
||||
#: src/Object/Post.php:689
|
||||
#: src/Object/Post.php:690
|
||||
#, php-format
|
||||
msgid "Reshared by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:694
|
||||
#: src/Object/Post.php:695
|
||||
#, php-format
|
||||
msgid "Viewed by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:699
|
||||
#: src/Object/Post.php:700
|
||||
#, php-format
|
||||
msgid "Read by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:704
|
||||
#: src/Object/Post.php:705
|
||||
#, php-format
|
||||
msgid "Liked by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:709
|
||||
#: src/Object/Post.php:710
|
||||
#, php-format
|
||||
msgid "Disliked by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:714
|
||||
#: src/Object/Post.php:715
|
||||
#, php-format
|
||||
msgid "Attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:719
|
||||
#: src/Object/Post.php:720
|
||||
#, php-format
|
||||
msgid "Maybe attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:724
|
||||
#: src/Object/Post.php:725
|
||||
#, php-format
|
||||
msgid "Not attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:729
|
||||
#: src/Object/Post.php:730
|
||||
#, php-format
|
||||
msgid "Commented by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:734
|
||||
#: src/Object/Post.php:735
|
||||
#, php-format
|
||||
msgid "Reacted with %s by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:757
|
||||
#: src/Object/Post.php:758
|
||||
#, php-format
|
||||
msgid "Quote shared by: %s"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1916,8 +1916,6 @@ $a->strings['Mobile Theme:'] = 'سمة الهاتف:';
|
|||
$a->strings['Number of items to display per page:'] = 'عدد العناصر التي سيتم عرضها في كل صفحة:';
|
||||
$a->strings['Maximum of 100 items'] = 'الحد الأقصى هو 100 عنصر';
|
||||
$a->strings['Number of items to display per page when viewed from mobile device:'] = 'عدد العناصر التي سيتم عرضها في كل صفحة في وضع الهاتف:';
|
||||
$a->strings['Update browser every xx seconds'] = 'حدّث المتصفح كل xx ثانية';
|
||||
$a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'الحد الأدنى هو 10 ثواني. أدخل -1 لتعطيله.';
|
||||
$a->strings['Infinite scroll'] = 'التمرير اللانهائي';
|
||||
$a->strings['Automatic fetch new items when reaching the page end.'] = 'يجلب عناصر جديدة تلقائياً عند الوصول إلى نهاية الصفحة.';
|
||||
$a->strings['Display the Dislike feature'] = 'اعرض ميزة "لم يعجبني"';
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-05 22:44+0000\n"
|
||||
"POT-Creation-Date: 2025-02-09 20:13+0000\n"
|
||||
"PO-Revision-Date: 2011-05-05 10:19+0000\n"
|
||||
"Last-Translator: Rafael Kalachev <kalachev.rafael@gmail.com>, 2021\n"
|
||||
"Language-Team: Bulgarian (http://app.transifex.com/Friendica/friendica/language/bg/)\n"
|
||||
|
|
@ -72,7 +72,7 @@ msgstr "Елемент не е намерен."
|
|||
#: 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/Display.php:188
|
||||
#: src/Module/Settings/Profile/Photo/Crop.php:148
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:96
|
||||
#: src/Module/Settings/RemoveMe.php:103 src/Module/Settings/UserExport.php:64
|
||||
|
|
@ -293,7 +293,7 @@ msgstr "Вмъкване на връзка в Мрежата"
|
|||
#: mod/message.php:188 mod/message.php:344 mod/photos.php:1252
|
||||
#: 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:607
|
||||
#: src/Object/Post.php:608
|
||||
msgid "Please wait"
|
||||
msgstr "Моля, изчакайте"
|
||||
|
||||
|
|
@ -316,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:1148 view/theme/duepuntozero/config.php:73
|
||||
#: src/Object/Post.php:1149 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"
|
||||
|
|
@ -602,25 +602,25 @@ msgstr "Завъртане ККО (вляво)"
|
|||
|
||||
#: mod/photos.php:1090 mod/photos.php:1146 mod/photos.php:1226
|
||||
#: src/Module/Contact.php:599 src/Module/Item/Compose.php:184
|
||||
#: src/Object/Post.php:1145
|
||||
#: src/Object/Post.php:1146
|
||||
msgid "This is you"
|
||||
msgstr "Това сте вие"
|
||||
|
||||
#: mod/photos.php:1092 mod/photos.php:1148 mod/photos.php:1228
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:601
|
||||
#: src/Object/Post.php:1147
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:602
|
||||
#: src/Object/Post.php:1148
|
||||
msgid "Comment"
|
||||
msgstr "Коментар"
|
||||
|
||||
#: mod/photos.php:1094 mod/photos.php:1150 mod/photos.php:1230
|
||||
#: 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:1161
|
||||
#: src/Object/Post.php:1162
|
||||
msgid "Preview"
|
||||
msgstr "Преглед"
|
||||
|
||||
#: mod/photos.php:1095 src/Content/Conversation.php:357
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1149
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1150
|
||||
msgid "Loading..."
|
||||
msgstr "Зареждане..."
|
||||
|
||||
|
|
@ -662,112 +662,112 @@ msgstr ""
|
|||
msgid "Apologies but the website is unavailable at the moment."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:247
|
||||
#: src/App/Page.php:236
|
||||
msgid "Delete this item?"
|
||||
msgstr "Изтриване на тази бележка?"
|
||||
|
||||
#: src/App/Page.php:248
|
||||
#: 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:249
|
||||
#: 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:250
|
||||
#: src/App/Page.php:239
|
||||
msgid "Collapse this author's posts?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:251
|
||||
#: src/App/Page.php:240
|
||||
msgid "Ignore this author's server?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:252 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:254
|
||||
#: src/App/Page.php:243
|
||||
msgid "Like not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:255
|
||||
#: src/App/Page.php:244
|
||||
msgid "Dislike not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:256
|
||||
#: src/App/Page.php:245
|
||||
msgid "Sharing not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:257
|
||||
#: src/App/Page.php:246
|
||||
msgid "Attendance unsuccessful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:258
|
||||
#: src/App/Page.php:247
|
||||
msgid "Backend error"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:259
|
||||
#: src/App/Page.php:248
|
||||
msgid "Network error"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:262
|
||||
#: src/App/Page.php:251
|
||||
msgid "Drop files here to upload"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:263
|
||||
#: src/App/Page.php:252
|
||||
msgid "Your browser does not support drag and drop file uploads."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:264
|
||||
#: 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:265
|
||||
#: src/App/Page.php:254
|
||||
msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:266
|
||||
#: src/App/Page.php:255
|
||||
msgid "You can't upload files of this type."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:267
|
||||
#: src/App/Page.php:256
|
||||
msgid "Server responded with {{statusCode}} code."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:268
|
||||
#: src/App/Page.php:257
|
||||
msgid "Cancel upload"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:269
|
||||
#: src/App/Page.php:258
|
||||
msgid "Upload canceled."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:270
|
||||
#: src/App/Page.php:259
|
||||
msgid "Are you sure you want to cancel this upload?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:271
|
||||
#: src/App/Page.php:260
|
||||
msgid "Remove file"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:272
|
||||
#: src/App/Page.php:261
|
||||
msgid "You can't upload any more files."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:356
|
||||
#: src/App/Page.php:345
|
||||
msgid "toggle mobile"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:367 src/Module/Admin/Logs/View.php:92
|
||||
#: src/App/Page.php:356 src/Module/Admin/Logs/View.php:92
|
||||
#: view/theme/frio/php/minimal.php:39 view/theme/frio/php/standard.php:138
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
|
@ -1260,7 +1260,7 @@ msgid "Visible to <strong>everybody</strong>"
|
|||
msgstr "Видим <strong> всички </ strong>"
|
||||
|
||||
#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196
|
||||
#: src/Object/Post.php:1160
|
||||
#: src/Object/Post.php:1161
|
||||
msgid "Please enter a image/video/audio/webpage URL:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1305,52 +1305,52 @@ 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:1150
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1151
|
||||
msgid "Bold"
|
||||
msgstr "Получер"
|
||||
|
||||
#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1151
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1152
|
||||
msgid "Italic"
|
||||
msgstr "Курсив"
|
||||
|
||||
#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1152
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1153
|
||||
msgid "Underline"
|
||||
msgstr "Подчертан"
|
||||
|
||||
#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1154
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1155
|
||||
msgid "Quote"
|
||||
msgstr "Цитат"
|
||||
|
||||
#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1155
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1156
|
||||
msgid "Add emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191
|
||||
#: src/Object/Post.php:1153
|
||||
#: src/Object/Post.php:1154
|
||||
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:1156
|
||||
#: src/Module/Post/Edit.php:167 src/Object/Post.php:1157
|
||||
msgid "Code"
|
||||
msgstr "Код"
|
||||
|
||||
#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193
|
||||
#: src/Object/Post.php:1157
|
||||
#: src/Object/Post.php:1158
|
||||
msgid "Image"
|
||||
msgstr "Изображение"
|
||||
|
||||
#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1158
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1159
|
||||
msgid "Link"
|
||||
msgstr "Връзка"
|
||||
|
||||
#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1159
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1160
|
||||
msgid "Link or Media"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1524,7 +1524,7 @@ msgstr "Категории:"
|
|||
msgid "Filed under:"
|
||||
msgstr "Записано в:"
|
||||
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:558
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:559
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "%s от %s"
|
||||
|
|
@ -1784,7 +1784,7 @@ msgstr ""
|
|||
|
||||
#: src/Content/Feature.php:131 src/Content/Widget.php:610
|
||||
#: src/Module/Admin/Site.php:463 src/Module/BaseSettings.php:113
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:323
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:313
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1959,7 +1959,7 @@ msgstr ""
|
|||
msgid "Languages"
|
||||
msgstr "Езици"
|
||||
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:585
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:586
|
||||
msgid "Search Text"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2052,7 +2052,7 @@ msgstr ""
|
|||
#: src/Content/Nav.php:229 src/Content/Nav.php:289
|
||||
#: 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:225
|
||||
#: src/Module/Settings/Display.php:314 view/theme/frio/theme.php:225
|
||||
#: view/theme/frio/theme.php:229
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
|
@ -2940,37 +2940,37 @@ msgid "%s (%s)"
|
|||
msgstr ""
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:416
|
||||
#: src/Module/Settings/Display.php:292
|
||||
#: src/Module/Settings/Display.php:282
|
||||
msgid "Monday"
|
||||
msgstr "Понеделник"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:417
|
||||
#: src/Module/Settings/Display.php:293
|
||||
#: src/Module/Settings/Display.php:283
|
||||
msgid "Tuesday"
|
||||
msgstr "Вторник"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:418
|
||||
#: src/Module/Settings/Display.php:294
|
||||
#: src/Module/Settings/Display.php:284
|
||||
msgid "Wednesday"
|
||||
msgstr "Сряда"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:419
|
||||
#: src/Module/Settings/Display.php:295
|
||||
#: src/Module/Settings/Display.php:285
|
||||
msgid "Thursday"
|
||||
msgstr "Четвъртък"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:420
|
||||
#: src/Module/Settings/Display.php:296
|
||||
#: src/Module/Settings/Display.php:286
|
||||
msgid "Friday"
|
||||
msgstr "Петък"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:421
|
||||
#: src/Module/Settings/Display.php:297
|
||||
#: src/Module/Settings/Display.php:287
|
||||
msgid "Saturday"
|
||||
msgstr "Събота"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:415
|
||||
#: src/Module/Settings/Display.php:291
|
||||
#: src/Module/Settings/Display.php:281
|
||||
msgid "Sunday"
|
||||
msgstr "Неделя"
|
||||
|
||||
|
|
@ -3423,17 +3423,17 @@ msgid "today"
|
|||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:449 src/Module/Calendar/Show.php:117
|
||||
#: src/Module/Settings/Display.php:302 src/Util/Temporal.php:343
|
||||
#: src/Module/Settings/Display.php:292 src/Util/Temporal.php:343
|
||||
msgid "month"
|
||||
msgstr "месец."
|
||||
|
||||
#: src/Model/Event.php:450 src/Module/Calendar/Show.php:118
|
||||
#: src/Module/Settings/Display.php:303 src/Util/Temporal.php:344
|
||||
#: src/Module/Settings/Display.php:293 src/Util/Temporal.php:344
|
||||
msgid "week"
|
||||
msgstr "седмица"
|
||||
|
||||
#: src/Model/Event.php:451 src/Module/Calendar/Show.php:119
|
||||
#: src/Module/Settings/Display.php:304 src/Util/Temporal.php:345
|
||||
#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:345
|
||||
msgid "day"
|
||||
msgstr "Ден:"
|
||||
|
||||
|
|
@ -4006,7 +4006,7 @@ 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/Themes/Details.php:41 src/Module/Settings/Display.php:341
|
||||
msgid "Enable"
|
||||
msgstr "Да се активира ли?"
|
||||
|
||||
|
|
@ -4057,7 +4057,7 @@ msgstr ""
|
|||
#: 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:307
|
||||
#: src/Module/Settings/Features.php:61
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
|
@ -4436,11 +4436,11 @@ msgstr ""
|
|||
msgid "%s is no valid input for maximum image size"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:212
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:206
|
||||
msgid "No special theme for mobile devices"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:222
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:216
|
||||
#, php-format
|
||||
msgid "%s - (Experimental)"
|
||||
msgstr ""
|
||||
|
|
@ -5517,7 +5517,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:315
|
||||
#: src/Module/Settings/Display.php:259
|
||||
#: src/Module/Settings/Display.php:249
|
||||
#: src/Module/Settings/TwoFactor/Index.php:132
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
|
@ -6150,7 +6150,7 @@ msgstr "Съвети за нови членове"
|
|||
#: src/Module/Contact.php:537 src/Module/Conversation/Channel.php:98
|
||||
#: src/Module/Conversation/Community.php:91
|
||||
#: src/Module/Conversation/Network.php:295
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:605
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:606
|
||||
msgid "More"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -6339,7 +6339,7 @@ msgstr ""
|
|||
msgid "Create New Event"
|
||||
msgstr "Създаване на нов събитие"
|
||||
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:305
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:295
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -10229,12 +10229,12 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
|
||||
#: src/Module/Settings/Display.php:349
|
||||
#: src/Module/Settings/Display.php:339
|
||||
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:340
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:123
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
|
@ -10670,213 +10670,215 @@ msgstr "Потенциални Делегатите"
|
|||
msgid "No entries."
|
||||
msgstr "няма регистрирани"
|
||||
|
||||
#: src/Module/Settings/Display.php:180
|
||||
#: src/Module/Settings/Display.php:174
|
||||
msgid "The theme you chose isn't available."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:220
|
||||
#: src/Module/Settings/Display.php:214
|
||||
#, php-format
|
||||
msgid "%s - (Unsupported)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:260
|
||||
#: src/Module/Settings/Display.php:250
|
||||
msgid "Color/Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:261 view/theme/frio/php/scheme.php:95
|
||||
#: src/Module/Settings/Display.php:251 view/theme/frio/php/scheme.php:95
|
||||
msgid "Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:262
|
||||
#: src/Module/Settings/Display.php:252
|
||||
msgid "Color/White"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:263
|
||||
#: src/Module/Settings/Display.php:253
|
||||
msgid "White"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:268
|
||||
#: src/Module/Settings/Display.php:258
|
||||
msgid "No preview"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:269
|
||||
#: src/Module/Settings/Display.php:259
|
||||
msgid "No image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:270
|
||||
#: src/Module/Settings/Display.php:260
|
||||
msgid "Small Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:271
|
||||
#: src/Module/Settings/Display.php:261
|
||||
msgid "Large Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:316
|
||||
#: src/Module/Settings/Display.php:306
|
||||
msgid "Display Settings"
|
||||
msgstr "Настройки на дисплея"
|
||||
|
||||
#: src/Module/Settings/Display.php:318
|
||||
#: src/Module/Settings/Display.php:308
|
||||
msgid "General Theme Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:319
|
||||
#: src/Module/Settings/Display.php:309
|
||||
msgid "Custom Theme Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:320
|
||||
#: src/Module/Settings/Display.php:310
|
||||
msgid "Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:321 view/theme/duepuntozero/config.php:74
|
||||
#: src/Module/Settings/Display.php:311 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:312
|
||||
msgid "Timelines"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:329
|
||||
#: src/Module/Settings/Display.php:319
|
||||
msgid "Display Theme:"
|
||||
msgstr "Палитрата на дисплея:"
|
||||
|
||||
#: src/Module/Settings/Display.php:330
|
||||
#: src/Module/Settings/Display.php:320
|
||||
msgid "Mobile Theme:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:333
|
||||
#: src/Module/Settings/Display.php:323
|
||||
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:323 src/Module/Settings/Display.php:324
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr "Максимум от 100 точки"
|
||||
|
||||
#: src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:324
|
||||
msgid "Number of items to display per page when viewed from mobile device:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr "Актуализиране на браузъра на всеки ХХ секунди"
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Minimum of 10 seconds. Enter -1 to disable it."
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid "Regularly update the page content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid ""
|
||||
"When enabled, new content on network, community and channels are added on "
|
||||
"top."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "Display emoticons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "When enabled, emoticons are replaced with matching symbols."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Infinite scroll"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Automatic fetch new items when reaching the page end."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable Smart Threading"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable the automatic suppression of extraneous thread indentation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid "Display the Dislike feature"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid ""
|
||||
"Display the Dislike button and dislike reactions on posts and comments."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
msgid "Display the resharer"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
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:331
|
||||
msgid "Stay local"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:341
|
||||
#: src/Module/Settings/Display.php:331
|
||||
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:332
|
||||
msgid "Show the post deletion checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:342
|
||||
#: src/Module/Settings/Display.php:332
|
||||
msgid "Display the checkbox for the post deletion on the network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "DIsplay the event list"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "Display the birthday reminder and event list on the network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
msgid "Link preview mode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
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:335
|
||||
msgid "Hide pictures with empty alternative text"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:345
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Don't display pictures that are missing the alternative text."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Hide custom emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Don't display custom emojis."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Platform icons style"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Style of the platform icons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:352
|
||||
#: src/Module/Settings/Display.php:342
|
||||
msgid "Bookmark"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:354
|
||||
#: src/Module/Settings/Display.php:344
|
||||
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:346
|
||||
msgid "Channel languages:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:356
|
||||
#: src/Module/Settings/Display.php:346
|
||||
msgid ""
|
||||
"Select all the languages you want to see in your channels. \"Unspecified\" "
|
||||
"describes all posts for which no language information was detected (e.g. "
|
||||
|
|
@ -10885,11 +10887,11 @@ msgid ""
|
|||
"list."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:358
|
||||
#: src/Module/Settings/Display.php:348
|
||||
msgid "Beginning of week:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:359
|
||||
#: src/Module/Settings/Display.php:349
|
||||
msgid "Default calendar view:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -12537,97 +12539,97 @@ msgstr "От стена до стена"
|
|||
msgid "via Wall-To-Wall:"
|
||||
msgstr "чрез стена до стена:"
|
||||
|
||||
#: src/Object/Post.php:602
|
||||
#: src/Object/Post.php:603
|
||||
#, php-format
|
||||
msgid "Reply to %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:624
|
||||
#: src/Object/Post.php:625
|
||||
msgid "Notifier task is pending"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:625
|
||||
#: src/Object/Post.php:626
|
||||
msgid "Delivery to remote servers is pending"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:626
|
||||
#: src/Object/Post.php:627
|
||||
msgid "Delivery to remote servers is underway"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:627
|
||||
#: src/Object/Post.php:628
|
||||
msgid "Delivery to remote servers is mostly done"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:628
|
||||
#: src/Object/Post.php:629
|
||||
msgid "Delivery to remote servers is done"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:650
|
||||
#: src/Object/Post.php:651
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Object/Post.php:651
|
||||
#: src/Object/Post.php:652
|
||||
msgid "Show more"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:652
|
||||
#: src/Object/Post.php:653
|
||||
msgid "Show fewer"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:689
|
||||
#: src/Object/Post.php:690
|
||||
#, php-format
|
||||
msgid "Reshared by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:694
|
||||
#: src/Object/Post.php:695
|
||||
#, php-format
|
||||
msgid "Viewed by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:699
|
||||
#: src/Object/Post.php:700
|
||||
#, php-format
|
||||
msgid "Read by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:704
|
||||
#: src/Object/Post.php:705
|
||||
#, php-format
|
||||
msgid "Liked by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:709
|
||||
#: src/Object/Post.php:710
|
||||
#, php-format
|
||||
msgid "Disliked by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:714
|
||||
#: src/Object/Post.php:715
|
||||
#, php-format
|
||||
msgid "Attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:719
|
||||
#: src/Object/Post.php:720
|
||||
#, php-format
|
||||
msgid "Maybe attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:724
|
||||
#: src/Object/Post.php:725
|
||||
#, php-format
|
||||
msgid "Not attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:729
|
||||
#: src/Object/Post.php:730
|
||||
#, php-format
|
||||
msgid "Commented by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:734
|
||||
#: src/Object/Post.php:735
|
||||
#, php-format
|
||||
msgid "Reacted with %s by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:757
|
||||
#: src/Object/Post.php:758
|
||||
#, php-format
|
||||
msgid "Quote shared by: %s"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -689,7 +689,6 @@ $a->strings['Display Settings'] = 'Настройки на дисплея';
|
|||
$a->strings['Theme settings'] = 'Тема Настройки';
|
||||
$a->strings['Display Theme:'] = 'Палитрата на дисплея:';
|
||||
$a->strings['Maximum of 100 items'] = 'Максимум от 100 точки';
|
||||
$a->strings['Update browser every xx seconds'] = 'Актуализиране на браузъра на всеки ХХ секунди';
|
||||
$a->strings['Additional Features'] = 'Допълнителни възможности';
|
||||
$a->strings['Connected Apps'] = 'Свързани Apps';
|
||||
$a->strings['Remove authorization'] = 'Премахване на разрешение';
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-05 22:44+0000\n"
|
||||
"POT-Creation-Date: 2025-02-09 20:13+0000\n"
|
||||
"PO-Revision-Date: 2011-05-05 10:19+0000\n"
|
||||
"Last-Translator: Joan Bar <friendica@tutanota.com>, 2019\n"
|
||||
"Language-Team: Catalan (http://app.transifex.com/Friendica/friendica/language/ca/)\n"
|
||||
|
|
@ -73,7 +73,7 @@ msgstr "Article no trobat."
|
|||
#: 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/Display.php:188
|
||||
#: src/Module/Settings/Profile/Photo/Crop.php:148
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:96
|
||||
#: src/Module/Settings/RemoveMe.php:103 src/Module/Settings/UserExport.php:64
|
||||
|
|
@ -294,7 +294,7 @@ msgstr "Inserir enllaç web"
|
|||
#: mod/message.php:188 mod/message.php:344 mod/photos.php:1252
|
||||
#: 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:607
|
||||
#: src/Object/Post.php:608
|
||||
msgid "Please wait"
|
||||
msgstr "Si us plau esperi"
|
||||
|
||||
|
|
@ -317,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:1148 view/theme/duepuntozero/config.php:73
|
||||
#: src/Object/Post.php:1149 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"
|
||||
|
|
@ -603,25 +603,25 @@ msgstr "Rotar CCW (esquerra)"
|
|||
|
||||
#: mod/photos.php:1090 mod/photos.php:1146 mod/photos.php:1226
|
||||
#: src/Module/Contact.php:599 src/Module/Item/Compose.php:184
|
||||
#: src/Object/Post.php:1145
|
||||
#: src/Object/Post.php:1146
|
||||
msgid "This is you"
|
||||
msgstr "Aquest ets tu"
|
||||
|
||||
#: mod/photos.php:1092 mod/photos.php:1148 mod/photos.php:1228
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:601
|
||||
#: src/Object/Post.php:1147
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:602
|
||||
#: src/Object/Post.php:1148
|
||||
msgid "Comment"
|
||||
msgstr "Comentari"
|
||||
|
||||
#: mod/photos.php:1094 mod/photos.php:1150 mod/photos.php:1230
|
||||
#: 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:1161
|
||||
#: src/Object/Post.php:1162
|
||||
msgid "Preview"
|
||||
msgstr "Vista prèvia"
|
||||
|
||||
#: mod/photos.php:1095 src/Content/Conversation.php:357
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1149
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1150
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -663,112 +663,112 @@ msgstr ""
|
|||
msgid "Apologies but the website is unavailable at the moment."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:247
|
||||
#: src/App/Page.php:236
|
||||
msgid "Delete this item?"
|
||||
msgstr "Esborrar aquest element?"
|
||||
|
||||
#: src/App/Page.php:248
|
||||
#: 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:249
|
||||
#: 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:250
|
||||
#: src/App/Page.php:239
|
||||
msgid "Collapse this author's posts?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:251
|
||||
#: src/App/Page.php:240
|
||||
msgid "Ignore this author's server?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:252 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:254
|
||||
#: src/App/Page.php:243
|
||||
msgid "Like not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:255
|
||||
#: src/App/Page.php:244
|
||||
msgid "Dislike not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:256
|
||||
#: src/App/Page.php:245
|
||||
msgid "Sharing not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:257
|
||||
#: src/App/Page.php:246
|
||||
msgid "Attendance unsuccessful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:258
|
||||
#: src/App/Page.php:247
|
||||
msgid "Backend error"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:259
|
||||
#: src/App/Page.php:248
|
||||
msgid "Network error"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:262
|
||||
#: src/App/Page.php:251
|
||||
msgid "Drop files here to upload"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:263
|
||||
#: src/App/Page.php:252
|
||||
msgid "Your browser does not support drag and drop file uploads."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:264
|
||||
#: 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:265
|
||||
#: src/App/Page.php:254
|
||||
msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:266
|
||||
#: src/App/Page.php:255
|
||||
msgid "You can't upload files of this type."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:267
|
||||
#: src/App/Page.php:256
|
||||
msgid "Server responded with {{statusCode}} code."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:268
|
||||
#: src/App/Page.php:257
|
||||
msgid "Cancel upload"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:269
|
||||
#: src/App/Page.php:258
|
||||
msgid "Upload canceled."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:270
|
||||
#: src/App/Page.php:259
|
||||
msgid "Are you sure you want to cancel this upload?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:271
|
||||
#: src/App/Page.php:260
|
||||
msgid "Remove file"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:272
|
||||
#: src/App/Page.php:261
|
||||
msgid "You can't upload any more files."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:356
|
||||
#: src/App/Page.php:345
|
||||
msgid "toggle mobile"
|
||||
msgstr "canviar a mòbil"
|
||||
|
||||
#: src/App/Page.php:367 src/Module/Admin/Logs/View.php:92
|
||||
#: src/App/Page.php:356 src/Module/Admin/Logs/View.php:92
|
||||
#: view/theme/frio/php/minimal.php:39 view/theme/frio/php/standard.php:138
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
|
@ -1261,7 +1261,7 @@ msgid "Visible to <strong>everybody</strong>"
|
|||
msgstr "Visible per a <strong>tothom</strong>"
|
||||
|
||||
#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196
|
||||
#: src/Object/Post.php:1160
|
||||
#: src/Object/Post.php:1161
|
||||
msgid "Please enter a image/video/audio/webpage URL:"
|
||||
msgstr "Introduïu una URL / imatge / vídeo / àudio / pàgina web:"
|
||||
|
||||
|
|
@ -1306,52 +1306,52 @@ msgid "attach file"
|
|||
msgstr "adjuntar arxiu"
|
||||
|
||||
#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1150
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1151
|
||||
msgid "Bold"
|
||||
msgstr "Negreta"
|
||||
|
||||
#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1151
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1152
|
||||
msgid "Italic"
|
||||
msgstr "Itallica"
|
||||
|
||||
#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1152
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1153
|
||||
msgid "Underline"
|
||||
msgstr "Subratllat"
|
||||
|
||||
#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1154
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1155
|
||||
msgid "Quote"
|
||||
msgstr "Cometes"
|
||||
|
||||
#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1155
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1156
|
||||
msgid "Add emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191
|
||||
#: src/Object/Post.php:1153
|
||||
#: src/Object/Post.php:1154
|
||||
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:1156
|
||||
#: src/Module/Post/Edit.php:167 src/Object/Post.php:1157
|
||||
msgid "Code"
|
||||
msgstr "Codi"
|
||||
|
||||
#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193
|
||||
#: src/Object/Post.php:1157
|
||||
#: src/Object/Post.php:1158
|
||||
msgid "Image"
|
||||
msgstr "Imatge"
|
||||
|
||||
#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1158
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1159
|
||||
msgid "Link"
|
||||
msgstr "Enllaç"
|
||||
|
||||
#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1159
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1160
|
||||
msgid "Link or Media"
|
||||
msgstr "Enllaç o suports"
|
||||
|
||||
|
|
@ -1525,7 +1525,7 @@ msgstr "Categories:"
|
|||
msgid "Filed under:"
|
||||
msgstr "Arxivat a:"
|
||||
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:558
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:559
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "%s des de %s"
|
||||
|
|
@ -1785,7 +1785,7 @@ msgstr ""
|
|||
|
||||
#: src/Content/Feature.php:131 src/Content/Widget.php:610
|
||||
#: src/Module/Admin/Site.php:463 src/Module/BaseSettings.php:113
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:323
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:313
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1960,7 +1960,7 @@ msgstr ""
|
|||
msgid "Languages"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:585
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:586
|
||||
msgid "Search Text"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2053,7 +2053,7 @@ msgstr ""
|
|||
#: src/Content/Nav.php:229 src/Content/Nav.php:289
|
||||
#: 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:225
|
||||
#: src/Module/Settings/Display.php:314 view/theme/frio/theme.php:225
|
||||
#: view/theme/frio/theme.php:229
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
|
@ -2941,37 +2941,37 @@ msgid "%s (%s)"
|
|||
msgstr ""
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:416
|
||||
#: src/Module/Settings/Display.php:292
|
||||
#: src/Module/Settings/Display.php:282
|
||||
msgid "Monday"
|
||||
msgstr "Dilluns"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:417
|
||||
#: src/Module/Settings/Display.php:293
|
||||
#: src/Module/Settings/Display.php:283
|
||||
msgid "Tuesday"
|
||||
msgstr "Dimarts"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:418
|
||||
#: src/Module/Settings/Display.php:294
|
||||
#: src/Module/Settings/Display.php:284
|
||||
msgid "Wednesday"
|
||||
msgstr "Dimecres"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:419
|
||||
#: src/Module/Settings/Display.php:295
|
||||
#: src/Module/Settings/Display.php:285
|
||||
msgid "Thursday"
|
||||
msgstr "Dijous"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:420
|
||||
#: src/Module/Settings/Display.php:296
|
||||
#: src/Module/Settings/Display.php:286
|
||||
msgid "Friday"
|
||||
msgstr "Divendres"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:421
|
||||
#: src/Module/Settings/Display.php:297
|
||||
#: src/Module/Settings/Display.php:287
|
||||
msgid "Saturday"
|
||||
msgstr "Dissabte"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:415
|
||||
#: src/Module/Settings/Display.php:291
|
||||
#: src/Module/Settings/Display.php:281
|
||||
msgid "Sunday"
|
||||
msgstr "Diumenge"
|
||||
|
||||
|
|
@ -3424,17 +3424,17 @@ msgid "today"
|
|||
msgstr "avui"
|
||||
|
||||
#: src/Model/Event.php:449 src/Module/Calendar/Show.php:117
|
||||
#: src/Module/Settings/Display.php:302 src/Util/Temporal.php:343
|
||||
#: src/Module/Settings/Display.php:292 src/Util/Temporal.php:343
|
||||
msgid "month"
|
||||
msgstr "mes"
|
||||
|
||||
#: src/Model/Event.php:450 src/Module/Calendar/Show.php:118
|
||||
#: src/Module/Settings/Display.php:303 src/Util/Temporal.php:344
|
||||
#: src/Module/Settings/Display.php:293 src/Util/Temporal.php:344
|
||||
msgid "week"
|
||||
msgstr "setmana"
|
||||
|
||||
#: src/Model/Event.php:451 src/Module/Calendar/Show.php:119
|
||||
#: src/Module/Settings/Display.php:304 src/Util/Temporal.php:345
|
||||
#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:345
|
||||
msgid "day"
|
||||
msgstr "dia"
|
||||
|
||||
|
|
@ -4007,7 +4007,7 @@ msgid "Disable"
|
|||
msgstr "Deshabilitar"
|
||||
|
||||
#: src/Module/Admin/Addons/Details.php:75
|
||||
#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351
|
||||
#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:341
|
||||
msgid "Enable"
|
||||
msgstr "Habilitar"
|
||||
|
||||
|
|
@ -4058,7 +4058,7 @@ msgstr ""
|
|||
#: 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:307
|
||||
#: src/Module/Settings/Features.php:61
|
||||
msgid "Save Settings"
|
||||
msgstr "Desa la configuració"
|
||||
|
|
@ -4437,11 +4437,11 @@ msgstr ""
|
|||
msgid "%s is no valid input for maximum image size"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:212
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:206
|
||||
msgid "No special theme for mobile devices"
|
||||
msgstr "No hi ha un tema específic per a mòbil"
|
||||
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:222
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:216
|
||||
#, php-format
|
||||
msgid "%s - (Experimental)"
|
||||
msgstr "%s - (Experimental)"
|
||||
|
|
@ -5518,7 +5518,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:315
|
||||
#: src/Module/Settings/Display.php:259
|
||||
#: src/Module/Settings/Display.php:249
|
||||
#: src/Module/Settings/TwoFactor/Index.php:132
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
|
@ -6151,7 +6151,7 @@ msgstr "Consells per a nous membres"
|
|||
#: src/Module/Contact.php:537 src/Module/Conversation/Channel.php:98
|
||||
#: src/Module/Conversation/Community.php:91
|
||||
#: src/Module/Conversation/Network.php:295
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:605
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:606
|
||||
msgid "More"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -6340,7 +6340,7 @@ msgstr ""
|
|||
msgid "Create New Event"
|
||||
msgstr "Crear un nou esdeveniment"
|
||||
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:305
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:295
|
||||
msgid "list"
|
||||
msgstr "llista"
|
||||
|
||||
|
|
@ -10230,12 +10230,12 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
|
||||
#: src/Module/Settings/Display.php:349
|
||||
#: src/Module/Settings/Display.php:339
|
||||
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:340
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:123
|
||||
msgid "Description"
|
||||
msgstr "Descripció"
|
||||
|
|
@ -10671,213 +10671,215 @@ msgstr "Delegats Potencials"
|
|||
msgid "No entries."
|
||||
msgstr "Sense entrades"
|
||||
|
||||
#: src/Module/Settings/Display.php:180
|
||||
#: src/Module/Settings/Display.php:174
|
||||
msgid "The theme you chose isn't available."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:220
|
||||
#: src/Module/Settings/Display.php:214
|
||||
#, php-format
|
||||
msgid "%s - (Unsupported)"
|
||||
msgstr "%s - (No és compatible)"
|
||||
|
||||
#: src/Module/Settings/Display.php:260
|
||||
#: src/Module/Settings/Display.php:250
|
||||
msgid "Color/Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:261 view/theme/frio/php/scheme.php:95
|
||||
#: src/Module/Settings/Display.php:251 view/theme/frio/php/scheme.php:95
|
||||
msgid "Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:262
|
||||
#: src/Module/Settings/Display.php:252
|
||||
msgid "Color/White"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:263
|
||||
#: src/Module/Settings/Display.php:253
|
||||
msgid "White"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:268
|
||||
#: src/Module/Settings/Display.php:258
|
||||
msgid "No preview"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:269
|
||||
#: src/Module/Settings/Display.php:259
|
||||
msgid "No image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:270
|
||||
#: src/Module/Settings/Display.php:260
|
||||
msgid "Small Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:271
|
||||
#: src/Module/Settings/Display.php:261
|
||||
msgid "Large Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:316
|
||||
#: src/Module/Settings/Display.php:306
|
||||
msgid "Display Settings"
|
||||
msgstr "Ajustos de Pantalla"
|
||||
|
||||
#: src/Module/Settings/Display.php:318
|
||||
#: src/Module/Settings/Display.php:308
|
||||
msgid "General Theme Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:319
|
||||
#: src/Module/Settings/Display.php:309
|
||||
msgid "Custom Theme Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:320
|
||||
#: src/Module/Settings/Display.php:310
|
||||
msgid "Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:321 view/theme/duepuntozero/config.php:74
|
||||
#: src/Module/Settings/Display.php:311 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 "Configuració de Temes"
|
||||
|
||||
#: src/Module/Settings/Display.php:322
|
||||
#: src/Module/Settings/Display.php:312
|
||||
msgid "Timelines"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:329
|
||||
#: src/Module/Settings/Display.php:319
|
||||
msgid "Display Theme:"
|
||||
msgstr "Visualitzar el Tema:"
|
||||
|
||||
#: src/Module/Settings/Display.php:330
|
||||
#: src/Module/Settings/Display.php:320
|
||||
msgid "Mobile Theme:"
|
||||
msgstr "Tema Mobile:"
|
||||
|
||||
#: src/Module/Settings/Display.php:333
|
||||
#: src/Module/Settings/Display.php:323
|
||||
msgid "Number of items to display per page:"
|
||||
msgstr "Número d'elements a mostrar per pàgina"
|
||||
|
||||
#: src/Module/Settings/Display.php:333 src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:323 src/Module/Settings/Display.php:324
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr "Màxim de 100 elements"
|
||||
|
||||
#: src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:324
|
||||
msgid "Number of items to display per page when viewed from mobile device:"
|
||||
msgstr "Nombre d'elements a veure per pàgina quan es vegin des d'un dispositiu mòbil:"
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr "Actualitzar navegador cada xx segons"
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid "Regularly update the page content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Minimum of 10 seconds. Enter -1 to disable it."
|
||||
msgstr "Mínim de 10 segons. Introduïu -1 per desactivar-lo."
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid ""
|
||||
"When enabled, new content on network, community and channels are added on "
|
||||
"top."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "Display emoticons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "When enabled, emoticons are replaced with matching symbols."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Infinite scroll"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Automatic fetch new items when reaching the page end."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable Smart Threading"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable the automatic suppression of extraneous thread indentation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid "Display the Dislike feature"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid ""
|
||||
"Display the Dislike button and dislike reactions on posts and comments."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
msgid "Display the resharer"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
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:331
|
||||
msgid "Stay local"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:341
|
||||
#: src/Module/Settings/Display.php:331
|
||||
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:332
|
||||
msgid "Show the post deletion checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:342
|
||||
#: src/Module/Settings/Display.php:332
|
||||
msgid "Display the checkbox for the post deletion on the network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "DIsplay the event list"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "Display the birthday reminder and event list on the network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
msgid "Link preview mode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
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:335
|
||||
msgid "Hide pictures with empty alternative text"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:345
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Don't display pictures that are missing the alternative text."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Hide custom emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Don't display custom emojis."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Platform icons style"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Style of the platform icons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:352
|
||||
#: src/Module/Settings/Display.php:342
|
||||
msgid "Bookmark"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:354
|
||||
#: src/Module/Settings/Display.php:344
|
||||
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:346
|
||||
msgid "Channel languages:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:356
|
||||
#: src/Module/Settings/Display.php:346
|
||||
msgid ""
|
||||
"Select all the languages you want to see in your channels. \"Unspecified\" "
|
||||
"describes all posts for which no language information was detected (e.g. "
|
||||
|
|
@ -10886,11 +10888,11 @@ msgid ""
|
|||
"list."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:358
|
||||
#: src/Module/Settings/Display.php:348
|
||||
msgid "Beginning of week:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:359
|
||||
#: src/Module/Settings/Display.php:349
|
||||
msgid "Default calendar view:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -12538,97 +12540,97 @@ msgstr "Mur-a-Mur"
|
|||
msgid "via Wall-To-Wall:"
|
||||
msgstr "via Mur-a-Mur"
|
||||
|
||||
#: src/Object/Post.php:602
|
||||
#: src/Object/Post.php:603
|
||||
#, php-format
|
||||
msgid "Reply to %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:624
|
||||
#: src/Object/Post.php:625
|
||||
msgid "Notifier task is pending"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:625
|
||||
#: src/Object/Post.php:626
|
||||
msgid "Delivery to remote servers is pending"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:626
|
||||
#: src/Object/Post.php:627
|
||||
msgid "Delivery to remote servers is underway"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:627
|
||||
#: src/Object/Post.php:628
|
||||
msgid "Delivery to remote servers is mostly done"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:628
|
||||
#: src/Object/Post.php:629
|
||||
msgid "Delivery to remote servers is done"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:650
|
||||
#: src/Object/Post.php:651
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
msgstr[0] "%d comentari"
|
||||
msgstr[1] "%d comentaris"
|
||||
|
||||
#: src/Object/Post.php:651
|
||||
#: src/Object/Post.php:652
|
||||
msgid "Show more"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:652
|
||||
#: src/Object/Post.php:653
|
||||
msgid "Show fewer"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:689
|
||||
#: src/Object/Post.php:690
|
||||
#, php-format
|
||||
msgid "Reshared by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:694
|
||||
#: src/Object/Post.php:695
|
||||
#, php-format
|
||||
msgid "Viewed by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:699
|
||||
#: src/Object/Post.php:700
|
||||
#, php-format
|
||||
msgid "Read by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:704
|
||||
#: src/Object/Post.php:705
|
||||
#, php-format
|
||||
msgid "Liked by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:709
|
||||
#: src/Object/Post.php:710
|
||||
#, php-format
|
||||
msgid "Disliked by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:714
|
||||
#: src/Object/Post.php:715
|
||||
#, php-format
|
||||
msgid "Attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:719
|
||||
#: src/Object/Post.php:720
|
||||
#, php-format
|
||||
msgid "Maybe attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:724
|
||||
#: src/Object/Post.php:725
|
||||
#, php-format
|
||||
msgid "Not attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:729
|
||||
#: src/Object/Post.php:730
|
||||
#, php-format
|
||||
msgid "Commented by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:734
|
||||
#: src/Object/Post.php:735
|
||||
#, php-format
|
||||
msgid "Reacted with %s by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:757
|
||||
#: src/Object/Post.php:758
|
||||
#, php-format
|
||||
msgid "Quote shared by: %s"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -966,8 +966,6 @@ $a->strings['Mobile Theme:'] = 'Tema Mobile:';
|
|||
$a->strings['Number of items to display per page:'] = 'Número d\'elements a mostrar per pàgina';
|
||||
$a->strings['Maximum of 100 items'] = 'Màxim de 100 elements';
|
||||
$a->strings['Number of items to display per page when viewed from mobile device:'] = 'Nombre d\'elements a veure per pàgina quan es vegin des d\'un dispositiu mòbil:';
|
||||
$a->strings['Update browser every xx seconds'] = 'Actualitzar navegador cada xx segons';
|
||||
$a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Mínim de 10 segons. Introduïu -1 per desactivar-lo.';
|
||||
$a->strings['Additional Features'] = 'Característiques Adicionals';
|
||||
$a->strings['Connected Apps'] = 'Aplicacions conectades';
|
||||
$a->strings['Remove authorization'] = 'retirar l\'autorització';
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-05 22:44+0000\n"
|
||||
"POT-Creation-Date: 2025-02-09 20:13+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"
|
||||
|
|
@ -75,7 +75,7 @@ msgstr "Položka nenalezena."
|
|||
#: 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/Display.php:188
|
||||
#: src/Module/Settings/Profile/Photo/Crop.php:148
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:96
|
||||
#: src/Module/Settings/RemoveMe.php:103 src/Module/Settings/UserExport.php:64
|
||||
|
|
@ -296,7 +296,7 @@ msgstr "Vložit webový odkaz"
|
|||
#: mod/message.php:188 mod/message.php:344 mod/photos.php:1252
|
||||
#: 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:607
|
||||
#: src/Object/Post.php:608
|
||||
msgid "Please wait"
|
||||
msgstr "Čekejte prosím"
|
||||
|
||||
|
|
@ -319,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:1148 view/theme/duepuntozero/config.php:73
|
||||
#: src/Object/Post.php:1149 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"
|
||||
|
|
@ -607,25 +607,25 @@ msgstr "Otáčet proti směru hodinových ručiček (doleva)"
|
|||
|
||||
#: mod/photos.php:1090 mod/photos.php:1146 mod/photos.php:1226
|
||||
#: src/Module/Contact.php:599 src/Module/Item/Compose.php:184
|
||||
#: src/Object/Post.php:1145
|
||||
#: src/Object/Post.php:1146
|
||||
msgid "This is you"
|
||||
msgstr "Tohle jste vy"
|
||||
|
||||
#: mod/photos.php:1092 mod/photos.php:1148 mod/photos.php:1228
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:601
|
||||
#: src/Object/Post.php:1147
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:602
|
||||
#: src/Object/Post.php:1148
|
||||
msgid "Comment"
|
||||
msgstr "Okomentovat"
|
||||
|
||||
#: mod/photos.php:1094 mod/photos.php:1150 mod/photos.php:1230
|
||||
#: 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:1161
|
||||
#: src/Object/Post.php:1162
|
||||
msgid "Preview"
|
||||
msgstr "Náhled"
|
||||
|
||||
#: mod/photos.php:1095 src/Content/Conversation.php:357
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1149
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1150
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -667,112 +667,112 @@ msgstr "Mapa"
|
|||
msgid "Apologies but the website is unavailable at the moment."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:247
|
||||
#: src/App/Page.php:236
|
||||
msgid "Delete this item?"
|
||||
msgstr "Odstranit tuto položku?"
|
||||
|
||||
#: src/App/Page.php:248
|
||||
#: 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:249
|
||||
#: 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:250
|
||||
#: src/App/Page.php:239
|
||||
msgid "Collapse this author's posts?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:251
|
||||
#: src/App/Page.php:240
|
||||
msgid "Ignore this author's server?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:252 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:254
|
||||
#: src/App/Page.php:243
|
||||
msgid "Like not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:255
|
||||
#: src/App/Page.php:244
|
||||
msgid "Dislike not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:256
|
||||
#: src/App/Page.php:245
|
||||
msgid "Sharing not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:257
|
||||
#: src/App/Page.php:246
|
||||
msgid "Attendance unsuccessful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:258
|
||||
#: src/App/Page.php:247
|
||||
msgid "Backend error"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:259
|
||||
#: src/App/Page.php:248
|
||||
msgid "Network error"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:262
|
||||
#: src/App/Page.php:251
|
||||
msgid "Drop files here to upload"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:263
|
||||
#: src/App/Page.php:252
|
||||
msgid "Your browser does not support drag and drop file uploads."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:264
|
||||
#: 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:265
|
||||
#: src/App/Page.php:254
|
||||
msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:266
|
||||
#: src/App/Page.php:255
|
||||
msgid "You can't upload files of this type."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:267
|
||||
#: src/App/Page.php:256
|
||||
msgid "Server responded with {{statusCode}} code."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:268
|
||||
#: src/App/Page.php:257
|
||||
msgid "Cancel upload"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:269
|
||||
#: src/App/Page.php:258
|
||||
msgid "Upload canceled."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:270
|
||||
#: src/App/Page.php:259
|
||||
msgid "Are you sure you want to cancel this upload?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:271
|
||||
#: src/App/Page.php:260
|
||||
msgid "Remove file"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:272
|
||||
#: src/App/Page.php:261
|
||||
msgid "You can't upload any more files."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:356
|
||||
#: src/App/Page.php:345
|
||||
msgid "toggle mobile"
|
||||
msgstr "přepínat mobilní zobrazení"
|
||||
|
||||
#: src/App/Page.php:367 src/Module/Admin/Logs/View.php:92
|
||||
#: src/App/Page.php:356 src/Module/Admin/Logs/View.php:92
|
||||
#: view/theme/frio/php/minimal.php:39 view/theme/frio/php/standard.php:138
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
|
@ -1289,7 +1289,7 @@ msgid "Visible to <strong>everybody</strong>"
|
|||
msgstr "Viditelné pro <strong>všechny</strong>"
|
||||
|
||||
#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196
|
||||
#: src/Object/Post.php:1160
|
||||
#: src/Object/Post.php:1161
|
||||
msgid "Please enter a image/video/audio/webpage URL:"
|
||||
msgstr "Prosím zadejte URL obrázku/videa/audia/webové stránky:"
|
||||
|
||||
|
|
@ -1334,52 +1334,52 @@ msgid "attach file"
|
|||
msgstr "přiložit soubor"
|
||||
|
||||
#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1150
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1151
|
||||
msgid "Bold"
|
||||
msgstr "Tučné"
|
||||
|
||||
#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1151
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1152
|
||||
msgid "Italic"
|
||||
msgstr "Kurziva"
|
||||
|
||||
#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1152
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1153
|
||||
msgid "Underline"
|
||||
msgstr "Podtržené"
|
||||
|
||||
#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1154
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1155
|
||||
msgid "Quote"
|
||||
msgstr "Citace"
|
||||
|
||||
#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1155
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1156
|
||||
msgid "Add emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191
|
||||
#: src/Object/Post.php:1153
|
||||
#: src/Object/Post.php:1154
|
||||
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:1156
|
||||
#: src/Module/Post/Edit.php:167 src/Object/Post.php:1157
|
||||
msgid "Code"
|
||||
msgstr "Kód"
|
||||
|
||||
#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193
|
||||
#: src/Object/Post.php:1157
|
||||
#: src/Object/Post.php:1158
|
||||
msgid "Image"
|
||||
msgstr "Obrázek"
|
||||
|
||||
#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1158
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1159
|
||||
msgid "Link"
|
||||
msgstr "Odkaz"
|
||||
|
||||
#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1159
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1160
|
||||
msgid "Link or Media"
|
||||
msgstr "Odkaz nebo média"
|
||||
|
||||
|
|
@ -1553,7 +1553,7 @@ msgstr "Kategorie:"
|
|||
msgid "Filed under:"
|
||||
msgstr "Vyplněn pod:"
|
||||
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:558
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:559
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "%s z %s"
|
||||
|
|
@ -1813,7 +1813,7 @@ msgstr ""
|
|||
|
||||
#: src/Content/Feature.php:131 src/Content/Widget.php:610
|
||||
#: src/Module/Admin/Site.php:463 src/Module/BaseSettings.php:113
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:323
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:313
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1988,7 +1988,7 @@ msgstr ""
|
|||
msgid "Languages"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:585
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:586
|
||||
msgid "Search Text"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2081,7 +2081,7 @@ msgstr ""
|
|||
#: src/Content/Nav.php:229 src/Content/Nav.php:289
|
||||
#: 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:225
|
||||
#: src/Module/Settings/Display.php:314 view/theme/frio/theme.php:225
|
||||
#: view/theme/frio/theme.php:229
|
||||
msgid "Calendar"
|
||||
msgstr "Kalendář"
|
||||
|
|
@ -2977,37 +2977,37 @@ msgid "%s (%s)"
|
|||
msgstr ""
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:416
|
||||
#: src/Module/Settings/Display.php:292
|
||||
#: src/Module/Settings/Display.php:282
|
||||
msgid "Monday"
|
||||
msgstr "pondělí"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:417
|
||||
#: src/Module/Settings/Display.php:293
|
||||
#: src/Module/Settings/Display.php:283
|
||||
msgid "Tuesday"
|
||||
msgstr "úterý"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:418
|
||||
#: src/Module/Settings/Display.php:294
|
||||
#: src/Module/Settings/Display.php:284
|
||||
msgid "Wednesday"
|
||||
msgstr "středa"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:419
|
||||
#: src/Module/Settings/Display.php:295
|
||||
#: src/Module/Settings/Display.php:285
|
||||
msgid "Thursday"
|
||||
msgstr "čtvrtek"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:420
|
||||
#: src/Module/Settings/Display.php:296
|
||||
#: src/Module/Settings/Display.php:286
|
||||
msgid "Friday"
|
||||
msgstr "pátek"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:421
|
||||
#: src/Module/Settings/Display.php:297
|
||||
#: src/Module/Settings/Display.php:287
|
||||
msgid "Saturday"
|
||||
msgstr "sobota"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:415
|
||||
#: src/Module/Settings/Display.php:291
|
||||
#: src/Module/Settings/Display.php:281
|
||||
msgid "Sunday"
|
||||
msgstr "neděle"
|
||||
|
||||
|
|
@ -3460,17 +3460,17 @@ msgid "today"
|
|||
msgstr "dnes"
|
||||
|
||||
#: src/Model/Event.php:449 src/Module/Calendar/Show.php:117
|
||||
#: src/Module/Settings/Display.php:302 src/Util/Temporal.php:343
|
||||
#: src/Module/Settings/Display.php:292 src/Util/Temporal.php:343
|
||||
msgid "month"
|
||||
msgstr "měsíc"
|
||||
|
||||
#: src/Model/Event.php:450 src/Module/Calendar/Show.php:118
|
||||
#: src/Module/Settings/Display.php:303 src/Util/Temporal.php:344
|
||||
#: src/Module/Settings/Display.php:293 src/Util/Temporal.php:344
|
||||
msgid "week"
|
||||
msgstr "týden"
|
||||
|
||||
#: src/Model/Event.php:451 src/Module/Calendar/Show.php:119
|
||||
#: src/Module/Settings/Display.php:304 src/Util/Temporal.php:345
|
||||
#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:345
|
||||
msgid "day"
|
||||
msgstr "den"
|
||||
|
||||
|
|
@ -4055,7 +4055,7 @@ msgid "Disable"
|
|||
msgstr "Zakázat"
|
||||
|
||||
#: src/Module/Admin/Addons/Details.php:75
|
||||
#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351
|
||||
#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:341
|
||||
msgid "Enable"
|
||||
msgstr "Povolit"
|
||||
|
||||
|
|
@ -4106,7 +4106,7 @@ msgstr "Instalace doplňku %s selhala."
|
|||
#: 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:307
|
||||
#: src/Module/Settings/Features.php:61
|
||||
msgid "Save Settings"
|
||||
msgstr "Uložit nastavení"
|
||||
|
|
@ -4501,11 +4501,11 @@ msgstr ""
|
|||
msgid "%s is no valid input for maximum image size"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:212
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:206
|
||||
msgid "No special theme for mobile devices"
|
||||
msgstr "Žádný speciální motiv pro mobilní zařízení"
|
||||
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:222
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:216
|
||||
#, php-format
|
||||
msgid "%s - (Experimental)"
|
||||
msgstr "%s - (Experimentální)"
|
||||
|
|
@ -5582,7 +5582,7 @@ msgid ""
|
|||
msgstr "Může být buď „vše“ nebo „štítky“. „vše“ znamená, že budou přijaty všechny veřejné příspěvky. „štítky“ znamená, že budou přijaty pouze příspěvky s vybranými štítky."
|
||||
|
||||
#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:315
|
||||
#: src/Module/Settings/Display.php:259
|
||||
#: src/Module/Settings/Display.php:249
|
||||
#: src/Module/Settings/TwoFactor/Index.php:132
|
||||
msgid "Disabled"
|
||||
msgstr "Zakázáno"
|
||||
|
|
@ -6221,7 +6221,7 @@ msgstr "Tipy pro nové členy"
|
|||
#: src/Module/Contact.php:537 src/Module/Conversation/Channel.php:98
|
||||
#: src/Module/Conversation/Community.php:91
|
||||
#: src/Module/Conversation/Network.php:295
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:605
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:606
|
||||
msgid "More"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -6412,7 +6412,7 @@ msgstr "Zobrazit"
|
|||
msgid "Create New Event"
|
||||
msgstr "Vytvořit novou událost"
|
||||
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:305
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:295
|
||||
msgid "list"
|
||||
msgstr "seznam"
|
||||
|
||||
|
|
@ -10346,12 +10346,12 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
|
||||
#: src/Module/Settings/Display.php:349
|
||||
#: src/Module/Settings/Display.php:339
|
||||
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:340
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:123
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
|
@ -10787,213 +10787,215 @@ msgstr "Potenciální delegáti"
|
|||
msgid "No entries."
|
||||
msgstr "Žádné záznamy."
|
||||
|
||||
#: src/Module/Settings/Display.php:180
|
||||
#: src/Module/Settings/Display.php:174
|
||||
msgid "The theme you chose isn't available."
|
||||
msgstr "Motiv, který jste si vybral/a, není dostupný."
|
||||
|
||||
#: src/Module/Settings/Display.php:220
|
||||
#: src/Module/Settings/Display.php:214
|
||||
#, php-format
|
||||
msgid "%s - (Unsupported)"
|
||||
msgstr "%s - (Nepodporováno)"
|
||||
|
||||
#: src/Module/Settings/Display.php:260
|
||||
#: src/Module/Settings/Display.php:250
|
||||
msgid "Color/Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:261 view/theme/frio/php/scheme.php:95
|
||||
#: src/Module/Settings/Display.php:251 view/theme/frio/php/scheme.php:95
|
||||
msgid "Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:262
|
||||
#: src/Module/Settings/Display.php:252
|
||||
msgid "Color/White"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:263
|
||||
#: src/Module/Settings/Display.php:253
|
||||
msgid "White"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:268
|
||||
#: src/Module/Settings/Display.php:258
|
||||
msgid "No preview"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:269
|
||||
#: src/Module/Settings/Display.php:259
|
||||
msgid "No image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:270
|
||||
#: src/Module/Settings/Display.php:260
|
||||
msgid "Small Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:271
|
||||
#: src/Module/Settings/Display.php:261
|
||||
msgid "Large Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:316
|
||||
#: src/Module/Settings/Display.php:306
|
||||
msgid "Display Settings"
|
||||
msgstr "Nastavení zobrazení"
|
||||
|
||||
#: src/Module/Settings/Display.php:318
|
||||
#: src/Module/Settings/Display.php:308
|
||||
msgid "General Theme Settings"
|
||||
msgstr "Obecná nastavení motivu"
|
||||
|
||||
#: src/Module/Settings/Display.php:319
|
||||
#: src/Module/Settings/Display.php:309
|
||||
msgid "Custom Theme Settings"
|
||||
msgstr "Vlastní nastavení motivu"
|
||||
|
||||
#: src/Module/Settings/Display.php:320
|
||||
#: src/Module/Settings/Display.php:310
|
||||
msgid "Content Settings"
|
||||
msgstr "Nastavení obsahu"
|
||||
|
||||
#: src/Module/Settings/Display.php:321 view/theme/duepuntozero/config.php:74
|
||||
#: src/Module/Settings/Display.php:311 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 "Nastavení motivu"
|
||||
|
||||
#: src/Module/Settings/Display.php:322
|
||||
#: src/Module/Settings/Display.php:312
|
||||
msgid "Timelines"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:329
|
||||
#: src/Module/Settings/Display.php:319
|
||||
msgid "Display Theme:"
|
||||
msgstr "Motiv zobrazení:"
|
||||
|
||||
#: src/Module/Settings/Display.php:330
|
||||
#: src/Module/Settings/Display.php:320
|
||||
msgid "Mobile Theme:"
|
||||
msgstr "Mobilní motiv:"
|
||||
|
||||
#: src/Module/Settings/Display.php:333
|
||||
#: src/Module/Settings/Display.php:323
|
||||
msgid "Number of items to display per page:"
|
||||
msgstr "Počet položek zobrazených na stránce:"
|
||||
|
||||
#: src/Module/Settings/Display.php:333 src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:323 src/Module/Settings/Display.php:324
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr "Maximum 100 položek"
|
||||
|
||||
#: src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:324
|
||||
msgid "Number of items to display per page when viewed from mobile device:"
|
||||
msgstr "Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:"
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr "Aktualizovat prohlížeč každých xx sekund"
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid "Regularly update the page content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Minimum of 10 seconds. Enter -1 to disable it."
|
||||
msgstr "Minimum je 10 sekund. Zadáním hodnoty -1 funkci vypnete."
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid ""
|
||||
"When enabled, new content on network, community and channels are added on "
|
||||
"top."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "Display emoticons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "When enabled, emoticons are replaced with matching symbols."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Infinite scroll"
|
||||
msgstr "Nekonečné posouvání"
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Automatic fetch new items when reaching the page end."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable Smart Threading"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable the automatic suppression of extraneous thread indentation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid "Display the Dislike feature"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid ""
|
||||
"Display the Dislike button and dislike reactions on posts and comments."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
msgid "Display the resharer"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
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:331
|
||||
msgid "Stay local"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:341
|
||||
#: src/Module/Settings/Display.php:331
|
||||
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:332
|
||||
msgid "Show the post deletion checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:342
|
||||
#: src/Module/Settings/Display.php:332
|
||||
msgid "Display the checkbox for the post deletion on the network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "DIsplay the event list"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "Display the birthday reminder and event list on the network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
msgid "Link preview mode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
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:335
|
||||
msgid "Hide pictures with empty alternative text"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:345
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Don't display pictures that are missing the alternative text."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Hide custom emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Don't display custom emojis."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Platform icons style"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Style of the platform icons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:352
|
||||
#: src/Module/Settings/Display.php:342
|
||||
msgid "Bookmark"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:354
|
||||
#: src/Module/Settings/Display.php:344
|
||||
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:346
|
||||
msgid "Channel languages:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:356
|
||||
#: src/Module/Settings/Display.php:346
|
||||
msgid ""
|
||||
"Select all the languages you want to see in your channels. \"Unspecified\" "
|
||||
"describes all posts for which no language information was detected (e.g. "
|
||||
|
|
@ -11002,11 +11004,11 @@ msgid ""
|
|||
"list."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:358
|
||||
#: src/Module/Settings/Display.php:348
|
||||
msgid "Beginning of week:"
|
||||
msgstr "Začátek týdne:"
|
||||
|
||||
#: src/Module/Settings/Display.php:359
|
||||
#: src/Module/Settings/Display.php:349
|
||||
msgid "Default calendar view:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -12656,32 +12658,32 @@ msgstr "Ze zdi na zeď"
|
|||
msgid "via Wall-To-Wall:"
|
||||
msgstr "ze zdi na zeď"
|
||||
|
||||
#: src/Object/Post.php:602
|
||||
#: src/Object/Post.php:603
|
||||
#, php-format
|
||||
msgid "Reply to %s"
|
||||
msgstr "Odpovědět uživateli %s"
|
||||
|
||||
#: src/Object/Post.php:624
|
||||
#: src/Object/Post.php:625
|
||||
msgid "Notifier task is pending"
|
||||
msgstr "Úloha pro notifiera čeká"
|
||||
|
||||
#: src/Object/Post.php:625
|
||||
#: src/Object/Post.php:626
|
||||
msgid "Delivery to remote servers is pending"
|
||||
msgstr "Doručení vzdáleným serverům čeká"
|
||||
|
||||
#: src/Object/Post.php:626
|
||||
#: src/Object/Post.php:627
|
||||
msgid "Delivery to remote servers is underway"
|
||||
msgstr "Doručení vzdáleným serverům je v plném proudu"
|
||||
|
||||
#: src/Object/Post.php:627
|
||||
#: src/Object/Post.php:628
|
||||
msgid "Delivery to remote servers is mostly done"
|
||||
msgstr "Doručení vzdáleným serverům je téměř hotovo"
|
||||
|
||||
#: src/Object/Post.php:628
|
||||
#: src/Object/Post.php:629
|
||||
msgid "Delivery to remote servers is done"
|
||||
msgstr "Doručení vzdáleným serverům je hotovo"
|
||||
|
||||
#: src/Object/Post.php:650
|
||||
#: src/Object/Post.php:651
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
|
|
@ -12690,65 +12692,65 @@ msgstr[1] "%d komentáře"
|
|||
msgstr[2] "%d komentáře"
|
||||
msgstr[3] "%d komentářů"
|
||||
|
||||
#: src/Object/Post.php:651
|
||||
#: src/Object/Post.php:652
|
||||
msgid "Show more"
|
||||
msgstr "Zobrazit více"
|
||||
|
||||
#: src/Object/Post.php:652
|
||||
#: src/Object/Post.php:653
|
||||
msgid "Show fewer"
|
||||
msgstr "Zobrazit méně"
|
||||
|
||||
#: src/Object/Post.php:689
|
||||
#: src/Object/Post.php:690
|
||||
#, php-format
|
||||
msgid "Reshared by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:694
|
||||
#: src/Object/Post.php:695
|
||||
#, php-format
|
||||
msgid "Viewed by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:699
|
||||
#: src/Object/Post.php:700
|
||||
#, php-format
|
||||
msgid "Read by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:704
|
||||
#: src/Object/Post.php:705
|
||||
#, php-format
|
||||
msgid "Liked by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:709
|
||||
#: src/Object/Post.php:710
|
||||
#, php-format
|
||||
msgid "Disliked by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:714
|
||||
#: src/Object/Post.php:715
|
||||
#, php-format
|
||||
msgid "Attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:719
|
||||
#: src/Object/Post.php:720
|
||||
#, php-format
|
||||
msgid "Maybe attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:724
|
||||
#: src/Object/Post.php:725
|
||||
#, php-format
|
||||
msgid "Not attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:729
|
||||
#: src/Object/Post.php:730
|
||||
#, php-format
|
||||
msgid "Commented by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:734
|
||||
#: src/Object/Post.php:735
|
||||
#, php-format
|
||||
msgid "Reacted with %s by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:757
|
||||
#: src/Object/Post.php:758
|
||||
#, php-format
|
||||
msgid "Quote shared by: %s"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1547,8 +1547,6 @@ $a->strings['Mobile Theme:'] = 'Mobilní motiv:';
|
|||
$a->strings['Number of items to display per page:'] = 'Počet položek zobrazených na stránce:';
|
||||
$a->strings['Maximum of 100 items'] = 'Maximum 100 položek';
|
||||
$a->strings['Number of items to display per page when viewed from mobile device:'] = 'Počet položek ke zobrazení na stránce při zobrazení na mobilním zařízení:';
|
||||
$a->strings['Update browser every xx seconds'] = 'Aktualizovat prohlížeč každých xx sekund';
|
||||
$a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Minimum je 10 sekund. Zadáním hodnoty -1 funkci vypnete.';
|
||||
$a->strings['Infinite scroll'] = 'Nekonečné posouvání';
|
||||
$a->strings['Beginning of week:'] = 'Začátek týdne:';
|
||||
$a->strings['Additional Features'] = 'Dodatečné vlastnosti';
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-05 22:44+0000\n"
|
||||
"POT-Creation-Date: 2025-02-09 20:13+0000\n"
|
||||
"PO-Revision-Date: 2011-05-05 10:19+0000\n"
|
||||
"Last-Translator: Tobias Diekershoff <tobias.diekershoff@gmx.net>, 2016-2025\n"
|
||||
"Language-Team: German (http://app.transifex.com/Friendica/friendica/language/de/)\n"
|
||||
|
|
@ -120,7 +120,7 @@ msgstr "Beitrag nicht gefunden."
|
|||
#: 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/Display.php:188
|
||||
#: src/Module/Settings/Profile/Photo/Crop.php:148
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:96
|
||||
#: src/Module/Settings/RemoveMe.php:103 src/Module/Settings/UserExport.php:64
|
||||
|
|
@ -341,7 +341,7 @@ msgstr "Einen Link einfügen"
|
|||
#: mod/message.php:188 mod/message.php:344 mod/photos.php:1252
|
||||
#: 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:607
|
||||
#: src/Object/Post.php:608
|
||||
msgid "Please wait"
|
||||
msgstr "Bitte warten"
|
||||
|
||||
|
|
@ -364,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:1148 view/theme/duepuntozero/config.php:73
|
||||
#: src/Object/Post.php:1149 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"
|
||||
|
|
@ -650,25 +650,25 @@ msgstr "Drehen EUS (links)"
|
|||
|
||||
#: mod/photos.php:1090 mod/photos.php:1146 mod/photos.php:1226
|
||||
#: src/Module/Contact.php:599 src/Module/Item/Compose.php:184
|
||||
#: src/Object/Post.php:1145
|
||||
#: src/Object/Post.php:1146
|
||||
msgid "This is you"
|
||||
msgstr "Das bist du"
|
||||
|
||||
#: mod/photos.php:1092 mod/photos.php:1148 mod/photos.php:1228
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:601
|
||||
#: src/Object/Post.php:1147
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:602
|
||||
#: src/Object/Post.php:1148
|
||||
msgid "Comment"
|
||||
msgstr "Kommentar"
|
||||
|
||||
#: mod/photos.php:1094 mod/photos.php:1150 mod/photos.php:1230
|
||||
#: 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:1161
|
||||
#: src/Object/Post.php:1162
|
||||
msgid "Preview"
|
||||
msgstr "Vorschau"
|
||||
|
||||
#: mod/photos.php:1095 src/Content/Conversation.php:357
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1149
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1150
|
||||
msgid "Loading..."
|
||||
msgstr "lädt..."
|
||||
|
||||
|
|
@ -710,112 +710,112 @@ msgstr "Karte"
|
|||
msgid "Apologies but the website is unavailable at the moment."
|
||||
msgstr "Entschuldigung, aber die Webseite ist derzeit nicht erreichbar."
|
||||
|
||||
#: src/App/Page.php:247
|
||||
#: src/App/Page.php:236
|
||||
msgid "Delete this item?"
|
||||
msgstr "Diesen Beitrag löschen?"
|
||||
|
||||
#: src/App/Page.php:248
|
||||
#: 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 "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:249
|
||||
#: src/App/Page.php:238
|
||||
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:250
|
||||
#: src/App/Page.php:239
|
||||
msgid "Collapse this author's posts?"
|
||||
msgstr "Beiträge dieses Autors zusammenklappen?"
|
||||
|
||||
#: src/App/Page.php:251
|
||||
#: src/App/Page.php:240
|
||||
msgid "Ignore this author's server?"
|
||||
msgstr "Den Server dieses Autors ignorieren?"
|
||||
|
||||
#: src/App/Page.php:252 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 "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:254
|
||||
#: src/App/Page.php:243
|
||||
msgid "Like not successful"
|
||||
msgstr "Das \"Mag ich\" war nicht erfolgreich"
|
||||
|
||||
#: src/App/Page.php:255
|
||||
#: src/App/Page.php:244
|
||||
msgid "Dislike not successful"
|
||||
msgstr "Das \"Mag ich nicht\" war nicht erfolgreich"
|
||||
|
||||
#: src/App/Page.php:256
|
||||
#: src/App/Page.php:245
|
||||
msgid "Sharing not successful"
|
||||
msgstr "Das Teilen war nicht erfolgreich"
|
||||
|
||||
#: src/App/Page.php:257
|
||||
#: src/App/Page.php:246
|
||||
msgid "Attendance unsuccessful"
|
||||
msgstr "Die Teilnahme war nicht erfolgreich"
|
||||
|
||||
#: src/App/Page.php:258
|
||||
#: src/App/Page.php:247
|
||||
msgid "Backend error"
|
||||
msgstr "Fehler im Backend"
|
||||
|
||||
#: src/App/Page.php:259
|
||||
#: src/App/Page.php:248
|
||||
msgid "Network error"
|
||||
msgstr "Netzwerkfehler"
|
||||
|
||||
#: src/App/Page.php:262
|
||||
#: src/App/Page.php:251
|
||||
msgid "Drop files here to upload"
|
||||
msgstr "Ziehe Dateien hierher, um sie hochzuladen"
|
||||
|
||||
#: src/App/Page.php:263
|
||||
#: src/App/Page.php:252
|
||||
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:264
|
||||
#: src/App/Page.php:253
|
||||
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:265
|
||||
#: src/App/Page.php:254
|
||||
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:266
|
||||
#: src/App/Page.php:255
|
||||
msgid "You can't upload files of this type."
|
||||
msgstr "Du kannst keine Dateien dieses Typs hochladen."
|
||||
|
||||
#: src/App/Page.php:267
|
||||
#: src/App/Page.php:256
|
||||
msgid "Server responded with {{statusCode}} code."
|
||||
msgstr "Der Server antwortete mit Status-Code {{statusCode}} "
|
||||
|
||||
#: src/App/Page.php:268
|
||||
#: src/App/Page.php:257
|
||||
msgid "Cancel upload"
|
||||
msgstr "Hochladen abbrechen"
|
||||
|
||||
#: src/App/Page.php:269
|
||||
#: src/App/Page.php:258
|
||||
msgid "Upload canceled."
|
||||
msgstr "Hochladen abgebrochen"
|
||||
|
||||
#: src/App/Page.php:270
|
||||
#: src/App/Page.php:259
|
||||
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:271
|
||||
#: src/App/Page.php:260
|
||||
msgid "Remove file"
|
||||
msgstr "Datei entfernen"
|
||||
|
||||
#: src/App/Page.php:272
|
||||
#: src/App/Page.php:261
|
||||
msgid "You can't upload any more files."
|
||||
msgstr "Du kannst keine weiteren Dateien hochladen."
|
||||
|
||||
#: src/App/Page.php:356
|
||||
#: src/App/Page.php:345
|
||||
msgid "toggle mobile"
|
||||
msgstr "mobile Ansicht umschalten"
|
||||
|
||||
#: src/App/Page.php:367 src/Module/Admin/Logs/View.php:92
|
||||
#: src/App/Page.php:356 src/Module/Admin/Logs/View.php:92
|
||||
#: view/theme/frio/php/minimal.php:39 view/theme/frio/php/standard.php:138
|
||||
msgid "Close"
|
||||
msgstr "Schließen"
|
||||
|
|
@ -1308,7 +1308,7 @@ msgid "Visible to <strong>everybody</strong>"
|
|||
msgstr "Für <strong>jedermann</strong> sichtbar"
|
||||
|
||||
#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196
|
||||
#: src/Object/Post.php:1160
|
||||
#: src/Object/Post.php:1161
|
||||
msgid "Please enter a image/video/audio/webpage URL:"
|
||||
msgstr "Bitte gib eine Bild/Video/Audio/Webseiten-URL ein:"
|
||||
|
||||
|
|
@ -1353,52 +1353,52 @@ msgid "attach file"
|
|||
msgstr "Datei anhängen"
|
||||
|
||||
#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1150
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1151
|
||||
msgid "Bold"
|
||||
msgstr "Fett"
|
||||
|
||||
#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1151
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1152
|
||||
msgid "Italic"
|
||||
msgstr "Kursiv"
|
||||
|
||||
#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1152
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1153
|
||||
msgid "Underline"
|
||||
msgstr "Unterstrichen"
|
||||
|
||||
#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1154
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1155
|
||||
msgid "Quote"
|
||||
msgstr "Zitat"
|
||||
|
||||
#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1155
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1156
|
||||
msgid "Add emojis"
|
||||
msgstr "Emojis hinzufügen"
|
||||
|
||||
#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191
|
||||
#: src/Object/Post.php:1153
|
||||
#: src/Object/Post.php:1154
|
||||
msgid "Content Warning"
|
||||
msgstr "Inhaltswarnung"
|
||||
|
||||
#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192
|
||||
#: src/Module/Post/Edit.php:167 src/Object/Post.php:1156
|
||||
#: src/Module/Post/Edit.php:167 src/Object/Post.php:1157
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193
|
||||
#: src/Object/Post.php:1157
|
||||
#: src/Object/Post.php:1158
|
||||
msgid "Image"
|
||||
msgstr "Bild"
|
||||
|
||||
#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1158
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1159
|
||||
msgid "Link"
|
||||
msgstr "Link"
|
||||
|
||||
#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1159
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1160
|
||||
msgid "Link or Media"
|
||||
msgstr "Link oder Mediendatei"
|
||||
|
||||
|
|
@ -1572,7 +1572,7 @@ msgstr "Kategorien:"
|
|||
msgid "Filed under:"
|
||||
msgstr "Abgelegt unter:"
|
||||
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:558
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:559
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "%s von %s"
|
||||
|
|
@ -1832,7 +1832,7 @@ msgstr "Anzeige der Beiträge, die von Konten mit dem ausgewählten Kontotyp ers
|
|||
|
||||
#: src/Content/Feature.php:131 src/Content/Widget.php:610
|
||||
#: src/Module/Admin/Site.php:463 src/Module/BaseSettings.php:113
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:323
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:313
|
||||
msgid "Channels"
|
||||
msgstr "Kanäle"
|
||||
|
||||
|
|
@ -2007,7 +2007,7 @@ msgstr "Ignoriere %s Server"
|
|||
msgid "Languages"
|
||||
msgstr "Sprachen"
|
||||
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:585
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:586
|
||||
msgid "Search Text"
|
||||
msgstr "Suchtext"
|
||||
|
||||
|
|
@ -2100,7 +2100,7 @@ msgstr "Deine Beiträge die Medien beinhalten"
|
|||
#: src/Content/Nav.php:229 src/Content/Nav.php:289
|
||||
#: 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:225
|
||||
#: src/Module/Settings/Display.php:314 view/theme/frio/theme.php:225
|
||||
#: view/theme/frio/theme.php:229
|
||||
msgid "Calendar"
|
||||
msgstr "Kalender"
|
||||
|
|
@ -2988,37 +2988,37 @@ msgid "%s (%s)"
|
|||
msgstr "%s (%s)"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:416
|
||||
#: src/Module/Settings/Display.php:292
|
||||
#: src/Module/Settings/Display.php:282
|
||||
msgid "Monday"
|
||||
msgstr "Montag"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:417
|
||||
#: src/Module/Settings/Display.php:293
|
||||
#: src/Module/Settings/Display.php:283
|
||||
msgid "Tuesday"
|
||||
msgstr "Dienstag"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:418
|
||||
#: src/Module/Settings/Display.php:294
|
||||
#: src/Module/Settings/Display.php:284
|
||||
msgid "Wednesday"
|
||||
msgstr "Mittwoch"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:419
|
||||
#: src/Module/Settings/Display.php:295
|
||||
#: src/Module/Settings/Display.php:285
|
||||
msgid "Thursday"
|
||||
msgstr "Donnerstag"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:420
|
||||
#: src/Module/Settings/Display.php:296
|
||||
#: src/Module/Settings/Display.php:286
|
||||
msgid "Friday"
|
||||
msgstr "Freitag"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:421
|
||||
#: src/Module/Settings/Display.php:297
|
||||
#: src/Module/Settings/Display.php:287
|
||||
msgid "Saturday"
|
||||
msgstr "Samstag"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:415
|
||||
#: src/Module/Settings/Display.php:291
|
||||
#: src/Module/Settings/Display.php:281
|
||||
msgid "Sunday"
|
||||
msgstr "Sonntag"
|
||||
|
||||
|
|
@ -3471,17 +3471,17 @@ msgid "today"
|
|||
msgstr "Heute"
|
||||
|
||||
#: src/Model/Event.php:449 src/Module/Calendar/Show.php:117
|
||||
#: src/Module/Settings/Display.php:302 src/Util/Temporal.php:343
|
||||
#: src/Module/Settings/Display.php:292 src/Util/Temporal.php:343
|
||||
msgid "month"
|
||||
msgstr "Monat"
|
||||
|
||||
#: src/Model/Event.php:450 src/Module/Calendar/Show.php:118
|
||||
#: src/Module/Settings/Display.php:303 src/Util/Temporal.php:344
|
||||
#: src/Module/Settings/Display.php:293 src/Util/Temporal.php:344
|
||||
msgid "week"
|
||||
msgstr "Woche"
|
||||
|
||||
#: src/Model/Event.php:451 src/Module/Calendar/Show.php:119
|
||||
#: src/Module/Settings/Display.php:304 src/Util/Temporal.php:345
|
||||
#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:345
|
||||
msgid "day"
|
||||
msgstr "Tag"
|
||||
|
||||
|
|
@ -4054,7 +4054,7 @@ msgid "Disable"
|
|||
msgstr "Ausschalten"
|
||||
|
||||
#: src/Module/Admin/Addons/Details.php:75
|
||||
#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351
|
||||
#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:341
|
||||
msgid "Enable"
|
||||
msgstr "Einschalten"
|
||||
|
||||
|
|
@ -4105,7 +4105,7 @@ msgstr "Addon %s konnte nicht installiert werden"
|
|||
#: 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:307
|
||||
#: src/Module/Settings/Features.php:61
|
||||
msgid "Save Settings"
|
||||
msgstr "Einstellungen speichern"
|
||||
|
|
@ -4484,11 +4484,11 @@ msgstr "%s ist keine gültige Angabe der maximalen Größe von Medien"
|
|||
msgid "%s is no valid input for maximum image size"
|
||||
msgstr "%s ist keine gültige Angabe der maximalen Größe von Bildern"
|
||||
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:212
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:206
|
||||
msgid "No special theme for mobile devices"
|
||||
msgstr "Kein spezielles Theme für mobile Geräte verwenden."
|
||||
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:222
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:216
|
||||
#, php-format
|
||||
msgid "%s - (Experimental)"
|
||||
msgstr "%s - (Experimentell)"
|
||||
|
|
@ -5565,7 +5565,7 @@ msgid ""
|
|||
msgstr "Der Wert kann entweder 'Alle' oder 'Schlagwörter' sein. 'Alle' bedeutet, dass alle öffentliche Beiträge empfangen werden sollen. 'Schlagwörter' schränkt dem Empfang auf Beiträge ein, die bestimmte Schlagwörter beinhalten."
|
||||
|
||||
#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:315
|
||||
#: src/Module/Settings/Display.php:259
|
||||
#: src/Module/Settings/Display.php:249
|
||||
#: src/Module/Settings/TwoFactor/Index.php:132
|
||||
msgid "Disabled"
|
||||
msgstr "Deaktiviert"
|
||||
|
|
@ -6198,7 +6198,7 @@ msgstr "Tipps für neue Nutzer"
|
|||
#: src/Module/Contact.php:537 src/Module/Conversation/Channel.php:98
|
||||
#: src/Module/Conversation/Community.php:91
|
||||
#: src/Module/Conversation/Network.php:295
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:605
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:606
|
||||
msgid "More"
|
||||
msgstr "Mehr"
|
||||
|
||||
|
|
@ -6387,7 +6387,7 @@ msgstr "Ansehen"
|
|||
msgid "Create New Event"
|
||||
msgstr "Neue Veranstaltung erstellen"
|
||||
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:305
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:295
|
||||
msgid "list"
|
||||
msgstr "Liste"
|
||||
|
||||
|
|
@ -10277,12 +10277,12 @@ msgid ""
|
|||
msgstr "Wenn ausgewählt, werden die Kanalergebnisse erneut geteilt. Dies funktioniert nur für öffentliche ActivityPub-Beiträge aus der öffentlichen Timeline oder den vom Benutzer definierten Circles."
|
||||
|
||||
#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
|
||||
#: src/Module/Settings/Display.php:349
|
||||
#: src/Module/Settings/Display.php:339
|
||||
msgid "Label"
|
||||
msgstr "Bezeichnung"
|
||||
|
||||
#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198
|
||||
#: src/Module/Settings/Display.php:350
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:123
|
||||
msgid "Description"
|
||||
msgstr "Beschreibung"
|
||||
|
|
@ -10718,213 +10718,215 @@ msgstr "Potentielle Bevollmächtigte"
|
|||
msgid "No entries."
|
||||
msgstr "Keine Einträge."
|
||||
|
||||
#: src/Module/Settings/Display.php:180
|
||||
#: src/Module/Settings/Display.php:174
|
||||
msgid "The theme you chose isn't available."
|
||||
msgstr "Das gewählte Theme ist nicht verfügbar"
|
||||
|
||||
#: src/Module/Settings/Display.php:220
|
||||
#: src/Module/Settings/Display.php:214
|
||||
#, php-format
|
||||
msgid "%s - (Unsupported)"
|
||||
msgstr "%s - (Nicht unterstützt)"
|
||||
|
||||
#: src/Module/Settings/Display.php:260
|
||||
#: src/Module/Settings/Display.php:250
|
||||
msgid "Color/Black"
|
||||
msgstr "Farbe/Schwarz"
|
||||
|
||||
#: src/Module/Settings/Display.php:261 view/theme/frio/php/scheme.php:95
|
||||
#: src/Module/Settings/Display.php:251 view/theme/frio/php/scheme.php:95
|
||||
msgid "Black"
|
||||
msgstr "Schwarz"
|
||||
|
||||
#: src/Module/Settings/Display.php:262
|
||||
#: src/Module/Settings/Display.php:252
|
||||
msgid "Color/White"
|
||||
msgstr "Farbe/Weiß"
|
||||
|
||||
#: src/Module/Settings/Display.php:263
|
||||
#: src/Module/Settings/Display.php:253
|
||||
msgid "White"
|
||||
msgstr "Weiß"
|
||||
|
||||
#: src/Module/Settings/Display.php:268
|
||||
#: src/Module/Settings/Display.php:258
|
||||
msgid "No preview"
|
||||
msgstr "Keine Vorschau"
|
||||
|
||||
#: src/Module/Settings/Display.php:269
|
||||
#: src/Module/Settings/Display.php:259
|
||||
msgid "No image"
|
||||
msgstr "Kein Bild"
|
||||
|
||||
#: src/Module/Settings/Display.php:270
|
||||
#: src/Module/Settings/Display.php:260
|
||||
msgid "Small Image"
|
||||
msgstr "Kleines Bild"
|
||||
|
||||
#: src/Module/Settings/Display.php:271
|
||||
#: src/Module/Settings/Display.php:261
|
||||
msgid "Large Image"
|
||||
msgstr "Große Bilder"
|
||||
|
||||
#: src/Module/Settings/Display.php:316
|
||||
#: src/Module/Settings/Display.php:306
|
||||
msgid "Display Settings"
|
||||
msgstr "Anzeige-Einstellungen"
|
||||
|
||||
#: src/Module/Settings/Display.php:318
|
||||
#: src/Module/Settings/Display.php:308
|
||||
msgid "General Theme Settings"
|
||||
msgstr "Allgemeine Theme-Einstellungen"
|
||||
|
||||
#: src/Module/Settings/Display.php:319
|
||||
#: src/Module/Settings/Display.php:309
|
||||
msgid "Custom Theme Settings"
|
||||
msgstr "Benutzerdefinierte Theme-Einstellungen"
|
||||
|
||||
#: src/Module/Settings/Display.php:320
|
||||
#: src/Module/Settings/Display.php:310
|
||||
msgid "Content Settings"
|
||||
msgstr "Einstellungen zum Inhalt"
|
||||
|
||||
#: src/Module/Settings/Display.php:321 view/theme/duepuntozero/config.php:74
|
||||
#: src/Module/Settings/Display.php:311 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 "Theme-Einstellungen"
|
||||
|
||||
#: src/Module/Settings/Display.php:322
|
||||
#: src/Module/Settings/Display.php:312
|
||||
msgid "Timelines"
|
||||
msgstr "Timelines"
|
||||
|
||||
#: src/Module/Settings/Display.php:329
|
||||
#: src/Module/Settings/Display.php:319
|
||||
msgid "Display Theme:"
|
||||
msgstr "Theme:"
|
||||
|
||||
#: src/Module/Settings/Display.php:330
|
||||
#: src/Module/Settings/Display.php:320
|
||||
msgid "Mobile Theme:"
|
||||
msgstr "Mobiles Theme"
|
||||
|
||||
#: src/Module/Settings/Display.php:333
|
||||
#: src/Module/Settings/Display.php:323
|
||||
msgid "Number of items to display per page:"
|
||||
msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
|
||||
|
||||
#: src/Module/Settings/Display.php:333 src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:323 src/Module/Settings/Display.php:324
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr "Maximal 100 Beiträge"
|
||||
|
||||
#: src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:324
|
||||
msgid "Number of items to display per page when viewed from mobile device:"
|
||||
msgstr "Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:"
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr "Browser alle xx Sekunden aktualisieren"
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid "Regularly update the page content"
|
||||
msgstr "Regelmäßiges Aktualisieren der Seiteninhalte"
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Minimum of 10 seconds. Enter -1 to disable it."
|
||||
msgstr "Minimum sind 10 Sekunden. Gib -1 ein, um abzuschalten."
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid ""
|
||||
"When enabled, new content on network, community and channels are added on "
|
||||
"top."
|
||||
msgstr "Wenn diese Option aktiviert ist, werden neue Inhalte auf der Netzwerk-, Gemeinschafts- und Kanalseiten automatisch am Anfang der Seiten eingefügt."
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "Display emoticons"
|
||||
msgstr "Zeige Emoticons"
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "When enabled, emoticons are replaced with matching symbols."
|
||||
msgstr "Wenn dies aktiviert ist, werden Text-Emoticons in Beiträgen durch Symbole ersetzt."
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Infinite scroll"
|
||||
msgstr "Endloses Scrollen"
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Automatic fetch new items when reaching the page end."
|
||||
msgstr "Automatisch neue Beiträge laden, wenn das Ende der Seite erreicht ist."
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable Smart Threading"
|
||||
msgstr "Intelligentes Threading aktivieren"
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable the automatic suppression of extraneous thread indentation."
|
||||
msgstr "Schaltet das automatische Unterdrücken von überflüssigen Thread-Einrückungen ein."
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid "Display the Dislike feature"
|
||||
msgstr "Das \"Nicht-mögen\" Feature anzeigen"
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid ""
|
||||
"Display the Dislike button and dislike reactions on posts and comments."
|
||||
msgstr "Einen \"Ich mag das nicht\" Button und die dislike Reaktion auf Beiträge und Kommentare anzeigen."
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
msgid "Display the resharer"
|
||||
msgstr "Teilenden anzeigen"
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
msgid "Display the first resharer as icon and text on a reshared item."
|
||||
msgstr "Zeige das Profilbild des ersten Kontakts von dem ein Beitrag geteilt wurde."
|
||||
|
||||
#: src/Module/Settings/Display.php:341
|
||||
#: src/Module/Settings/Display.php:331
|
||||
msgid "Stay local"
|
||||
msgstr "Bleib lokal"
|
||||
|
||||
#: src/Module/Settings/Display.php:341
|
||||
#: src/Module/Settings/Display.php:331
|
||||
msgid "Don't go to a remote system when following a contact link."
|
||||
msgstr "Gehe nicht zu einem Remote-System, wenn einem Kontaktlink gefolgt wird"
|
||||
|
||||
#: src/Module/Settings/Display.php:342
|
||||
#: src/Module/Settings/Display.php:332
|
||||
msgid "Show the post deletion checkbox"
|
||||
msgstr "Die Checkbox zum Löschen von Beiträgen anzeigen"
|
||||
|
||||
#: src/Module/Settings/Display.php:342
|
||||
#: src/Module/Settings/Display.php:332
|
||||
msgid "Display the checkbox for the post deletion on the network page."
|
||||
msgstr "Zeigt die Checkbox für das Löschen von Beiträgen auf der Netzwerkseite an."
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "DIsplay the event list"
|
||||
msgstr "Anzeige der der anstehenden Ereignisse"
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "Display the birthday reminder and event list on the network page."
|
||||
msgstr "Zeigt die Geburtstagserinnerungen und die anstehenden Veranstaltungen auf der Netzwerkseite an."
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
msgid "Link preview mode"
|
||||
msgstr "Vorschau Modus für Links"
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
msgid "Appearance of the link preview that is added to each post with a link."
|
||||
msgstr "Aussehen der Linkvorschau, die zu jedem Beitrag mit einem Link hinzugefügt wird."
|
||||
|
||||
#: src/Module/Settings/Display.php:345
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Hide pictures with empty alternative text"
|
||||
msgstr "Bilder ohne Alternativtext verbergen"
|
||||
|
||||
#: src/Module/Settings/Display.php:345
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Don't display pictures that are missing the alternative text."
|
||||
msgstr "Bilder die keinen beschreibenden Alternativtext besitzen werden nicht angezeigt."
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Hide custom emojis"
|
||||
msgstr "Benutzerdefinierte Emojis ausblenden"
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Don't display custom emojis."
|
||||
msgstr "Benutzerdefinierte Emojis werden nicht angezeigt."
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Platform icons style"
|
||||
msgstr "Stiel der Platformicons"
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Style of the platform icons"
|
||||
msgstr "Stiel der verwendeten Platformicons"
|
||||
|
||||
#: src/Module/Settings/Display.php:352
|
||||
#: src/Module/Settings/Display.php:342
|
||||
msgid "Bookmark"
|
||||
msgstr "Lesezeichen"
|
||||
|
||||
#: src/Module/Settings/Display.php:354
|
||||
#: src/Module/Settings/Display.php:344
|
||||
msgid ""
|
||||
"Enable timelines that you want to see in the channels widget. Bookmark "
|
||||
"timelines that you want to see in the top menu."
|
||||
msgstr "Aktiviere die Timelines, die Sie im Kanäle-Widget sehen möchten. Setze ein Lesezeichen für Timelines, die du im oberen Menü sehen willst."
|
||||
|
||||
#: src/Module/Settings/Display.php:356
|
||||
#: src/Module/Settings/Display.php:346
|
||||
msgid "Channel languages:"
|
||||
msgstr "Channel Sprachen:"
|
||||
|
||||
#: src/Module/Settings/Display.php:356
|
||||
#: src/Module/Settings/Display.php:346
|
||||
msgid ""
|
||||
"Select all the languages you want to see in your channels. \"Unspecified\" "
|
||||
"describes all posts for which no language information was detected (e.g. "
|
||||
|
|
@ -10933,11 +10935,11 @@ msgid ""
|
|||
"list."
|
||||
msgstr "Wähle alle Sprachen aus, die du in deinen Kanälen sehen willst. \"Unspezifiziert\" umfasst alle Beiträge, für die keine Sprachinformationen gefunden wurden (z.B: Beiträge die ausschließlich aus Bildern bestehen, oder die zu kurz sind um die Sprache sicher bestimmen zu können). Wenn du alles Sprachen sehen willst, dann wähle hier in der Liste alle Sprachen aus."
|
||||
|
||||
#: src/Module/Settings/Display.php:358
|
||||
#: src/Module/Settings/Display.php:348
|
||||
msgid "Beginning of week:"
|
||||
msgstr "Wochenbeginn:"
|
||||
|
||||
#: src/Module/Settings/Display.php:359
|
||||
#: src/Module/Settings/Display.php:349
|
||||
msgid "Default calendar view:"
|
||||
msgstr "Standard-Kalenderansicht:"
|
||||
|
||||
|
|
@ -12585,97 +12587,97 @@ msgstr "Wall-to-Wall"
|
|||
msgid "via Wall-To-Wall:"
|
||||
msgstr "via Wall-To-Wall:"
|
||||
|
||||
#: src/Object/Post.php:602
|
||||
#: src/Object/Post.php:603
|
||||
#, php-format
|
||||
msgid "Reply to %s"
|
||||
msgstr "Antworte %s"
|
||||
|
||||
#: src/Object/Post.php:624
|
||||
#: src/Object/Post.php:625
|
||||
msgid "Notifier task is pending"
|
||||
msgstr "Die Benachrichtigungsaufgabe ist ausstehend"
|
||||
|
||||
#: src/Object/Post.php:625
|
||||
#: src/Object/Post.php:626
|
||||
msgid "Delivery to remote servers is pending"
|
||||
msgstr "Die Auslieferung an Remote-Server steht noch aus"
|
||||
|
||||
#: src/Object/Post.php:626
|
||||
#: src/Object/Post.php:627
|
||||
msgid "Delivery to remote servers is underway"
|
||||
msgstr "Die Auslieferung an Remote-Server ist unterwegs"
|
||||
|
||||
#: src/Object/Post.php:627
|
||||
#: src/Object/Post.php:628
|
||||
msgid "Delivery to remote servers is mostly done"
|
||||
msgstr "Die Zustellung an Remote-Server ist fast erledigt"
|
||||
|
||||
#: src/Object/Post.php:628
|
||||
#: src/Object/Post.php:629
|
||||
msgid "Delivery to remote servers is done"
|
||||
msgstr "Die Zustellung an die Remote-Server ist erledigt"
|
||||
|
||||
#: src/Object/Post.php:650
|
||||
#: src/Object/Post.php:651
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
msgstr[0] "%d Kommentar"
|
||||
msgstr[1] "%d Kommentare"
|
||||
|
||||
#: src/Object/Post.php:651
|
||||
#: src/Object/Post.php:652
|
||||
msgid "Show more"
|
||||
msgstr "Zeige mehr"
|
||||
|
||||
#: src/Object/Post.php:652
|
||||
#: src/Object/Post.php:653
|
||||
msgid "Show fewer"
|
||||
msgstr "Zeige weniger"
|
||||
|
||||
#: src/Object/Post.php:689
|
||||
#: src/Object/Post.php:690
|
||||
#, php-format
|
||||
msgid "Reshared by: %s"
|
||||
msgstr "Geteilt von: %s"
|
||||
|
||||
#: src/Object/Post.php:694
|
||||
#: src/Object/Post.php:695
|
||||
#, php-format
|
||||
msgid "Viewed by: %s"
|
||||
msgstr "Gesehen von: %s"
|
||||
|
||||
#: src/Object/Post.php:699
|
||||
#: src/Object/Post.php:700
|
||||
#, php-format
|
||||
msgid "Read by: %s"
|
||||
msgstr "Gelesen von: %s"
|
||||
|
||||
#: src/Object/Post.php:704
|
||||
#: src/Object/Post.php:705
|
||||
#, php-format
|
||||
msgid "Liked by: %s"
|
||||
msgstr "Diese Menschen mögen das: %s"
|
||||
|
||||
#: src/Object/Post.php:709
|
||||
#: src/Object/Post.php:710
|
||||
#, php-format
|
||||
msgid "Disliked by: %s"
|
||||
msgstr "Unbeliebt bei: %s"
|
||||
|
||||
#: src/Object/Post.php:714
|
||||
#: src/Object/Post.php:715
|
||||
#, php-format
|
||||
msgid "Attended by: %s"
|
||||
msgstr "Besucht von: %s"
|
||||
|
||||
#: src/Object/Post.php:719
|
||||
#: src/Object/Post.php:720
|
||||
#, php-format
|
||||
msgid "Maybe attended by: %s"
|
||||
msgstr "Vielleicht besucht von: %s"
|
||||
|
||||
#: src/Object/Post.php:724
|
||||
#: src/Object/Post.php:725
|
||||
#, php-format
|
||||
msgid "Not attended by: %s"
|
||||
msgstr "Nicht besucht von: %s"
|
||||
|
||||
#: src/Object/Post.php:729
|
||||
#: src/Object/Post.php:730
|
||||
#, php-format
|
||||
msgid "Commented by: %s"
|
||||
msgstr "Kommentiert von: %s"
|
||||
|
||||
#: src/Object/Post.php:734
|
||||
#: src/Object/Post.php:735
|
||||
#, php-format
|
||||
msgid "Reacted with %s by: %s"
|
||||
msgstr "Reagierte mit %s von: %s"
|
||||
|
||||
#: src/Object/Post.php:757
|
||||
#: src/Object/Post.php:758
|
||||
#, php-format
|
||||
msgid "Quote shared by: %s"
|
||||
msgstr "Zitat geteilt von: %s"
|
||||
|
|
|
|||
|
|
@ -2663,8 +2663,8 @@ $a->strings['Mobile Theme:'] = 'Mobiles Theme';
|
|||
$a->strings['Number of items to display per page:'] = 'Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: ';
|
||||
$a->strings['Maximum of 100 items'] = 'Maximal 100 Beiträge';
|
||||
$a->strings['Number of items to display per page when viewed from mobile device:'] = 'Zahl der Beiträge, die pro Netzwerkseite auf mobilen Geräten angezeigt werden sollen:';
|
||||
$a->strings['Update browser every xx seconds'] = 'Browser alle xx Sekunden aktualisieren';
|
||||
$a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Minimum sind 10 Sekunden. Gib -1 ein, um abzuschalten.';
|
||||
$a->strings['Regularly update the page content'] = 'Regelmäßiges Aktualisieren der Seiteninhalte';
|
||||
$a->strings['When enabled, new content on network, community and channels are added on top.'] = 'Wenn diese Option aktiviert ist, werden neue Inhalte auf der Netzwerk-, Gemeinschafts- und Kanalseiten automatisch am Anfang der Seiten eingefügt.';
|
||||
$a->strings['Display emoticons'] = 'Zeige Emoticons';
|
||||
$a->strings['When enabled, emoticons are replaced with matching symbols.'] = 'Wenn dies aktiviert ist, werden Text-Emoticons in Beiträgen durch Symbole ersetzt.';
|
||||
$a->strings['Infinite scroll'] = 'Endloses Scrollen';
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-05 22:44+0000\n"
|
||||
"POT-Creation-Date: 2025-02-09 20:13+0000\n"
|
||||
"PO-Revision-Date: 2011-05-05 10:19+0000\n"
|
||||
"Last-Translator: St John Karp <stjohn@fuzzjunket.com>, 2017\n"
|
||||
"Language-Team: Esperanto (http://app.transifex.com/Friendica/friendica/language/eo/)\n"
|
||||
|
|
@ -73,7 +73,7 @@ msgstr "Elemento ne estas trovita."
|
|||
#: 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/Display.php:188
|
||||
#: src/Module/Settings/Profile/Photo/Crop.php:148
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:96
|
||||
#: src/Module/Settings/RemoveMe.php:103 src/Module/Settings/UserExport.php:64
|
||||
|
|
@ -294,7 +294,7 @@ msgstr "Enmeti retan adreson"
|
|||
#: mod/message.php:188 mod/message.php:344 mod/photos.php:1252
|
||||
#: 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:607
|
||||
#: src/Object/Post.php:608
|
||||
msgid "Please wait"
|
||||
msgstr "Bonvolu atendi"
|
||||
|
||||
|
|
@ -317,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:1148 view/theme/duepuntozero/config.php:73
|
||||
#: src/Object/Post.php:1149 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"
|
||||
|
|
@ -603,25 +603,25 @@ msgstr "Turni kontraŭhorloĝdirekte (maldekstren)"
|
|||
|
||||
#: mod/photos.php:1090 mod/photos.php:1146 mod/photos.php:1226
|
||||
#: src/Module/Contact.php:599 src/Module/Item/Compose.php:184
|
||||
#: src/Object/Post.php:1145
|
||||
#: src/Object/Post.php:1146
|
||||
msgid "This is you"
|
||||
msgstr "Tiu estas vi"
|
||||
|
||||
#: mod/photos.php:1092 mod/photos.php:1148 mod/photos.php:1228
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:601
|
||||
#: src/Object/Post.php:1147
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:602
|
||||
#: src/Object/Post.php:1148
|
||||
msgid "Comment"
|
||||
msgstr "Komenti"
|
||||
|
||||
#: mod/photos.php:1094 mod/photos.php:1150 mod/photos.php:1230
|
||||
#: 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:1161
|
||||
#: src/Object/Post.php:1162
|
||||
msgid "Preview"
|
||||
msgstr "Antaŭrigardi"
|
||||
|
||||
#: mod/photos.php:1095 src/Content/Conversation.php:357
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1149
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1150
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -663,112 +663,112 @@ msgstr ""
|
|||
msgid "Apologies but the website is unavailable at the moment."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:247
|
||||
#: src/App/Page.php:236
|
||||
msgid "Delete this item?"
|
||||
msgstr "Forviŝi ĉi tiun elementon?"
|
||||
|
||||
#: src/App/Page.php:248
|
||||
#: 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:249
|
||||
#: 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:250
|
||||
#: src/App/Page.php:239
|
||||
msgid "Collapse this author's posts?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:251
|
||||
#: src/App/Page.php:240
|
||||
msgid "Ignore this author's server?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:252 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:254
|
||||
#: src/App/Page.php:243
|
||||
msgid "Like not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:255
|
||||
#: src/App/Page.php:244
|
||||
msgid "Dislike not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:256
|
||||
#: src/App/Page.php:245
|
||||
msgid "Sharing not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:257
|
||||
#: src/App/Page.php:246
|
||||
msgid "Attendance unsuccessful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:258
|
||||
#: src/App/Page.php:247
|
||||
msgid "Backend error"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:259
|
||||
#: src/App/Page.php:248
|
||||
msgid "Network error"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:262
|
||||
#: src/App/Page.php:251
|
||||
msgid "Drop files here to upload"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:263
|
||||
#: src/App/Page.php:252
|
||||
msgid "Your browser does not support drag and drop file uploads."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:264
|
||||
#: 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:265
|
||||
#: src/App/Page.php:254
|
||||
msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:266
|
||||
#: src/App/Page.php:255
|
||||
msgid "You can't upload files of this type."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:267
|
||||
#: src/App/Page.php:256
|
||||
msgid "Server responded with {{statusCode}} code."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:268
|
||||
#: src/App/Page.php:257
|
||||
msgid "Cancel upload"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:269
|
||||
#: src/App/Page.php:258
|
||||
msgid "Upload canceled."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:270
|
||||
#: src/App/Page.php:259
|
||||
msgid "Are you sure you want to cancel this upload?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:271
|
||||
#: src/App/Page.php:260
|
||||
msgid "Remove file"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:272
|
||||
#: src/App/Page.php:261
|
||||
msgid "You can't upload any more files."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:356
|
||||
#: src/App/Page.php:345
|
||||
msgid "toggle mobile"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:367 src/Module/Admin/Logs/View.php:92
|
||||
#: src/App/Page.php:356 src/Module/Admin/Logs/View.php:92
|
||||
#: view/theme/frio/php/minimal.php:39 view/theme/frio/php/standard.php:138
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
|
@ -1261,7 +1261,7 @@ msgid "Visible to <strong>everybody</strong>"
|
|||
msgstr "Videbla al <strong>ĉiuj</strong>"
|
||||
|
||||
#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196
|
||||
#: src/Object/Post.php:1160
|
||||
#: src/Object/Post.php:1161
|
||||
msgid "Please enter a image/video/audio/webpage URL:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1306,52 +1306,52 @@ msgid "attach file"
|
|||
msgstr "kunsendi dosieron"
|
||||
|
||||
#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1150
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1151
|
||||
msgid "Bold"
|
||||
msgstr "Grasa"
|
||||
|
||||
#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1151
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1152
|
||||
msgid "Italic"
|
||||
msgstr "Kursiva"
|
||||
|
||||
#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1152
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1153
|
||||
msgid "Underline"
|
||||
msgstr "Substreki"
|
||||
|
||||
#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1154
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1155
|
||||
msgid "Quote"
|
||||
msgstr "Citaĵo"
|
||||
|
||||
#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1155
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1156
|
||||
msgid "Add emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191
|
||||
#: src/Object/Post.php:1153
|
||||
#: src/Object/Post.php:1154
|
||||
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:1156
|
||||
#: src/Module/Post/Edit.php:167 src/Object/Post.php:1157
|
||||
msgid "Code"
|
||||
msgstr "Kodo"
|
||||
|
||||
#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193
|
||||
#: src/Object/Post.php:1157
|
||||
#: src/Object/Post.php:1158
|
||||
msgid "Image"
|
||||
msgstr "Bildo"
|
||||
|
||||
#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1158
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1159
|
||||
msgid "Link"
|
||||
msgstr "Ligilo"
|
||||
|
||||
#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1159
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1160
|
||||
msgid "Link or Media"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1525,7 +1525,7 @@ msgstr ""
|
|||
msgid "Filed under:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:558
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:559
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "%s de %s"
|
||||
|
|
@ -1785,7 +1785,7 @@ msgstr ""
|
|||
|
||||
#: src/Content/Feature.php:131 src/Content/Widget.php:610
|
||||
#: src/Module/Admin/Site.php:463 src/Module/BaseSettings.php:113
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:323
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:313
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1960,7 +1960,7 @@ msgstr ""
|
|||
msgid "Languages"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:585
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:586
|
||||
msgid "Search Text"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2053,7 +2053,7 @@ msgstr ""
|
|||
#: src/Content/Nav.php:229 src/Content/Nav.php:289
|
||||
#: 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:225
|
||||
#: src/Module/Settings/Display.php:314 view/theme/frio/theme.php:225
|
||||
#: view/theme/frio/theme.php:229
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
|
@ -2941,37 +2941,37 @@ msgid "%s (%s)"
|
|||
msgstr ""
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:416
|
||||
#: src/Module/Settings/Display.php:292
|
||||
#: src/Module/Settings/Display.php:282
|
||||
msgid "Monday"
|
||||
msgstr "Lundo"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:417
|
||||
#: src/Module/Settings/Display.php:293
|
||||
#: src/Module/Settings/Display.php:283
|
||||
msgid "Tuesday"
|
||||
msgstr "Mardo"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:418
|
||||
#: src/Module/Settings/Display.php:294
|
||||
#: src/Module/Settings/Display.php:284
|
||||
msgid "Wednesday"
|
||||
msgstr "Merkredo"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:419
|
||||
#: src/Module/Settings/Display.php:295
|
||||
#: src/Module/Settings/Display.php:285
|
||||
msgid "Thursday"
|
||||
msgstr "Ĵaŭdo"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:420
|
||||
#: src/Module/Settings/Display.php:296
|
||||
#: src/Module/Settings/Display.php:286
|
||||
msgid "Friday"
|
||||
msgstr "Vendredo"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:421
|
||||
#: src/Module/Settings/Display.php:297
|
||||
#: src/Module/Settings/Display.php:287
|
||||
msgid "Saturday"
|
||||
msgstr "Sabato"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:415
|
||||
#: src/Module/Settings/Display.php:291
|
||||
#: src/Module/Settings/Display.php:281
|
||||
msgid "Sunday"
|
||||
msgstr "Dimanĉo"
|
||||
|
||||
|
|
@ -3424,17 +3424,17 @@ msgid "today"
|
|||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:449 src/Module/Calendar/Show.php:117
|
||||
#: src/Module/Settings/Display.php:302 src/Util/Temporal.php:343
|
||||
#: src/Module/Settings/Display.php:292 src/Util/Temporal.php:343
|
||||
msgid "month"
|
||||
msgstr "monato"
|
||||
|
||||
#: src/Model/Event.php:450 src/Module/Calendar/Show.php:118
|
||||
#: src/Module/Settings/Display.php:303 src/Util/Temporal.php:344
|
||||
#: src/Module/Settings/Display.php:293 src/Util/Temporal.php:344
|
||||
msgid "week"
|
||||
msgstr "semajno"
|
||||
|
||||
#: src/Model/Event.php:451 src/Module/Calendar/Show.php:119
|
||||
#: src/Module/Settings/Display.php:304 src/Util/Temporal.php:345
|
||||
#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:345
|
||||
msgid "day"
|
||||
msgstr "tago"
|
||||
|
||||
|
|
@ -4007,7 +4007,7 @@ msgid "Disable"
|
|||
msgstr "Malŝalti"
|
||||
|
||||
#: src/Module/Admin/Addons/Details.php:75
|
||||
#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351
|
||||
#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:341
|
||||
msgid "Enable"
|
||||
msgstr "Ŝalti"
|
||||
|
||||
|
|
@ -4058,7 +4058,7 @@ msgstr ""
|
|||
#: 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:307
|
||||
#: src/Module/Settings/Features.php:61
|
||||
msgid "Save Settings"
|
||||
msgstr ""
|
||||
|
|
@ -4437,11 +4437,11 @@ msgstr ""
|
|||
msgid "%s is no valid input for maximum image size"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:212
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:206
|
||||
msgid "No special theme for mobile devices"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:222
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:216
|
||||
#, php-format
|
||||
msgid "%s - (Experimental)"
|
||||
msgstr ""
|
||||
|
|
@ -5518,7 +5518,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:315
|
||||
#: src/Module/Settings/Display.php:259
|
||||
#: src/Module/Settings/Display.php:249
|
||||
#: src/Module/Settings/TwoFactor/Index.php:132
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
|
@ -6151,7 +6151,7 @@ msgstr "Konsilo por novaj membroj"
|
|||
#: src/Module/Contact.php:537 src/Module/Conversation/Channel.php:98
|
||||
#: src/Module/Conversation/Community.php:91
|
||||
#: src/Module/Conversation/Network.php:295
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:605
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:606
|
||||
msgid "More"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -6340,7 +6340,7 @@ msgstr ""
|
|||
msgid "Create New Event"
|
||||
msgstr "Krei novan okazon"
|
||||
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:305
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:295
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -10230,12 +10230,12 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
|
||||
#: src/Module/Settings/Display.php:349
|
||||
#: src/Module/Settings/Display.php:339
|
||||
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:340
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:123
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
|
@ -10671,213 +10671,215 @@ msgstr "Eblaj Delegitoj"
|
|||
msgid "No entries."
|
||||
msgstr "Neniom da afiŝoj."
|
||||
|
||||
#: src/Module/Settings/Display.php:180
|
||||
#: src/Module/Settings/Display.php:174
|
||||
msgid "The theme you chose isn't available."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:220
|
||||
#: src/Module/Settings/Display.php:214
|
||||
#, php-format
|
||||
msgid "%s - (Unsupported)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:260
|
||||
#: src/Module/Settings/Display.php:250
|
||||
msgid "Color/Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:261 view/theme/frio/php/scheme.php:95
|
||||
#: src/Module/Settings/Display.php:251 view/theme/frio/php/scheme.php:95
|
||||
msgid "Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:262
|
||||
#: src/Module/Settings/Display.php:252
|
||||
msgid "Color/White"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:263
|
||||
#: src/Module/Settings/Display.php:253
|
||||
msgid "White"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:268
|
||||
#: src/Module/Settings/Display.php:258
|
||||
msgid "No preview"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:269
|
||||
#: src/Module/Settings/Display.php:259
|
||||
msgid "No image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:270
|
||||
#: src/Module/Settings/Display.php:260
|
||||
msgid "Small Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:271
|
||||
#: src/Module/Settings/Display.php:261
|
||||
msgid "Large Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:316
|
||||
#: src/Module/Settings/Display.php:306
|
||||
msgid "Display Settings"
|
||||
msgstr "Ekranagordoj"
|
||||
|
||||
#: src/Module/Settings/Display.php:318
|
||||
#: src/Module/Settings/Display.php:308
|
||||
msgid "General Theme Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:319
|
||||
#: src/Module/Settings/Display.php:309
|
||||
msgid "Custom Theme Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:320
|
||||
#: src/Module/Settings/Display.php:310
|
||||
msgid "Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:321 view/theme/duepuntozero/config.php:74
|
||||
#: src/Module/Settings/Display.php:311 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 "Agordoj pri la etoso"
|
||||
|
||||
#: src/Module/Settings/Display.php:322
|
||||
#: src/Module/Settings/Display.php:312
|
||||
msgid "Timelines"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:329
|
||||
#: src/Module/Settings/Display.php:319
|
||||
msgid "Display Theme:"
|
||||
msgstr "Vidiga etoso:"
|
||||
|
||||
#: src/Module/Settings/Display.php:330
|
||||
#: src/Module/Settings/Display.php:320
|
||||
msgid "Mobile Theme:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:333
|
||||
#: src/Module/Settings/Display.php:323
|
||||
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:323 src/Module/Settings/Display.php:324
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr "Maksimume 100 eroj"
|
||||
|
||||
#: src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:324
|
||||
msgid "Number of items to display per page when viewed from mobile device:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr "Ĝisdatigu retesplorilon ĉiu xxx sekundoj"
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Minimum of 10 seconds. Enter -1 to disable it."
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid "Regularly update the page content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid ""
|
||||
"When enabled, new content on network, community and channels are added on "
|
||||
"top."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "Display emoticons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "When enabled, emoticons are replaced with matching symbols."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Infinite scroll"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Automatic fetch new items when reaching the page end."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable Smart Threading"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable the automatic suppression of extraneous thread indentation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid "Display the Dislike feature"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid ""
|
||||
"Display the Dislike button and dislike reactions on posts and comments."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
msgid "Display the resharer"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
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:331
|
||||
msgid "Stay local"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:341
|
||||
#: src/Module/Settings/Display.php:331
|
||||
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:332
|
||||
msgid "Show the post deletion checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:342
|
||||
#: src/Module/Settings/Display.php:332
|
||||
msgid "Display the checkbox for the post deletion on the network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "DIsplay the event list"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "Display the birthday reminder and event list on the network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
msgid "Link preview mode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
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:335
|
||||
msgid "Hide pictures with empty alternative text"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:345
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Don't display pictures that are missing the alternative text."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Hide custom emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Don't display custom emojis."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Platform icons style"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Style of the platform icons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:352
|
||||
#: src/Module/Settings/Display.php:342
|
||||
msgid "Bookmark"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:354
|
||||
#: src/Module/Settings/Display.php:344
|
||||
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:346
|
||||
msgid "Channel languages:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:356
|
||||
#: src/Module/Settings/Display.php:346
|
||||
msgid ""
|
||||
"Select all the languages you want to see in your channels. \"Unspecified\" "
|
||||
"describes all posts for which no language information was detected (e.g. "
|
||||
|
|
@ -10886,11 +10888,11 @@ msgid ""
|
|||
"list."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:358
|
||||
#: src/Module/Settings/Display.php:348
|
||||
msgid "Beginning of week:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:359
|
||||
#: src/Module/Settings/Display.php:349
|
||||
msgid "Default calendar view:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -12538,97 +12540,97 @@ msgstr "Muro-al-Muro"
|
|||
msgid "via Wall-To-Wall:"
|
||||
msgstr "per Muro-al-Muro:"
|
||||
|
||||
#: src/Object/Post.php:602
|
||||
#: src/Object/Post.php:603
|
||||
#, php-format
|
||||
msgid "Reply to %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:624
|
||||
#: src/Object/Post.php:625
|
||||
msgid "Notifier task is pending"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:625
|
||||
#: src/Object/Post.php:626
|
||||
msgid "Delivery to remote servers is pending"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:626
|
||||
#: src/Object/Post.php:627
|
||||
msgid "Delivery to remote servers is underway"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:627
|
||||
#: src/Object/Post.php:628
|
||||
msgid "Delivery to remote servers is mostly done"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:628
|
||||
#: src/Object/Post.php:629
|
||||
msgid "Delivery to remote servers is done"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:650
|
||||
#: src/Object/Post.php:651
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
msgstr[0] "%d komento"
|
||||
msgstr[1] "%d komentoj"
|
||||
|
||||
#: src/Object/Post.php:651
|
||||
#: src/Object/Post.php:652
|
||||
msgid "Show more"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:652
|
||||
#: src/Object/Post.php:653
|
||||
msgid "Show fewer"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:689
|
||||
#: src/Object/Post.php:690
|
||||
#, php-format
|
||||
msgid "Reshared by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:694
|
||||
#: src/Object/Post.php:695
|
||||
#, php-format
|
||||
msgid "Viewed by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:699
|
||||
#: src/Object/Post.php:700
|
||||
#, php-format
|
||||
msgid "Read by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:704
|
||||
#: src/Object/Post.php:705
|
||||
#, php-format
|
||||
msgid "Liked by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:709
|
||||
#: src/Object/Post.php:710
|
||||
#, php-format
|
||||
msgid "Disliked by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:714
|
||||
#: src/Object/Post.php:715
|
||||
#, php-format
|
||||
msgid "Attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:719
|
||||
#: src/Object/Post.php:720
|
||||
#, php-format
|
||||
msgid "Maybe attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:724
|
||||
#: src/Object/Post.php:725
|
||||
#, php-format
|
||||
msgid "Not attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:729
|
||||
#: src/Object/Post.php:730
|
||||
#, php-format
|
||||
msgid "Commented by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:734
|
||||
#: src/Object/Post.php:735
|
||||
#, php-format
|
||||
msgid "Reacted with %s by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:757
|
||||
#: src/Object/Post.php:758
|
||||
#, php-format
|
||||
msgid "Quote shared by: %s"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -696,7 +696,6 @@ $a->strings['Display Settings'] = 'Ekranagordoj';
|
|||
$a->strings['Theme settings'] = 'Agordoj pri la etoso';
|
||||
$a->strings['Display Theme:'] = 'Vidiga etoso:';
|
||||
$a->strings['Maximum of 100 items'] = 'Maksimume 100 eroj';
|
||||
$a->strings['Update browser every xx seconds'] = 'Ĝisdatigu retesplorilon ĉiu xxx sekundoj';
|
||||
$a->strings['Connected Apps'] = 'Konektitaj Programoj';
|
||||
$a->strings['Remove authorization'] = 'Forviŝi rajtigon';
|
||||
$a->strings['(click to open/close)'] = '(klaku por malfermi/fermi)';
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-05 22:44+0000\n"
|
||||
"POT-Creation-Date: 2025-02-09 20:13+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"
|
||||
|
|
@ -70,7 +70,7 @@ msgstr "Elementi ei leitud"
|
|||
#: 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/Display.php:188
|
||||
#: src/Module/Settings/Profile/Photo/Crop.php:148
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:96
|
||||
#: src/Module/Settings/RemoveMe.php:103 src/Module/Settings/UserExport.php:64
|
||||
|
|
@ -291,7 +291,7 @@ msgstr "Lisa hüperlink"
|
|||
#: mod/message.php:188 mod/message.php:344 mod/photos.php:1252
|
||||
#: 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:607
|
||||
#: src/Object/Post.php:608
|
||||
msgid "Please wait"
|
||||
msgstr "Palun oota"
|
||||
|
||||
|
|
@ -314,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:1148 view/theme/duepuntozero/config.php:73
|
||||
#: src/Object/Post.php:1149 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"
|
||||
|
|
@ -600,25 +600,25 @@ msgstr "Pööra CCW (vasakule)"
|
|||
|
||||
#: mod/photos.php:1090 mod/photos.php:1146 mod/photos.php:1226
|
||||
#: src/Module/Contact.php:599 src/Module/Item/Compose.php:184
|
||||
#: src/Object/Post.php:1145
|
||||
#: src/Object/Post.php:1146
|
||||
msgid "This is you"
|
||||
msgstr "See oled sina"
|
||||
|
||||
#: mod/photos.php:1092 mod/photos.php:1148 mod/photos.php:1228
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:601
|
||||
#: src/Object/Post.php:1147
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:602
|
||||
#: src/Object/Post.php:1148
|
||||
msgid "Comment"
|
||||
msgstr "Kommentaar"
|
||||
|
||||
#: mod/photos.php:1094 mod/photos.php:1150 mod/photos.php:1230
|
||||
#: 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:1161
|
||||
#: src/Object/Post.php:1162
|
||||
msgid "Preview"
|
||||
msgstr "Eelvaade"
|
||||
|
||||
#: mod/photos.php:1095 src/Content/Conversation.php:357
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1149
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1150
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -660,112 +660,112 @@ msgstr "Kaart"
|
|||
msgid "Apologies but the website is unavailable at the moment."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:247
|
||||
#: src/App/Page.php:236
|
||||
msgid "Delete this item?"
|
||||
msgstr "Kustutada see element?"
|
||||
|
||||
#: src/App/Page.php:248
|
||||
#: 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:249
|
||||
#: 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:250
|
||||
#: src/App/Page.php:239
|
||||
msgid "Collapse this author's posts?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:251
|
||||
#: src/App/Page.php:240
|
||||
msgid "Ignore this author's server?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:252 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:254
|
||||
#: src/App/Page.php:243
|
||||
msgid "Like not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:255
|
||||
#: src/App/Page.php:244
|
||||
msgid "Dislike not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:256
|
||||
#: src/App/Page.php:245
|
||||
msgid "Sharing not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:257
|
||||
#: src/App/Page.php:246
|
||||
msgid "Attendance unsuccessful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:258
|
||||
#: src/App/Page.php:247
|
||||
msgid "Backend error"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:259
|
||||
#: src/App/Page.php:248
|
||||
msgid "Network error"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:262
|
||||
#: src/App/Page.php:251
|
||||
msgid "Drop files here to upload"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:263
|
||||
#: src/App/Page.php:252
|
||||
msgid "Your browser does not support drag and drop file uploads."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:264
|
||||
#: 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:265
|
||||
#: src/App/Page.php:254
|
||||
msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:266
|
||||
#: src/App/Page.php:255
|
||||
msgid "You can't upload files of this type."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:267
|
||||
#: src/App/Page.php:256
|
||||
msgid "Server responded with {{statusCode}} code."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:268
|
||||
#: src/App/Page.php:257
|
||||
msgid "Cancel upload"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:269
|
||||
#: src/App/Page.php:258
|
||||
msgid "Upload canceled."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:270
|
||||
#: src/App/Page.php:259
|
||||
msgid "Are you sure you want to cancel this upload?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:271
|
||||
#: src/App/Page.php:260
|
||||
msgid "Remove file"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:272
|
||||
#: src/App/Page.php:261
|
||||
msgid "You can't upload any more files."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:356
|
||||
#: src/App/Page.php:345
|
||||
msgid "toggle mobile"
|
||||
msgstr "vaheta mobiilseks"
|
||||
|
||||
#: src/App/Page.php:367 src/Module/Admin/Logs/View.php:92
|
||||
#: src/App/Page.php:356 src/Module/Admin/Logs/View.php:92
|
||||
#: view/theme/frio/php/minimal.php:39 view/theme/frio/php/standard.php:138
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
|
@ -1258,7 +1258,7 @@ msgid "Visible to <strong>everybody</strong>"
|
|||
msgstr ""
|
||||
|
||||
#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196
|
||||
#: src/Object/Post.php:1160
|
||||
#: src/Object/Post.php:1161
|
||||
msgid "Please enter a image/video/audio/webpage URL:"
|
||||
msgstr "Palun sisesta pildi/video/audio/veebilehe URL:"
|
||||
|
||||
|
|
@ -1303,52 +1303,52 @@ msgid "attach file"
|
|||
msgstr "manusta fail"
|
||||
|
||||
#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1150
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1151
|
||||
msgid "Bold"
|
||||
msgstr "Rasvane"
|
||||
|
||||
#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1151
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1152
|
||||
msgid "Italic"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1152
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1153
|
||||
msgid "Underline"
|
||||
msgstr "Allajoonitud"
|
||||
|
||||
#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1154
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1155
|
||||
msgid "Quote"
|
||||
msgstr "Tsitaat"
|
||||
|
||||
#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1155
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1156
|
||||
msgid "Add emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191
|
||||
#: src/Object/Post.php:1153
|
||||
#: src/Object/Post.php:1154
|
||||
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:1156
|
||||
#: src/Module/Post/Edit.php:167 src/Object/Post.php:1157
|
||||
msgid "Code"
|
||||
msgstr "Kood"
|
||||
|
||||
#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193
|
||||
#: src/Object/Post.php:1157
|
||||
#: src/Object/Post.php:1158
|
||||
msgid "Image"
|
||||
msgstr "Pilt"
|
||||
|
||||
#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1158
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1159
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1159
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1160
|
||||
msgid "Link or Media"
|
||||
msgstr "Link või meediafail"
|
||||
|
||||
|
|
@ -1522,7 +1522,7 @@ msgstr "Kategooriad:"
|
|||
msgid "Filed under:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:558
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:559
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr ""
|
||||
|
|
@ -1782,7 +1782,7 @@ msgstr ""
|
|||
|
||||
#: src/Content/Feature.php:131 src/Content/Widget.php:610
|
||||
#: src/Module/Admin/Site.php:463 src/Module/BaseSettings.php:113
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:323
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:313
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1957,7 +1957,7 @@ msgstr ""
|
|||
msgid "Languages"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:585
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:586
|
||||
msgid "Search Text"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2050,7 +2050,7 @@ msgstr ""
|
|||
#: src/Content/Nav.php:229 src/Content/Nav.php:289
|
||||
#: 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:225
|
||||
#: src/Module/Settings/Display.php:314 view/theme/frio/theme.php:225
|
||||
#: view/theme/frio/theme.php:229
|
||||
msgid "Calendar"
|
||||
msgstr "Kalender"
|
||||
|
|
@ -2938,37 +2938,37 @@ msgid "%s (%s)"
|
|||
msgstr ""
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:416
|
||||
#: src/Module/Settings/Display.php:292
|
||||
#: src/Module/Settings/Display.php:282
|
||||
msgid "Monday"
|
||||
msgstr "Esmaspäev"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:417
|
||||
#: src/Module/Settings/Display.php:293
|
||||
#: src/Module/Settings/Display.php:283
|
||||
msgid "Tuesday"
|
||||
msgstr "Teisipäev"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:418
|
||||
#: src/Module/Settings/Display.php:294
|
||||
#: src/Module/Settings/Display.php:284
|
||||
msgid "Wednesday"
|
||||
msgstr "Kolmapäev"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:419
|
||||
#: src/Module/Settings/Display.php:295
|
||||
#: src/Module/Settings/Display.php:285
|
||||
msgid "Thursday"
|
||||
msgstr "Neljapäev"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:420
|
||||
#: src/Module/Settings/Display.php:296
|
||||
#: src/Module/Settings/Display.php:286
|
||||
msgid "Friday"
|
||||
msgstr "Reede"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:421
|
||||
#: src/Module/Settings/Display.php:297
|
||||
#: src/Module/Settings/Display.php:287
|
||||
msgid "Saturday"
|
||||
msgstr "Laupäev"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:415
|
||||
#: src/Module/Settings/Display.php:291
|
||||
#: src/Module/Settings/Display.php:281
|
||||
msgid "Sunday"
|
||||
msgstr "Pühapäev"
|
||||
|
||||
|
|
@ -3421,17 +3421,17 @@ msgid "today"
|
|||
msgstr "täna"
|
||||
|
||||
#: src/Model/Event.php:449 src/Module/Calendar/Show.php:117
|
||||
#: src/Module/Settings/Display.php:302 src/Util/Temporal.php:343
|
||||
#: src/Module/Settings/Display.php:292 src/Util/Temporal.php:343
|
||||
msgid "month"
|
||||
msgstr "kuu"
|
||||
|
||||
#: src/Model/Event.php:450 src/Module/Calendar/Show.php:118
|
||||
#: src/Module/Settings/Display.php:303 src/Util/Temporal.php:344
|
||||
#: src/Module/Settings/Display.php:293 src/Util/Temporal.php:344
|
||||
msgid "week"
|
||||
msgstr "nädal"
|
||||
|
||||
#: src/Model/Event.php:451 src/Module/Calendar/Show.php:119
|
||||
#: src/Module/Settings/Display.php:304 src/Util/Temporal.php:345
|
||||
#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:345
|
||||
msgid "day"
|
||||
msgstr "päev"
|
||||
|
||||
|
|
@ -4004,7 +4004,7 @@ 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/Themes/Details.php:41 src/Module/Settings/Display.php:341
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -4055,7 +4055,7 @@ msgstr ""
|
|||
#: 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:307
|
||||
#: src/Module/Settings/Features.php:61
|
||||
msgid "Save Settings"
|
||||
msgstr "Salvesta Sätted"
|
||||
|
|
@ -4434,11 +4434,11 @@ msgstr ""
|
|||
msgid "%s is no valid input for maximum image size"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:212
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:206
|
||||
msgid "No special theme for mobile devices"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:222
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:216
|
||||
#, php-format
|
||||
msgid "%s - (Experimental)"
|
||||
msgstr ""
|
||||
|
|
@ -5515,7 +5515,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:315
|
||||
#: src/Module/Settings/Display.php:259
|
||||
#: src/Module/Settings/Display.php:249
|
||||
#: src/Module/Settings/TwoFactor/Index.php:132
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
|
@ -6148,7 +6148,7 @@ msgstr "Näpunäiteid uutele liikmetele"
|
|||
#: src/Module/Contact.php:537 src/Module/Conversation/Channel.php:98
|
||||
#: src/Module/Conversation/Community.php:91
|
||||
#: src/Module/Conversation/Network.php:295
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:605
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:606
|
||||
msgid "More"
|
||||
msgstr "Rohkem"
|
||||
|
||||
|
|
@ -6337,7 +6337,7 @@ msgstr "Vaade"
|
|||
msgid "Create New Event"
|
||||
msgstr "Loo uus sündmus"
|
||||
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:305
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:295
|
||||
msgid "list"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -10227,12 +10227,12 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
|
||||
#: src/Module/Settings/Display.php:349
|
||||
#: src/Module/Settings/Display.php:339
|
||||
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:340
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:123
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
|
@ -10668,213 +10668,215 @@ msgstr "Potsentsiaalsed lehe Delegaadid"
|
|||
msgid "No entries."
|
||||
msgstr "Kirjeid pole."
|
||||
|
||||
#: src/Module/Settings/Display.php:180
|
||||
#: src/Module/Settings/Display.php:174
|
||||
msgid "The theme you chose isn't available."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:220
|
||||
#: src/Module/Settings/Display.php:214
|
||||
#, php-format
|
||||
msgid "%s - (Unsupported)"
|
||||
msgstr "%s - (Pole toetatud)"
|
||||
|
||||
#: src/Module/Settings/Display.php:260
|
||||
#: src/Module/Settings/Display.php:250
|
||||
msgid "Color/Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:261 view/theme/frio/php/scheme.php:95
|
||||
#: src/Module/Settings/Display.php:251 view/theme/frio/php/scheme.php:95
|
||||
msgid "Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:262
|
||||
#: src/Module/Settings/Display.php:252
|
||||
msgid "Color/White"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:263
|
||||
#: src/Module/Settings/Display.php:253
|
||||
msgid "White"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:268
|
||||
#: src/Module/Settings/Display.php:258
|
||||
msgid "No preview"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:269
|
||||
#: src/Module/Settings/Display.php:259
|
||||
msgid "No image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:270
|
||||
#: src/Module/Settings/Display.php:260
|
||||
msgid "Small Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:271
|
||||
#: src/Module/Settings/Display.php:261
|
||||
msgid "Large Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:316
|
||||
#: src/Module/Settings/Display.php:306
|
||||
msgid "Display Settings"
|
||||
msgstr "Kuvasätted"
|
||||
|
||||
#: src/Module/Settings/Display.php:318
|
||||
#: src/Module/Settings/Display.php:308
|
||||
msgid "General Theme Settings"
|
||||
msgstr "Üldised teemasätted"
|
||||
|
||||
#: src/Module/Settings/Display.php:319
|
||||
#: src/Module/Settings/Display.php:309
|
||||
msgid "Custom Theme Settings"
|
||||
msgstr "Kohandatud teema sätted"
|
||||
|
||||
#: src/Module/Settings/Display.php:320
|
||||
#: src/Module/Settings/Display.php:310
|
||||
msgid "Content Settings"
|
||||
msgstr "Sisu sätted"
|
||||
|
||||
#: src/Module/Settings/Display.php:321 view/theme/duepuntozero/config.php:74
|
||||
#: src/Module/Settings/Display.php:311 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 "Teema sätted"
|
||||
|
||||
#: src/Module/Settings/Display.php:322
|
||||
#: src/Module/Settings/Display.php:312
|
||||
msgid "Timelines"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:329
|
||||
#: src/Module/Settings/Display.php:319
|
||||
msgid "Display Theme:"
|
||||
msgstr "Kuvatateema:"
|
||||
|
||||
#: src/Module/Settings/Display.php:330
|
||||
#: src/Module/Settings/Display.php:320
|
||||
msgid "Mobile Theme:"
|
||||
msgstr "Mobiilne teema:"
|
||||
|
||||
#: src/Module/Settings/Display.php:333
|
||||
#: src/Module/Settings/Display.php:323
|
||||
msgid "Number of items to display per page:"
|
||||
msgstr "Elementide arv, mida lehel kuvatakse:"
|
||||
|
||||
#: src/Module/Settings/Display.php:333 src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:323 src/Module/Settings/Display.php:324
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr "Maksimaalselt 100 elementi"
|
||||
|
||||
#: src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:324
|
||||
msgid "Number of items to display per page when viewed from mobile device:"
|
||||
msgstr "Mobiilse seadme puhul lehel kuvatav elementide arv:"
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr "Värskenda sirviku sisu iga xx sekundi tagant"
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid "Regularly update the page content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Minimum of 10 seconds. Enter -1 to disable it."
|
||||
msgstr "Miinimum on 10 sekundit. Sisesta -1 väljalülitamiseks. "
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid ""
|
||||
"When enabled, new content on network, community and channels are added on "
|
||||
"top."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "Display emoticons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "When enabled, emoticons are replaced with matching symbols."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Infinite scroll"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Automatic fetch new items when reaching the page end."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable Smart Threading"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable the automatic suppression of extraneous thread indentation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid "Display the Dislike feature"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid ""
|
||||
"Display the Dislike button and dislike reactions on posts and comments."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
msgid "Display the resharer"
|
||||
msgstr "Kuva taasjagaja"
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
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:331
|
||||
msgid "Stay local"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:341
|
||||
#: src/Module/Settings/Display.php:331
|
||||
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:332
|
||||
msgid "Show the post deletion checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:342
|
||||
#: src/Module/Settings/Display.php:332
|
||||
msgid "Display the checkbox for the post deletion on the network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "DIsplay the event list"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "Display the birthday reminder and event list on the network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
msgid "Link preview mode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
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:335
|
||||
msgid "Hide pictures with empty alternative text"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:345
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Don't display pictures that are missing the alternative text."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Hide custom emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Don't display custom emojis."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Platform icons style"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Style of the platform icons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:352
|
||||
#: src/Module/Settings/Display.php:342
|
||||
msgid "Bookmark"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:354
|
||||
#: src/Module/Settings/Display.php:344
|
||||
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:346
|
||||
msgid "Channel languages:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:356
|
||||
#: src/Module/Settings/Display.php:346
|
||||
msgid ""
|
||||
"Select all the languages you want to see in your channels. \"Unspecified\" "
|
||||
"describes all posts for which no language information was detected (e.g. "
|
||||
|
|
@ -10883,11 +10885,11 @@ msgid ""
|
|||
"list."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:358
|
||||
#: src/Module/Settings/Display.php:348
|
||||
msgid "Beginning of week:"
|
||||
msgstr "Nädala algus:"
|
||||
|
||||
#: src/Module/Settings/Display.php:359
|
||||
#: src/Module/Settings/Display.php:349
|
||||
msgid "Default calendar view:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -12535,97 +12537,97 @@ msgstr "Seinalt Seinale"
|
|||
msgid "via Wall-To-Wall:"
|
||||
msgstr "läbi Seinalt Seinale:"
|
||||
|
||||
#: src/Object/Post.php:602
|
||||
#: src/Object/Post.php:603
|
||||
#, php-format
|
||||
msgid "Reply to %s"
|
||||
msgstr "Vasta %s le"
|
||||
|
||||
#: src/Object/Post.php:624
|
||||
#: src/Object/Post.php:625
|
||||
msgid "Notifier task is pending"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:625
|
||||
#: src/Object/Post.php:626
|
||||
msgid "Delivery to remote servers is pending"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:626
|
||||
#: src/Object/Post.php:627
|
||||
msgid "Delivery to remote servers is underway"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:627
|
||||
#: src/Object/Post.php:628
|
||||
msgid "Delivery to remote servers is mostly done"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:628
|
||||
#: src/Object/Post.php:629
|
||||
msgid "Delivery to remote servers is done"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:650
|
||||
#: src/Object/Post.php:651
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Object/Post.php:651
|
||||
#: src/Object/Post.php:652
|
||||
msgid "Show more"
|
||||
msgstr "Näita rohkem "
|
||||
|
||||
#: src/Object/Post.php:652
|
||||
#: src/Object/Post.php:653
|
||||
msgid "Show fewer"
|
||||
msgstr "Näita vähem"
|
||||
|
||||
#: src/Object/Post.php:689
|
||||
#: src/Object/Post.php:690
|
||||
#, php-format
|
||||
msgid "Reshared by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:694
|
||||
#: src/Object/Post.php:695
|
||||
#, php-format
|
||||
msgid "Viewed by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:699
|
||||
#: src/Object/Post.php:700
|
||||
#, php-format
|
||||
msgid "Read by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:704
|
||||
#: src/Object/Post.php:705
|
||||
#, php-format
|
||||
msgid "Liked by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:709
|
||||
#: src/Object/Post.php:710
|
||||
#, php-format
|
||||
msgid "Disliked by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:714
|
||||
#: src/Object/Post.php:715
|
||||
#, php-format
|
||||
msgid "Attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:719
|
||||
#: src/Object/Post.php:720
|
||||
#, php-format
|
||||
msgid "Maybe attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:724
|
||||
#: src/Object/Post.php:725
|
||||
#, php-format
|
||||
msgid "Not attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:729
|
||||
#: src/Object/Post.php:730
|
||||
#, php-format
|
||||
msgid "Commented by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:734
|
||||
#: src/Object/Post.php:735
|
||||
#, php-format
|
||||
msgid "Reacted with %s by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:757
|
||||
#: src/Object/Post.php:758
|
||||
#, php-format
|
||||
msgid "Quote shared by: %s"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -760,8 +760,6 @@ $a->strings['Mobile Theme:'] = 'Mobiilne teema:';
|
|||
$a->strings['Number of items to display per page:'] = 'Elementide arv, mida lehel kuvatakse:';
|
||||
$a->strings['Maximum of 100 items'] = 'Maksimaalselt 100 elementi';
|
||||
$a->strings['Number of items to display per page when viewed from mobile device:'] = 'Mobiilse seadme puhul lehel kuvatav elementide arv:';
|
||||
$a->strings['Update browser every xx seconds'] = 'Värskenda sirviku sisu iga xx sekundi tagant';
|
||||
$a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Miinimum on 10 sekundit. Sisesta -1 väljalülitamiseks. ';
|
||||
$a->strings['Display the resharer'] = 'Kuva taasjagaja';
|
||||
$a->strings['Beginning of week:'] = 'Nädala algus:';
|
||||
$a->strings['Additional Features'] = 'Lisafunktsioonid';
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-05 22:44+0000\n"
|
||||
"POT-Creation-Date: 2025-02-09 20:13+0000\n"
|
||||
"PO-Revision-Date: 2011-05-05 10:19+0000\n"
|
||||
"Last-Translator: M33, 2025\n"
|
||||
"Language-Team: French (http://app.transifex.com/Friendica/friendica/language/fr/)\n"
|
||||
|
|
@ -99,7 +99,7 @@ msgstr "Élément introuvable."
|
|||
#: 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/Display.php:188
|
||||
#: src/Module/Settings/Profile/Photo/Crop.php:148
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:96
|
||||
#: src/Module/Settings/RemoveMe.php:103 src/Module/Settings/UserExport.php:64
|
||||
|
|
@ -320,7 +320,7 @@ msgstr "Insérer lien web"
|
|||
#: mod/message.php:188 mod/message.php:344 mod/photos.php:1252
|
||||
#: 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:607
|
||||
#: src/Object/Post.php:608
|
||||
msgid "Please wait"
|
||||
msgstr "Patientez"
|
||||
|
||||
|
|
@ -343,7 +343,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:1148 view/theme/duepuntozero/config.php:73
|
||||
#: src/Object/Post.php:1149 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"
|
||||
|
|
@ -630,25 +630,25 @@ msgstr "Tourner dans le sens contraire des aiguilles d'une montre (vers la gauch
|
|||
|
||||
#: mod/photos.php:1090 mod/photos.php:1146 mod/photos.php:1226
|
||||
#: src/Module/Contact.php:599 src/Module/Item/Compose.php:184
|
||||
#: src/Object/Post.php:1145
|
||||
#: src/Object/Post.php:1146
|
||||
msgid "This is you"
|
||||
msgstr "C'est vous"
|
||||
|
||||
#: mod/photos.php:1092 mod/photos.php:1148 mod/photos.php:1228
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:601
|
||||
#: src/Object/Post.php:1147
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:602
|
||||
#: src/Object/Post.php:1148
|
||||
msgid "Comment"
|
||||
msgstr "Commenter"
|
||||
|
||||
#: mod/photos.php:1094 mod/photos.php:1150 mod/photos.php:1230
|
||||
#: 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:1161
|
||||
#: src/Object/Post.php:1162
|
||||
msgid "Preview"
|
||||
msgstr "Aperçu"
|
||||
|
||||
#: mod/photos.php:1095 src/Content/Conversation.php:357
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1149
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1150
|
||||
msgid "Loading..."
|
||||
msgstr "Chargement en cours..."
|
||||
|
||||
|
|
@ -690,112 +690,112 @@ msgstr "Carte"
|
|||
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:247
|
||||
#: src/App/Page.php:236
|
||||
msgid "Delete this item?"
|
||||
msgstr "Effacer cet élément?"
|
||||
|
||||
#: src/App/Page.php:248
|
||||
#: 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 "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:249
|
||||
#: src/App/Page.php:238
|
||||
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:250
|
||||
#: src/App/Page.php:239
|
||||
msgid "Collapse this author's posts?"
|
||||
msgstr "Réduire les publications de cet auteur ?"
|
||||
|
||||
#: src/App/Page.php:251
|
||||
#: src/App/Page.php:240
|
||||
msgid "Ignore this author's server?"
|
||||
msgstr "Ignorer le serveur de cet auteur ?"
|
||||
|
||||
#: src/App/Page.php:252 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 "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:254
|
||||
#: src/App/Page.php:243
|
||||
msgid "Like not successful"
|
||||
msgstr "Erreur lors du \"Aime\""
|
||||
|
||||
#: src/App/Page.php:255
|
||||
#: src/App/Page.php:244
|
||||
msgid "Dislike not successful"
|
||||
msgstr "Erreur lors du \"N'aime pas\""
|
||||
|
||||
#: src/App/Page.php:256
|
||||
#: src/App/Page.php:245
|
||||
msgid "Sharing not successful"
|
||||
msgstr "Erreur lors du \"Partager\""
|
||||
|
||||
#: src/App/Page.php:257
|
||||
#: src/App/Page.php:246
|
||||
msgid "Attendance unsuccessful"
|
||||
msgstr "Erreur lors du \"Participer\""
|
||||
|
||||
#: src/App/Page.php:258
|
||||
#: src/App/Page.php:247
|
||||
msgid "Backend error"
|
||||
msgstr "Erreur backend"
|
||||
|
||||
#: src/App/Page.php:259
|
||||
#: src/App/Page.php:248
|
||||
msgid "Network error"
|
||||
msgstr "Erreur réseau"
|
||||
|
||||
#: src/App/Page.php:262
|
||||
#: src/App/Page.php:251
|
||||
msgid "Drop files here to upload"
|
||||
msgstr "Déposer des fichiers ici pour les envoyer"
|
||||
|
||||
#: src/App/Page.php:263
|
||||
#: src/App/Page.php:252
|
||||
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:264
|
||||
#: src/App/Page.php:253
|
||||
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:265
|
||||
#: src/App/Page.php:254
|
||||
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:266
|
||||
#: src/App/Page.php:255
|
||||
msgid "You can't upload files of this type."
|
||||
msgstr "Vous ne pouvez pas envoyer des fichiers de ce type."
|
||||
|
||||
#: src/App/Page.php:267
|
||||
#: src/App/Page.php:256
|
||||
msgid "Server responded with {{statusCode}} code."
|
||||
msgstr "Le serveur a répondu avec un code {{statusCode}}."
|
||||
|
||||
#: src/App/Page.php:268
|
||||
#: src/App/Page.php:257
|
||||
msgid "Cancel upload"
|
||||
msgstr "Annuler l'envoi"
|
||||
|
||||
#: src/App/Page.php:269
|
||||
#: src/App/Page.php:258
|
||||
msgid "Upload canceled."
|
||||
msgstr "Envoi annulé."
|
||||
|
||||
#: src/App/Page.php:270
|
||||
#: src/App/Page.php:259
|
||||
msgid "Are you sure you want to cancel this upload?"
|
||||
msgstr "Êtes-vous sûr de vouloir annuler cet envoi ?"
|
||||
|
||||
#: src/App/Page.php:271
|
||||
#: src/App/Page.php:260
|
||||
msgid "Remove file"
|
||||
msgstr "Supprimer le fichier"
|
||||
|
||||
#: src/App/Page.php:272
|
||||
#: src/App/Page.php:261
|
||||
msgid "You can't upload any more files."
|
||||
msgstr "Vous ne pouvez plus envoyer de fichiers."
|
||||
|
||||
#: src/App/Page.php:356
|
||||
#: src/App/Page.php:345
|
||||
msgid "toggle mobile"
|
||||
msgstr "activ. mobile"
|
||||
|
||||
#: src/App/Page.php:367 src/Module/Admin/Logs/View.php:92
|
||||
#: src/App/Page.php:356 src/Module/Admin/Logs/View.php:92
|
||||
#: view/theme/frio/php/minimal.php:39 view/theme/frio/php/standard.php:138
|
||||
msgid "Close"
|
||||
msgstr "Fermer"
|
||||
|
|
@ -1300,7 +1300,7 @@ msgid "Visible to <strong>everybody</strong>"
|
|||
msgstr "Visible par <strong>tout le monde</strong>"
|
||||
|
||||
#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196
|
||||
#: src/Object/Post.php:1160
|
||||
#: src/Object/Post.php:1161
|
||||
msgid "Please enter a image/video/audio/webpage URL:"
|
||||
msgstr "Veuillez entrer une URL d'image/vidéo/page web."
|
||||
|
||||
|
|
@ -1345,52 +1345,52 @@ msgid "attach file"
|
|||
msgstr "ajout fichier"
|
||||
|
||||
#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1150
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1151
|
||||
msgid "Bold"
|
||||
msgstr "Gras"
|
||||
|
||||
#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1151
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1152
|
||||
msgid "Italic"
|
||||
msgstr "Italique"
|
||||
|
||||
#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1152
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1153
|
||||
msgid "Underline"
|
||||
msgstr "Souligné"
|
||||
|
||||
#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1154
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1155
|
||||
msgid "Quote"
|
||||
msgstr "Citation"
|
||||
|
||||
#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1155
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1156
|
||||
msgid "Add emojis"
|
||||
msgstr "Ajouter des émojis"
|
||||
|
||||
#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191
|
||||
#: src/Object/Post.php:1153
|
||||
#: src/Object/Post.php:1154
|
||||
msgid "Content Warning"
|
||||
msgstr "Avertissement de contenu"
|
||||
|
||||
#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192
|
||||
#: src/Module/Post/Edit.php:167 src/Object/Post.php:1156
|
||||
#: src/Module/Post/Edit.php:167 src/Object/Post.php:1157
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193
|
||||
#: src/Object/Post.php:1157
|
||||
#: src/Object/Post.php:1158
|
||||
msgid "Image"
|
||||
msgstr "Image"
|
||||
|
||||
#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1158
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1159
|
||||
msgid "Link"
|
||||
msgstr "Lien"
|
||||
|
||||
#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1159
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1160
|
||||
msgid "Link or Media"
|
||||
msgstr "Lien ou média"
|
||||
|
||||
|
|
@ -1564,7 +1564,7 @@ msgstr "Catégories :"
|
|||
msgid "Filed under:"
|
||||
msgstr "Rangé sous :"
|
||||
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:558
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:559
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "%s de %s"
|
||||
|
|
@ -1824,7 +1824,7 @@ msgstr "Affiche les publications des comptes du type sélectionné."
|
|||
|
||||
#: src/Content/Feature.php:131 src/Content/Widget.php:610
|
||||
#: src/Module/Admin/Site.php:463 src/Module/BaseSettings.php:113
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:323
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:313
|
||||
msgid "Channels"
|
||||
msgstr "Chaînes"
|
||||
|
||||
|
|
@ -1999,7 +1999,7 @@ msgstr "Ignorer le serveur %s"
|
|||
msgid "Languages"
|
||||
msgstr "Langues"
|
||||
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:585
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:586
|
||||
msgid "Search Text"
|
||||
msgstr "Rechercher un texte"
|
||||
|
||||
|
|
@ -2092,7 +2092,7 @@ msgstr "Vos publications avec des médias"
|
|||
#: src/Content/Nav.php:229 src/Content/Nav.php:289
|
||||
#: 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:225
|
||||
#: src/Module/Settings/Display.php:314 view/theme/frio/theme.php:225
|
||||
#: view/theme/frio/theme.php:229
|
||||
msgid "Calendar"
|
||||
msgstr "Calendrier"
|
||||
|
|
@ -2984,37 +2984,37 @@ msgid "%s (%s)"
|
|||
msgstr "%s (%s)"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:416
|
||||
#: src/Module/Settings/Display.php:292
|
||||
#: src/Module/Settings/Display.php:282
|
||||
msgid "Monday"
|
||||
msgstr "Lundi"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:417
|
||||
#: src/Module/Settings/Display.php:293
|
||||
#: src/Module/Settings/Display.php:283
|
||||
msgid "Tuesday"
|
||||
msgstr "Mardi"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:418
|
||||
#: src/Module/Settings/Display.php:294
|
||||
#: src/Module/Settings/Display.php:284
|
||||
msgid "Wednesday"
|
||||
msgstr "Mercredi"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:419
|
||||
#: src/Module/Settings/Display.php:295
|
||||
#: src/Module/Settings/Display.php:285
|
||||
msgid "Thursday"
|
||||
msgstr "Jeudi"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:420
|
||||
#: src/Module/Settings/Display.php:296
|
||||
#: src/Module/Settings/Display.php:286
|
||||
msgid "Friday"
|
||||
msgstr "Vendredi"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:421
|
||||
#: src/Module/Settings/Display.php:297
|
||||
#: src/Module/Settings/Display.php:287
|
||||
msgid "Saturday"
|
||||
msgstr "Samedi"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:415
|
||||
#: src/Module/Settings/Display.php:291
|
||||
#: src/Module/Settings/Display.php:281
|
||||
msgid "Sunday"
|
||||
msgstr "Dimanche"
|
||||
|
||||
|
|
@ -3467,17 +3467,17 @@ msgid "today"
|
|||
msgstr "aujourd'hui"
|
||||
|
||||
#: src/Model/Event.php:449 src/Module/Calendar/Show.php:117
|
||||
#: src/Module/Settings/Display.php:302 src/Util/Temporal.php:343
|
||||
#: src/Module/Settings/Display.php:292 src/Util/Temporal.php:343
|
||||
msgid "month"
|
||||
msgstr "mois"
|
||||
|
||||
#: src/Model/Event.php:450 src/Module/Calendar/Show.php:118
|
||||
#: src/Module/Settings/Display.php:303 src/Util/Temporal.php:344
|
||||
#: src/Module/Settings/Display.php:293 src/Util/Temporal.php:344
|
||||
msgid "week"
|
||||
msgstr "semaine"
|
||||
|
||||
#: src/Model/Event.php:451 src/Module/Calendar/Show.php:119
|
||||
#: src/Module/Settings/Display.php:304 src/Util/Temporal.php:345
|
||||
#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:345
|
||||
msgid "day"
|
||||
msgstr "jour"
|
||||
|
||||
|
|
@ -4056,7 +4056,7 @@ msgid "Disable"
|
|||
msgstr "Désactiver"
|
||||
|
||||
#: src/Module/Admin/Addons/Details.php:75
|
||||
#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351
|
||||
#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:341
|
||||
msgid "Enable"
|
||||
msgstr "Activer"
|
||||
|
||||
|
|
@ -4107,7 +4107,7 @@ msgstr "L'extension %s a échoué à s'installer."
|
|||
#: 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:307
|
||||
#: src/Module/Settings/Features.php:61
|
||||
msgid "Save Settings"
|
||||
msgstr "Sauvegarder les paramètres"
|
||||
|
|
@ -4494,11 +4494,11 @@ msgstr "%s n'est pas une saisie valide pour une taille de média"
|
|||
msgid "%s is no valid input for maximum image size"
|
||||
msgstr "%s n'est pas une valeur valide pour la taille maximum d'image"
|
||||
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:212
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:206
|
||||
msgid "No special theme for mobile devices"
|
||||
msgstr "Pas de thème particulier pour les terminaux mobiles"
|
||||
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:222
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:216
|
||||
#, php-format
|
||||
msgid "%s - (Experimental)"
|
||||
msgstr "%s- (expérimental)"
|
||||
|
|
@ -5575,7 +5575,7 @@ msgid ""
|
|||
msgstr "\"Tous\" signifie que toutes les conversations publiques en provenance du relai sont acceptées. \"Étiquettes\" signifie que seules les conversations comportant les étiquettes suivantes sont acceptées."
|
||||
|
||||
#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:315
|
||||
#: src/Module/Settings/Display.php:259
|
||||
#: src/Module/Settings/Display.php:249
|
||||
#: src/Module/Settings/TwoFactor/Index.php:132
|
||||
msgid "Disabled"
|
||||
msgstr "Désactivé"
|
||||
|
|
@ -6211,7 +6211,7 @@ msgstr "Conseils aux nouveaux venus"
|
|||
#: src/Module/Contact.php:537 src/Module/Conversation/Channel.php:98
|
||||
#: src/Module/Conversation/Community.php:91
|
||||
#: src/Module/Conversation/Network.php:295
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:605
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:606
|
||||
msgid "More"
|
||||
msgstr "Plus"
|
||||
|
||||
|
|
@ -6401,7 +6401,7 @@ msgstr "Vue"
|
|||
msgid "Create New Event"
|
||||
msgstr "Créer un nouvel évènement"
|
||||
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:305
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:295
|
||||
msgid "list"
|
||||
msgstr "liste"
|
||||
|
||||
|
|
@ -10313,12 +10313,12 @@ msgid ""
|
|||
msgstr "Si sélectionné, les résultats de la chaîne sont repartagés. Ceci ne fonctionne que pour les publications ActivityPub publiques ou pour les cercles définis par l'utilisateur."
|
||||
|
||||
#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
|
||||
#: src/Module/Settings/Display.php:349
|
||||
#: src/Module/Settings/Display.php:339
|
||||
msgid "Label"
|
||||
msgstr "Titre"
|
||||
|
||||
#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198
|
||||
#: src/Module/Settings/Display.php:350
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:123
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
|
@ -10754,213 +10754,215 @@ msgstr "Délégataires potentiels"
|
|||
msgid "No entries."
|
||||
msgstr "Aucune entrée."
|
||||
|
||||
#: src/Module/Settings/Display.php:180
|
||||
#: src/Module/Settings/Display.php:174
|
||||
msgid "The theme you chose isn't available."
|
||||
msgstr "Le thème que vous avez choisi n'est pas disponible."
|
||||
|
||||
#: src/Module/Settings/Display.php:220
|
||||
#: src/Module/Settings/Display.php:214
|
||||
#, php-format
|
||||
msgid "%s - (Unsupported)"
|
||||
msgstr "%s- (non supporté)"
|
||||
|
||||
#: src/Module/Settings/Display.php:260
|
||||
#: src/Module/Settings/Display.php:250
|
||||
msgid "Color/Black"
|
||||
msgstr "Couleur/Noir"
|
||||
|
||||
#: src/Module/Settings/Display.php:261 view/theme/frio/php/scheme.php:95
|
||||
#: src/Module/Settings/Display.php:251 view/theme/frio/php/scheme.php:95
|
||||
msgid "Black"
|
||||
msgstr "Noir"
|
||||
|
||||
#: src/Module/Settings/Display.php:262
|
||||
#: src/Module/Settings/Display.php:252
|
||||
msgid "Color/White"
|
||||
msgstr "Couleur/Blanc"
|
||||
|
||||
#: src/Module/Settings/Display.php:263
|
||||
#: src/Module/Settings/Display.php:253
|
||||
msgid "White"
|
||||
msgstr "Blanc"
|
||||
|
||||
#: src/Module/Settings/Display.php:268
|
||||
#: src/Module/Settings/Display.php:258
|
||||
msgid "No preview"
|
||||
msgstr "Pas d'aperçu"
|
||||
|
||||
#: src/Module/Settings/Display.php:269
|
||||
#: src/Module/Settings/Display.php:259
|
||||
msgid "No image"
|
||||
msgstr "Pas d'image"
|
||||
|
||||
#: src/Module/Settings/Display.php:270
|
||||
#: src/Module/Settings/Display.php:260
|
||||
msgid "Small Image"
|
||||
msgstr "Petite image"
|
||||
|
||||
#: src/Module/Settings/Display.php:271
|
||||
#: src/Module/Settings/Display.php:261
|
||||
msgid "Large Image"
|
||||
msgstr "Grande image"
|
||||
|
||||
#: src/Module/Settings/Display.php:316
|
||||
#: src/Module/Settings/Display.php:306
|
||||
msgid "Display Settings"
|
||||
msgstr "Affichage"
|
||||
|
||||
#: src/Module/Settings/Display.php:318
|
||||
#: src/Module/Settings/Display.php:308
|
||||
msgid "General Theme Settings"
|
||||
msgstr "Paramètres généraux de thème"
|
||||
|
||||
#: src/Module/Settings/Display.php:319
|
||||
#: src/Module/Settings/Display.php:309
|
||||
msgid "Custom Theme Settings"
|
||||
msgstr "Paramètres personnalisés de thème"
|
||||
|
||||
#: src/Module/Settings/Display.php:320
|
||||
#: src/Module/Settings/Display.php:310
|
||||
msgid "Content Settings"
|
||||
msgstr "Paramètres de contenu"
|
||||
|
||||
#: src/Module/Settings/Display.php:321 view/theme/duepuntozero/config.php:74
|
||||
#: src/Module/Settings/Display.php:311 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 "Réglages du thème graphique"
|
||||
|
||||
#: src/Module/Settings/Display.php:322
|
||||
#: src/Module/Settings/Display.php:312
|
||||
msgid "Timelines"
|
||||
msgstr "Flux"
|
||||
|
||||
#: src/Module/Settings/Display.php:329
|
||||
#: src/Module/Settings/Display.php:319
|
||||
msgid "Display Theme:"
|
||||
msgstr "Thème d'affichage:"
|
||||
|
||||
#: src/Module/Settings/Display.php:330
|
||||
#: src/Module/Settings/Display.php:320
|
||||
msgid "Mobile Theme:"
|
||||
msgstr "Thème mobile:"
|
||||
|
||||
#: src/Module/Settings/Display.php:333
|
||||
#: src/Module/Settings/Display.php:323
|
||||
msgid "Number of items to display per page:"
|
||||
msgstr "Nombre d’éléments par page :"
|
||||
|
||||
#: src/Module/Settings/Display.php:333 src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:323 src/Module/Settings/Display.php:324
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr "Maximum de 100 éléments"
|
||||
|
||||
#: src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:324
|
||||
msgid "Number of items to display per page when viewed from mobile device:"
|
||||
msgstr "Nombre d'éléments à afficher par page pour un appareil mobile"
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr "Mettre à jour l'affichage toutes les xx secondes"
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid "Regularly update the page content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Minimum of 10 seconds. Enter -1 to disable it."
|
||||
msgstr "Minimum de 10 secondes. Saisir -1 pour désactiver."
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid ""
|
||||
"When enabled, new content on network, community and channels are added on "
|
||||
"top."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "Display emoticons"
|
||||
msgstr "Afficher les émoticônes"
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "When enabled, emoticons are replaced with matching symbols."
|
||||
msgstr "Quand activé, les émoticônes sont remplacées par les symboles correspondants."
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Infinite scroll"
|
||||
msgstr "Défilement infini"
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Automatic fetch new items when reaching the page end."
|
||||
msgstr "Charge automatiquement de nouveaux contenus en bas de la page."
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable Smart Threading"
|
||||
msgstr "Activer le fil de discussion intelligent"
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable the automatic suppression of extraneous thread indentation."
|
||||
msgstr "Activer la suppression automatique de l'indentation excédentaire des fils de discussion."
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid "Display the Dislike feature"
|
||||
msgstr "Afficher la fonctionnalité \"Je n'aime pas\""
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid ""
|
||||
"Display the Dislike button and dislike reactions on posts and comments."
|
||||
msgstr "Afficher le bouton \"Je n'aime pas\" et les réactions \"Je n'aime pas\" sur les publications et les commentaires."
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
msgid "Display the resharer"
|
||||
msgstr "Afficher le partageur"
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
msgid "Display the first resharer as icon and text on a reshared item."
|
||||
msgstr "Afficher le premier partageur en tant qu'icône et texte sur un élément partagé."
|
||||
|
||||
#: src/Module/Settings/Display.php:341
|
||||
#: src/Module/Settings/Display.php:331
|
||||
msgid "Stay local"
|
||||
msgstr "Rester local"
|
||||
|
||||
#: src/Module/Settings/Display.php:341
|
||||
#: src/Module/Settings/Display.php:331
|
||||
msgid "Don't go to a remote system when following a contact link."
|
||||
msgstr "Ne pas aller sur un système distant lors du suivi du lien d'un contact."
|
||||
|
||||
#: src/Module/Settings/Display.php:342
|
||||
#: src/Module/Settings/Display.php:332
|
||||
msgid "Show the post deletion checkbox"
|
||||
msgstr "Afficher la case à cocher de suppression de publication."
|
||||
|
||||
#: src/Module/Settings/Display.php:342
|
||||
#: src/Module/Settings/Display.php:332
|
||||
msgid "Display the checkbox for the post deletion on the network page."
|
||||
msgstr "Affiche la case à cocher de suppression de publication sur la page Réseau."
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "DIsplay the event list"
|
||||
msgstr "Afficher la liste des évènements"
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "Display the birthday reminder and event list on the network page."
|
||||
msgstr "Affiche le rappel d’anniversaire et la liste des évènements sur la page Réseau."
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
msgid "Link preview mode"
|
||||
msgstr "Mode de prévisualisation des liens"
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
msgid "Appearance of the link preview that is added to each post with a link."
|
||||
msgstr "Apparence de la prévisualisation du lien qui est ajoutée à chaque publication comprenant un lien."
|
||||
|
||||
#: src/Module/Settings/Display.php:345
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Hide pictures with empty alternative text"
|
||||
msgstr "Masquer les images sans texte alternatif"
|
||||
|
||||
#: src/Module/Settings/Display.php:345
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Don't display pictures that are missing the alternative text."
|
||||
msgstr "N'affiche pas les images qui n'ont pas de texte alternatif."
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Hide custom emojis"
|
||||
msgstr "Masquer les emojis personnalisés"
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Don't display custom emojis."
|
||||
msgstr "N'affiche pas les émojis personnalisés."
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Platform icons style"
|
||||
msgstr "Style des icônes de plateforme"
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Style of the platform icons"
|
||||
msgstr "Style des icônes de plateforme."
|
||||
|
||||
#: src/Module/Settings/Display.php:352
|
||||
#: src/Module/Settings/Display.php:342
|
||||
msgid "Bookmark"
|
||||
msgstr "Favoris"
|
||||
|
||||
#: src/Module/Settings/Display.php:354
|
||||
#: src/Module/Settings/Display.php:344
|
||||
msgid ""
|
||||
"Enable timelines that you want to see in the channels widget. Bookmark "
|
||||
"timelines that you want to see in the top menu."
|
||||
msgstr "Activez les flux que vous souhaitez voir dans le widget Chaînes. Mettez en favoris les flux que vous souhaitez voir dans le menu supérieur."
|
||||
|
||||
#: src/Module/Settings/Display.php:356
|
||||
#: src/Module/Settings/Display.php:346
|
||||
msgid "Channel languages:"
|
||||
msgstr "Langues de la chaîne :"
|
||||
|
||||
#: src/Module/Settings/Display.php:356
|
||||
#: src/Module/Settings/Display.php:346
|
||||
msgid ""
|
||||
"Select all the languages you want to see in your channels. \"Unspecified\" "
|
||||
"describes all posts for which no language information was detected (e.g. "
|
||||
|
|
@ -10969,11 +10971,11 @@ msgid ""
|
|||
"list."
|
||||
msgstr "Sélectionnez toutes les langues que vous voulez voir dans vos chaines. \"Indéterminé\" désigne toutes les publications pour lesquelles aucune langue n'a été détectée (c.a.d. les messages contenant juste une image ou un texte trop court pour être sur de la langue). Si vous voulez voir toutes les langues, vous devez sélectionner toutes les lignes de la liste."
|
||||
|
||||
#: src/Module/Settings/Display.php:358
|
||||
#: src/Module/Settings/Display.php:348
|
||||
msgid "Beginning of week:"
|
||||
msgstr "Début de la semaine :"
|
||||
|
||||
#: src/Module/Settings/Display.php:359
|
||||
#: src/Module/Settings/Display.php:349
|
||||
msgid "Default calendar view:"
|
||||
msgstr "Vue par défaut du calendrier :"
|
||||
|
||||
|
|
@ -12622,32 +12624,32 @@ msgstr "Inter-mur"
|
|||
msgid "via Wall-To-Wall:"
|
||||
msgstr "en Inter-mur :"
|
||||
|
||||
#: src/Object/Post.php:602
|
||||
#: src/Object/Post.php:603
|
||||
#, php-format
|
||||
msgid "Reply to %s"
|
||||
msgstr "Répondre à %s"
|
||||
|
||||
#: src/Object/Post.php:624
|
||||
#: src/Object/Post.php:625
|
||||
msgid "Notifier task is pending"
|
||||
msgstr "La notification de la tâche est en cours"
|
||||
|
||||
#: src/Object/Post.php:625
|
||||
#: src/Object/Post.php:626
|
||||
msgid "Delivery to remote servers is pending"
|
||||
msgstr "La distribution aux serveurs distants est en attente"
|
||||
|
||||
#: src/Object/Post.php:626
|
||||
#: src/Object/Post.php:627
|
||||
msgid "Delivery to remote servers is underway"
|
||||
msgstr "La distribution aux serveurs distants est en cours"
|
||||
|
||||
#: src/Object/Post.php:627
|
||||
#: src/Object/Post.php:628
|
||||
msgid "Delivery to remote servers is mostly done"
|
||||
msgstr "La distribution aux serveurs distants est presque terminée"
|
||||
|
||||
#: src/Object/Post.php:628
|
||||
#: src/Object/Post.php:629
|
||||
msgid "Delivery to remote servers is done"
|
||||
msgstr "La distribution aux serveurs distants est terminée"
|
||||
|
||||
#: src/Object/Post.php:650
|
||||
#: src/Object/Post.php:651
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
|
|
@ -12655,65 +12657,65 @@ msgstr[0] "%d commentaire"
|
|||
msgstr[1] "%d commentaires"
|
||||
msgstr[2] "%d commentaires"
|
||||
|
||||
#: src/Object/Post.php:651
|
||||
#: src/Object/Post.php:652
|
||||
msgid "Show more"
|
||||
msgstr "Montrer plus"
|
||||
|
||||
#: src/Object/Post.php:652
|
||||
#: src/Object/Post.php:653
|
||||
msgid "Show fewer"
|
||||
msgstr "Montrer moins"
|
||||
|
||||
#: src/Object/Post.php:689
|
||||
#: src/Object/Post.php:690
|
||||
#, php-format
|
||||
msgid "Reshared by: %s"
|
||||
msgstr "Partagé par : %s"
|
||||
|
||||
#: src/Object/Post.php:694
|
||||
#: src/Object/Post.php:695
|
||||
#, php-format
|
||||
msgid "Viewed by: %s"
|
||||
msgstr "Vu par : %s"
|
||||
|
||||
#: src/Object/Post.php:699
|
||||
#: src/Object/Post.php:700
|
||||
#, php-format
|
||||
msgid "Read by: %s"
|
||||
msgstr "Lu par : %s"
|
||||
|
||||
#: src/Object/Post.php:704
|
||||
#: src/Object/Post.php:705
|
||||
#, php-format
|
||||
msgid "Liked by: %s"
|
||||
msgstr "Aimé par : %s"
|
||||
|
||||
#: src/Object/Post.php:709
|
||||
#: src/Object/Post.php:710
|
||||
#, php-format
|
||||
msgid "Disliked by: %s"
|
||||
msgstr "Pas aimé par : %s"
|
||||
|
||||
#: src/Object/Post.php:714
|
||||
#: src/Object/Post.php:715
|
||||
#, php-format
|
||||
msgid "Attended by: %s"
|
||||
msgstr "Y assisteront : %s"
|
||||
|
||||
#: src/Object/Post.php:719
|
||||
#: src/Object/Post.php:720
|
||||
#, php-format
|
||||
msgid "Maybe attended by: %s"
|
||||
msgstr "Y assisteront peut-être : %s"
|
||||
|
||||
#: src/Object/Post.php:724
|
||||
#: src/Object/Post.php:725
|
||||
#, php-format
|
||||
msgid "Not attended by: %s"
|
||||
msgstr "N'y assisteront pas : %s"
|
||||
|
||||
#: src/Object/Post.php:729
|
||||
#: src/Object/Post.php:730
|
||||
#, php-format
|
||||
msgid "Commented by: %s"
|
||||
msgstr "Commenté par : %s"
|
||||
|
||||
#: src/Object/Post.php:734
|
||||
#: src/Object/Post.php:735
|
||||
#, php-format
|
||||
msgid "Reacted with %s by: %s"
|
||||
msgstr "La réaction %s a été faite par : %s"
|
||||
|
||||
#: src/Object/Post.php:757
|
||||
#: src/Object/Post.php:758
|
||||
#, php-format
|
||||
msgid "Quote shared by: %s"
|
||||
msgstr "Cité et repartagé par : %s"
|
||||
|
|
|
|||
|
|
@ -2713,8 +2713,6 @@ $a->strings['Mobile Theme:'] = 'Thème mobile:';
|
|||
$a->strings['Number of items to display per page:'] = 'Nombre d’éléments par page :';
|
||||
$a->strings['Maximum of 100 items'] = 'Maximum de 100 éléments';
|
||||
$a->strings['Number of items to display per page when viewed from mobile device:'] = 'Nombre d\'éléments à afficher par page pour un appareil mobile';
|
||||
$a->strings['Update browser every xx seconds'] = 'Mettre à jour l\'affichage toutes les xx secondes';
|
||||
$a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Minimum de 10 secondes. Saisir -1 pour désactiver.';
|
||||
$a->strings['Display emoticons'] = 'Afficher les émoticônes';
|
||||
$a->strings['When enabled, emoticons are replaced with matching symbols.'] = 'Quand activé, les émoticônes sont remplacées par les symboles correspondants.';
|
||||
$a->strings['Infinite scroll'] = 'Défilement infini';
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-05 22:44+0000\n"
|
||||
"POT-Creation-Date: 2025-02-09 20:13+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"
|
||||
|
|
@ -75,7 +75,7 @@ msgstr "Az elem nem található."
|
|||
#: 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/Display.php:188
|
||||
#: src/Module/Settings/Profile/Photo/Crop.php:148
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:96
|
||||
#: src/Module/Settings/RemoveMe.php:103 src/Module/Settings/UserExport.php:64
|
||||
|
|
@ -296,7 +296,7 @@ msgstr "Webhivatkozás beszúrása"
|
|||
#: mod/message.php:188 mod/message.php:344 mod/photos.php:1252
|
||||
#: 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:607
|
||||
#: src/Object/Post.php:608
|
||||
msgid "Please wait"
|
||||
msgstr "Kis türelmet"
|
||||
|
||||
|
|
@ -319,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:1148 view/theme/duepuntozero/config.php:73
|
||||
#: src/Object/Post.php:1149 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"
|
||||
|
|
@ -605,25 +605,25 @@ msgstr "Forgatás balra"
|
|||
|
||||
#: mod/photos.php:1090 mod/photos.php:1146 mod/photos.php:1226
|
||||
#: src/Module/Contact.php:599 src/Module/Item/Compose.php:184
|
||||
#: src/Object/Post.php:1145
|
||||
#: src/Object/Post.php:1146
|
||||
msgid "This is you"
|
||||
msgstr "Ez Ön"
|
||||
|
||||
#: mod/photos.php:1092 mod/photos.php:1148 mod/photos.php:1228
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:601
|
||||
#: src/Object/Post.php:1147
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:602
|
||||
#: src/Object/Post.php:1148
|
||||
msgid "Comment"
|
||||
msgstr "Hozzászólás"
|
||||
|
||||
#: mod/photos.php:1094 mod/photos.php:1150 mod/photos.php:1230
|
||||
#: 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:1161
|
||||
#: src/Object/Post.php:1162
|
||||
msgid "Preview"
|
||||
msgstr "Előnézet"
|
||||
|
||||
#: mod/photos.php:1095 src/Content/Conversation.php:357
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1149
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1150
|
||||
msgid "Loading..."
|
||||
msgstr "Betöltés…"
|
||||
|
||||
|
|
@ -665,112 +665,112 @@ msgstr "Térkép"
|
|||
msgid "Apologies but the website is unavailable at the moment."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:247
|
||||
#: src/App/Page.php:236
|
||||
msgid "Delete this item?"
|
||||
msgstr "Törli ezt az elemet?"
|
||||
|
||||
#: src/App/Page.php:248
|
||||
#: 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 "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:249
|
||||
#: src/App/Page.php:238
|
||||
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:250
|
||||
#: src/App/Page.php:239
|
||||
msgid "Collapse this author's posts?"
|
||||
msgstr "Összecsukja ennek a szerzőnek a bejegyzéseit?"
|
||||
|
||||
#: src/App/Page.php:251
|
||||
#: src/App/Page.php:240
|
||||
msgid "Ignore this author's server?"
|
||||
msgstr "Mellőzi ennek a szerzőnek a kiszolgálóját?"
|
||||
|
||||
#: src/App/Page.php:252 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 "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:254
|
||||
#: src/App/Page.php:243
|
||||
msgid "Like not successful"
|
||||
msgstr "A kedvelés sikertelen"
|
||||
|
||||
#: src/App/Page.php:255
|
||||
#: src/App/Page.php:244
|
||||
msgid "Dislike not successful"
|
||||
msgstr "A nem kedvelés sikertelen"
|
||||
|
||||
#: src/App/Page.php:256
|
||||
#: src/App/Page.php:245
|
||||
msgid "Sharing not successful"
|
||||
msgstr "A megosztás sikertelen"
|
||||
|
||||
#: src/App/Page.php:257
|
||||
#: src/App/Page.php:246
|
||||
msgid "Attendance unsuccessful"
|
||||
msgstr "A részvétel sikertelen"
|
||||
|
||||
#: src/App/Page.php:258
|
||||
#: src/App/Page.php:247
|
||||
msgid "Backend error"
|
||||
msgstr "Háttérprogram hiba"
|
||||
|
||||
#: src/App/Page.php:259
|
||||
#: src/App/Page.php:248
|
||||
msgid "Network error"
|
||||
msgstr "Hálózati hiba"
|
||||
|
||||
#: src/App/Page.php:262
|
||||
#: src/App/Page.php:251
|
||||
msgid "Drop files here to upload"
|
||||
msgstr "Dobja ide a fájlokat a feltöltéséhez"
|
||||
|
||||
#: src/App/Page.php:263
|
||||
#: src/App/Page.php:252
|
||||
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:264
|
||||
#: src/App/Page.php:253
|
||||
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:265
|
||||
#: src/App/Page.php:254
|
||||
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:266
|
||||
#: src/App/Page.php:255
|
||||
msgid "You can't upload files of this type."
|
||||
msgstr "Nem tud ilyen típusú fájlokat feltölteni."
|
||||
|
||||
#: src/App/Page.php:267
|
||||
#: src/App/Page.php:256
|
||||
msgid "Server responded with {{statusCode}} code."
|
||||
msgstr "A kiszolgáló {{statusCode}} állapotkóddal válaszolt."
|
||||
|
||||
#: src/App/Page.php:268
|
||||
#: src/App/Page.php:257
|
||||
msgid "Cancel upload"
|
||||
msgstr "Feltöltés megszakítása"
|
||||
|
||||
#: src/App/Page.php:269
|
||||
#: src/App/Page.php:258
|
||||
msgid "Upload canceled."
|
||||
msgstr "A feltöltés megszakítva."
|
||||
|
||||
#: src/App/Page.php:270
|
||||
#: src/App/Page.php:259
|
||||
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:271
|
||||
#: src/App/Page.php:260
|
||||
msgid "Remove file"
|
||||
msgstr "Fájl eltávolítása"
|
||||
|
||||
#: src/App/Page.php:272
|
||||
#: src/App/Page.php:261
|
||||
msgid "You can't upload any more files."
|
||||
msgstr "Nem tud több fájlt feltölteni."
|
||||
|
||||
#: src/App/Page.php:356
|
||||
#: src/App/Page.php:345
|
||||
msgid "toggle mobile"
|
||||
msgstr "váltás mobilra"
|
||||
|
||||
#: src/App/Page.php:367 src/Module/Admin/Logs/View.php:92
|
||||
#: src/App/Page.php:356 src/Module/Admin/Logs/View.php:92
|
||||
#: view/theme/frio/php/minimal.php:39 view/theme/frio/php/standard.php:138
|
||||
msgid "Close"
|
||||
msgstr "Bezárás"
|
||||
|
|
@ -1263,7 +1263,7 @@ msgid "Visible to <strong>everybody</strong>"
|
|||
msgstr "Látható <strong>mindenkinek</strong>"
|
||||
|
||||
#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196
|
||||
#: src/Object/Post.php:1160
|
||||
#: src/Object/Post.php:1161
|
||||
msgid "Please enter a image/video/audio/webpage URL:"
|
||||
msgstr "Írjon be egy kép, videó, hang vagy weboldal URL-t:"
|
||||
|
||||
|
|
@ -1308,52 +1308,52 @@ msgid "attach file"
|
|||
msgstr "fájl csatolása"
|
||||
|
||||
#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1150
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1151
|
||||
msgid "Bold"
|
||||
msgstr "Félkövér"
|
||||
|
||||
#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1151
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1152
|
||||
msgid "Italic"
|
||||
msgstr "Dőlt"
|
||||
|
||||
#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1152
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1153
|
||||
msgid "Underline"
|
||||
msgstr "Aláhúzott"
|
||||
|
||||
#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1154
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1155
|
||||
msgid "Quote"
|
||||
msgstr "Idézet"
|
||||
|
||||
#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1155
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1156
|
||||
msgid "Add emojis"
|
||||
msgstr "Emodzsik hozzáadása"
|
||||
|
||||
#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191
|
||||
#: src/Object/Post.php:1153
|
||||
#: src/Object/Post.php:1154
|
||||
msgid "Content Warning"
|
||||
msgstr "Tartalom figyelmeztetés"
|
||||
|
||||
#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192
|
||||
#: src/Module/Post/Edit.php:167 src/Object/Post.php:1156
|
||||
#: src/Module/Post/Edit.php:167 src/Object/Post.php:1157
|
||||
msgid "Code"
|
||||
msgstr "Kód"
|
||||
|
||||
#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193
|
||||
#: src/Object/Post.php:1157
|
||||
#: src/Object/Post.php:1158
|
||||
msgid "Image"
|
||||
msgstr "Kép"
|
||||
|
||||
#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1158
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1159
|
||||
msgid "Link"
|
||||
msgstr "Hivatkozás"
|
||||
|
||||
#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1159
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1160
|
||||
msgid "Link or Media"
|
||||
msgstr "Hivatkozás vagy média"
|
||||
|
||||
|
|
@ -1527,7 +1527,7 @@ msgstr "Kategóriák:"
|
|||
msgid "Filed under:"
|
||||
msgstr "Iktatva itt:"
|
||||
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:558
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:559
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "%s tőle: %s"
|
||||
|
|
@ -1787,7 +1787,7 @@ msgstr "A kiválasztott fióktípussal rendelkező fiókok által készített be
|
|||
|
||||
#: src/Content/Feature.php:131 src/Content/Widget.php:610
|
||||
#: src/Module/Admin/Site.php:463 src/Module/BaseSettings.php:113
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:323
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:313
|
||||
msgid "Channels"
|
||||
msgstr "Csatornák"
|
||||
|
||||
|
|
@ -1962,7 +1962,7 @@ msgstr "A(z) %s kiszolgáló mellőzése"
|
|||
msgid "Languages"
|
||||
msgstr "Nyelvek"
|
||||
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:585
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:586
|
||||
msgid "Search Text"
|
||||
msgstr "Szöveg keresése"
|
||||
|
||||
|
|
@ -2055,7 +2055,7 @@ msgstr "Az Ön médiával rendelkező beküldései"
|
|||
#: src/Content/Nav.php:229 src/Content/Nav.php:289
|
||||
#: 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:225
|
||||
#: src/Module/Settings/Display.php:314 view/theme/frio/theme.php:225
|
||||
#: view/theme/frio/theme.php:229
|
||||
msgid "Calendar"
|
||||
msgstr "Naptár"
|
||||
|
|
@ -2943,37 +2943,37 @@ msgid "%s (%s)"
|
|||
msgstr "%s (%s)"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:416
|
||||
#: src/Module/Settings/Display.php:292
|
||||
#: src/Module/Settings/Display.php:282
|
||||
msgid "Monday"
|
||||
msgstr "Hétfő"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:417
|
||||
#: src/Module/Settings/Display.php:293
|
||||
#: src/Module/Settings/Display.php:283
|
||||
msgid "Tuesday"
|
||||
msgstr "Kedd"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:418
|
||||
#: src/Module/Settings/Display.php:294
|
||||
#: src/Module/Settings/Display.php:284
|
||||
msgid "Wednesday"
|
||||
msgstr "Szerda"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:419
|
||||
#: src/Module/Settings/Display.php:295
|
||||
#: src/Module/Settings/Display.php:285
|
||||
msgid "Thursday"
|
||||
msgstr "Csütörtök"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:420
|
||||
#: src/Module/Settings/Display.php:296
|
||||
#: src/Module/Settings/Display.php:286
|
||||
msgid "Friday"
|
||||
msgstr "Péntek"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:421
|
||||
#: src/Module/Settings/Display.php:297
|
||||
#: src/Module/Settings/Display.php:287
|
||||
msgid "Saturday"
|
||||
msgstr "Szombat"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:415
|
||||
#: src/Module/Settings/Display.php:291
|
||||
#: src/Module/Settings/Display.php:281
|
||||
msgid "Sunday"
|
||||
msgstr "Vasárnap"
|
||||
|
||||
|
|
@ -3426,17 +3426,17 @@ msgid "today"
|
|||
msgstr "ma"
|
||||
|
||||
#: src/Model/Event.php:449 src/Module/Calendar/Show.php:117
|
||||
#: src/Module/Settings/Display.php:302 src/Util/Temporal.php:343
|
||||
#: src/Module/Settings/Display.php:292 src/Util/Temporal.php:343
|
||||
msgid "month"
|
||||
msgstr "hónap"
|
||||
|
||||
#: src/Model/Event.php:450 src/Module/Calendar/Show.php:118
|
||||
#: src/Module/Settings/Display.php:303 src/Util/Temporal.php:344
|
||||
#: src/Module/Settings/Display.php:293 src/Util/Temporal.php:344
|
||||
msgid "week"
|
||||
msgstr "hét"
|
||||
|
||||
#: src/Model/Event.php:451 src/Module/Calendar/Show.php:119
|
||||
#: src/Module/Settings/Display.php:304 src/Util/Temporal.php:345
|
||||
#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:345
|
||||
msgid "day"
|
||||
msgstr "nap"
|
||||
|
||||
|
|
@ -4009,7 +4009,7 @@ msgid "Disable"
|
|||
msgstr "Letiltás"
|
||||
|
||||
#: src/Module/Admin/Addons/Details.php:75
|
||||
#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351
|
||||
#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:341
|
||||
msgid "Enable"
|
||||
msgstr "Engedélyezés"
|
||||
|
||||
|
|
@ -4060,7 +4060,7 @@ msgstr "A(z) „%s” bővítmény telepítése sikertelen."
|
|||
#: 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:307
|
||||
#: src/Module/Settings/Features.php:61
|
||||
msgid "Save Settings"
|
||||
msgstr "Beállítások mentése"
|
||||
|
|
@ -4439,11 +4439,11 @@ msgstr "A(z) %s nem érvényes bemenet a legnagyobb médiamérethez"
|
|||
msgid "%s is no valid input for maximum image size"
|
||||
msgstr "A(z) %s nem érvényes bemenet a legnagyobb képmérethez"
|
||||
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:212
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:206
|
||||
msgid "No special theme for mobile devices"
|
||||
msgstr "Nincs különleges téma a mobil eszközökhöz"
|
||||
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:222
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:216
|
||||
#, php-format
|
||||
msgid "%s - (Experimental)"
|
||||
msgstr "%s – (kísérleti)"
|
||||
|
|
@ -5520,7 +5520,7 @@ msgid ""
|
|||
msgstr "Lehet „összes” vagy „címkék”. Az „összes” azt jelenti, hogy minden nyilvános bejegyzést meg kell kapni. A „címkék” jelentése, hogy csak a kijelölt címkékkel rendelkező bejegyzéseket kell megkapni."
|
||||
|
||||
#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:315
|
||||
#: src/Module/Settings/Display.php:259
|
||||
#: src/Module/Settings/Display.php:249
|
||||
#: src/Module/Settings/TwoFactor/Index.php:132
|
||||
msgid "Disabled"
|
||||
msgstr "Letiltva"
|
||||
|
|
@ -6153,7 +6153,7 @@ msgstr "Tippek új tagoknak"
|
|||
#: src/Module/Contact.php:537 src/Module/Conversation/Channel.php:98
|
||||
#: src/Module/Conversation/Community.php:91
|
||||
#: src/Module/Conversation/Network.php:295
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:605
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:606
|
||||
msgid "More"
|
||||
msgstr "Több"
|
||||
|
||||
|
|
@ -6342,7 +6342,7 @@ msgstr "Nézet"
|
|||
msgid "Create New Event"
|
||||
msgstr "Új esemény létrehozása"
|
||||
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:305
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:295
|
||||
msgid "list"
|
||||
msgstr "lista"
|
||||
|
||||
|
|
@ -10232,12 +10232,12 @@ msgid ""
|
|||
msgstr "Ha ki van választva, akkor a csatorna eredményei újra megosztásra kerülnek. Ez csak a nyilvános idővonalról vagy a felhasználó által meghatározott körökből származó nyilvános ActivityPub-bejegyzéseknél működik."
|
||||
|
||||
#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
|
||||
#: src/Module/Settings/Display.php:349
|
||||
#: src/Module/Settings/Display.php:339
|
||||
msgid "Label"
|
||||
msgstr "Címke"
|
||||
|
||||
#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198
|
||||
#: src/Module/Settings/Display.php:350
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:123
|
||||
msgid "Description"
|
||||
msgstr "Leírás"
|
||||
|
|
@ -10673,213 +10673,215 @@ msgstr "Lehetséges meghatalmazottak"
|
|||
msgid "No entries."
|
||||
msgstr "Nincsenek bejegyzések."
|
||||
|
||||
#: src/Module/Settings/Display.php:180
|
||||
#: src/Module/Settings/Display.php:174
|
||||
msgid "The theme you chose isn't available."
|
||||
msgstr "A választott téma nem érhető el."
|
||||
|
||||
#: src/Module/Settings/Display.php:220
|
||||
#: src/Module/Settings/Display.php:214
|
||||
#, php-format
|
||||
msgid "%s - (Unsupported)"
|
||||
msgstr "%s – (nem támogatott)"
|
||||
|
||||
#: src/Module/Settings/Display.php:260
|
||||
#: src/Module/Settings/Display.php:250
|
||||
msgid "Color/Black"
|
||||
msgstr "Színes/fekete"
|
||||
|
||||
#: src/Module/Settings/Display.php:261 view/theme/frio/php/scheme.php:95
|
||||
#: src/Module/Settings/Display.php:251 view/theme/frio/php/scheme.php:95
|
||||
msgid "Black"
|
||||
msgstr "Fekete"
|
||||
|
||||
#: src/Module/Settings/Display.php:262
|
||||
#: src/Module/Settings/Display.php:252
|
||||
msgid "Color/White"
|
||||
msgstr "Színes/fehér"
|
||||
|
||||
#: src/Module/Settings/Display.php:263
|
||||
#: src/Module/Settings/Display.php:253
|
||||
msgid "White"
|
||||
msgstr "Fehér"
|
||||
|
||||
#: src/Module/Settings/Display.php:268
|
||||
#: src/Module/Settings/Display.php:258
|
||||
msgid "No preview"
|
||||
msgstr "Nincs előnézet"
|
||||
|
||||
#: src/Module/Settings/Display.php:269
|
||||
#: src/Module/Settings/Display.php:259
|
||||
msgid "No image"
|
||||
msgstr "Nincs kép"
|
||||
|
||||
#: src/Module/Settings/Display.php:270
|
||||
#: src/Module/Settings/Display.php:260
|
||||
msgid "Small Image"
|
||||
msgstr "Kis kép"
|
||||
|
||||
#: src/Module/Settings/Display.php:271
|
||||
#: src/Module/Settings/Display.php:261
|
||||
msgid "Large Image"
|
||||
msgstr "Nagy kép"
|
||||
|
||||
#: src/Module/Settings/Display.php:316
|
||||
#: src/Module/Settings/Display.php:306
|
||||
msgid "Display Settings"
|
||||
msgstr "Megjelenítési beállítások"
|
||||
|
||||
#: src/Module/Settings/Display.php:318
|
||||
#: src/Module/Settings/Display.php:308
|
||||
msgid "General Theme Settings"
|
||||
msgstr "Általános témabeállítások"
|
||||
|
||||
#: src/Module/Settings/Display.php:319
|
||||
#: src/Module/Settings/Display.php:309
|
||||
msgid "Custom Theme Settings"
|
||||
msgstr "Egyéni témabeállítások"
|
||||
|
||||
#: src/Module/Settings/Display.php:320
|
||||
#: src/Module/Settings/Display.php:310
|
||||
msgid "Content Settings"
|
||||
msgstr "Tartalombeállítások"
|
||||
|
||||
#: src/Module/Settings/Display.php:321 view/theme/duepuntozero/config.php:74
|
||||
#: src/Module/Settings/Display.php:311 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 "Témabeállítások"
|
||||
|
||||
#: src/Module/Settings/Display.php:322
|
||||
#: src/Module/Settings/Display.php:312
|
||||
msgid "Timelines"
|
||||
msgstr "Idővonalak"
|
||||
|
||||
#: src/Module/Settings/Display.php:329
|
||||
#: src/Module/Settings/Display.php:319
|
||||
msgid "Display Theme:"
|
||||
msgstr "Megjelenítés témája:"
|
||||
|
||||
#: src/Module/Settings/Display.php:330
|
||||
#: src/Module/Settings/Display.php:320
|
||||
msgid "Mobile Theme:"
|
||||
msgstr "Mobil téma:"
|
||||
|
||||
#: src/Module/Settings/Display.php:333
|
||||
#: src/Module/Settings/Display.php:323
|
||||
msgid "Number of items to display per page:"
|
||||
msgstr "Oldalanként megjelenítendő elemek száma:"
|
||||
|
||||
#: src/Module/Settings/Display.php:333 src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:323 src/Module/Settings/Display.php:324
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr "Legfeljebb 100 elem"
|
||||
|
||||
#: src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:324
|
||||
msgid "Number of items to display per page when viewed from mobile device:"
|
||||
msgstr "Oldalanként megjelenítendő elemek száma, ha mobil eszközről nézik:"
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr "Böngésző frissítése N másodpercenként"
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid "Regularly update the page content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Minimum of 10 seconds. Enter -1 to disable it."
|
||||
msgstr "Legalább 10 másodperc. A -1 beírása letiltja."
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid ""
|
||||
"When enabled, new content on network, community and channels are added on "
|
||||
"top."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "Display emoticons"
|
||||
msgstr "Hangulatjelek megjelenítése"
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "When enabled, emoticons are replaced with matching symbols."
|
||||
msgstr "Ha engedélyezve van, akkor a hangulatjelek ki lesznek cserélve a megfelelő szimbólumokkal."
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Infinite scroll"
|
||||
msgstr "Végtelen görgetés"
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Automatic fetch new items when reaching the page end."
|
||||
msgstr "Új elemek automatikus lekérése az oldal végének elérésekor."
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable Smart Threading"
|
||||
msgstr "Intelligens szálkezelés engedélyezése"
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable the automatic suppression of extraneous thread indentation."
|
||||
msgstr "A nem odatartozó szálbehúzások automatikus elnyomásának engedélyezése."
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid "Display the Dislike feature"
|
||||
msgstr "A nem tetszik funkció megjelenítése"
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid ""
|
||||
"Display the Dislike button and dislike reactions on posts and comments."
|
||||
msgstr "A nem tetszik gomb és a nem tetszik reakciók megjelenítése a bejegyzéseknél és a hozzászólásoknál."
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
msgid "Display the resharer"
|
||||
msgstr "Az újramegosztó megjelenítése"
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
msgid "Display the first resharer as icon and text on a reshared item."
|
||||
msgstr "Az első újramegosztó megjelenítése ikonként és szövegként egy újra megosztott elemnél."
|
||||
|
||||
#: src/Module/Settings/Display.php:341
|
||||
#: src/Module/Settings/Display.php:331
|
||||
msgid "Stay local"
|
||||
msgstr "Maradjon helyi"
|
||||
|
||||
#: src/Module/Settings/Display.php:341
|
||||
#: src/Module/Settings/Display.php:331
|
||||
msgid "Don't go to a remote system when following a contact link."
|
||||
msgstr "Ne menjen távoli rendszerre, ha egy partnerhivatkozást követ."
|
||||
|
||||
#: src/Module/Settings/Display.php:342
|
||||
#: src/Module/Settings/Display.php:332
|
||||
msgid "Show the post deletion checkbox"
|
||||
msgstr "A bejegyzéstörlés jelölőnégyzet megjelenítése"
|
||||
|
||||
#: src/Module/Settings/Display.php:342
|
||||
#: src/Module/Settings/Display.php:332
|
||||
msgid "Display the checkbox for the post deletion on the network page."
|
||||
msgstr "Jelölőnégyzet megjelenítése a bejegyzés törléséhez a hálózat oldalán."
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "DIsplay the event list"
|
||||
msgstr "Az eseménylista megjelenítése"
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "Display the birthday reminder and event list on the network page."
|
||||
msgstr "A születésnapi emlékeztető és az eseménylista megjelenítése a hálózat oldalán."
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
msgid "Link preview mode"
|
||||
msgstr "Hivatkozás-előnézeti mód"
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
msgid "Appearance of the link preview that is added to each post with a link."
|
||||
msgstr "A hivatkozás előnézetének megjelenése, amely minden egyes hivatkozással rendelkező bejegyzéshez hozzá van adva."
|
||||
|
||||
#: src/Module/Settings/Display.php:345
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Hide pictures with empty alternative text"
|
||||
msgstr "Üres alternatív szöveggel rendelkező képek elrejtése"
|
||||
|
||||
#: src/Module/Settings/Display.php:345
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Don't display pictures that are missing the alternative text."
|
||||
msgstr "Ne jelenítse meg azokat a képeket, amelyeknél hiányzik az alternatív szöveg."
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Hide custom emojis"
|
||||
msgstr "Egyéni emodzsik elrejtése"
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Don't display custom emojis."
|
||||
msgstr "Ne jelenítse meg az egyéni emodzsikat."
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Platform icons style"
|
||||
msgstr "Platformikonok stílusa"
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Style of the platform icons"
|
||||
msgstr "A platformikonok stílusa"
|
||||
|
||||
#: src/Module/Settings/Display.php:352
|
||||
#: src/Module/Settings/Display.php:342
|
||||
msgid "Bookmark"
|
||||
msgstr "Könyvjelző"
|
||||
|
||||
#: src/Module/Settings/Display.php:354
|
||||
#: src/Module/Settings/Display.php:344
|
||||
msgid ""
|
||||
"Enable timelines that you want to see in the channels widget. Bookmark "
|
||||
"timelines that you want to see in the top menu."
|
||||
msgstr "Azon idővonalak engedélyezése, amelyeket a csatornák felületi elemben szeretne látni. Azon idővonalak könyvjelzőzése, amelyeket a felső menüben szeretne látni."
|
||||
|
||||
#: src/Module/Settings/Display.php:356
|
||||
#: src/Module/Settings/Display.php:346
|
||||
msgid "Channel languages:"
|
||||
msgstr "Csatorna nyelvei:"
|
||||
|
||||
#: src/Module/Settings/Display.php:356
|
||||
#: src/Module/Settings/Display.php:346
|
||||
msgid ""
|
||||
"Select all the languages you want to see in your channels. \"Unspecified\" "
|
||||
"describes all posts for which no language information was detected (e.g. "
|
||||
|
|
@ -10888,11 +10890,11 @@ msgid ""
|
|||
"list."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:358
|
||||
#: src/Module/Settings/Display.php:348
|
||||
msgid "Beginning of week:"
|
||||
msgstr "A hét kezdete:"
|
||||
|
||||
#: src/Module/Settings/Display.php:359
|
||||
#: src/Module/Settings/Display.php:349
|
||||
msgid "Default calendar view:"
|
||||
msgstr "Alapértelmezett naptárnézet:"
|
||||
|
||||
|
|
@ -12540,97 +12542,97 @@ msgstr "Falról-falra"
|
|||
msgid "via Wall-To-Wall:"
|
||||
msgstr "falról-falra szolgáltatáson keresztül:"
|
||||
|
||||
#: src/Object/Post.php:602
|
||||
#: src/Object/Post.php:603
|
||||
#, php-format
|
||||
msgid "Reply to %s"
|
||||
msgstr "Válasz erre: %s"
|
||||
|
||||
#: src/Object/Post.php:624
|
||||
#: src/Object/Post.php:625
|
||||
msgid "Notifier task is pending"
|
||||
msgstr "Az értesítőfeladat függőben van"
|
||||
|
||||
#: src/Object/Post.php:625
|
||||
#: src/Object/Post.php:626
|
||||
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:626
|
||||
#: src/Object/Post.php:627
|
||||
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:627
|
||||
#: src/Object/Post.php:628
|
||||
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:628
|
||||
#: src/Object/Post.php:629
|
||||
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:650
|
||||
#: src/Object/Post.php:651
|
||||
#, 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:651
|
||||
#: src/Object/Post.php:652
|
||||
msgid "Show more"
|
||||
msgstr "Több megjelenítése"
|
||||
|
||||
#: src/Object/Post.php:652
|
||||
#: src/Object/Post.php:653
|
||||
msgid "Show fewer"
|
||||
msgstr "Kevesebb megjelenítése"
|
||||
|
||||
#: src/Object/Post.php:689
|
||||
#: src/Object/Post.php:690
|
||||
#, php-format
|
||||
msgid "Reshared by: %s"
|
||||
msgstr "Újra megosztotta: %s"
|
||||
|
||||
#: src/Object/Post.php:694
|
||||
#: src/Object/Post.php:695
|
||||
#, php-format
|
||||
msgid "Viewed by: %s"
|
||||
msgstr "Megtekintette: %s"
|
||||
|
||||
#: src/Object/Post.php:699
|
||||
#: src/Object/Post.php:700
|
||||
#, php-format
|
||||
msgid "Read by: %s"
|
||||
msgstr "Olvasta: %s"
|
||||
|
||||
#: src/Object/Post.php:704
|
||||
#: src/Object/Post.php:705
|
||||
#, php-format
|
||||
msgid "Liked by: %s"
|
||||
msgstr "Kedvelte: %s"
|
||||
|
||||
#: src/Object/Post.php:709
|
||||
#: src/Object/Post.php:710
|
||||
#, php-format
|
||||
msgid "Disliked by: %s"
|
||||
msgstr "Nem kedvelte: %s"
|
||||
|
||||
#: src/Object/Post.php:714
|
||||
#: src/Object/Post.php:715
|
||||
#, php-format
|
||||
msgid "Attended by: %s"
|
||||
msgstr "Részt vett: %s"
|
||||
|
||||
#: src/Object/Post.php:719
|
||||
#: src/Object/Post.php:720
|
||||
#, php-format
|
||||
msgid "Maybe attended by: %s"
|
||||
msgstr "Talán részt vett: %s"
|
||||
|
||||
#: src/Object/Post.php:724
|
||||
#: src/Object/Post.php:725
|
||||
#, php-format
|
||||
msgid "Not attended by: %s"
|
||||
msgstr "Nem vett részt: %s"
|
||||
|
||||
#: src/Object/Post.php:729
|
||||
#: src/Object/Post.php:730
|
||||
#, php-format
|
||||
msgid "Commented by: %s"
|
||||
msgstr "Hozzászólt: %s"
|
||||
|
||||
#: src/Object/Post.php:734
|
||||
#: src/Object/Post.php:735
|
||||
#, php-format
|
||||
msgid "Reacted with %s by: %s"
|
||||
msgstr "Reagált ezzel: %s: %s"
|
||||
|
||||
#: src/Object/Post.php:757
|
||||
#: src/Object/Post.php:758
|
||||
#, php-format
|
||||
msgid "Quote shared by: %s"
|
||||
msgstr "Idézetten osztott meg: %s"
|
||||
|
|
|
|||
|
|
@ -2662,8 +2662,6 @@ $a->strings['Mobile Theme:'] = 'Mobil téma:';
|
|||
$a->strings['Number of items to display per page:'] = 'Oldalanként megjelenítendő elemek száma:';
|
||||
$a->strings['Maximum of 100 items'] = 'Legfeljebb 100 elem';
|
||||
$a->strings['Number of items to display per page when viewed from mobile device:'] = 'Oldalanként megjelenítendő elemek száma, ha mobil eszközről nézik:';
|
||||
$a->strings['Update browser every xx seconds'] = 'Böngésző frissítése N másodpercenként';
|
||||
$a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Legalább 10 másodperc. A -1 beírása letiltja.';
|
||||
$a->strings['Display emoticons'] = 'Hangulatjelek megjelenítése';
|
||||
$a->strings['When enabled, emoticons are replaced with matching symbols.'] = 'Ha engedélyezve van, akkor a hangulatjelek ki lesznek cserélve a megfelelő szimbólumokkal.';
|
||||
$a->strings['Infinite scroll'] = 'Végtelen görgetés';
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-05 22:44+0000\n"
|
||||
"POT-Creation-Date: 2025-02-09 20:13+0000\n"
|
||||
"PO-Revision-Date: 2011-05-05 10:19+0000\n"
|
||||
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>, 2014,2016,2018\n"
|
||||
"Language-Team: Icelandic (http://app.transifex.com/Friendica/friendica/language/is/)\n"
|
||||
|
|
@ -78,7 +78,7 @@ msgstr "Atriði fannst ekki."
|
|||
#: 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/Display.php:188
|
||||
#: src/Module/Settings/Profile/Photo/Crop.php:148
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:96
|
||||
#: src/Module/Settings/RemoveMe.php:103 src/Module/Settings/UserExport.php:64
|
||||
|
|
@ -299,7 +299,7 @@ msgstr "Setja inn vefslóð"
|
|||
#: mod/message.php:188 mod/message.php:344 mod/photos.php:1252
|
||||
#: 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:607
|
||||
#: src/Object/Post.php:608
|
||||
msgid "Please wait"
|
||||
msgstr "Hinkraðu aðeins"
|
||||
|
||||
|
|
@ -322,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:1148 view/theme/duepuntozero/config.php:73
|
||||
#: src/Object/Post.php:1149 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"
|
||||
|
|
@ -608,25 +608,25 @@ msgstr "Snúa rangsælis (vinstri)"
|
|||
|
||||
#: mod/photos.php:1090 mod/photos.php:1146 mod/photos.php:1226
|
||||
#: src/Module/Contact.php:599 src/Module/Item/Compose.php:184
|
||||
#: src/Object/Post.php:1145
|
||||
#: src/Object/Post.php:1146
|
||||
msgid "This is you"
|
||||
msgstr "Þetta ert þú"
|
||||
|
||||
#: mod/photos.php:1092 mod/photos.php:1148 mod/photos.php:1228
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:601
|
||||
#: src/Object/Post.php:1147
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:602
|
||||
#: src/Object/Post.php:1148
|
||||
msgid "Comment"
|
||||
msgstr "Athugasemd"
|
||||
|
||||
#: mod/photos.php:1094 mod/photos.php:1150 mod/photos.php:1230
|
||||
#: 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:1161
|
||||
#: src/Object/Post.php:1162
|
||||
msgid "Preview"
|
||||
msgstr "Forskoðun"
|
||||
|
||||
#: mod/photos.php:1095 src/Content/Conversation.php:357
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1149
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1150
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -668,112 +668,112 @@ msgstr "Landakort"
|
|||
msgid "Apologies but the website is unavailable at the moment."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:247
|
||||
#: src/App/Page.php:236
|
||||
msgid "Delete this item?"
|
||||
msgstr "Eyða þessu atriði?"
|
||||
|
||||
#: src/App/Page.php:248
|
||||
#: 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:249
|
||||
#: 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:250
|
||||
#: src/App/Page.php:239
|
||||
msgid "Collapse this author's posts?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:251
|
||||
#: src/App/Page.php:240
|
||||
msgid "Ignore this author's server?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:252 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:254
|
||||
#: src/App/Page.php:243
|
||||
msgid "Like not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:255
|
||||
#: src/App/Page.php:244
|
||||
msgid "Dislike not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:256
|
||||
#: src/App/Page.php:245
|
||||
msgid "Sharing not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:257
|
||||
#: src/App/Page.php:246
|
||||
msgid "Attendance unsuccessful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:258
|
||||
#: src/App/Page.php:247
|
||||
msgid "Backend error"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:259
|
||||
#: src/App/Page.php:248
|
||||
msgid "Network error"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:262
|
||||
#: src/App/Page.php:251
|
||||
msgid "Drop files here to upload"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:263
|
||||
#: src/App/Page.php:252
|
||||
msgid "Your browser does not support drag and drop file uploads."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:264
|
||||
#: 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:265
|
||||
#: src/App/Page.php:254
|
||||
msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:266
|
||||
#: src/App/Page.php:255
|
||||
msgid "You can't upload files of this type."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:267
|
||||
#: src/App/Page.php:256
|
||||
msgid "Server responded with {{statusCode}} code."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:268
|
||||
#: src/App/Page.php:257
|
||||
msgid "Cancel upload"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:269
|
||||
#: src/App/Page.php:258
|
||||
msgid "Upload canceled."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:270
|
||||
#: src/App/Page.php:259
|
||||
msgid "Are you sure you want to cancel this upload?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:271
|
||||
#: src/App/Page.php:260
|
||||
msgid "Remove file"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:272
|
||||
#: src/App/Page.php:261
|
||||
msgid "You can't upload any more files."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:356
|
||||
#: src/App/Page.php:345
|
||||
msgid "toggle mobile"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:367 src/Module/Admin/Logs/View.php:92
|
||||
#: src/App/Page.php:356 src/Module/Admin/Logs/View.php:92
|
||||
#: view/theme/frio/php/minimal.php:39 view/theme/frio/php/standard.php:138
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
|
@ -1266,7 +1266,7 @@ msgid "Visible to <strong>everybody</strong>"
|
|||
msgstr "Sjáanlegt <strong>öllum</strong>"
|
||||
|
||||
#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196
|
||||
#: src/Object/Post.php:1160
|
||||
#: src/Object/Post.php:1161
|
||||
msgid "Please enter a image/video/audio/webpage URL:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1311,52 +1311,52 @@ msgid "attach file"
|
|||
msgstr "Hengja skrá við"
|
||||
|
||||
#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1150
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1151
|
||||
msgid "Bold"
|
||||
msgstr "Feitletrað"
|
||||
|
||||
#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1151
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1152
|
||||
msgid "Italic"
|
||||
msgstr "Skáletrað"
|
||||
|
||||
#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1152
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1153
|
||||
msgid "Underline"
|
||||
msgstr "Undirstrikað"
|
||||
|
||||
#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1154
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1155
|
||||
msgid "Quote"
|
||||
msgstr "Gæsalappir"
|
||||
|
||||
#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1155
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1156
|
||||
msgid "Add emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191
|
||||
#: src/Object/Post.php:1153
|
||||
#: src/Object/Post.php:1154
|
||||
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:1156
|
||||
#: src/Module/Post/Edit.php:167 src/Object/Post.php:1157
|
||||
msgid "Code"
|
||||
msgstr "Kóði"
|
||||
|
||||
#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193
|
||||
#: src/Object/Post.php:1157
|
||||
#: src/Object/Post.php:1158
|
||||
msgid "Image"
|
||||
msgstr "Mynd"
|
||||
|
||||
#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1158
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1159
|
||||
msgid "Link"
|
||||
msgstr "Tengill"
|
||||
|
||||
#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1159
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1160
|
||||
msgid "Link or Media"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1530,7 +1530,7 @@ msgstr "Flokkar:"
|
|||
msgid "Filed under:"
|
||||
msgstr "Skráð undir:"
|
||||
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:558
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:559
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "%s til %s"
|
||||
|
|
@ -1790,7 +1790,7 @@ msgstr ""
|
|||
|
||||
#: src/Content/Feature.php:131 src/Content/Widget.php:610
|
||||
#: src/Module/Admin/Site.php:463 src/Module/BaseSettings.php:113
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:323
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:313
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1965,7 +1965,7 @@ msgstr ""
|
|||
msgid "Languages"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:585
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:586
|
||||
msgid "Search Text"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2058,7 +2058,7 @@ msgstr ""
|
|||
#: src/Content/Nav.php:229 src/Content/Nav.php:289
|
||||
#: 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:225
|
||||
#: src/Module/Settings/Display.php:314 view/theme/frio/theme.php:225
|
||||
#: view/theme/frio/theme.php:229
|
||||
msgid "Calendar"
|
||||
msgstr "Dagatal"
|
||||
|
|
@ -2946,37 +2946,37 @@ msgid "%s (%s)"
|
|||
msgstr ""
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:416
|
||||
#: src/Module/Settings/Display.php:292
|
||||
#: src/Module/Settings/Display.php:282
|
||||
msgid "Monday"
|
||||
msgstr "Mánudagur"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:417
|
||||
#: src/Module/Settings/Display.php:293
|
||||
#: src/Module/Settings/Display.php:283
|
||||
msgid "Tuesday"
|
||||
msgstr "Þriðjudagur"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:418
|
||||
#: src/Module/Settings/Display.php:294
|
||||
#: src/Module/Settings/Display.php:284
|
||||
msgid "Wednesday"
|
||||
msgstr "Miðvikudagur"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:419
|
||||
#: src/Module/Settings/Display.php:295
|
||||
#: src/Module/Settings/Display.php:285
|
||||
msgid "Thursday"
|
||||
msgstr "Fimmtudagur"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:420
|
||||
#: src/Module/Settings/Display.php:296
|
||||
#: src/Module/Settings/Display.php:286
|
||||
msgid "Friday"
|
||||
msgstr "Föstudagur"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:421
|
||||
#: src/Module/Settings/Display.php:297
|
||||
#: src/Module/Settings/Display.php:287
|
||||
msgid "Saturday"
|
||||
msgstr "Laugardagur"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:415
|
||||
#: src/Module/Settings/Display.php:291
|
||||
#: src/Module/Settings/Display.php:281
|
||||
msgid "Sunday"
|
||||
msgstr "Sunnudagur"
|
||||
|
||||
|
|
@ -3429,17 +3429,17 @@ msgid "today"
|
|||
msgstr "í dag"
|
||||
|
||||
#: src/Model/Event.php:449 src/Module/Calendar/Show.php:117
|
||||
#: src/Module/Settings/Display.php:302 src/Util/Temporal.php:343
|
||||
#: src/Module/Settings/Display.php:292 src/Util/Temporal.php:343
|
||||
msgid "month"
|
||||
msgstr "mánuður"
|
||||
|
||||
#: src/Model/Event.php:450 src/Module/Calendar/Show.php:118
|
||||
#: src/Module/Settings/Display.php:303 src/Util/Temporal.php:344
|
||||
#: src/Module/Settings/Display.php:293 src/Util/Temporal.php:344
|
||||
msgid "week"
|
||||
msgstr "vika"
|
||||
|
||||
#: src/Model/Event.php:451 src/Module/Calendar/Show.php:119
|
||||
#: src/Module/Settings/Display.php:304 src/Util/Temporal.php:345
|
||||
#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:345
|
||||
msgid "day"
|
||||
msgstr "dagur"
|
||||
|
||||
|
|
@ -4012,7 +4012,7 @@ msgid "Disable"
|
|||
msgstr "Gera óvirkt"
|
||||
|
||||
#: src/Module/Admin/Addons/Details.php:75
|
||||
#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351
|
||||
#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:341
|
||||
msgid "Enable"
|
||||
msgstr "Virkja"
|
||||
|
||||
|
|
@ -4063,7 +4063,7 @@ msgstr ""
|
|||
#: 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:307
|
||||
#: src/Module/Settings/Features.php:61
|
||||
msgid "Save Settings"
|
||||
msgstr "Vista stillingar"
|
||||
|
|
@ -4442,11 +4442,11 @@ msgstr ""
|
|||
msgid "%s is no valid input for maximum image size"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:212
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:206
|
||||
msgid "No special theme for mobile devices"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:222
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:216
|
||||
#, php-format
|
||||
msgid "%s - (Experimental)"
|
||||
msgstr "%s - (á tilraunastigi)"
|
||||
|
|
@ -5523,7 +5523,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:315
|
||||
#: src/Module/Settings/Display.php:259
|
||||
#: src/Module/Settings/Display.php:249
|
||||
#: src/Module/Settings/TwoFactor/Index.php:132
|
||||
msgid "Disabled"
|
||||
msgstr "Óvirkt"
|
||||
|
|
@ -6156,7 +6156,7 @@ msgstr "Ábendingar fyrir nýja notendur"
|
|||
#: src/Module/Contact.php:537 src/Module/Conversation/Channel.php:98
|
||||
#: src/Module/Conversation/Community.php:91
|
||||
#: src/Module/Conversation/Network.php:295
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:605
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:606
|
||||
msgid "More"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -6345,7 +6345,7 @@ msgstr "Skoða"
|
|||
msgid "Create New Event"
|
||||
msgstr "Stofna nýjan atburð"
|
||||
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:305
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:295
|
||||
msgid "list"
|
||||
msgstr "listi"
|
||||
|
||||
|
|
@ -10235,12 +10235,12 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
|
||||
#: src/Module/Settings/Display.php:349
|
||||
#: src/Module/Settings/Display.php:339
|
||||
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:340
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:123
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
|
@ -10676,213 +10676,215 @@ msgstr ""
|
|||
msgid "No entries."
|
||||
msgstr "Engar færslur."
|
||||
|
||||
#: src/Module/Settings/Display.php:180
|
||||
#: src/Module/Settings/Display.php:174
|
||||
msgid "The theme you chose isn't available."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:220
|
||||
#: src/Module/Settings/Display.php:214
|
||||
#, php-format
|
||||
msgid "%s - (Unsupported)"
|
||||
msgstr "%s - (ekki stutt)"
|
||||
|
||||
#: src/Module/Settings/Display.php:260
|
||||
#: src/Module/Settings/Display.php:250
|
||||
msgid "Color/Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:261 view/theme/frio/php/scheme.php:95
|
||||
#: src/Module/Settings/Display.php:251 view/theme/frio/php/scheme.php:95
|
||||
msgid "Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:262
|
||||
#: src/Module/Settings/Display.php:252
|
||||
msgid "Color/White"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:263
|
||||
#: src/Module/Settings/Display.php:253
|
||||
msgid "White"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:268
|
||||
#: src/Module/Settings/Display.php:258
|
||||
msgid "No preview"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:269
|
||||
#: src/Module/Settings/Display.php:259
|
||||
msgid "No image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:270
|
||||
#: src/Module/Settings/Display.php:260
|
||||
msgid "Small Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:271
|
||||
#: src/Module/Settings/Display.php:261
|
||||
msgid "Large Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:316
|
||||
#: src/Module/Settings/Display.php:306
|
||||
msgid "Display Settings"
|
||||
msgstr "Birtingarstillingar"
|
||||
|
||||
#: src/Module/Settings/Display.php:318
|
||||
#: src/Module/Settings/Display.php:308
|
||||
msgid "General Theme Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:319
|
||||
#: src/Module/Settings/Display.php:309
|
||||
msgid "Custom Theme Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:320
|
||||
#: src/Module/Settings/Display.php:310
|
||||
msgid "Content Settings"
|
||||
msgstr "Stillingar efnis"
|
||||
|
||||
#: src/Module/Settings/Display.php:321 view/theme/duepuntozero/config.php:74
|
||||
#: src/Module/Settings/Display.php:311 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 "Þemastillingar"
|
||||
|
||||
#: src/Module/Settings/Display.php:322
|
||||
#: src/Module/Settings/Display.php:312
|
||||
msgid "Timelines"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:329
|
||||
#: src/Module/Settings/Display.php:319
|
||||
msgid "Display Theme:"
|
||||
msgstr "Útlits þema:"
|
||||
|
||||
#: src/Module/Settings/Display.php:330
|
||||
#: src/Module/Settings/Display.php:320
|
||||
msgid "Mobile Theme:"
|
||||
msgstr "Farsímaþema"
|
||||
|
||||
#: src/Module/Settings/Display.php:333
|
||||
#: src/Module/Settings/Display.php:323
|
||||
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:323 src/Module/Settings/Display.php:324
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:324
|
||||
msgid "Number of items to display per page when viewed from mobile device:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr "Endurhlaða vefsíðu á xx sekúndu fresti"
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Minimum of 10 seconds. Enter -1 to disable it."
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid "Regularly update the page content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid ""
|
||||
"When enabled, new content on network, community and channels are added on "
|
||||
"top."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "Display emoticons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "When enabled, emoticons are replaced with matching symbols."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Infinite scroll"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Automatic fetch new items when reaching the page end."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable Smart Threading"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable the automatic suppression of extraneous thread indentation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid "Display the Dislike feature"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid ""
|
||||
"Display the Dislike button and dislike reactions on posts and comments."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
msgid "Display the resharer"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
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:331
|
||||
msgid "Stay local"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:341
|
||||
#: src/Module/Settings/Display.php:331
|
||||
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:332
|
||||
msgid "Show the post deletion checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:342
|
||||
#: src/Module/Settings/Display.php:332
|
||||
msgid "Display the checkbox for the post deletion on the network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "DIsplay the event list"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "Display the birthday reminder and event list on the network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
msgid "Link preview mode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
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:335
|
||||
msgid "Hide pictures with empty alternative text"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:345
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Don't display pictures that are missing the alternative text."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Hide custom emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Don't display custom emojis."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Platform icons style"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Style of the platform icons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:352
|
||||
#: src/Module/Settings/Display.php:342
|
||||
msgid "Bookmark"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:354
|
||||
#: src/Module/Settings/Display.php:344
|
||||
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:346
|
||||
msgid "Channel languages:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:356
|
||||
#: src/Module/Settings/Display.php:346
|
||||
msgid ""
|
||||
"Select all the languages you want to see in your channels. \"Unspecified\" "
|
||||
"describes all posts for which no language information was detected (e.g. "
|
||||
|
|
@ -10891,11 +10893,11 @@ msgid ""
|
|||
"list."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:358
|
||||
#: src/Module/Settings/Display.php:348
|
||||
msgid "Beginning of week:"
|
||||
msgstr "Upphaf viku:"
|
||||
|
||||
#: src/Module/Settings/Display.php:359
|
||||
#: src/Module/Settings/Display.php:349
|
||||
msgid "Default calendar view:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -12543,97 +12545,97 @@ msgstr "vegg við vegg"
|
|||
msgid "via Wall-To-Wall:"
|
||||
msgstr "gegnum vegg við vegg"
|
||||
|
||||
#: src/Object/Post.php:602
|
||||
#: src/Object/Post.php:603
|
||||
#, php-format
|
||||
msgid "Reply to %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:624
|
||||
#: src/Object/Post.php:625
|
||||
msgid "Notifier task is pending"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:625
|
||||
#: src/Object/Post.php:626
|
||||
msgid "Delivery to remote servers is pending"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:626
|
||||
#: src/Object/Post.php:627
|
||||
msgid "Delivery to remote servers is underway"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:627
|
||||
#: src/Object/Post.php:628
|
||||
msgid "Delivery to remote servers is mostly done"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:628
|
||||
#: src/Object/Post.php:629
|
||||
msgid "Delivery to remote servers is done"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:650
|
||||
#: src/Object/Post.php:651
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
msgstr[0] "%d ummæli"
|
||||
msgstr[1] "%d ummæli"
|
||||
|
||||
#: src/Object/Post.php:651
|
||||
#: src/Object/Post.php:652
|
||||
msgid "Show more"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:652
|
||||
#: src/Object/Post.php:653
|
||||
msgid "Show fewer"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:689
|
||||
#: src/Object/Post.php:690
|
||||
#, php-format
|
||||
msgid "Reshared by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:694
|
||||
#: src/Object/Post.php:695
|
||||
#, php-format
|
||||
msgid "Viewed by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:699
|
||||
#: src/Object/Post.php:700
|
||||
#, php-format
|
||||
msgid "Read by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:704
|
||||
#: src/Object/Post.php:705
|
||||
#, php-format
|
||||
msgid "Liked by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:709
|
||||
#: src/Object/Post.php:710
|
||||
#, php-format
|
||||
msgid "Disliked by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:714
|
||||
#: src/Object/Post.php:715
|
||||
#, php-format
|
||||
msgid "Attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:719
|
||||
#: src/Object/Post.php:720
|
||||
#, php-format
|
||||
msgid "Maybe attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:724
|
||||
#: src/Object/Post.php:725
|
||||
#, php-format
|
||||
msgid "Not attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:729
|
||||
#: src/Object/Post.php:730
|
||||
#, php-format
|
||||
msgid "Commented by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:734
|
||||
#: src/Object/Post.php:735
|
||||
#, php-format
|
||||
msgid "Reacted with %s by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:757
|
||||
#: src/Object/Post.php:758
|
||||
#, php-format
|
||||
msgid "Quote shared by: %s"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -862,7 +862,6 @@ $a->strings['Content Settings'] = 'Stillingar efnis';
|
|||
$a->strings['Theme settings'] = 'Þemastillingar';
|
||||
$a->strings['Display Theme:'] = 'Útlits þema:';
|
||||
$a->strings['Mobile Theme:'] = 'Farsímaþema';
|
||||
$a->strings['Update browser every xx seconds'] = 'Endurhlaða vefsíðu á xx sekúndu fresti';
|
||||
$a->strings['Beginning of week:'] = 'Upphaf viku:';
|
||||
$a->strings['Additional Features'] = 'Viðbótareiginleikar';
|
||||
$a->strings['Connected Apps'] = 'Tengd forrit';
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-05 22:44+0000\n"
|
||||
"POT-Creation-Date: 2025-02-09 20:13+0000\n"
|
||||
"PO-Revision-Date: 2011-05-05 10:19+0000\n"
|
||||
"Last-Translator: fabrixxm <fabrix.xm@gmail.com>, 2013-2015,2017-2022\n"
|
||||
"Language-Team: Italian (http://app.transifex.com/Friendica/friendica/language/it/)\n"
|
||||
|
|
@ -79,7 +79,7 @@ msgstr "Elemento non trovato."
|
|||
#: 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/Display.php:188
|
||||
#: src/Module/Settings/Profile/Photo/Crop.php:148
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:96
|
||||
#: src/Module/Settings/RemoveMe.php:103 src/Module/Settings/UserExport.php:64
|
||||
|
|
@ -300,7 +300,7 @@ msgstr "Inserisci collegamento web"
|
|||
#: mod/message.php:188 mod/message.php:344 mod/photos.php:1252
|
||||
#: 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:607
|
||||
#: src/Object/Post.php:608
|
||||
msgid "Please wait"
|
||||
msgstr "Attendi"
|
||||
|
||||
|
|
@ -323,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:1148 view/theme/duepuntozero/config.php:73
|
||||
#: src/Object/Post.php:1149 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"
|
||||
|
|
@ -610,25 +610,25 @@ msgstr "Ruota a sinistra"
|
|||
|
||||
#: mod/photos.php:1090 mod/photos.php:1146 mod/photos.php:1226
|
||||
#: src/Module/Contact.php:599 src/Module/Item/Compose.php:184
|
||||
#: src/Object/Post.php:1145
|
||||
#: src/Object/Post.php:1146
|
||||
msgid "This is you"
|
||||
msgstr "Questo sei tu"
|
||||
|
||||
#: mod/photos.php:1092 mod/photos.php:1148 mod/photos.php:1228
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:601
|
||||
#: src/Object/Post.php:1147
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:602
|
||||
#: src/Object/Post.php:1148
|
||||
msgid "Comment"
|
||||
msgstr "Commento"
|
||||
|
||||
#: mod/photos.php:1094 mod/photos.php:1150 mod/photos.php:1230
|
||||
#: 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:1161
|
||||
#: src/Object/Post.php:1162
|
||||
msgid "Preview"
|
||||
msgstr "Anteprima"
|
||||
|
||||
#: mod/photos.php:1095 src/Content/Conversation.php:357
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1149
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1150
|
||||
msgid "Loading..."
|
||||
msgstr "Caricamento..."
|
||||
|
||||
|
|
@ -670,112 +670,112 @@ msgstr "Mappa"
|
|||
msgid "Apologies but the website is unavailable at the moment."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:247
|
||||
#: src/App/Page.php:236
|
||||
msgid "Delete this item?"
|
||||
msgstr "Cancellare questo elemento?"
|
||||
|
||||
#: src/App/Page.php:248
|
||||
#: 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 "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:249
|
||||
#: 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:250
|
||||
#: src/App/Page.php:239
|
||||
msgid "Collapse this author's posts?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:251
|
||||
#: src/App/Page.php:240
|
||||
msgid "Ignore this author's server?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:252 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:254
|
||||
#: src/App/Page.php:243
|
||||
msgid "Like not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:255
|
||||
#: src/App/Page.php:244
|
||||
msgid "Dislike not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:256
|
||||
#: src/App/Page.php:245
|
||||
msgid "Sharing not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:257
|
||||
#: src/App/Page.php:246
|
||||
msgid "Attendance unsuccessful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:258
|
||||
#: src/App/Page.php:247
|
||||
msgid "Backend error"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:259
|
||||
#: src/App/Page.php:248
|
||||
msgid "Network error"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:262
|
||||
#: src/App/Page.php:251
|
||||
msgid "Drop files here to upload"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:263
|
||||
#: src/App/Page.php:252
|
||||
msgid "Your browser does not support drag and drop file uploads."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:264
|
||||
#: 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:265
|
||||
#: src/App/Page.php:254
|
||||
msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:266
|
||||
#: src/App/Page.php:255
|
||||
msgid "You can't upload files of this type."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:267
|
||||
#: src/App/Page.php:256
|
||||
msgid "Server responded with {{statusCode}} code."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:268
|
||||
#: src/App/Page.php:257
|
||||
msgid "Cancel upload"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:269
|
||||
#: src/App/Page.php:258
|
||||
msgid "Upload canceled."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:270
|
||||
#: src/App/Page.php:259
|
||||
msgid "Are you sure you want to cancel this upload?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:271
|
||||
#: src/App/Page.php:260
|
||||
msgid "Remove file"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:272
|
||||
#: src/App/Page.php:261
|
||||
msgid "You can't upload any more files."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:356
|
||||
#: src/App/Page.php:345
|
||||
msgid "toggle mobile"
|
||||
msgstr "commuta tema mobile"
|
||||
|
||||
#: src/App/Page.php:367 src/Module/Admin/Logs/View.php:92
|
||||
#: src/App/Page.php:356 src/Module/Admin/Logs/View.php:92
|
||||
#: view/theme/frio/php/minimal.php:39 view/theme/frio/php/standard.php:138
|
||||
msgid "Close"
|
||||
msgstr "Chiudi"
|
||||
|
|
@ -1280,7 +1280,7 @@ msgid "Visible to <strong>everybody</strong>"
|
|||
msgstr "Visibile a <strong>tutti</strong>"
|
||||
|
||||
#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196
|
||||
#: src/Object/Post.php:1160
|
||||
#: src/Object/Post.php:1161
|
||||
msgid "Please enter a image/video/audio/webpage URL:"
|
||||
msgstr "Inserisci l'indirizzo di una immagine, un video o una pagina web:"
|
||||
|
||||
|
|
@ -1325,52 +1325,52 @@ msgid "attach file"
|
|||
msgstr "allega file"
|
||||
|
||||
#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1150
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1151
|
||||
msgid "Bold"
|
||||
msgstr "Grassetto"
|
||||
|
||||
#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1151
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1152
|
||||
msgid "Italic"
|
||||
msgstr "Corsivo"
|
||||
|
||||
#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1152
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1153
|
||||
msgid "Underline"
|
||||
msgstr "Sottolineato"
|
||||
|
||||
#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1154
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1155
|
||||
msgid "Quote"
|
||||
msgstr "Citazione"
|
||||
|
||||
#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1155
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1156
|
||||
msgid "Add emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191
|
||||
#: src/Object/Post.php:1153
|
||||
#: src/Object/Post.php:1154
|
||||
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:1156
|
||||
#: src/Module/Post/Edit.php:167 src/Object/Post.php:1157
|
||||
msgid "Code"
|
||||
msgstr "Codice"
|
||||
|
||||
#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193
|
||||
#: src/Object/Post.php:1157
|
||||
#: src/Object/Post.php:1158
|
||||
msgid "Image"
|
||||
msgstr "Immagine"
|
||||
|
||||
#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1158
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1159
|
||||
msgid "Link"
|
||||
msgstr "Collegamento"
|
||||
|
||||
#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1159
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1160
|
||||
msgid "Link or Media"
|
||||
msgstr "Collegamento o Media"
|
||||
|
||||
|
|
@ -1544,7 +1544,7 @@ msgstr "Categorie:"
|
|||
msgid "Filed under:"
|
||||
msgstr "Archiviato in:"
|
||||
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:558
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:559
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "%s da %s"
|
||||
|
|
@ -1804,7 +1804,7 @@ msgstr ""
|
|||
|
||||
#: src/Content/Feature.php:131 src/Content/Widget.php:610
|
||||
#: src/Module/Admin/Site.php:463 src/Module/BaseSettings.php:113
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:323
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:313
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1979,7 +1979,7 @@ msgstr ""
|
|||
msgid "Languages"
|
||||
msgstr "Lingue"
|
||||
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:585
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:586
|
||||
msgid "Search Text"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2072,7 +2072,7 @@ msgstr "I tuoi messaggi con media"
|
|||
#: src/Content/Nav.php:229 src/Content/Nav.php:289
|
||||
#: 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:225
|
||||
#: src/Module/Settings/Display.php:314 view/theme/frio/theme.php:225
|
||||
#: view/theme/frio/theme.php:229
|
||||
msgid "Calendar"
|
||||
msgstr "Calendario"
|
||||
|
|
@ -2964,37 +2964,37 @@ msgid "%s (%s)"
|
|||
msgstr ""
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:416
|
||||
#: src/Module/Settings/Display.php:292
|
||||
#: src/Module/Settings/Display.php:282
|
||||
msgid "Monday"
|
||||
msgstr "Lunedì"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:417
|
||||
#: src/Module/Settings/Display.php:293
|
||||
#: src/Module/Settings/Display.php:283
|
||||
msgid "Tuesday"
|
||||
msgstr "Martedì"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:418
|
||||
#: src/Module/Settings/Display.php:294
|
||||
#: src/Module/Settings/Display.php:284
|
||||
msgid "Wednesday"
|
||||
msgstr "Mercoledì"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:419
|
||||
#: src/Module/Settings/Display.php:295
|
||||
#: src/Module/Settings/Display.php:285
|
||||
msgid "Thursday"
|
||||
msgstr "Giovedì"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:420
|
||||
#: src/Module/Settings/Display.php:296
|
||||
#: src/Module/Settings/Display.php:286
|
||||
msgid "Friday"
|
||||
msgstr "Venerdì"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:421
|
||||
#: src/Module/Settings/Display.php:297
|
||||
#: src/Module/Settings/Display.php:287
|
||||
msgid "Saturday"
|
||||
msgstr "Sabato"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:415
|
||||
#: src/Module/Settings/Display.php:291
|
||||
#: src/Module/Settings/Display.php:281
|
||||
msgid "Sunday"
|
||||
msgstr "Domenica"
|
||||
|
||||
|
|
@ -3447,17 +3447,17 @@ msgid "today"
|
|||
msgstr "oggi"
|
||||
|
||||
#: src/Model/Event.php:449 src/Module/Calendar/Show.php:117
|
||||
#: src/Module/Settings/Display.php:302 src/Util/Temporal.php:343
|
||||
#: src/Module/Settings/Display.php:292 src/Util/Temporal.php:343
|
||||
msgid "month"
|
||||
msgstr "mese"
|
||||
|
||||
#: src/Model/Event.php:450 src/Module/Calendar/Show.php:118
|
||||
#: src/Module/Settings/Display.php:303 src/Util/Temporal.php:344
|
||||
#: src/Module/Settings/Display.php:293 src/Util/Temporal.php:344
|
||||
msgid "week"
|
||||
msgstr "settimana"
|
||||
|
||||
#: src/Model/Event.php:451 src/Module/Calendar/Show.php:119
|
||||
#: src/Module/Settings/Display.php:304 src/Util/Temporal.php:345
|
||||
#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:345
|
||||
msgid "day"
|
||||
msgstr "giorno"
|
||||
|
||||
|
|
@ -4036,7 +4036,7 @@ msgid "Disable"
|
|||
msgstr "Disabilita"
|
||||
|
||||
#: src/Module/Admin/Addons/Details.php:75
|
||||
#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351
|
||||
#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:341
|
||||
msgid "Enable"
|
||||
msgstr "Abilita"
|
||||
|
||||
|
|
@ -4087,7 +4087,7 @@ msgstr "Installazione del componente aggiuntivo %s non riuscita."
|
|||
#: 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:307
|
||||
#: src/Module/Settings/Features.php:61
|
||||
msgid "Save Settings"
|
||||
msgstr "Salva Impostazioni"
|
||||
|
|
@ -4474,11 +4474,11 @@ msgstr ""
|
|||
msgid "%s is no valid input for maximum image size"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:212
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:206
|
||||
msgid "No special theme for mobile devices"
|
||||
msgstr "Nessun tema speciale per i dispositivi mobili"
|
||||
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:222
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:216
|
||||
#, php-format
|
||||
msgid "%s - (Experimental)"
|
||||
msgstr "%s - (Sperimentale)"
|
||||
|
|
@ -5555,7 +5555,7 @@ msgid ""
|
|||
msgstr "Può essere \"tutto\" o \"etichette\". \"tutto\" significa che ogni messaggio pubblico può essere ricevuto. \"etichette\" significa che solo i messaggi con le etichette selezionate saranno ricevuti."
|
||||
|
||||
#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:315
|
||||
#: src/Module/Settings/Display.php:259
|
||||
#: src/Module/Settings/Display.php:249
|
||||
#: src/Module/Settings/TwoFactor/Index.php:132
|
||||
msgid "Disabled"
|
||||
msgstr "Disabilitato"
|
||||
|
|
@ -6191,7 +6191,7 @@ msgstr "Consigli per i Nuovi Utenti"
|
|||
#: src/Module/Contact.php:537 src/Module/Conversation/Channel.php:98
|
||||
#: src/Module/Conversation/Community.php:91
|
||||
#: src/Module/Conversation/Network.php:295
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:605
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:606
|
||||
msgid "More"
|
||||
msgstr "Mostra altro"
|
||||
|
||||
|
|
@ -6381,7 +6381,7 @@ msgstr "Mostra"
|
|||
msgid "Create New Event"
|
||||
msgstr "Crea un nuovo evento"
|
||||
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:305
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:295
|
||||
msgid "list"
|
||||
msgstr "lista"
|
||||
|
||||
|
|
@ -10293,12 +10293,12 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
|
||||
#: src/Module/Settings/Display.php:349
|
||||
#: src/Module/Settings/Display.php:339
|
||||
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:340
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:123
|
||||
msgid "Description"
|
||||
msgstr "Descrizione"
|
||||
|
|
@ -10734,213 +10734,215 @@ msgstr "Delegati Potenziali"
|
|||
msgid "No entries."
|
||||
msgstr "Nessuna voce."
|
||||
|
||||
#: src/Module/Settings/Display.php:180
|
||||
#: src/Module/Settings/Display.php:174
|
||||
msgid "The theme you chose isn't available."
|
||||
msgstr "Il tema che hai scelto non è disponibile."
|
||||
|
||||
#: src/Module/Settings/Display.php:220
|
||||
#: src/Module/Settings/Display.php:214
|
||||
#, php-format
|
||||
msgid "%s - (Unsupported)"
|
||||
msgstr "%s - (Non supportato)"
|
||||
|
||||
#: src/Module/Settings/Display.php:260
|
||||
#: src/Module/Settings/Display.php:250
|
||||
msgid "Color/Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:261 view/theme/frio/php/scheme.php:95
|
||||
#: src/Module/Settings/Display.php:251 view/theme/frio/php/scheme.php:95
|
||||
msgid "Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:262
|
||||
#: src/Module/Settings/Display.php:252
|
||||
msgid "Color/White"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:263
|
||||
#: src/Module/Settings/Display.php:253
|
||||
msgid "White"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:268
|
||||
#: src/Module/Settings/Display.php:258
|
||||
msgid "No preview"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:269
|
||||
#: src/Module/Settings/Display.php:259
|
||||
msgid "No image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:270
|
||||
#: src/Module/Settings/Display.php:260
|
||||
msgid "Small Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:271
|
||||
#: src/Module/Settings/Display.php:261
|
||||
msgid "Large Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:316
|
||||
#: src/Module/Settings/Display.php:306
|
||||
msgid "Display Settings"
|
||||
msgstr "Impostazioni Grafiche"
|
||||
|
||||
#: src/Module/Settings/Display.php:318
|
||||
#: src/Module/Settings/Display.php:308
|
||||
msgid "General Theme Settings"
|
||||
msgstr "Opzioni Generali Tema"
|
||||
|
||||
#: src/Module/Settings/Display.php:319
|
||||
#: src/Module/Settings/Display.php:309
|
||||
msgid "Custom Theme Settings"
|
||||
msgstr "Opzioni Personalizzate Tema"
|
||||
|
||||
#: src/Module/Settings/Display.php:320
|
||||
#: src/Module/Settings/Display.php:310
|
||||
msgid "Content Settings"
|
||||
msgstr "Opzioni Contenuto"
|
||||
|
||||
#: src/Module/Settings/Display.php:321 view/theme/duepuntozero/config.php:74
|
||||
#: src/Module/Settings/Display.php:311 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 "Impostazioni tema"
|
||||
|
||||
#: src/Module/Settings/Display.php:322
|
||||
#: src/Module/Settings/Display.php:312
|
||||
msgid "Timelines"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:329
|
||||
#: src/Module/Settings/Display.php:319
|
||||
msgid "Display Theme:"
|
||||
msgstr "Tema:"
|
||||
|
||||
#: src/Module/Settings/Display.php:330
|
||||
#: src/Module/Settings/Display.php:320
|
||||
msgid "Mobile Theme:"
|
||||
msgstr "Tema mobile:"
|
||||
|
||||
#: src/Module/Settings/Display.php:333
|
||||
#: src/Module/Settings/Display.php:323
|
||||
msgid "Number of items to display per page:"
|
||||
msgstr "Numero di elementi da mostrare per pagina:"
|
||||
|
||||
#: src/Module/Settings/Display.php:333 src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:323 src/Module/Settings/Display.php:324
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr "Massimo 100 voci"
|
||||
|
||||
#: src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:324
|
||||
msgid "Number of items to display per page when viewed from mobile device:"
|
||||
msgstr "Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:"
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr "Aggiorna il browser ogni x secondi"
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid "Regularly update the page content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Minimum of 10 seconds. Enter -1 to disable it."
|
||||
msgstr "Minimo 10 secondi. Inserisci -1 per disabilitarlo"
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid ""
|
||||
"When enabled, new content on network, community and channels are added on "
|
||||
"top."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "Display emoticons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "When enabled, emoticons are replaced with matching symbols."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Infinite scroll"
|
||||
msgstr "Scroll infinito"
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Automatic fetch new items when reaching the page end."
|
||||
msgstr "Recupero automatico di nuovi oggetti quando viene raggiunta la fine della pagina."
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable Smart Threading"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable the automatic suppression of extraneous thread indentation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid "Display the Dislike feature"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid ""
|
||||
"Display the Dislike button and dislike reactions on posts and comments."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
msgid "Display the resharer"
|
||||
msgstr "Mostra chi ha condiviso"
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
msgid "Display the first resharer as icon and text on a reshared item."
|
||||
msgstr "Mostra chi ha condiviso per primo come icona e testo su un oggetto ricondiviso."
|
||||
|
||||
#: src/Module/Settings/Display.php:341
|
||||
#: src/Module/Settings/Display.php:331
|
||||
msgid "Stay local"
|
||||
msgstr "Rimani in locale"
|
||||
|
||||
#: src/Module/Settings/Display.php:341
|
||||
#: src/Module/Settings/Display.php:331
|
||||
msgid "Don't go to a remote system when following a contact link."
|
||||
msgstr "Non andare sul sistema remoto mentre segui il collegamento di un contatto."
|
||||
|
||||
#: src/Module/Settings/Display.php:342
|
||||
#: src/Module/Settings/Display.php:332
|
||||
msgid "Show the post deletion checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:342
|
||||
#: src/Module/Settings/Display.php:332
|
||||
msgid "Display the checkbox for the post deletion on the network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "DIsplay the event list"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "Display the birthday reminder and event list on the network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
msgid "Link preview mode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
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:335
|
||||
msgid "Hide pictures with empty alternative text"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:345
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Don't display pictures that are missing the alternative text."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Hide custom emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Don't display custom emojis."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Platform icons style"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Style of the platform icons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:352
|
||||
#: src/Module/Settings/Display.php:342
|
||||
msgid "Bookmark"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:354
|
||||
#: src/Module/Settings/Display.php:344
|
||||
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:346
|
||||
msgid "Channel languages:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:356
|
||||
#: src/Module/Settings/Display.php:346
|
||||
msgid ""
|
||||
"Select all the languages you want to see in your channels. \"Unspecified\" "
|
||||
"describes all posts for which no language information was detected (e.g. "
|
||||
|
|
@ -10949,11 +10951,11 @@ msgid ""
|
|||
"list."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:358
|
||||
#: src/Module/Settings/Display.php:348
|
||||
msgid "Beginning of week:"
|
||||
msgstr "Inizio della settimana:"
|
||||
|
||||
#: src/Module/Settings/Display.php:359
|
||||
#: src/Module/Settings/Display.php:349
|
||||
msgid "Default calendar view:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -12602,32 +12604,32 @@ msgstr "Da bacheca a bacheca"
|
|||
msgid "via Wall-To-Wall:"
|
||||
msgstr "da bacheca a bacheca"
|
||||
|
||||
#: src/Object/Post.php:602
|
||||
#: src/Object/Post.php:603
|
||||
#, php-format
|
||||
msgid "Reply to %s"
|
||||
msgstr "Rispondi a %s"
|
||||
|
||||
#: src/Object/Post.php:624
|
||||
#: src/Object/Post.php:625
|
||||
msgid "Notifier task is pending"
|
||||
msgstr "L'attività di notifica è in attesa"
|
||||
|
||||
#: src/Object/Post.php:625
|
||||
#: src/Object/Post.php:626
|
||||
msgid "Delivery to remote servers is pending"
|
||||
msgstr "La consegna ai server remoti è in attesa"
|
||||
|
||||
#: src/Object/Post.php:626
|
||||
#: src/Object/Post.php:627
|
||||
msgid "Delivery to remote servers is underway"
|
||||
msgstr "La consegna ai server remoti è in corso"
|
||||
|
||||
#: src/Object/Post.php:627
|
||||
#: src/Object/Post.php:628
|
||||
msgid "Delivery to remote servers is mostly done"
|
||||
msgstr "La consegna ai server remoti è quasi completata"
|
||||
|
||||
#: src/Object/Post.php:628
|
||||
#: src/Object/Post.php:629
|
||||
msgid "Delivery to remote servers is done"
|
||||
msgstr "La consegna ai server remoti è completata"
|
||||
|
||||
#: src/Object/Post.php:650
|
||||
#: src/Object/Post.php:651
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
|
|
@ -12635,65 +12637,65 @@ msgstr[0] "%d commento"
|
|||
msgstr[1] "%d commenti"
|
||||
msgstr[2] "%d commenti"
|
||||
|
||||
#: src/Object/Post.php:651
|
||||
#: src/Object/Post.php:652
|
||||
msgid "Show more"
|
||||
msgstr "Mostra di più"
|
||||
|
||||
#: src/Object/Post.php:652
|
||||
#: src/Object/Post.php:653
|
||||
msgid "Show fewer"
|
||||
msgstr "Mostra di meno"
|
||||
|
||||
#: src/Object/Post.php:689
|
||||
#: src/Object/Post.php:690
|
||||
#, php-format
|
||||
msgid "Reshared by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:694
|
||||
#: src/Object/Post.php:695
|
||||
#, php-format
|
||||
msgid "Viewed by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:699
|
||||
#: src/Object/Post.php:700
|
||||
#, php-format
|
||||
msgid "Read by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:704
|
||||
#: src/Object/Post.php:705
|
||||
#, php-format
|
||||
msgid "Liked by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:709
|
||||
#: src/Object/Post.php:710
|
||||
#, php-format
|
||||
msgid "Disliked by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:714
|
||||
#: src/Object/Post.php:715
|
||||
#, php-format
|
||||
msgid "Attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:719
|
||||
#: src/Object/Post.php:720
|
||||
#, php-format
|
||||
msgid "Maybe attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:724
|
||||
#: src/Object/Post.php:725
|
||||
#, php-format
|
||||
msgid "Not attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:729
|
||||
#: src/Object/Post.php:730
|
||||
#, php-format
|
||||
msgid "Commented by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:734
|
||||
#: src/Object/Post.php:735
|
||||
#, php-format
|
||||
msgid "Reacted with %s by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:757
|
||||
#: src/Object/Post.php:758
|
||||
#, php-format
|
||||
msgid "Quote shared by: %s"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1930,8 +1930,6 @@ $a->strings['Mobile Theme:'] = 'Tema mobile:';
|
|||
$a->strings['Number of items to display per page:'] = 'Numero di elementi da mostrare per pagina:';
|
||||
$a->strings['Maximum of 100 items'] = 'Massimo 100 voci';
|
||||
$a->strings['Number of items to display per page when viewed from mobile device:'] = 'Numero di voci da visualizzare per pagina quando si utilizza un dispositivo mobile:';
|
||||
$a->strings['Update browser every xx seconds'] = 'Aggiorna il browser ogni x secondi';
|
||||
$a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Minimo 10 secondi. Inserisci -1 per disabilitarlo';
|
||||
$a->strings['Infinite scroll'] = 'Scroll infinito';
|
||||
$a->strings['Automatic fetch new items when reaching the page end.'] = 'Recupero automatico di nuovi oggetti quando viene raggiunta la fine della pagina.';
|
||||
$a->strings['Display the resharer'] = 'Mostra chi ha condiviso';
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-05 22:44+0000\n"
|
||||
"POT-Creation-Date: 2025-02-09 20:13+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"
|
||||
|
|
@ -75,7 +75,7 @@ msgstr "見つかりませんでした。"
|
|||
#: 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/Display.php:188
|
||||
#: src/Module/Settings/Profile/Photo/Crop.php:148
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:96
|
||||
#: src/Module/Settings/RemoveMe.php:103 src/Module/Settings/UserExport.php:64
|
||||
|
|
@ -296,7 +296,7 @@ msgstr "webリンクを挿入"
|
|||
#: mod/message.php:188 mod/message.php:344 mod/photos.php:1252
|
||||
#: 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:607
|
||||
#: src/Object/Post.php:608
|
||||
msgid "Please wait"
|
||||
msgstr "お待ち下さい"
|
||||
|
||||
|
|
@ -319,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:1148 view/theme/duepuntozero/config.php:73
|
||||
#: src/Object/Post.php:1149 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"
|
||||
|
|
@ -604,25 +604,25 @@ msgstr "CCWを回転(左)"
|
|||
|
||||
#: mod/photos.php:1090 mod/photos.php:1146 mod/photos.php:1226
|
||||
#: src/Module/Contact.php:599 src/Module/Item/Compose.php:184
|
||||
#: src/Object/Post.php:1145
|
||||
#: src/Object/Post.php:1146
|
||||
msgid "This is you"
|
||||
msgstr "これはあなたです"
|
||||
|
||||
#: mod/photos.php:1092 mod/photos.php:1148 mod/photos.php:1228
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:601
|
||||
#: src/Object/Post.php:1147
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:602
|
||||
#: src/Object/Post.php:1148
|
||||
msgid "Comment"
|
||||
msgstr "コメント"
|
||||
|
||||
#: mod/photos.php:1094 mod/photos.php:1150 mod/photos.php:1230
|
||||
#: 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:1161
|
||||
#: src/Object/Post.php:1162
|
||||
msgid "Preview"
|
||||
msgstr "プレビュー"
|
||||
|
||||
#: mod/photos.php:1095 src/Content/Conversation.php:357
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1149
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1150
|
||||
msgid "Loading..."
|
||||
msgstr "読み込み中…"
|
||||
|
||||
|
|
@ -664,112 +664,112 @@ msgstr "地図"
|
|||
msgid "Apologies but the website is unavailable at the moment."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:247
|
||||
#: src/App/Page.php:236
|
||||
msgid "Delete this item?"
|
||||
msgstr "この項目を削除しますか?"
|
||||
|
||||
#: src/App/Page.php:248
|
||||
#: 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:249
|
||||
#: 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:250
|
||||
#: src/App/Page.php:239
|
||||
msgid "Collapse this author's posts?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:251
|
||||
#: src/App/Page.php:240
|
||||
msgid "Ignore this author's server?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:252 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:254
|
||||
#: src/App/Page.php:243
|
||||
msgid "Like not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:255
|
||||
#: src/App/Page.php:244
|
||||
msgid "Dislike not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:256
|
||||
#: src/App/Page.php:245
|
||||
msgid "Sharing not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:257
|
||||
#: src/App/Page.php:246
|
||||
msgid "Attendance unsuccessful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:258
|
||||
#: src/App/Page.php:247
|
||||
msgid "Backend error"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:259
|
||||
#: src/App/Page.php:248
|
||||
msgid "Network error"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:262
|
||||
#: src/App/Page.php:251
|
||||
msgid "Drop files here to upload"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:263
|
||||
#: src/App/Page.php:252
|
||||
msgid "Your browser does not support drag and drop file uploads."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:264
|
||||
#: 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:265
|
||||
#: src/App/Page.php:254
|
||||
msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:266
|
||||
#: src/App/Page.php:255
|
||||
msgid "You can't upload files of this type."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:267
|
||||
#: src/App/Page.php:256
|
||||
msgid "Server responded with {{statusCode}} code."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:268
|
||||
#: src/App/Page.php:257
|
||||
msgid "Cancel upload"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:269
|
||||
#: src/App/Page.php:258
|
||||
msgid "Upload canceled."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:270
|
||||
#: src/App/Page.php:259
|
||||
msgid "Are you sure you want to cancel this upload?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:271
|
||||
#: src/App/Page.php:260
|
||||
msgid "Remove file"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:272
|
||||
#: src/App/Page.php:261
|
||||
msgid "You can't upload any more files."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:356
|
||||
#: src/App/Page.php:345
|
||||
msgid "toggle mobile"
|
||||
msgstr "モバイルを切り替え"
|
||||
|
||||
#: src/App/Page.php:367 src/Module/Admin/Logs/View.php:92
|
||||
#: src/App/Page.php:356 src/Module/Admin/Logs/View.php:92
|
||||
#: view/theme/frio/php/minimal.php:39 view/theme/frio/php/standard.php:138
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
|
@ -1250,7 +1250,7 @@ msgid "Visible to <strong>everybody</strong>"
|
|||
msgstr "<strong>すべての人</strong> が閲覧可能です"
|
||||
|
||||
#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196
|
||||
#: src/Object/Post.php:1160
|
||||
#: src/Object/Post.php:1161
|
||||
msgid "Please enter a image/video/audio/webpage URL:"
|
||||
msgstr "画像/動画/音声/ウェブページのURLを入力してください:"
|
||||
|
||||
|
|
@ -1295,52 +1295,52 @@ 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:1150
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1151
|
||||
msgid "Bold"
|
||||
msgstr "太字"
|
||||
|
||||
#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1151
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1152
|
||||
msgid "Italic"
|
||||
msgstr "斜体"
|
||||
|
||||
#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1152
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1153
|
||||
msgid "Underline"
|
||||
msgstr "下線"
|
||||
|
||||
#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1154
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1155
|
||||
msgid "Quote"
|
||||
msgstr "引用"
|
||||
|
||||
#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1155
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1156
|
||||
msgid "Add emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191
|
||||
#: src/Object/Post.php:1153
|
||||
#: src/Object/Post.php:1154
|
||||
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:1156
|
||||
#: src/Module/Post/Edit.php:167 src/Object/Post.php:1157
|
||||
msgid "Code"
|
||||
msgstr "コード"
|
||||
|
||||
#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193
|
||||
#: src/Object/Post.php:1157
|
||||
#: src/Object/Post.php:1158
|
||||
msgid "Image"
|
||||
msgstr "画像"
|
||||
|
||||
#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1158
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1159
|
||||
msgid "Link"
|
||||
msgstr "リンク"
|
||||
|
||||
#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1159
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1160
|
||||
msgid "Link or Media"
|
||||
msgstr "リンク/メディア"
|
||||
|
||||
|
|
@ -1514,7 +1514,7 @@ msgstr "カテゴリ:"
|
|||
msgid "Filed under:"
|
||||
msgstr "格納先:"
|
||||
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:558
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:559
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "%s から %s"
|
||||
|
|
@ -1774,7 +1774,7 @@ msgstr ""
|
|||
|
||||
#: src/Content/Feature.php:131 src/Content/Widget.php:610
|
||||
#: src/Module/Admin/Site.php:463 src/Module/BaseSettings.php:113
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:323
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:313
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1949,7 +1949,7 @@ msgstr ""
|
|||
msgid "Languages"
|
||||
msgstr "言語"
|
||||
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:585
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:586
|
||||
msgid "Search Text"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2042,7 +2042,7 @@ msgstr ""
|
|||
#: src/Content/Nav.php:229 src/Content/Nav.php:289
|
||||
#: 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:225
|
||||
#: src/Module/Settings/Display.php:314 view/theme/frio/theme.php:225
|
||||
#: view/theme/frio/theme.php:229
|
||||
msgid "Calendar"
|
||||
msgstr "カレンダー"
|
||||
|
|
@ -2926,37 +2926,37 @@ msgid "%s (%s)"
|
|||
msgstr ""
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:416
|
||||
#: src/Module/Settings/Display.php:292
|
||||
#: src/Module/Settings/Display.php:282
|
||||
msgid "Monday"
|
||||
msgstr "月曜"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:417
|
||||
#: src/Module/Settings/Display.php:293
|
||||
#: src/Module/Settings/Display.php:283
|
||||
msgid "Tuesday"
|
||||
msgstr "火曜日"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:418
|
||||
#: src/Module/Settings/Display.php:294
|
||||
#: src/Module/Settings/Display.php:284
|
||||
msgid "Wednesday"
|
||||
msgstr "水曜日"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:419
|
||||
#: src/Module/Settings/Display.php:295
|
||||
#: src/Module/Settings/Display.php:285
|
||||
msgid "Thursday"
|
||||
msgstr "木曜日"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:420
|
||||
#: src/Module/Settings/Display.php:296
|
||||
#: src/Module/Settings/Display.php:286
|
||||
msgid "Friday"
|
||||
msgstr "金曜日"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:421
|
||||
#: src/Module/Settings/Display.php:297
|
||||
#: src/Module/Settings/Display.php:287
|
||||
msgid "Saturday"
|
||||
msgstr "土曜日"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:415
|
||||
#: src/Module/Settings/Display.php:291
|
||||
#: src/Module/Settings/Display.php:281
|
||||
msgid "Sunday"
|
||||
msgstr "日曜日"
|
||||
|
||||
|
|
@ -3409,17 +3409,17 @@ msgid "today"
|
|||
msgstr "今日"
|
||||
|
||||
#: src/Model/Event.php:449 src/Module/Calendar/Show.php:117
|
||||
#: src/Module/Settings/Display.php:302 src/Util/Temporal.php:343
|
||||
#: src/Module/Settings/Display.php:292 src/Util/Temporal.php:343
|
||||
msgid "month"
|
||||
msgstr "月"
|
||||
|
||||
#: src/Model/Event.php:450 src/Module/Calendar/Show.php:118
|
||||
#: src/Module/Settings/Display.php:303 src/Util/Temporal.php:344
|
||||
#: src/Module/Settings/Display.php:293 src/Util/Temporal.php:344
|
||||
msgid "week"
|
||||
msgstr "週間"
|
||||
|
||||
#: src/Model/Event.php:451 src/Module/Calendar/Show.php:119
|
||||
#: src/Module/Settings/Display.php:304 src/Util/Temporal.php:345
|
||||
#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:345
|
||||
msgid "day"
|
||||
msgstr "日"
|
||||
|
||||
|
|
@ -3986,7 +3986,7 @@ 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/Themes/Details.php:41 src/Module/Settings/Display.php:341
|
||||
msgid "Enable"
|
||||
msgstr "有効にする"
|
||||
|
||||
|
|
@ -4037,7 +4037,7 @@ msgstr "アドオン %s のインストールに失敗しました。"
|
|||
#: 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:307
|
||||
#: src/Module/Settings/Features.php:61
|
||||
msgid "Save Settings"
|
||||
msgstr "設定を保存"
|
||||
|
|
@ -4408,11 +4408,11 @@ msgstr ""
|
|||
msgid "%s is no valid input for maximum image size"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:212
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:206
|
||||
msgid "No special theme for mobile devices"
|
||||
msgstr "モバイルデバイス向けの特別なテーマはありません"
|
||||
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:222
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:216
|
||||
#, php-format
|
||||
msgid "%s - (Experimental)"
|
||||
msgstr "%s (実験的)"
|
||||
|
|
@ -5489,7 +5489,7 @@ msgid ""
|
|||
msgstr "\"all \"または\"tags \"にすることができます。 「すべて」は、すべての一般公開投稿を受信することを意味します。 「タグ」は、選択したタグのある投稿のみを受信することを意味します。"
|
||||
|
||||
#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:315
|
||||
#: src/Module/Settings/Display.php:259
|
||||
#: src/Module/Settings/Display.php:249
|
||||
#: src/Module/Settings/TwoFactor/Index.php:132
|
||||
msgid "Disabled"
|
||||
msgstr "無効"
|
||||
|
|
@ -6119,7 +6119,7 @@ msgstr "新会員のためのヒント"
|
|||
#: src/Module/Contact.php:537 src/Module/Conversation/Channel.php:98
|
||||
#: src/Module/Conversation/Community.php:91
|
||||
#: src/Module/Conversation/Network.php:295
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:605
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:606
|
||||
msgid "More"
|
||||
msgstr "更に"
|
||||
|
||||
|
|
@ -6307,7 +6307,7 @@ msgstr "表示する"
|
|||
msgid "Create New Event"
|
||||
msgstr "新しいイベントを作成"
|
||||
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:305
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:295
|
||||
msgid "list"
|
||||
msgstr "リスト"
|
||||
|
||||
|
|
@ -10175,12 +10175,12 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
|
||||
#: src/Module/Settings/Display.php:349
|
||||
#: src/Module/Settings/Display.php:339
|
||||
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:340
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:123
|
||||
msgid "Description"
|
||||
msgstr "説明"
|
||||
|
|
@ -10616,213 +10616,215 @@ msgstr "移譲先の候補"
|
|||
msgid "No entries."
|
||||
msgstr "エントリは有りません。"
|
||||
|
||||
#: src/Module/Settings/Display.php:180
|
||||
#: src/Module/Settings/Display.php:174
|
||||
msgid "The theme you chose isn't available."
|
||||
msgstr "選択したテーマは使用できません。"
|
||||
|
||||
#: src/Module/Settings/Display.php:220
|
||||
#: src/Module/Settings/Display.php:214
|
||||
#, php-format
|
||||
msgid "%s - (Unsupported)"
|
||||
msgstr "%s (サポートされていません)"
|
||||
|
||||
#: src/Module/Settings/Display.php:260
|
||||
#: src/Module/Settings/Display.php:250
|
||||
msgid "Color/Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:261 view/theme/frio/php/scheme.php:95
|
||||
#: src/Module/Settings/Display.php:251 view/theme/frio/php/scheme.php:95
|
||||
msgid "Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:262
|
||||
#: src/Module/Settings/Display.php:252
|
||||
msgid "Color/White"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:263
|
||||
#: src/Module/Settings/Display.php:253
|
||||
msgid "White"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:268
|
||||
#: src/Module/Settings/Display.php:258
|
||||
msgid "No preview"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:269
|
||||
#: src/Module/Settings/Display.php:259
|
||||
msgid "No image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:270
|
||||
#: src/Module/Settings/Display.php:260
|
||||
msgid "Small Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:271
|
||||
#: src/Module/Settings/Display.php:261
|
||||
msgid "Large Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:316
|
||||
#: src/Module/Settings/Display.php:306
|
||||
msgid "Display Settings"
|
||||
msgstr "ディスプレイの設定"
|
||||
|
||||
#: src/Module/Settings/Display.php:318
|
||||
#: src/Module/Settings/Display.php:308
|
||||
msgid "General Theme Settings"
|
||||
msgstr "一般的なテーマ設定"
|
||||
|
||||
#: src/Module/Settings/Display.php:319
|
||||
#: src/Module/Settings/Display.php:309
|
||||
msgid "Custom Theme Settings"
|
||||
msgstr "カスタムテーマ設定"
|
||||
|
||||
#: src/Module/Settings/Display.php:320
|
||||
#: src/Module/Settings/Display.php:310
|
||||
msgid "Content Settings"
|
||||
msgstr "コンテンツ設定"
|
||||
|
||||
#: src/Module/Settings/Display.php:321 view/theme/duepuntozero/config.php:74
|
||||
#: src/Module/Settings/Display.php:311 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:312
|
||||
msgid "Timelines"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:329
|
||||
#: src/Module/Settings/Display.php:319
|
||||
msgid "Display Theme:"
|
||||
msgstr "ディスプレイテーマ:"
|
||||
|
||||
#: src/Module/Settings/Display.php:330
|
||||
#: src/Module/Settings/Display.php:320
|
||||
msgid "Mobile Theme:"
|
||||
msgstr "モバイルテーマ:"
|
||||
|
||||
#: src/Module/Settings/Display.php:333
|
||||
#: src/Module/Settings/Display.php:323
|
||||
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:323 src/Module/Settings/Display.php:324
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr "最大100項目"
|
||||
|
||||
#: src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:324
|
||||
msgid "Number of items to display per page when viewed from mobile device:"
|
||||
msgstr "モバイルデバイスから表示したときにページごとに表示する項目の数:"
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr "xx秒ごとにブラウザーを更新する"
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid "Regularly update the page content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Minimum of 10 seconds. Enter -1 to disable it."
|
||||
msgstr "10秒以上。 -1を入力して無効にします。"
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid ""
|
||||
"When enabled, new content on network, community and channels are added on "
|
||||
"top."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "Display emoticons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "When enabled, emoticons are replaced with matching symbols."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Infinite scroll"
|
||||
msgstr "無限スクロール"
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Automatic fetch new items when reaching the page end."
|
||||
msgstr "ページの最後に到達したとき、新規項目を自動取得する"
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable Smart Threading"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable the automatic suppression of extraneous thread indentation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid "Display the Dislike feature"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid ""
|
||||
"Display the Dislike button and dislike reactions on posts and comments."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
msgid "Display the resharer"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
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:331
|
||||
msgid "Stay local"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:341
|
||||
#: src/Module/Settings/Display.php:331
|
||||
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:332
|
||||
msgid "Show the post deletion checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:342
|
||||
#: src/Module/Settings/Display.php:332
|
||||
msgid "Display the checkbox for the post deletion on the network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "DIsplay the event list"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "Display the birthday reminder and event list on the network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
msgid "Link preview mode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
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:335
|
||||
msgid "Hide pictures with empty alternative text"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:345
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Don't display pictures that are missing the alternative text."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Hide custom emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Don't display custom emojis."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Platform icons style"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Style of the platform icons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:352
|
||||
#: src/Module/Settings/Display.php:342
|
||||
msgid "Bookmark"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:354
|
||||
#: src/Module/Settings/Display.php:344
|
||||
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:346
|
||||
msgid "Channel languages:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:356
|
||||
#: src/Module/Settings/Display.php:346
|
||||
msgid ""
|
||||
"Select all the languages you want to see in your channels. \"Unspecified\" "
|
||||
"describes all posts for which no language information was detected (e.g. "
|
||||
|
|
@ -10831,11 +10833,11 @@ msgid ""
|
|||
"list."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:358
|
||||
#: src/Module/Settings/Display.php:348
|
||||
msgid "Beginning of week:"
|
||||
msgstr "週の始まり:"
|
||||
|
||||
#: src/Module/Settings/Display.php:359
|
||||
#: src/Module/Settings/Display.php:349
|
||||
msgid "Default calendar view:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -12482,96 +12484,96 @@ msgstr "壁間"
|
|||
msgid "via Wall-To-Wall:"
|
||||
msgstr "Wall-to-Wall経由:"
|
||||
|
||||
#: src/Object/Post.php:602
|
||||
#: src/Object/Post.php:603
|
||||
#, php-format
|
||||
msgid "Reply to %s"
|
||||
msgstr "%sへの返信"
|
||||
|
||||
#: src/Object/Post.php:624
|
||||
#: src/Object/Post.php:625
|
||||
msgid "Notifier task is pending"
|
||||
msgstr "通知タスクは保留中です"
|
||||
|
||||
#: src/Object/Post.php:625
|
||||
#: src/Object/Post.php:626
|
||||
msgid "Delivery to remote servers is pending"
|
||||
msgstr "リモートサーバーへの配信は保留中です"
|
||||
|
||||
#: src/Object/Post.php:626
|
||||
#: src/Object/Post.php:627
|
||||
msgid "Delivery to remote servers is underway"
|
||||
msgstr "リモートサーバーへの配信が進行中です"
|
||||
|
||||
#: src/Object/Post.php:627
|
||||
#: src/Object/Post.php:628
|
||||
msgid "Delivery to remote servers is mostly done"
|
||||
msgstr "リモートサーバーへの配信はもうすぐ完了します"
|
||||
|
||||
#: src/Object/Post.php:628
|
||||
#: src/Object/Post.php:629
|
||||
msgid "Delivery to remote servers is done"
|
||||
msgstr "リモートサーバーへの配信が完了しました"
|
||||
|
||||
#: src/Object/Post.php:650
|
||||
#: src/Object/Post.php:651
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
msgstr[0] "%dコメント"
|
||||
|
||||
#: src/Object/Post.php:651
|
||||
#: src/Object/Post.php:652
|
||||
msgid "Show more"
|
||||
msgstr "もっと見せる"
|
||||
|
||||
#: src/Object/Post.php:652
|
||||
#: src/Object/Post.php:653
|
||||
msgid "Show fewer"
|
||||
msgstr "表示を減らす"
|
||||
|
||||
#: src/Object/Post.php:689
|
||||
#: src/Object/Post.php:690
|
||||
#, php-format
|
||||
msgid "Reshared by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:694
|
||||
#: src/Object/Post.php:695
|
||||
#, php-format
|
||||
msgid "Viewed by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:699
|
||||
#: src/Object/Post.php:700
|
||||
#, php-format
|
||||
msgid "Read by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:704
|
||||
#: src/Object/Post.php:705
|
||||
#, php-format
|
||||
msgid "Liked by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:709
|
||||
#: src/Object/Post.php:710
|
||||
#, php-format
|
||||
msgid "Disliked by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:714
|
||||
#: src/Object/Post.php:715
|
||||
#, php-format
|
||||
msgid "Attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:719
|
||||
#: src/Object/Post.php:720
|
||||
#, php-format
|
||||
msgid "Maybe attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:724
|
||||
#: src/Object/Post.php:725
|
||||
#, php-format
|
||||
msgid "Not attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:729
|
||||
#: src/Object/Post.php:730
|
||||
#, php-format
|
||||
msgid "Commented by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:734
|
||||
#: src/Object/Post.php:735
|
||||
#, php-format
|
||||
msgid "Reacted with %s by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:757
|
||||
#: src/Object/Post.php:758
|
||||
#, php-format
|
||||
msgid "Quote shared by: %s"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1618,8 +1618,6 @@ $a->strings['Mobile Theme:'] = 'モバイルテーマ:';
|
|||
$a->strings['Number of items to display per page:'] = 'ページごとに表示する項目の数:';
|
||||
$a->strings['Maximum of 100 items'] = '最大100項目';
|
||||
$a->strings['Number of items to display per page when viewed from mobile device:'] = 'モバイルデバイスから表示したときにページごとに表示する項目の数:';
|
||||
$a->strings['Update browser every xx seconds'] = 'xx秒ごとにブラウザーを更新する';
|
||||
$a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = '10秒以上。 -1を入力して無効にします。';
|
||||
$a->strings['Infinite scroll'] = '無限スクロール';
|
||||
$a->strings['Automatic fetch new items when reaching the page end.'] = 'ページの最後に到達したとき、新規項目を自動取得する';
|
||||
$a->strings['Beginning of week:'] = '週の始まり:';
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
# FRIENDICA Distributed Social Network
|
||||
# Copyright (C) 2010-2024, the Friendica project
|
||||
# Copyright (C) 2010-2025, the Friendica project
|
||||
# This file is distributed under the same license as the Friendica package.
|
||||
#
|
||||
# Translators:
|
||||
|
|
@ -20,7 +20,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-12-23 10:09+0000\n"
|
||||
"POT-Creation-Date: 2025-02-09 20:13+0000\n"
|
||||
"PO-Revision-Date: 2011-05-05 10:19+0000\n"
|
||||
"Last-Translator: Casper <casper@vrije-mens.org>, 2019-2020\n"
|
||||
"Language-Team: Dutch (http://app.transifex.com/Friendica/friendica/language/nl/)\n"
|
||||
|
|
@ -30,38 +30,38 @@ msgstr ""
|
|||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: mod/item.php:88 mod/item.php:91 mod/item.php:158 mod/item.php:161
|
||||
#: mod/item.php:87 mod/item.php:90 mod/item.php:157 mod/item.php:160
|
||||
msgid "Unable to locate original post."
|
||||
msgstr "Ik kan de originele post niet meer vinden."
|
||||
|
||||
#: mod/item.php:126
|
||||
#: mod/item.php:125
|
||||
msgid "Post updated."
|
||||
msgstr "Post geupdate."
|
||||
|
||||
#: mod/item.php:191 mod/item.php:195
|
||||
#: mod/item.php:190 mod/item.php:194
|
||||
msgid "Item wasn't stored."
|
||||
msgstr "Item is niet opgeslagen."
|
||||
|
||||
#: mod/item.php:205
|
||||
#: mod/item.php:204
|
||||
msgid "Item couldn't be fetched."
|
||||
msgstr "Item kan niet worden opgehaald."
|
||||
|
||||
#: mod/item.php:249 mod/item.php:253
|
||||
#: mod/item.php:248 mod/item.php:252
|
||||
msgid "Empty post discarded."
|
||||
msgstr "Lege post weggegooid."
|
||||
|
||||
#: mod/item.php:424 src/Module/Admin/Themes/Details.php:31
|
||||
#: mod/item.php:423 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: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
|
||||
#: mod/item.php:447 mod/message.php:54 mod/message.php:100 mod/notes.php:34
|
||||
#: mod/photos.php:132 mod/photos.php:624 src/Model/Event.php:506
|
||||
#: src/Module/Attach.php:40 src/Module/BaseApi.php:90
|
||||
#: 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
|
||||
#: src/Module/Calendar/Export.php:68 src/Module/Calendar/Show.php:70
|
||||
#: 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
|
||||
|
|
@ -74,15 +74,15 @@ msgstr "Item niet gevonden."
|
|||
#: 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/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: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/Display.php:188
|
||||
#: src/Module/Settings/Profile/Photo/Crop.php:148
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:96
|
||||
#: src/Module/Settings/RemoveMe.php:103 src/Module/Settings/UserExport.php:64
|
||||
|
|
@ -228,7 +228,7 @@ msgstr "\n\t\t\tJe login details zijn de volgende:\n\n\t\t\tSite Locatie:\t%1$s\
|
|||
msgid "Your password has been changed at %s"
|
||||
msgstr "Je wachtwoord is veranderd op %s"
|
||||
|
||||
#: mod/message.php:33 mod/message.php:115 src/Content/Nav.php:307
|
||||
#: mod/message.php:33 mod/message.php:115 src/Content/Nav.php:317
|
||||
msgid "New Message"
|
||||
msgstr "Nieuw Bericht"
|
||||
|
||||
|
|
@ -254,7 +254,7 @@ msgstr "Fout bij het verzamelen van berichten."
|
|||
msgid "Discard"
|
||||
msgstr "Verwerpen"
|
||||
|
||||
#: mod/message.php:122 src/Content/Nav.php:304 view/theme/frio/theme.php:232
|
||||
#: mod/message.php:122 src/Content/Nav.php:314 view/theme/frio/theme.php:230
|
||||
msgid "Messages"
|
||||
msgstr "Privéberichten"
|
||||
|
||||
|
|
@ -300,23 +300,23 @@ msgstr "Foto uploaden"
|
|||
msgid "Insert web link"
|
||||
msgstr "Voeg een webadres in"
|
||||
|
||||
#: mod/message.php:188 mod/message.php:344 mod/photos.php:1253
|
||||
#: mod/message.php:188 mod/message.php:344 mod/photos.php:1252
|
||||
#: 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:605
|
||||
#: src/Object/Post.php:608
|
||||
msgid "Please wait"
|
||||
msgstr "Even geduld"
|
||||
|
||||
#: 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:655
|
||||
#: mod/photos.php:775 mod/photos.php:1052 mod/photos.php:1093
|
||||
#: mod/photos.php:1149 mod/photos.php:1229
|
||||
#: 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/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/FriendSuggest.php:132 src/Module/Install.php:219
|
||||
#: src/Module/Install.php:259 src/Module/Install.php:296
|
||||
#: 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
|
||||
|
|
@ -326,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:1146 view/theme/duepuntozero/config.php:73
|
||||
#: src/Object/Post.php:1149 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"
|
||||
|
|
@ -398,112 +398,112 @@ msgstr ""
|
|||
msgid "Save"
|
||||
msgstr "Bewaren"
|
||||
|
||||
#: 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:51 mod/photos.php:114 mod/photos.php:534
|
||||
#: src/Model/Event.php:498 src/Model/Profile.php:211
|
||||
#: src/Module/Calendar/Export.php:60 src/Module/Calendar/Show.php:62
|
||||
#: 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/Register.php:260
|
||||
msgid "User not found."
|
||||
msgstr "Gebruiker niet gevonden."
|
||||
|
||||
#: mod/photos.php:89 src/Module/BaseProfile.php:53
|
||||
#: mod/photos.php:88 src/Module/BaseProfile.php:53
|
||||
#: src/Module/Profile/Photos.php:372
|
||||
msgid "Photo Albums"
|
||||
msgstr "Fotoalbums"
|
||||
|
||||
#: mod/photos.php:90 src/Module/Profile/Photos.php:373
|
||||
#: mod/photos.php:89 src/Module/Profile/Photos.php:373
|
||||
#: src/Module/Profile/Photos.php:393
|
||||
msgid "Recent Photos"
|
||||
msgstr "Recente foto's"
|
||||
|
||||
#: mod/photos.php:92 mod/photos.php:824 src/Module/Profile/Photos.php:375
|
||||
#: mod/photos.php:91 mod/photos.php:823 src/Module/Profile/Photos.php:375
|
||||
#: src/Module/Profile/Photos.php:395
|
||||
msgid "Upload New Photos"
|
||||
msgstr "Nieuwe foto's uploaden"
|
||||
|
||||
#: mod/photos.php:104 src/Module/BaseSettings.php:60
|
||||
#: mod/photos.php:103 src/Module/BaseSettings.php:60
|
||||
#: src/Module/Profile/Photos.php:356
|
||||
msgid "everybody"
|
||||
msgstr "iedereen"
|
||||
|
||||
#: mod/photos.php:140
|
||||
#: mod/photos.php:139
|
||||
msgid "Contact information unavailable"
|
||||
msgstr "Contactinformatie niet beschikbaar"
|
||||
|
||||
#: mod/photos.php:169
|
||||
#: mod/photos.php:168
|
||||
msgid "Album not found."
|
||||
msgstr "Album niet gevonden"
|
||||
|
||||
#: mod/photos.php:225
|
||||
#: mod/photos.php:224
|
||||
msgid "Album successfully deleted"
|
||||
msgstr "Album succesvol gedeeld"
|
||||
|
||||
#: mod/photos.php:227
|
||||
#: mod/photos.php:226
|
||||
msgid "Album was empty."
|
||||
msgstr "Het album was leeg"
|
||||
|
||||
#: mod/photos.php:258
|
||||
#: mod/photos.php:257
|
||||
msgid "Failed to delete the photo."
|
||||
msgstr "Foto verwijderen mislukt."
|
||||
|
||||
#: mod/photos.php:502
|
||||
#: mod/photos.php:501
|
||||
msgid "a photo"
|
||||
msgstr "een foto"
|
||||
|
||||
#: mod/photos.php:502
|
||||
#: mod/photos.php:501
|
||||
#, 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:539 src/Module/Conversation/Community.php:148
|
||||
#: mod/photos.php:538 src/Module/Conversation/Community.php:148
|
||||
#: src/Module/Directory.php:34 src/Module/Profile/Photos.php:290
|
||||
#: src/Module/Search/Index.php:51
|
||||
#: src/Module/Search/Index.php:50
|
||||
msgid "Public access denied."
|
||||
msgstr "Niet vrij toegankelijk"
|
||||
|
||||
#: mod/photos.php:544
|
||||
#: mod/photos.php:543
|
||||
msgid "No photos selected"
|
||||
msgstr "Geen foto's geselecteerd"
|
||||
|
||||
#: mod/photos.php:672
|
||||
#: mod/photos.php:671
|
||||
#, php-format
|
||||
msgid "The maximum accepted image size is %s"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:679
|
||||
#: mod/photos.php:678
|
||||
msgid "Upload Photos"
|
||||
msgstr "Upload foto's"
|
||||
|
||||
#: mod/photos.php:683 mod/photos.php:772
|
||||
#: mod/photos.php:682 mod/photos.php:771
|
||||
msgid "New album name: "
|
||||
msgstr "Nieuwe albumnaam: "
|
||||
|
||||
#: mod/photos.php:684
|
||||
#: mod/photos.php:683
|
||||
msgid "or select existing album:"
|
||||
msgstr "Of selecteer bestaand album:"
|
||||
|
||||
#: mod/photos.php:685
|
||||
#: mod/photos.php:684
|
||||
msgid "Do not show a status post for this upload"
|
||||
msgstr "Toon geen bericht op je tijdlijn van deze upload"
|
||||
|
||||
#: mod/photos.php:688 mod/photos.php:1049 src/Content/Conversation.php:391
|
||||
#: mod/photos.php:687 mod/photos.php:1048 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:753
|
||||
#: mod/photos.php:752
|
||||
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:754 mod/photos.php:777
|
||||
#: mod/photos.php:753 mod/photos.php:776
|
||||
msgid "Delete Album"
|
||||
msgstr "Verwijder album"
|
||||
|
||||
#: mod/photos.php:755 mod/photos.php:855 src/Content/Conversation.php:406
|
||||
#: mod/photos.php:754 mod/photos.php:854 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
|
||||
|
|
@ -513,329 +513,334 @@ msgstr "Verwijder album"
|
|||
msgid "Cancel"
|
||||
msgstr "Annuleren"
|
||||
|
||||
#: mod/photos.php:781
|
||||
#: mod/photos.php:780
|
||||
msgid "Edit Album"
|
||||
msgstr "Album wijzigen"
|
||||
|
||||
#: mod/photos.php:782
|
||||
#: mod/photos.php:781
|
||||
msgid "Drop Album"
|
||||
msgstr "Album verwijderen"
|
||||
|
||||
#: mod/photos.php:786
|
||||
#: mod/photos.php:785
|
||||
msgid "Show Newest First"
|
||||
msgstr "Toon niewste eerst"
|
||||
|
||||
#: mod/photos.php:788
|
||||
#: mod/photos.php:787
|
||||
msgid "Show Oldest First"
|
||||
msgstr "Toon oudste eerst"
|
||||
|
||||
#: mod/photos.php:809 src/Module/Profile/Photos.php:343
|
||||
#: mod/photos.php:808 src/Module/Profile/Photos.php:343
|
||||
msgid "View Photo"
|
||||
msgstr "Bekijk foto"
|
||||
|
||||
#: mod/photos.php:841
|
||||
#: mod/photos.php:840
|
||||
msgid "Permission denied. Access to this item may be restricted."
|
||||
msgstr "Toegang geweigerd. Toegang tot dit item is mogelijk beperkt."
|
||||
|
||||
#: mod/photos.php:843
|
||||
#: mod/photos.php:842
|
||||
msgid "Photo not available"
|
||||
msgstr "Foto is niet beschikbaar"
|
||||
|
||||
#: mod/photos.php:853
|
||||
#: mod/photos.php:852
|
||||
msgid "Do you really want to delete this photo?"
|
||||
msgstr "Wil je echt deze foto verwijderen?"
|
||||
|
||||
#: mod/photos.php:854 mod/photos.php:1054
|
||||
#: mod/photos.php:853 mod/photos.php:1053
|
||||
msgid "Delete Photo"
|
||||
msgstr "Verwijder foto"
|
||||
|
||||
#: mod/photos.php:952
|
||||
#: mod/photos.php:951
|
||||
msgid "View photo"
|
||||
msgstr "Bekijk foto"
|
||||
|
||||
#: mod/photos.php:954
|
||||
#: mod/photos.php:953
|
||||
msgid "Edit photo"
|
||||
msgstr "Bewerk foto"
|
||||
|
||||
#: mod/photos.php:955
|
||||
#: mod/photos.php:954
|
||||
msgid "Delete photo"
|
||||
msgstr "Foto verwijderen"
|
||||
|
||||
#: mod/photos.php:956
|
||||
#: mod/photos.php:955
|
||||
msgid "Use as profile photo"
|
||||
msgstr "Gebruik als profielfoto"
|
||||
|
||||
#: mod/photos.php:963
|
||||
#: mod/photos.php:962
|
||||
msgid "Private Photo"
|
||||
msgstr "Privé foto"
|
||||
|
||||
#: mod/photos.php:969
|
||||
#: mod/photos.php:968
|
||||
msgid "View Full Size"
|
||||
msgstr "Bekijk in volledig formaat"
|
||||
|
||||
#: mod/photos.php:1022
|
||||
#: mod/photos.php:1021
|
||||
msgid "Tags: "
|
||||
msgstr "Labels: "
|
||||
|
||||
#: mod/photos.php:1025
|
||||
#: mod/photos.php:1024
|
||||
msgid "[Select tags to remove]"
|
||||
msgstr "[Selecteer tags om te verwijderen]"
|
||||
|
||||
#: mod/photos.php:1040
|
||||
#: mod/photos.php:1039
|
||||
msgid "New album name"
|
||||
msgstr "Nieuwe albumnaam"
|
||||
|
||||
#: mod/photos.php:1041
|
||||
#: mod/photos.php:1040
|
||||
msgid "Caption"
|
||||
msgstr "Onderschrift"
|
||||
|
||||
#: mod/photos.php:1042
|
||||
#: mod/photos.php:1041
|
||||
msgid "Add a Tag"
|
||||
msgstr "Een label toevoegen"
|
||||
|
||||
#: mod/photos.php:1042
|
||||
#: mod/photos.php:1041
|
||||
msgid ""
|
||||
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
|
||||
msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping "
|
||||
|
||||
#: mod/photos.php:1043
|
||||
#: mod/photos.php:1042
|
||||
msgid "Do not rotate"
|
||||
msgstr "Niet roteren"
|
||||
|
||||
#: mod/photos.php:1044
|
||||
#: mod/photos.php:1043
|
||||
msgid "Rotate CW (right)"
|
||||
msgstr "Roteren met de klok mee (rechts)"
|
||||
|
||||
#: mod/photos.php:1045
|
||||
#: mod/photos.php:1044
|
||||
msgid "Rotate CCW (left)"
|
||||
msgstr "Roteren tegen de klok in (links)"
|
||||
|
||||
#: 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:1143
|
||||
#: mod/photos.php:1090 mod/photos.php:1146 mod/photos.php:1226
|
||||
#: src/Module/Contact.php:599 src/Module/Item/Compose.php:184
|
||||
#: src/Object/Post.php:1146
|
||||
msgid "This is you"
|
||||
msgstr "Dit ben jij"
|
||||
|
||||
#: 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
|
||||
#: mod/photos.php:1092 mod/photos.php:1148 mod/photos.php:1228
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:602
|
||||
#: src/Object/Post.php:1148
|
||||
msgid "Comment"
|
||||
msgstr "Reacties"
|
||||
|
||||
#: mod/photos.php:1095 mod/photos.php:1151 mod/photos.php:1231
|
||||
#: mod/photos.php:1094 mod/photos.php:1150 mod/photos.php:1230
|
||||
#: 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:1159
|
||||
#: src/Object/Post.php:1162
|
||||
msgid "Preview"
|
||||
msgstr "Voorvertoning"
|
||||
|
||||
#: mod/photos.php:1096 src/Content/Conversation.php:357
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1147
|
||||
#: mod/photos.php:1095 src/Content/Conversation.php:357
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1150
|
||||
msgid "Loading..."
|
||||
msgstr "Aan het laden..."
|
||||
|
||||
#: mod/photos.php:1188 src/Content/Conversation.php:1487
|
||||
#: src/Object/Post.php:261
|
||||
#: mod/photos.php:1187 src/Content/Conversation.php:1487
|
||||
#: src/Object/Post.php:260
|
||||
msgid "Select"
|
||||
msgstr "Kies"
|
||||
|
||||
#: 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:1188 src/Content/Conversation.php:1488
|
||||
#: src/Module/Moderation/Users/Active.php:92
|
||||
#: src/Module/Moderation/Users/Blocked.php:92
|
||||
#: src/Module/Moderation/Users/Index.php:100
|
||||
#: src/Module/Settings/Connectors.php:226
|
||||
#: src/Module/Settings/Server/Index.php:95
|
||||
msgid "Delete"
|
||||
msgstr "Verwijder"
|
||||
|
||||
#: mod/photos.php:1250 src/Object/Post.php:427
|
||||
#: mod/photos.php:1249 src/Object/Post.php:426
|
||||
msgid "Like"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1251 src/Object/Post.php:427
|
||||
#: mod/photos.php:1250 src/Object/Post.php:426
|
||||
msgid "I like this (toggle)"
|
||||
msgstr "Vind ik leuk"
|
||||
|
||||
#: mod/photos.php:1252 src/Object/Post.php:428
|
||||
#: mod/photos.php:1251 src/Object/Post.php:427
|
||||
msgid "Dislike"
|
||||
msgstr ""
|
||||
|
||||
#: mod/photos.php:1254 src/Object/Post.php:428
|
||||
#: mod/photos.php:1253 src/Object/Post.php:427
|
||||
msgid "I don't like this (toggle)"
|
||||
msgstr "Vind ik niet leuk"
|
||||
|
||||
#: mod/photos.php:1276
|
||||
#: mod/photos.php:1275
|
||||
msgid "Map"
|
||||
msgstr "Kaart"
|
||||
|
||||
#: src/App.php:255
|
||||
#: src/App.php:442
|
||||
msgid "Apologies but the website is unavailable at the moment."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:241
|
||||
#: src/App/Page.php:236
|
||||
msgid "Delete this item?"
|
||||
msgstr "Dit item verwijderen?"
|
||||
|
||||
#: 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:345
|
||||
msgid "toggle mobile"
|
||||
msgstr "mobiel thema omwisselen"
|
||||
|
||||
#: src/App/Router.php:295
|
||||
#: src/App/Page.php:356 src/Module/Admin/Logs/View.php:92
|
||||
#: view/theme/frio/php/minimal.php:39 view/theme/frio/php/standard.php:138
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Router.php:286
|
||||
#, php-format
|
||||
msgid "Method not allowed for this module. Allowed method(s): %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Router.php:297 src/Module/HTTPException/PageNotFound.php:35
|
||||
#: src/App/Router.php:288 src/Module/HTTPException/PageNotFound.php:35
|
||||
#: src/Module/Stats.php:56
|
||||
msgid "Page not found."
|
||||
msgstr "Pagina niet gevonden"
|
||||
|
||||
#: src/App/Router.php:309
|
||||
#: src/App/Router.php:300
|
||||
msgid "You must be logged in to use addons. "
|
||||
msgstr "Je moet ingelogd zijn om deze addons te kunnen gebruiken. "
|
||||
|
||||
#: src/AppLegacy.php:317
|
||||
#: src/AppLegacy.php:318
|
||||
msgid "No system theme config value set."
|
||||
msgstr "Geen systeem thema configuratie ingesteld."
|
||||
|
||||
#: src/BaseModule.php:393
|
||||
#: src/BaseModule.php:408
|
||||
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 "De beveiligingstoken van het formulier was foutief. Dit gebeurde waarschijnlijk omdat het formulier te lang (> 3 uur) is blijven open staan voor het werd verstuurd."
|
||||
|
||||
#: src/BaseModule.php:420
|
||||
#: src/BaseModule.php:435
|
||||
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:182 src/Module/Contact.php:395
|
||||
#: src/BaseModule.php:440 src/Content/Conversation/Factory/Channel.php:32
|
||||
#: src/Content/Widget.php:254 src/Core/ACL.php:182 src/Module/Contact.php:394
|
||||
#: src/Module/Privacy/PermissionTooltip.php:150
|
||||
#: src/Module/Privacy/PermissionTooltip.php:172
|
||||
#: src/Module/Settings/Channels.php:146
|
||||
msgid "Followers"
|
||||
msgstr "Volgers"
|
||||
|
||||
#: src/BaseModule.php:430 src/Content/Widget.php:255
|
||||
#: src/Module/Contact.php:398 src/Module/Settings/Channels.php:145
|
||||
#: src/BaseModule.php:445 src/Content/Widget.php:255
|
||||
#: src/Module/Contact.php:397 src/Module/Settings/Channels.php:145
|
||||
msgid "Following"
|
||||
msgstr "Volgend"
|
||||
|
||||
#: src/BaseModule.php:435 src/Content/Widget.php:256
|
||||
#: src/Module/Contact.php:401
|
||||
#: src/BaseModule.php:450 src/Content/Widget.php:256
|
||||
#: src/Module/Contact.php:400
|
||||
msgid "Mutual friends"
|
||||
msgstr ""
|
||||
|
||||
#: src/BaseModule.php:443
|
||||
#: src/BaseModule.php:458
|
||||
msgid "Common"
|
||||
msgstr "Algemeen"
|
||||
|
||||
#: src/Console/Addon.php:162 src/Console/Addon.php:186
|
||||
#: src/Console/Addon.php:163 src/Console/Addon.php:187
|
||||
msgid "Addon not found"
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/Addon.php:166
|
||||
#: src/Console/Addon.php:167
|
||||
msgid "Addon already enabled"
|
||||
msgstr ""
|
||||
|
||||
#: src/Console/Addon.php:190
|
||||
#: src/Console/Addon.php:191
|
||||
msgid "Addon already disabled"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -979,14 +984,11 @@ 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:830
|
||||
#: src/Console/User.php:168 src/Model/User.php:833
|
||||
#: 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/Module/Moderation/Users/Active.php:136
|
||||
#: src/Module/Moderation/Users/Blocked.php:135
|
||||
#: src/Module/Moderation/Users/Index.php:147
|
||||
#: src/Module/Moderation/Users/Pending.php:53
|
||||
msgid "User not found"
|
||||
msgstr "Gebruiker niet gevonden"
|
||||
|
|
@ -1095,12 +1097,12 @@ msgid "RSS/Atom"
|
|||
msgstr "RSS/Atom"
|
||||
|
||||
#: src/Content/ContactSelector.php:120
|
||||
#: src/Module/Moderation/Users/Active.php:115
|
||||
#: src/Module/Moderation/Users/Blocked.php:115
|
||||
#: src/Module/Moderation/Users/Active.php:82
|
||||
#: src/Module/Moderation/Users/Blocked.php:82
|
||||
#: 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:89
|
||||
#: src/Module/Moderation/Users/Index.php:109
|
||||
#: src/Module/Moderation/Users/Pending.php:85
|
||||
msgid "Email"
|
||||
msgstr "E-mail"
|
||||
|
|
@ -1268,7 +1270,7 @@ msgid "Visible to <strong>everybody</strong>"
|
|||
msgstr "Zichtbaar voor <strong>iedereen</strong>"
|
||||
|
||||
#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196
|
||||
#: src/Object/Post.php:1158
|
||||
#: src/Object/Post.php:1161
|
||||
msgid "Please enter a image/video/audio/webpage URL:"
|
||||
msgstr "Geef een afbeelding/video/audio/webpagina in:"
|
||||
|
||||
|
|
@ -1276,9 +1278,9 @@ msgstr "Geef een afbeelding/video/audio/webpagina in:"
|
|||
msgid "Tag term:"
|
||||
msgstr "Label:"
|
||||
|
||||
#: src/Content/Conversation.php:329 src/Module/Filer/SaveTag.php:59
|
||||
msgid "Save to Folder:"
|
||||
msgstr "Bewaren in map:"
|
||||
#: src/Content/Conversation.php:329
|
||||
msgid "Save to Folder"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Conversation.php:330
|
||||
msgid "Where are you right now?"
|
||||
|
|
@ -1313,52 +1315,52 @@ msgid "attach file"
|
|||
msgstr "bestand bijvoegen"
|
||||
|
||||
#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1148
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1151
|
||||
msgid "Bold"
|
||||
msgstr "Vet"
|
||||
|
||||
#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1149
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1152
|
||||
msgid "Italic"
|
||||
msgstr "Cursief"
|
||||
|
||||
#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1150
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1153
|
||||
msgid "Underline"
|
||||
msgstr "Onderstrepen"
|
||||
|
||||
#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1152
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1155
|
||||
msgid "Quote"
|
||||
msgstr "Citeren"
|
||||
|
||||
#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1153
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1156
|
||||
msgid "Add emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191
|
||||
#: src/Object/Post.php:1151
|
||||
#: src/Object/Post.php:1154
|
||||
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/Module/Post/Edit.php:167 src/Object/Post.php:1157
|
||||
msgid "Code"
|
||||
msgstr "Broncode"
|
||||
|
||||
#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193
|
||||
#: src/Object/Post.php:1155
|
||||
#: src/Object/Post.php:1158
|
||||
msgid "Image"
|
||||
msgstr "Afbeelding"
|
||||
|
||||
#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1156
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1159
|
||||
msgid "Link"
|
||||
msgstr "Link"
|
||||
|
||||
#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1157
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1160
|
||||
msgid "Link or Media"
|
||||
msgstr "Link of media"
|
||||
|
||||
|
|
@ -1405,8 +1407,8 @@ msgstr "Instellingen van rechten"
|
|||
msgid "Public post"
|
||||
msgstr "Openbare post"
|
||||
|
||||
#: src/Content/Conversation.php:413 src/Content/Widget/VCard.php:121
|
||||
#: src/Model/Profile.php:461 src/Module/Admin/Logs/View.php:80
|
||||
#: src/Content/Conversation.php:413 src/Content/Widget/VCard.php:120
|
||||
#: src/Model/Profile.php:458 src/Module/Admin/Logs/View.php:80
|
||||
#: src/Module/Post/Edit.php:172
|
||||
msgid "Message"
|
||||
msgstr "Bericht"
|
||||
|
|
@ -1514,25 +1516,25 @@ msgstr ""
|
|||
msgid "Pushed to us"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Conversation.php:1507 src/Object/Post.php:248
|
||||
#: src/Content/Conversation.php:1507 src/Object/Post.php:247
|
||||
msgid "Pinned item"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Conversation.php:1524 src/Object/Post.php:542
|
||||
#: src/Object/Post.php:543
|
||||
#: src/Content/Conversation.php:1524 src/Object/Post.php:543
|
||||
#: src/Object/Post.php:544
|
||||
#, php-format
|
||||
msgid "View %s's profile @ %s"
|
||||
msgstr "Bekijk het profiel van %s @ %s"
|
||||
|
||||
#: src/Content/Conversation.php:1538 src/Object/Post.php:530
|
||||
#: src/Content/Conversation.php:1538 src/Object/Post.php:531
|
||||
msgid "Categories:"
|
||||
msgstr "Categorieën:"
|
||||
|
||||
#: src/Content/Conversation.php:1539 src/Object/Post.php:531
|
||||
#: src/Content/Conversation.php:1539 src/Object/Post.php:532
|
||||
msgid "Filed under:"
|
||||
msgstr "Bewaard onder:"
|
||||
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:557
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:559
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "%s van %s"
|
||||
|
|
@ -1670,7 +1672,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:398
|
||||
#: src/Content/Conversation/Factory/Network.php:28 src/Object/Post.php:397
|
||||
msgid "Starred"
|
||||
msgstr "Met ster"
|
||||
|
||||
|
|
@ -1678,273 +1680,273 @@ msgstr "Met ster"
|
|||
msgid "Favourite Posts"
|
||||
msgstr "Favoriete berichten"
|
||||
|
||||
#: src/Content/Feature.php:93
|
||||
#: src/Content/Feature.php:104
|
||||
msgid "General Features"
|
||||
msgstr "Algemene functies"
|
||||
|
||||
#: src/Content/Feature.php:95
|
||||
#: src/Content/Feature.php:106
|
||||
msgid "Photo Location"
|
||||
msgstr "Foto Locatie"
|
||||
|
||||
#: src/Content/Feature.php:95
|
||||
#: src/Content/Feature.php:106
|
||||
msgid ""
|
||||
"Photo metadata is normally stripped. This extracts the location (if present)"
|
||||
" prior to stripping metadata and links it to a map."
|
||||
msgstr "Foto metadata wordt normaal verwijderd. Dit extraheert de locatie (indien aanwezig) vooraleer de metadata te verwijderen en verbindt die met een kaart."
|
||||
|
||||
#: src/Content/Feature.php:96
|
||||
#: src/Content/Feature.php:107
|
||||
msgid "Display the community in the navigation"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:96
|
||||
#: src/Content/Feature.php:107
|
||||
msgid ""
|
||||
"If enabled, the community can be accessed via the navigation menu. "
|
||||
"Independent from this setting, the community timelines can always be "
|
||||
"accessed via the channels."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:101
|
||||
#: src/Content/Feature.php:112
|
||||
msgid "Post Composition Features"
|
||||
msgstr "Functies voor het opstellen van berichten"
|
||||
|
||||
#: src/Content/Feature.php:102
|
||||
#: src/Content/Feature.php:113
|
||||
msgid "Explicit Mentions"
|
||||
msgstr "Expliciete vermeldingen"
|
||||
|
||||
#: src/Content/Feature.php:102
|
||||
#: src/Content/Feature.php:113
|
||||
msgid ""
|
||||
"Add explicit mentions to comment box for manual control over who gets "
|
||||
"mentioned in replies."
|
||||
msgstr "Voeg expliciete vermeldingen toe aan het opmerkingenvak voor handmatige controle over wie in antwoorden wordt vermeld."
|
||||
|
||||
#: src/Content/Feature.php:103
|
||||
#: src/Content/Feature.php:114
|
||||
msgid "Add an abstract from ActivityPub content warnings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:103
|
||||
#: src/Content/Feature.php:114
|
||||
msgid ""
|
||||
"Add an abstract when commenting on ActivityPub posts with a content warning."
|
||||
" Abstracts are displayed as content warning on systems like Mastodon or "
|
||||
"Pleroma."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:108
|
||||
#: src/Content/Feature.php:119
|
||||
msgid "Post/Comment Tools"
|
||||
msgstr "Bericht-/reactiehulpmiddelen"
|
||||
|
||||
#: src/Content/Feature.php:109
|
||||
#: src/Content/Feature.php:120
|
||||
msgid "Post Categories"
|
||||
msgstr "Categorieën berichten"
|
||||
|
||||
#: src/Content/Feature.php:109
|
||||
#: src/Content/Feature.php:120
|
||||
msgid "Add categories to your posts"
|
||||
msgstr "Voeg categorieën toe aan je berichten"
|
||||
|
||||
#: src/Content/Feature.php:114
|
||||
#: src/Content/Feature.php:125
|
||||
msgid "Network Widgets"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:115 src/Content/Widget.php:230
|
||||
#: src/Model/Circle.php:587 src/Module/Contact.php:381
|
||||
#: src/Content/Feature.php:126 src/Content/Widget.php:230
|
||||
#: src/Model/Circle.php:587 src/Module/Contact.php:380
|
||||
#: src/Module/Welcome.php:62
|
||||
msgid "Circles"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:115
|
||||
#: src/Content/Feature.php:126
|
||||
msgid ""
|
||||
"Display posts that have been created by accounts of the selected circle."
|
||||
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/Feature.php:127 src/Content/GroupManager.php:128
|
||||
#: src/Content/Nav.php:274 src/Content/Text/HTML.php:868
|
||||
#: src/Content/Widget.php:555 src/Model/User.php:1393
|
||||
msgid "Groups"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:116
|
||||
#: src/Content/Feature.php:127
|
||||
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:128 src/Content/Widget.php:524
|
||||
msgid "Archives"
|
||||
msgstr "Archieven"
|
||||
|
||||
#: src/Content/Feature.php:117
|
||||
#: src/Content/Feature.php:128
|
||||
msgid "Display an archive where posts can be selected by month and year."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:118 src/Content/Widget.php:303
|
||||
#: src/Content/Feature.php:129 src/Content/Widget.php:303
|
||||
msgid "Protocols"
|
||||
msgstr "Protocollen"
|
||||
|
||||
#: src/Content/Feature.php:118
|
||||
#: src/Content/Feature.php:129
|
||||
msgid "Display posts with the selected protocols."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:119 src/Content/Widget.php:561
|
||||
#: src/Content/Feature.php:130 src/Content/Widget.php:561
|
||||
#: src/Module/Settings/Account.php:391
|
||||
msgid "Account Types"
|
||||
msgstr "Account Types"
|
||||
|
||||
#: src/Content/Feature.php:119
|
||||
#: src/Content/Feature.php:130
|
||||
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:131 src/Content/Widget.php:610
|
||||
#: src/Module/Admin/Site.php:463 src/Module/BaseSettings.php:113
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:313
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:120
|
||||
#: src/Content/Feature.php:131
|
||||
msgid "Display posts in the system channels and user defined channels."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:121 src/Content/Widget/SavedSearches.php:46
|
||||
#: src/Content/Feature.php:132 src/Content/Widget/SavedSearches.php:46
|
||||
msgid "Saved Searches"
|
||||
msgstr "Opgeslagen zoekopdrachten"
|
||||
|
||||
#: src/Content/Feature.php:121
|
||||
#: src/Content/Feature.php:132
|
||||
msgid "Display posts that contain subscribed hashtags."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:122 src/Content/Widget.php:333
|
||||
#: src/Content/Feature.php:133 src/Content/Widget.php:333
|
||||
msgid "Saved Folders"
|
||||
msgstr "Bewaarde Mappen"
|
||||
|
||||
#: src/Content/Feature.php:122
|
||||
#: src/Content/Feature.php:133
|
||||
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:134 src/Module/Conversation/Timeline.php:189
|
||||
msgid "Own Contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:123
|
||||
#: src/Content/Feature.php:134
|
||||
msgid ""
|
||||
"Include or exclude posts from subscribed accounts. This widget is not "
|
||||
"visible on all channels."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:124
|
||||
#: src/Content/Feature.php:135
|
||||
msgid "Trending Tags"
|
||||
msgstr "Populaire Tags"
|
||||
|
||||
#: src/Content/Feature.php:124
|
||||
#: src/Content/Feature.php:135
|
||||
msgid "Display a list of the most popular tags in recent public posts."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:129
|
||||
#: src/Content/Feature.php:140
|
||||
msgid "Advanced Profile Settings"
|
||||
msgstr "Geavanceerde Profiel Instellingen"
|
||||
|
||||
#: src/Content/Feature.php:130
|
||||
#: src/Content/Feature.php:141
|
||||
msgid "Tag Cloud"
|
||||
msgstr "Tag Wolk"
|
||||
|
||||
#: src/Content/Feature.php:130
|
||||
#: src/Content/Feature.php:141
|
||||
msgid "Provide a personal tag cloud on your profile page"
|
||||
msgstr "Voorzie een persoonlijk tag wolk op je profiel pagina"
|
||||
|
||||
#: src/Content/Feature.php:131
|
||||
#: src/Content/Feature.php:142
|
||||
msgid "Display Membership Date"
|
||||
msgstr "Toon Lidmaatschap Datum"
|
||||
|
||||
#: src/Content/Feature.php:131
|
||||
#: src/Content/Feature.php:142
|
||||
msgid "Display membership date in profile"
|
||||
msgstr "Toon lidmaatschap datum in profiel"
|
||||
|
||||
#: src/Content/Feature.php:136
|
||||
#: src/Content/Feature.php:147
|
||||
msgid "Advanced Calendar Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:137
|
||||
#: src/Content/Feature.php:148
|
||||
msgid "Allow anonymous access to your calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Feature.php:137
|
||||
#: src/Content/Feature.php:148
|
||||
msgid ""
|
||||
"Allows anonymous visitors to consult your calendar and your public events. "
|
||||
"Contact birthday events are private to you."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/GroupManager.php:135
|
||||
#: src/Content/GroupManager.php:130
|
||||
msgid "External link to group"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/GroupManager.php:139 src/Content/Widget.php:530
|
||||
#: src/Content/GroupManager.php:134 src/Content/Widget.php:530
|
||||
msgid "show less"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/GroupManager.php:140 src/Content/Widget.php:425
|
||||
#: src/Content/GroupManager.php:135 src/Content/Widget.php:425
|
||||
#: src/Content/Widget.php:531
|
||||
msgid "show more"
|
||||
msgstr "toon meer"
|
||||
|
||||
#: src/Content/GroupManager.php:141
|
||||
#: src/Content/GroupManager.php:136
|
||||
msgid "Create new group"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Item.php:322 src/Model/Item.php:3281
|
||||
#: src/Content/Item.php:321 src/Model/Item.php:3296
|
||||
msgid "event"
|
||||
msgstr "gebeurtenis"
|
||||
|
||||
#: src/Content/Item.php:325 src/Content/Item.php:335
|
||||
#: src/Content/Item.php:324 src/Content/Item.php:334
|
||||
msgid "status"
|
||||
msgstr "status"
|
||||
|
||||
#: src/Content/Item.php:331 src/Model/Item.php:3283
|
||||
#: src/Content/Item.php:330 src/Model/Item.php:3298
|
||||
#: src/Module/Post/Tag/Add.php:109
|
||||
msgid "photo"
|
||||
msgstr "foto"
|
||||
|
||||
#: src/Content/Item.php:345 src/Module/Post/Tag/Add.php:127
|
||||
#: src/Content/Item.php:344 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:419 view/theme/frio/theme.php:253
|
||||
#: src/Content/Item.php:418 view/theme/frio/theme.php:251
|
||||
msgid "Follow Thread"
|
||||
msgstr "Gesprek volgen"
|
||||
|
||||
#: src/Content/Item.php:420 src/Model/Contact.php:1245
|
||||
#: src/Content/Item.php:419 src/Model/Contact.php:1253
|
||||
msgid "View Status"
|
||||
msgstr "Bekijk status"
|
||||
|
||||
#: 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/Content/Item.php:420 src/Content/Item.php:443
|
||||
#: src/Model/Contact.php:1188 src/Model/Contact.php:1244
|
||||
#: src/Model/Contact.php:1254 src/Module/Directory.php:143
|
||||
#: src/Module/Settings/Profile/Index.php:250
|
||||
msgid "View Profile"
|
||||
msgstr "Bekijk profiel"
|
||||
|
||||
#: src/Content/Item.php:422 src/Model/Contact.php:1247
|
||||
#: src/Content/Item.php:421 src/Model/Contact.php:1255
|
||||
msgid "View Photos"
|
||||
msgstr "Bekijk foto's"
|
||||
|
||||
#: src/Content/Item.php:423 src/Model/Contact.php:1214
|
||||
#: src/Model/Profile.php:446
|
||||
#: src/Content/Item.php:422 src/Model/Contact.php:1222
|
||||
#: src/Model/Profile.php:443
|
||||
msgid "Network Posts"
|
||||
msgstr "Netwerkberichten"
|
||||
|
||||
#: src/Content/Item.php:424 src/Model/Contact.php:1238
|
||||
#: src/Model/Contact.php:1249
|
||||
#: src/Content/Item.php:423 src/Model/Contact.php:1246
|
||||
#: src/Model/Contact.php:1257
|
||||
msgid "View Contact"
|
||||
msgstr "Bekijk contact"
|
||||
|
||||
#: src/Content/Item.php:425 src/Model/Contact.php:1250
|
||||
#: src/Content/Item.php:424 src/Model/Contact.php:1258
|
||||
msgid "Send PM"
|
||||
msgstr "Stuur een privébericht"
|
||||
|
||||
#: src/Content/Item.php:426 src/Module/Contact.php:449
|
||||
#: src/Content/Item.php:425 src/Module/Contact.php:448
|
||||
#: 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/Users/Active.php:93
|
||||
#: src/Module/Moderation/Users/Index.php:101
|
||||
msgid "Block"
|
||||
msgstr "Blokkeren"
|
||||
|
||||
#: src/Content/Item.php:427 src/Module/Contact.php:450
|
||||
#: src/Content/Item.php:426 src/Module/Contact.php:449
|
||||
#: src/Module/Contact/Profile.php:532
|
||||
#: src/Module/Notifications/Introductions.php:126
|
||||
#: src/Module/Notifications/Introductions.php:199
|
||||
|
|
@ -1952,326 +1954,326 @@ msgstr "Blokkeren"
|
|||
msgid "Ignore"
|
||||
msgstr "Negeren"
|
||||
|
||||
#: src/Content/Item.php:428 src/Module/Contact.php:451
|
||||
#: src/Content/Item.php:427 src/Module/Contact.php:450
|
||||
#: src/Module/Contact/Profile.php:540
|
||||
msgid "Collapse"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Item.php:429 src/Object/Post.php:289
|
||||
#: src/Content/Item.php:428 src/Object/Post.php:288
|
||||
#, php-format
|
||||
msgid "Ignore %s server"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Item.php:433 src/Module/Settings/Channels.php:188
|
||||
#: src/Content/Item.php:432 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:435 src/Object/Post.php:586
|
||||
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:440 src/Content/Widget.php:66
|
||||
#: src/Model/Contact.php:1247 src/Model/Contact.php:1259
|
||||
#: src/Module/Contact/Follow.php:152 view/theme/vier/theme.php:183
|
||||
msgid "Connect/Follow"
|
||||
msgstr "Verbind/Volg"
|
||||
|
||||
#: src/Content/Item.php:870
|
||||
#: src/Content/Item.php:869
|
||||
msgid "Unable to fetch user."
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:107
|
||||
#: src/Content/Nav.php:112
|
||||
msgid "Nothing new here"
|
||||
msgstr "Niets nieuw hier"
|
||||
|
||||
#: src/Content/Nav.php:111 src/Module/Special/HTTPException.php:64
|
||||
msgid "Go back"
|
||||
msgstr "Ga terug"
|
||||
#: src/Content/Nav.php:116 src/Content/Nav.php:247 src/Content/Nav.php:304
|
||||
msgid "Home"
|
||||
msgstr "Tijdlijn"
|
||||
|
||||
#: src/Content/Nav.php:112
|
||||
#: src/Content/Nav.php:117
|
||||
msgid "Skip to main content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:118
|
||||
msgid "Clear notifications"
|
||||
msgstr "Notificaties verwijderen"
|
||||
|
||||
#: src/Content/Nav.php:113 src/Content/Text/HTML.php:855
|
||||
#: src/Content/Nav.php:119 src/Content/Text/HTML.php:855
|
||||
msgid "@name, !group, #tags, content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:208 src/Module/Security/Login.php:146
|
||||
#: src/Content/Nav.php:218 src/Module/Security/Login.php:146
|
||||
msgid "Logout"
|
||||
msgstr "Uitloggen"
|
||||
|
||||
#: src/Content/Nav.php:208
|
||||
#: src/Content/Nav.php:218
|
||||
msgid "End this session"
|
||||
msgstr "Deze sessie beëindigen"
|
||||
|
||||
#: src/Content/Nav.php:210 src/Module/Bookmarklet.php:30
|
||||
#: src/Content/Nav.php:220 src/Module/Bookmarklet.php:30
|
||||
#: src/Module/Security/Login.php:147
|
||||
msgid "Login"
|
||||
msgstr "Login"
|
||||
|
||||
#: src/Content/Nav.php:210
|
||||
#: src/Content/Nav.php:220
|
||||
msgid "Sign in"
|
||||
msgstr "Inloggen"
|
||||
|
||||
#: src/Content/Nav.php:215 src/Module/BaseProfile.php:42
|
||||
#: src/Module/Contact.php:493
|
||||
#: src/Content/Nav.php:225 src/Module/BaseProfile.php:42
|
||||
#: src/Module/Contact.php:492
|
||||
msgid "Conversations"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:215
|
||||
#: src/Content/Nav.php:225
|
||||
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/Content/Nav.php:226 src/Module/BaseProfile.php:34
|
||||
#: src/Module/BaseSettings.php:86 src/Module/Contact.php:484
|
||||
#: src/Module/Contact/Profile.php:431 src/Module/Profile/Profile.php:259
|
||||
#: src/Module/Welcome.php:43 view/theme/frio/theme.php:221
|
||||
#: src/Module/Welcome.php:43 view/theme/frio/theme.php:219
|
||||
msgid "Profile"
|
||||
msgstr "Profiel"
|
||||
|
||||
#: src/Content/Nav.php:216 view/theme/frio/theme.php:221
|
||||
#: src/Content/Nav.php:226 view/theme/frio/theme.php:219
|
||||
msgid "Your profile page"
|
||||
msgstr "Jouw profiel pagina"
|
||||
|
||||
#: 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:227 src/Module/BaseProfile.php:50
|
||||
#: src/Module/Media/Photo/Browser.php:62 view/theme/frio/theme.php:223
|
||||
msgid "Photos"
|
||||
msgstr "Foto's"
|
||||
|
||||
#: src/Content/Nav.php:217 view/theme/frio/theme.php:225
|
||||
#: src/Content/Nav.php:227 view/theme/frio/theme.php:223
|
||||
msgid "Your photos"
|
||||
msgstr "Jouw foto's"
|
||||
|
||||
#: src/Content/Nav.php:218 src/Module/BaseProfile.php:58
|
||||
#: src/Module/BaseProfile.php:61 src/Module/Contact.php:509
|
||||
#: view/theme/frio/theme.php:226
|
||||
#: src/Content/Nav.php:228 src/Module/BaseProfile.php:58
|
||||
#: src/Module/BaseProfile.php:61 src/Module/Contact.php:508
|
||||
#: view/theme/frio/theme.php:224
|
||||
msgid "Media"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:218 view/theme/frio/theme.php:226
|
||||
#: src/Content/Nav.php:228 view/theme/frio/theme.php:224
|
||||
msgid "Your postings with media"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:219 src/Content/Nav.php:279
|
||||
#: src/Content/Nav.php:229 src/Content/Nav.php:289
|
||||
#: 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
|
||||
#: view/theme/frio/theme.php:231
|
||||
#: src/Module/Settings/Display.php:314 view/theme/frio/theme.php:225
|
||||
#: view/theme/frio/theme.php:229
|
||||
msgid "Calendar"
|
||||
msgstr "Kalender"
|
||||
|
||||
#: src/Content/Nav.php:219 view/theme/frio/theme.php:227
|
||||
#: src/Content/Nav.php:229 view/theme/frio/theme.php:225
|
||||
msgid "Your calendar"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:220
|
||||
#: src/Content/Nav.php:230
|
||||
msgid "Personal notes"
|
||||
msgstr "Persoonlijke nota's"
|
||||
|
||||
#: src/Content/Nav.php:220
|
||||
#: src/Content/Nav.php:230
|
||||
msgid "Your personal notes"
|
||||
msgstr "Je persoonlijke nota's"
|
||||
|
||||
#: src/Content/Nav.php:237 src/Content/Nav.php:294
|
||||
msgid "Home"
|
||||
msgstr "Tijdlijn"
|
||||
|
||||
#: src/Content/Nav.php:237 src/Module/Settings/OAuth.php:59
|
||||
#: src/Content/Nav.php:247 src/Module/Settings/OAuth.php:59
|
||||
msgid "Home Page"
|
||||
msgstr "Jouw tijdlijn"
|
||||
|
||||
#: src/Content/Nav.php:241 src/Module/Register.php:162
|
||||
#: src/Content/Nav.php:251 src/Module/Register.php:161
|
||||
#: src/Module/Security/Login.php:113
|
||||
msgid "Register"
|
||||
msgstr "Registreer"
|
||||
|
||||
#: src/Content/Nav.php:241
|
||||
#: src/Content/Nav.php:251
|
||||
msgid "Create an account"
|
||||
msgstr "Maak een accoount"
|
||||
|
||||
#: src/Content/Nav.php:247 src/Module/Help.php:53
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:119
|
||||
#: src/Content/Nav.php:257 src/Module/Help.php:53
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:118
|
||||
#: src/Module/Settings/TwoFactor/Index.php:125
|
||||
#: src/Module/Settings/TwoFactor/Recovery.php:96
|
||||
#: src/Module/Settings/TwoFactor/Verify.php:135 view/theme/vier/theme.php:228
|
||||
msgid "Help"
|
||||
msgstr "Help"
|
||||
|
||||
#: src/Content/Nav.php:247
|
||||
#: src/Content/Nav.php:257
|
||||
msgid "Help and documentation"
|
||||
msgstr "Hulp en documentatie"
|
||||
|
||||
#: src/Content/Nav.php:251
|
||||
#: src/Content/Nav.php:261
|
||||
msgid "Apps"
|
||||
msgstr "Apps"
|
||||
|
||||
#: src/Content/Nav.php:251
|
||||
#: src/Content/Nav.php:261
|
||||
msgid "Addon applications, utilities, games"
|
||||
msgstr "Extra toepassingen, hulpmiddelen of spelletjes"
|
||||
|
||||
#: src/Content/Nav.php:255 src/Content/Text/HTML.php:853
|
||||
#: src/Module/Admin/Logs/View.php:74 src/Module/Search/Index.php:98
|
||||
#: src/Content/Nav.php:265 src/Content/Text/HTML.php:853
|
||||
#: src/Module/Admin/Logs/View.php:74 src/Module/Search/Index.php:99
|
||||
msgid "Search"
|
||||
msgstr "Zoeken"
|
||||
|
||||
#: src/Content/Nav.php:255
|
||||
#: src/Content/Nav.php:265
|
||||
msgid "Search site content"
|
||||
msgstr "Doorzoek de inhoud van de website"
|
||||
|
||||
#: src/Content/Nav.php:258 src/Content/Text/HTML.php:862
|
||||
#: src/Content/Nav.php:268 src/Content/Text/HTML.php:862
|
||||
msgid "Full Text"
|
||||
msgstr "Volledige tekst"
|
||||
|
||||
#: src/Content/Nav.php:259 src/Content/Text/HTML.php:863
|
||||
#: src/Content/Nav.php:269 src/Content/Text/HTML.php:863
|
||||
#: src/Content/Widget/TagCloud.php:54
|
||||
msgid "Tags"
|
||||
msgstr "Labels"
|
||||
|
||||
#: src/Content/Nav.php:260 src/Content/Nav.php:315
|
||||
#: src/Content/Nav.php:270 src/Content/Nav.php:325
|
||||
#: src/Content/Text/HTML.php:864 src/Module/BaseProfile.php:112
|
||||
#: src/Module/BaseProfile.php:115 src/Module/Contact.php:407
|
||||
#: src/Module/Contact.php:517 view/theme/frio/theme.php:234
|
||||
#: src/Module/BaseProfile.php:115 src/Module/Contact.php:406
|
||||
#: src/Module/Contact.php:516 view/theme/frio/theme.php:232
|
||||
msgid "Contacts"
|
||||
msgstr "Contacten"
|
||||
|
||||
#: src/Content/Nav.php:275
|
||||
#: src/Content/Nav.php:285
|
||||
msgid "Community"
|
||||
msgstr "Website"
|
||||
|
||||
#: src/Content/Nav.php:275
|
||||
#: src/Content/Nav.php:285
|
||||
msgid "Conversations on this and other servers"
|
||||
msgstr "Gesprekken op deze en andere servers"
|
||||
|
||||
#: src/Content/Nav.php:282
|
||||
#: src/Content/Nav.php:292
|
||||
msgid "Directory"
|
||||
msgstr "Gids"
|
||||
|
||||
#: src/Content/Nav.php:282
|
||||
#: src/Content/Nav.php:292
|
||||
msgid "People directory"
|
||||
msgstr "Personengids"
|
||||
|
||||
#: src/Content/Nav.php:284 src/Module/BaseAdmin.php:71
|
||||
#: src/Content/Nav.php:294 src/Module/BaseAdmin.php:71
|
||||
#: src/Module/BaseModeration.php:97
|
||||
msgid "Information"
|
||||
msgstr "Informatie"
|
||||
|
||||
#: src/Content/Nav.php:284
|
||||
#: src/Content/Nav.php:294
|
||||
msgid "Information about this friendica instance"
|
||||
msgstr "informatie over deze friendica server"
|
||||
|
||||
#: src/Content/Nav.php:287 src/Module/Admin/Tos.php:64
|
||||
#: src/Module/BaseAdmin.php:81 src/Module/Register.php:170
|
||||
#: src/Content/Nav.php:297 src/Module/Admin/Tos.php:64
|
||||
#: src/Module/BaseAdmin.php:81 src/Module/Register.php:169
|
||||
#: src/Module/Tos.php:87
|
||||
msgid "Terms of Service"
|
||||
msgstr "Gebruiksvoorwaarden"
|
||||
|
||||
#: src/Content/Nav.php:287
|
||||
#: src/Content/Nav.php:297
|
||||
msgid "Terms of Service of this Friendica instance"
|
||||
msgstr "Gebruiksvoorwaarden op deze Friendica server"
|
||||
|
||||
#: src/Content/Nav.php:292 view/theme/frio/theme.php:230
|
||||
#: src/Content/Nav.php:302 view/theme/frio/theme.php:228
|
||||
msgid "Network"
|
||||
msgstr "Netwerk"
|
||||
|
||||
#: src/Content/Nav.php:292 view/theme/frio/theme.php:230
|
||||
#: src/Content/Nav.php:302 view/theme/frio/theme.php:228
|
||||
msgid "Conversations from your friends"
|
||||
msgstr "Gesprekken van je vrienden"
|
||||
|
||||
#: src/Content/Nav.php:294 view/theme/frio/theme.php:220
|
||||
#: src/Content/Nav.php:304 view/theme/frio/theme.php:218
|
||||
msgid "Your posts and conversations"
|
||||
msgstr "Jouw berichten en gesprekken"
|
||||
|
||||
#: src/Content/Nav.php:298
|
||||
#: src/Content/Nav.php:308
|
||||
msgid "Introductions"
|
||||
msgstr "Verzoeken"
|
||||
|
||||
#: src/Content/Nav.php:298
|
||||
#: src/Content/Nav.php:308
|
||||
msgid "Friend Requests"
|
||||
msgstr "Vriendschapsverzoeken"
|
||||
|
||||
#: src/Content/Nav.php:299 src/Module/BaseNotifications.php:134
|
||||
#: src/Content/Nav.php:309 src/Module/BaseNotifications.php:134
|
||||
#: src/Module/Notifications/Introductions.php:61
|
||||
msgid "Notifications"
|
||||
msgstr "Notificaties"
|
||||
|
||||
#: src/Content/Nav.php:300
|
||||
#: src/Content/Nav.php:310
|
||||
msgid "See all notifications"
|
||||
msgstr "Toon alle notificaties"
|
||||
|
||||
#: src/Content/Nav.php:301 src/Module/Settings/Connectors.php:226
|
||||
#: src/Content/Nav.php:311 src/Module/Settings/Connectors.php:226
|
||||
msgid "Mark as seen"
|
||||
msgstr "Als 'gelezen' markeren"
|
||||
|
||||
#: src/Content/Nav.php:301
|
||||
#: src/Content/Nav.php:311
|
||||
msgid "Mark all system notifications as seen"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:304 view/theme/frio/theme.php:232
|
||||
#: src/Content/Nav.php:314 view/theme/frio/theme.php:230
|
||||
msgid "Private mail"
|
||||
msgstr "Privéberichten"
|
||||
|
||||
#: src/Content/Nav.php:305
|
||||
#: src/Content/Nav.php:315
|
||||
msgid "Inbox"
|
||||
msgstr "Inbox"
|
||||
|
||||
#: src/Content/Nav.php:306
|
||||
#: src/Content/Nav.php:316
|
||||
msgid "Outbox"
|
||||
msgstr "Verzonden berichten"
|
||||
|
||||
#: src/Content/Nav.php:310
|
||||
#: src/Content/Nav.php:320
|
||||
msgid "Accounts"
|
||||
msgstr "Gebruikers"
|
||||
|
||||
#: src/Content/Nav.php:310
|
||||
#: src/Content/Nav.php:320
|
||||
msgid "Manage other pages"
|
||||
msgstr "Andere pagina's beheren"
|
||||
|
||||
#: src/Content/Nav.php:313 src/Module/Admin/Addons/Details.php:98
|
||||
#: src/Content/Nav.php:323 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
|
||||
#: src/Module/Welcome.php:38 view/theme/frio/theme.php:231
|
||||
msgid "Settings"
|
||||
msgstr "Instellingen"
|
||||
|
||||
#: src/Content/Nav.php:313 view/theme/frio/theme.php:233
|
||||
#: src/Content/Nav.php:323 view/theme/frio/theme.php:231
|
||||
msgid "Account settings"
|
||||
msgstr "Account instellingen"
|
||||
|
||||
#: src/Content/Nav.php:315 view/theme/frio/theme.php:234
|
||||
#: src/Content/Nav.php:325 view/theme/frio/theme.php:232
|
||||
msgid "Manage/edit friends and contacts"
|
||||
msgstr "Beheer/Wijzig vrienden en contacten"
|
||||
|
||||
#: src/Content/Nav.php:320 src/Module/BaseAdmin.php:105
|
||||
#: src/Content/Nav.php:330 src/Module/BaseAdmin.php:105
|
||||
msgid "Admin"
|
||||
msgstr "Beheer"
|
||||
|
||||
#: src/Content/Nav.php:320
|
||||
#: src/Content/Nav.php:330
|
||||
msgid "Site setup and configuration"
|
||||
msgstr "Website opzetten en configureren"
|
||||
|
||||
#: src/Content/Nav.php:321 src/Module/BaseModeration.php:117
|
||||
#: src/Content/Nav.php:331 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/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/Users/Active.php:89
|
||||
#: src/Module/Moderation/Users/Blocked.php:89
|
||||
#: src/Module/Moderation/Users/Deleted.php:66
|
||||
#: src/Module/Moderation/Users/Index.php:136
|
||||
#: src/Module/Moderation/Users/Index.php:96
|
||||
msgid "Moderation"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:321
|
||||
#: src/Content/Nav.php:331
|
||||
msgid "Content and user moderation"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Nav.php:324
|
||||
#: src/Content/Nav.php:334
|
||||
msgid "Navigation"
|
||||
msgstr "Navigatie"
|
||||
|
||||
#: src/Content/Nav.php:324
|
||||
#: src/Content/Nav.php:334
|
||||
msgid "Site map"
|
||||
msgstr "Sitemap"
|
||||
|
||||
|
|
@ -2279,11 +2281,11 @@ msgstr "Sitemap"
|
|||
msgid "first"
|
||||
msgstr "eerste"
|
||||
|
||||
#: src/Content/Pager.php:207
|
||||
#: src/Content/Pager.php:207 src/Module/Calendar/Show.php:121
|
||||
msgid "prev"
|
||||
msgstr "vorige"
|
||||
|
||||
#: src/Content/Pager.php:262
|
||||
#: src/Content/Pager.php:262 src/Module/Calendar/Show.php:122
|
||||
msgid "next"
|
||||
msgstr "volgende"
|
||||
|
||||
|
|
@ -2296,8 +2298,8 @@ msgstr "laatste"
|
|||
msgid "<a href=\"%1$s\" target=\"_blank\" rel=\"noopener noreferrer\">%2$s</a> %3$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Text/BBCode.php:926 src/Model/Item.php:4080
|
||||
#: src/Model/Item.php:4086 src/Model/Item.php:4087
|
||||
#: src/Content/Text/BBCode.php:926 src/Model/Item.php:4103
|
||||
#: src/Model/Item.php:4109 src/Model/Item.php:4110
|
||||
msgid "Link to source"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2329,8 +2331,8 @@ msgstr "Meer berichten aan het laden..."
|
|||
msgid "The end"
|
||||
msgstr "Het einde"
|
||||
|
||||
#: 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:116
|
||||
#: src/Model/Profile.php:452 src/Module/Contact/Profile.php:484
|
||||
msgid "Follow"
|
||||
msgstr "Volg"
|
||||
|
||||
|
|
@ -2369,7 +2371,7 @@ msgstr "Vul naam of interesse in"
|
|||
msgid "Examples: Robert Morgenstein, Fishing"
|
||||
msgstr "Voorbeelden: Jan Peeters, Vissen"
|
||||
|
||||
#: src/Content/Widget.php:68 src/Module/Contact.php:441
|
||||
#: src/Content/Widget.php:68 src/Module/Contact.php:440
|
||||
#: src/Module/Directory.php:82 view/theme/vier/theme.php:185
|
||||
msgid "Find"
|
||||
msgstr "Zoek"
|
||||
|
|
@ -2404,7 +2406,7 @@ msgstr "Lokale gids"
|
|||
msgid "Everyone"
|
||||
msgstr "Iedereen"
|
||||
|
||||
#: src/Content/Widget.php:257 src/Module/Contact.php:404
|
||||
#: src/Content/Widget.php:257 src/Module/Contact.php:403
|
||||
msgid "No relationship"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2413,7 +2415,7 @@ msgid "Relationships"
|
|||
msgstr "Relaties"
|
||||
|
||||
#: src/Content/Widget.php:264 src/Module/Circle.php:281
|
||||
#: src/Module/Contact.php:325
|
||||
#: src/Module/Contact.php:324
|
||||
msgid "All Contacts"
|
||||
msgstr "Alle Contacten"
|
||||
|
||||
|
|
@ -2448,7 +2450,7 @@ msgstr ""
|
|||
msgid "Organisations"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget.php:554 src/Model/Contact.php:1751
|
||||
#: src/Content/Widget.php:554 src/Model/Contact.php:1757
|
||||
msgid "News"
|
||||
msgstr "Nieuws"
|
||||
|
||||
|
|
@ -2502,47 +2504,47 @@ 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:1208
|
||||
#: src/Model/Profile.php:440
|
||||
#: src/Content/Widget/VCard.php:94 src/Model/Contact.php:1216
|
||||
#: src/Model/Profile.php:437
|
||||
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:99 src/Model/Contact.php:1220
|
||||
#: src/Model/Profile.php:441 src/Module/Moderation/Item/Source.php:80
|
||||
msgid "Mention"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Widget/VCard.php:110 src/Model/Profile.php:359
|
||||
#: src/Content/Widget/VCard.php:109 src/Model/Profile.php:356
|
||||
#: src/Module/Contact/Profile.php:420 src/Module/Profile/Profile.php:190
|
||||
msgid "XMPP:"
|
||||
msgstr "XMPP:"
|
||||
|
||||
#: src/Content/Widget/VCard.php:111 src/Model/Profile.php:360
|
||||
#: src/Content/Widget/VCard.php:110 src/Model/Profile.php:357
|
||||
#: src/Module/Contact/Profile.php:422 src/Module/Profile/Profile.php:194
|
||||
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/Content/Widget/VCard.php:111 src/Model/Event.php:68
|
||||
#: src/Model/Event.php:95 src/Model/Event.php:457 src/Model/Event.php:945
|
||||
#: src/Model/Profile.php:351 src/Module/Contact/Profile.php:418
|
||||
#: src/Module/Directory.php:133 src/Module/Notifications/Introductions.php:180
|
||||
#: src/Module/Profile/Profile.php:212
|
||||
msgid "Location:"
|
||||
msgstr "Plaats:"
|
||||
|
||||
#: src/Content/Widget/VCard.php:115 src/Model/Profile.php:468
|
||||
#: src/Content/Widget/VCard.php:114 src/Model/Profile.php:465
|
||||
#: src/Module/Notifications/Introductions.php:194
|
||||
msgid "Network:"
|
||||
msgstr "Netwerk:"
|
||||
|
||||
#: 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:118 src/Model/Contact.php:1248
|
||||
#: src/Model/Contact.php:1260 src/Model/Profile.php:454
|
||||
#: src/Module/Contact/Profile.php:476
|
||||
msgid "Unfollow"
|
||||
msgstr "Stop volgen"
|
||||
|
||||
#: src/Content/Widget/VCard.php:125 src/Model/Contact.php:1210
|
||||
#: src/Model/Profile.php:442
|
||||
#: src/Content/Widget/VCard.php:124 src/Model/Contact.php:1218
|
||||
#: src/Model/Profile.php:439
|
||||
msgid "View group"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2620,8 +2622,8 @@ msgid ""
|
|||
"or mysql."
|
||||
msgstr "Het kan nodig zijn om het bestand \"database.sql\" manueel te importeren met phpmyadmin of mysql."
|
||||
|
||||
#: src/Core/Installer.php:184 src/Module/Install.php:193
|
||||
#: src/Module/Install.php:336
|
||||
#: src/Core/Installer.php:184 src/Module/Install.php:192
|
||||
#: src/Module/Install.php:337
|
||||
msgid "Please see the file \"doc/INSTALL.md\"."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2938,7 +2940,7 @@ msgstr "Database al in gebruik."
|
|||
msgid "Could not connect to database."
|
||||
msgstr "Kon geen toegang krijgen tot de database."
|
||||
|
||||
#: src/Core/L10n.php:426 src/Model/Item.php:2324
|
||||
#: src/Core/L10n.php:426 src/Model/Item.php:2339
|
||||
msgid "Undetermined"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2947,142 +2949,142 @@ msgstr ""
|
|||
msgid "%s (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:418
|
||||
#: src/Module/Settings/Display.php:292
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:416
|
||||
#: src/Module/Settings/Display.php:282
|
||||
msgid "Monday"
|
||||
msgstr "Maandag"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:419
|
||||
#: src/Module/Settings/Display.php:293
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:417
|
||||
#: src/Module/Settings/Display.php:283
|
||||
msgid "Tuesday"
|
||||
msgstr "Dinsdag"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:420
|
||||
#: src/Module/Settings/Display.php:294
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:418
|
||||
#: src/Module/Settings/Display.php:284
|
||||
msgid "Wednesday"
|
||||
msgstr "Woensdag"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:421
|
||||
#: src/Module/Settings/Display.php:295
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:419
|
||||
#: src/Module/Settings/Display.php:285
|
||||
msgid "Thursday"
|
||||
msgstr "Donderdag"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:422
|
||||
#: src/Module/Settings/Display.php:296
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:420
|
||||
#: src/Module/Settings/Display.php:286
|
||||
msgid "Friday"
|
||||
msgstr "Vrijdag"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:423
|
||||
#: src/Module/Settings/Display.php:297
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:421
|
||||
#: src/Module/Settings/Display.php:287
|
||||
msgid "Saturday"
|
||||
msgstr "Zaterdag"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:417
|
||||
#: src/Module/Settings/Display.php:291
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:415
|
||||
#: src/Module/Settings/Display.php:281
|
||||
msgid "Sunday"
|
||||
msgstr "Zondag"
|
||||
|
||||
#: src/Core/L10n.php:485 src/Model/Event.php:438
|
||||
#: src/Core/L10n.php:485 src/Model/Event.php:436
|
||||
msgid "January"
|
||||
msgstr "Januari"
|
||||
|
||||
#: src/Core/L10n.php:485 src/Model/Event.php:439
|
||||
#: src/Core/L10n.php:485 src/Model/Event.php:437
|
||||
msgid "February"
|
||||
msgstr "Februari"
|
||||
|
||||
#: src/Core/L10n.php:485 src/Model/Event.php:440
|
||||
#: src/Core/L10n.php:485 src/Model/Event.php:438
|
||||
msgid "March"
|
||||
msgstr "Maart"
|
||||
|
||||
#: src/Core/L10n.php:485 src/Model/Event.php:441
|
||||
#: src/Core/L10n.php:485 src/Model/Event.php:439
|
||||
msgid "April"
|
||||
msgstr "April"
|
||||
|
||||
#: src/Core/L10n.php:485 src/Core/L10n.php:504 src/Model/Event.php:429
|
||||
#: src/Core/L10n.php:485 src/Core/L10n.php:504 src/Model/Event.php:427
|
||||
msgid "May"
|
||||
msgstr "Mei"
|
||||
|
||||
#: src/Core/L10n.php:485 src/Model/Event.php:442
|
||||
#: src/Core/L10n.php:485 src/Model/Event.php:440
|
||||
msgid "June"
|
||||
msgstr "Juni"
|
||||
|
||||
#: src/Core/L10n.php:485 src/Model/Event.php:443
|
||||
#: src/Core/L10n.php:485 src/Model/Event.php:441
|
||||
msgid "July"
|
||||
msgstr "Juli"
|
||||
|
||||
#: src/Core/L10n.php:485 src/Model/Event.php:444
|
||||
#: src/Core/L10n.php:485 src/Model/Event.php:442
|
||||
msgid "August"
|
||||
msgstr "Augustus"
|
||||
|
||||
#: src/Core/L10n.php:485 src/Model/Event.php:445
|
||||
#: src/Core/L10n.php:485 src/Model/Event.php:443
|
||||
msgid "September"
|
||||
msgstr "September"
|
||||
|
||||
#: src/Core/L10n.php:485 src/Model/Event.php:446
|
||||
#: src/Core/L10n.php:485 src/Model/Event.php:444
|
||||
msgid "October"
|
||||
msgstr "Oktober"
|
||||
|
||||
#: src/Core/L10n.php:485 src/Model/Event.php:447
|
||||
#: src/Core/L10n.php:485 src/Model/Event.php:445
|
||||
msgid "November"
|
||||
msgstr "November"
|
||||
|
||||
#: src/Core/L10n.php:485 src/Model/Event.php:448
|
||||
#: src/Core/L10n.php:485 src/Model/Event.php:446
|
||||
msgid "December"
|
||||
msgstr "December"
|
||||
|
||||
#: src/Core/L10n.php:500 src/Model/Event.php:410
|
||||
#: src/Core/L10n.php:500 src/Model/Event.php:408
|
||||
msgid "Mon"
|
||||
msgstr "Maa"
|
||||
|
||||
#: src/Core/L10n.php:500 src/Model/Event.php:411
|
||||
#: src/Core/L10n.php:500 src/Model/Event.php:409
|
||||
msgid "Tue"
|
||||
msgstr "Din"
|
||||
|
||||
#: src/Core/L10n.php:500 src/Model/Event.php:412
|
||||
#: src/Core/L10n.php:500 src/Model/Event.php:410
|
||||
msgid "Wed"
|
||||
msgstr "Woe"
|
||||
|
||||
#: src/Core/L10n.php:500 src/Model/Event.php:413
|
||||
#: src/Core/L10n.php:500 src/Model/Event.php:411
|
||||
msgid "Thu"
|
||||
msgstr "Don"
|
||||
|
||||
#: src/Core/L10n.php:500 src/Model/Event.php:414
|
||||
#: src/Core/L10n.php:500 src/Model/Event.php:412
|
||||
msgid "Fri"
|
||||
msgstr "Vrij"
|
||||
|
||||
#: src/Core/L10n.php:500 src/Model/Event.php:415
|
||||
#: src/Core/L10n.php:500 src/Model/Event.php:413
|
||||
msgid "Sat"
|
||||
msgstr "Zat"
|
||||
|
||||
#: src/Core/L10n.php:500 src/Model/Event.php:409
|
||||
#: src/Core/L10n.php:500 src/Model/Event.php:407
|
||||
msgid "Sun"
|
||||
msgstr "Zon"
|
||||
|
||||
#: src/Core/L10n.php:504 src/Model/Event.php:425
|
||||
#: src/Core/L10n.php:504 src/Model/Event.php:423
|
||||
msgid "Jan"
|
||||
msgstr "Jan"
|
||||
|
||||
#: src/Core/L10n.php:504 src/Model/Event.php:426
|
||||
#: src/Core/L10n.php:504 src/Model/Event.php:424
|
||||
msgid "Feb"
|
||||
msgstr "Feb"
|
||||
|
||||
#: src/Core/L10n.php:504 src/Model/Event.php:427
|
||||
#: src/Core/L10n.php:504 src/Model/Event.php:425
|
||||
msgid "Mar"
|
||||
msgstr "Maa"
|
||||
|
||||
#: src/Core/L10n.php:504 src/Model/Event.php:428
|
||||
#: src/Core/L10n.php:504 src/Model/Event.php:426
|
||||
msgid "Apr"
|
||||
msgstr "Apr"
|
||||
|
||||
#: src/Core/L10n.php:504 src/Model/Event.php:430
|
||||
#: src/Core/L10n.php:504 src/Model/Event.php:428
|
||||
msgid "Jun"
|
||||
msgstr "Jun"
|
||||
|
||||
#: src/Core/L10n.php:504 src/Model/Event.php:431
|
||||
#: src/Core/L10n.php:504 src/Model/Event.php:429
|
||||
msgid "Jul"
|
||||
msgstr "Jul"
|
||||
|
||||
#: src/Core/L10n.php:504 src/Model/Event.php:432
|
||||
#: src/Core/L10n.php:504 src/Model/Event.php:430
|
||||
msgid "Aug"
|
||||
msgstr "Aug"
|
||||
|
||||
|
|
@ -3090,15 +3092,15 @@ msgstr "Aug"
|
|||
msgid "Sep"
|
||||
msgstr "Sep"
|
||||
|
||||
#: src/Core/L10n.php:504 src/Model/Event.php:434
|
||||
#: src/Core/L10n.php:504 src/Model/Event.php:432
|
||||
msgid "Oct"
|
||||
msgstr "Okt"
|
||||
|
||||
#: src/Core/L10n.php:504 src/Model/Event.php:435
|
||||
#: src/Core/L10n.php:504 src/Model/Event.php:433
|
||||
msgid "Nov"
|
||||
msgstr "Nov"
|
||||
|
||||
#: src/Core/L10n.php:504 src/Model/Event.php:436
|
||||
#: src/Core/L10n.php:504 src/Model/Event.php:434
|
||||
msgid "Dec"
|
||||
msgstr "Dec"
|
||||
|
||||
|
|
@ -3157,22 +3159,22 @@ msgid ""
|
|||
" 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:252
|
||||
#, php-format
|
||||
msgid "%s: executing post update %d"
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Update.php:322
|
||||
#: src/Core/Update.php:328
|
||||
#, php-format
|
||||
msgid "Update %s failed. See error logs."
|
||||
msgstr "Wijziging %s mislukt. Lees de error logbestanden."
|
||||
|
||||
#: src/Core/Update.php:362
|
||||
#: src/Core/Update.php:369
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
|
|
@ -3182,49 +3184,49 @@ msgid ""
|
|||
"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
|
||||
msgstr "\n\t\t\t\tDe Friendica ontwikkelaars hebben recent update %svrijgegeven,\n \t\t\t\tmaar wanneer ik deze probeerde te installeren ging het verschrikkelijk fout.\n \t\t\t\tDit moet snel opgelost worden en ik kan het niet alleen. Contacteer alstublieft\n \t\t\t\teen Friendica ontwikkelaar als je mij zelf niet kan helpen. Mijn database kan ongeldig zijn."
|
||||
|
||||
#: src/Core/Update.php:368
|
||||
#: src/Core/Update.php:376
|
||||
#, 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:380 src/Core/Update.php:411
|
||||
msgid "[Friendica Notify] Database update"
|
||||
msgstr ""
|
||||
|
||||
#: src/Core/Update.php:394
|
||||
#: src/Core/Update.php:403
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
"\t\t\t\tThe friendica database was successfully updated from %s to %s."
|
||||
msgstr ""
|
||||
|
||||
#: src/Database/DBStructure.php:43
|
||||
#: src/Database/DBStructure.php:42
|
||||
#, php-format
|
||||
msgid "The database version had been set to %s."
|
||||
msgstr ""
|
||||
|
||||
#: src/Database/DBStructure.php:68
|
||||
#: src/Database/DBStructure.php:67
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The post update is at version %d, it has to be at %d to safely drop the "
|
||||
"tables."
|
||||
msgstr ""
|
||||
|
||||
#: src/Database/DBStructure.php:81
|
||||
#: src/Database/DBStructure.php:83
|
||||
msgid "No unused tables found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Database/DBStructure.php:86
|
||||
#: src/Database/DBStructure.php:88
|
||||
msgid ""
|
||||
"These tables are not used for friendica and will be deleted when you execute"
|
||||
" \"dbstructure drop -e\":"
|
||||
msgstr ""
|
||||
|
||||
#: src/Database/DBStructure.php:123
|
||||
#: src/Database/DBStructure.php:125
|
||||
msgid "There are no tables on MyISAM or InnoDB with the Antelope file format."
|
||||
msgstr ""
|
||||
|
||||
#: src/Database/DBStructure.php:147
|
||||
#: src/Database/DBStructure.php:150
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
|
|
@ -3232,20 +3234,20 @@ msgid ""
|
|||
"%s\n"
|
||||
msgstr "\nFout %d is opgetreden tijdens database update:\n%s\n"
|
||||
|
||||
#: src/Database/DBStructure.php:150
|
||||
#: src/Database/DBStructure.php:155
|
||||
msgid "Errors encountered performing database changes: "
|
||||
msgstr "Fouten opgetreden tijdens database aanpassingen:"
|
||||
|
||||
#: src/Database/DBStructure.php:228
|
||||
#: src/Database/DBStructure.php:233
|
||||
msgid "Another database update is currently running."
|
||||
msgstr ""
|
||||
|
||||
#: src/Database/DBStructure.php:232
|
||||
#: src/Database/DBStructure.php:237
|
||||
#, php-format
|
||||
msgid "%s: Database update"
|
||||
msgstr "%s: Database update"
|
||||
|
||||
#: src/Database/DBStructure.php:489
|
||||
#: src/Database/DBStructure.php:494
|
||||
#, php-format
|
||||
msgid "%s: updating %s table."
|
||||
msgstr "%s: tabel %s aan het updaten."
|
||||
|
|
@ -3276,7 +3278,7 @@ msgstr ""
|
|||
msgid "Legacy module file not found: %s"
|
||||
msgstr "Legacy module bestand niet gevonden: %s"
|
||||
|
||||
#: src/Model/Circle.php:92
|
||||
#: src/Model/Circle.php:91
|
||||
msgid ""
|
||||
"A deleted circle with this name was revived. Existing item permissions "
|
||||
"<strong>may</strong> apply to this circle and any future members. If this is"
|
||||
|
|
@ -3316,438 +3318,438 @@ msgstr ""
|
|||
msgid "Edit circles"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:1259 src/Module/Moderation/Users/Pending.php:88
|
||||
#: src/Model/Contact.php:1267 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:1595 src/Model/Contact.php:1667
|
||||
#: src/Model/Contact.php:1601 src/Model/Contact.php:1673
|
||||
#: src/Module/Contact/Profile.php:360
|
||||
#, php-format
|
||||
msgid "%s has blocked you"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:1747
|
||||
#: src/Model/Contact.php:1753
|
||||
msgid "Organisation"
|
||||
msgstr "Organisatie"
|
||||
|
||||
#: src/Model/Contact.php:1755
|
||||
#: src/Model/Contact.php:1761
|
||||
msgid "Group"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:1759 src/Module/Moderation/BaseUsers.php:122
|
||||
#: src/Model/Contact.php:1765 src/Module/Moderation/BaseUsers.php:122
|
||||
msgid "Relay"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:3085
|
||||
#: src/Model/Contact.php:3091
|
||||
msgid "Disallowed profile URL."
|
||||
msgstr "Niet toegelaten profiel adres."
|
||||
|
||||
#: src/Model/Contact.php:3090 src/Module/Friendica.php:88
|
||||
#: src/Model/Contact.php:3096 src/Module/Friendica.php:88
|
||||
msgid "Blocked domain"
|
||||
msgstr "Domein geblokeerd"
|
||||
|
||||
#: src/Model/Contact.php:3095
|
||||
#: src/Model/Contact.php:3101
|
||||
msgid "Connect URL missing."
|
||||
msgstr "Connectie URL ontbreekt."
|
||||
|
||||
#: src/Model/Contact.php:3104
|
||||
#: src/Model/Contact.php:3110
|
||||
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:3122
|
||||
#: src/Model/Contact.php:3128
|
||||
#, php-format
|
||||
msgid "Expected network %s does not match actual network %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Contact.php:3139
|
||||
#: src/Model/Contact.php:3145
|
||||
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:3152
|
||||
msgid "The profile address specified does not provide adequate information."
|
||||
msgstr "Het opgegeven profiel adres bevat geen adequate informatie."
|
||||
|
||||
#: src/Model/Contact.php:3148
|
||||
#: src/Model/Contact.php:3154
|
||||
msgid "No compatible communication protocols or feeds were discovered."
|
||||
msgstr "Er werden geen compatibele communicatieprotocols of feeds ontdekt."
|
||||
|
||||
#: src/Model/Contact.php:3151
|
||||
#: src/Model/Contact.php:3157
|
||||
msgid "An author or name was not found."
|
||||
msgstr "Er werd geen auteur of naam gevonden."
|
||||
|
||||
#: src/Model/Contact.php:3154
|
||||
#: src/Model/Contact.php:3160
|
||||
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:3157
|
||||
#: src/Model/Contact.php:3163
|
||||
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:3158
|
||||
#: src/Model/Contact.php:3164
|
||||
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:3164
|
||||
#: src/Model/Contact.php:3170
|
||||
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:3223
|
||||
#: src/Model/Contact.php:3229
|
||||
msgid "Unable to retrieve contact information."
|
||||
msgstr "Het was niet mogelijk informatie over dit contact op te halen."
|
||||
|
||||
#: 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:927
|
||||
msgid "Starts:"
|
||||
msgstr "Begint:"
|
||||
|
||||
#: 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:931
|
||||
msgid "Finishes:"
|
||||
msgstr "Eindigt:"
|
||||
|
||||
#: src/Model/Event.php:407
|
||||
#: src/Model/Event.php:405
|
||||
msgid "all-day"
|
||||
msgstr "de hele dag"
|
||||
|
||||
#: src/Model/Event.php:433
|
||||
#: src/Model/Event.php:431
|
||||
msgid "Sept"
|
||||
msgstr "Sep"
|
||||
|
||||
#: src/Model/Event.php:450 src/Module/Calendar/Show.php:117
|
||||
#: src/Util/Temporal.php:329
|
||||
#: src/Model/Event.php:448 src/Module/Calendar/Show.php:116
|
||||
#: src/Util/Temporal.php:333
|
||||
msgid "today"
|
||||
msgstr "vandaag"
|
||||
|
||||
#: 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:117
|
||||
#: src/Module/Settings/Display.php:292 src/Util/Temporal.php:343
|
||||
msgid "month"
|
||||
msgstr "maand"
|
||||
|
||||
#: 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:118
|
||||
#: src/Module/Settings/Display.php:293 src/Util/Temporal.php:344
|
||||
msgid "week"
|
||||
msgstr "week"
|
||||
|
||||
#: 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:119
|
||||
#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:345
|
||||
msgid "day"
|
||||
msgstr "dag"
|
||||
|
||||
#: src/Model/Event.php:455
|
||||
#: src/Model/Event.php:453
|
||||
msgid "No events to display"
|
||||
msgstr "Geen gebeurtenissen te tonen"
|
||||
|
||||
#: 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 "Toegang tot dit profiel is beperkt."
|
||||
|
||||
#: src/Model/Event.php:545 src/Module/Calendar/Event/Show.php:52
|
||||
#: src/Model/Event.php:543 src/Module/Calendar/Event/Show.php:52
|
||||
msgid "Event not found."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Event.php:624
|
||||
#: src/Model/Event.php:622
|
||||
msgid "l, F j"
|
||||
msgstr "l j F"
|
||||
|
||||
#: src/Model/Event.php:651
|
||||
#: src/Model/Event.php:649
|
||||
msgid "Edit event"
|
||||
msgstr "Gebeurtenis bewerken"
|
||||
|
||||
#: src/Model/Event.php:652
|
||||
#: src/Model/Event.php:650
|
||||
msgid "Duplicate event"
|
||||
msgstr "Duplicate gebeurtenis"
|
||||
|
||||
#: src/Model/Event.php:653
|
||||
#: src/Model/Event.php:651
|
||||
msgid "Delete event"
|
||||
msgstr "Verwijder gebeurtenis"
|
||||
|
||||
#: src/Model/Event.php:883 src/Module/Debug/Localtime.php:24
|
||||
#: src/Model/Event.php:881 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:884
|
||||
#: src/Model/Event.php:882
|
||||
msgid "D g:i A"
|
||||
msgstr "D g:i A"
|
||||
|
||||
#: src/Model/Event.php:885
|
||||
#: src/Model/Event.php:883
|
||||
msgid "g:i A"
|
||||
msgstr "g:i A"
|
||||
|
||||
#: src/Model/Event.php:948 src/Model/Event.php:950
|
||||
#: src/Model/Event.php:946 src/Model/Event.php:948
|
||||
msgid "Show map"
|
||||
msgstr "Toon kaart"
|
||||
|
||||
#: src/Model/Event.php:949
|
||||
#: src/Model/Event.php:947
|
||||
msgid "Hide map"
|
||||
msgstr "Verberg kaart"
|
||||
|
||||
#: src/Model/Event.php:1042
|
||||
#: src/Model/Event.php:1040
|
||||
#, php-format
|
||||
msgid "%s's birthday"
|
||||
msgstr "%s's verjaardag"
|
||||
|
||||
#: src/Model/Event.php:1043
|
||||
#: src/Model/Event.php:1041
|
||||
#, php-format
|
||||
msgid "Happy Birthday %s"
|
||||
msgstr "Gefeliciteerd %s"
|
||||
|
||||
#: src/Model/Item.php:2331
|
||||
#: src/Model/Item.php:2346
|
||||
#, php-format
|
||||
msgid "%s (%s - %s): %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:2333
|
||||
#: src/Model/Item.php:2348
|
||||
#, php-format
|
||||
msgid "%s (%s): %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:2336
|
||||
#: src/Model/Item.php:2351
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Detected languages in this post:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:3285
|
||||
#: src/Model/Item.php:3300
|
||||
msgid "activity"
|
||||
msgstr "activiteit"
|
||||
|
||||
#: src/Model/Item.php:3287
|
||||
#: src/Model/Item.php:3302
|
||||
msgid "comment"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:3290 src/Module/Post/Tag/Add.php:109
|
||||
#: src/Model/Item.php:3305 src/Module/Post/Tag/Add.php:109
|
||||
msgid "post"
|
||||
msgstr "bericht"
|
||||
|
||||
#: src/Model/Item.php:3463
|
||||
#: src/Model/Item.php:3478
|
||||
#, php-format
|
||||
msgid "%s is blocked"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:3465
|
||||
#: src/Model/Item.php:3480
|
||||
#, php-format
|
||||
msgid "%s is ignored"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:3467
|
||||
#: src/Model/Item.php:3482
|
||||
#, php-format
|
||||
msgid "Content from %s is collapsed"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:3471
|
||||
#: src/Model/Item.php:3486
|
||||
msgid "Sensitive content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:3980
|
||||
#: src/Model/Item.php:4003
|
||||
msgid "bytes"
|
||||
msgstr "bytes"
|
||||
|
||||
#: src/Model/Item.php:4011
|
||||
#: src/Model/Item.php:4034
|
||||
#, 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:4036
|
||||
#, 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:4041
|
||||
#, 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:4043
|
||||
#, php-format
|
||||
msgid "%d voter."
|
||||
msgid_plural "%d voters."
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Model/Item.php:4022
|
||||
#: src/Model/Item.php:4045
|
||||
#, php-format
|
||||
msgid "Poll end: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Item.php:4063 src/Model/Item.php:4064
|
||||
#: src/Model/Item.php:4086 src/Model/Item.php:4087
|
||||
msgid "View on separate page"
|
||||
msgstr "Bekijk op aparte pagina"
|
||||
|
||||
#: src/Model/Mail.php:121
|
||||
#: src/Model/Mail.php:120
|
||||
msgid "[no subject]"
|
||||
msgstr "[geen onderwerp]"
|
||||
|
||||
#: src/Model/Photo.php:1192 src/Module/Media/Photo/Upload.php:154
|
||||
#: src/Model/Photo.php:1194 src/Module/Media/Photo/Upload.php:154
|
||||
msgid "Wall Photos"
|
||||
msgstr "Tijdlijn foto's"
|
||||
|
||||
#: src/Model/Profile.php:342 src/Module/Profile/Profile.php:274
|
||||
#: src/Model/Profile.php:339 src/Module/Profile/Profile.php:274
|
||||
#: src/Module/Profile/Profile.php:276
|
||||
msgid "Edit profile"
|
||||
msgstr "Bewerk profiel"
|
||||
|
||||
#: src/Model/Profile.php:344
|
||||
#: src/Model/Profile.php:341
|
||||
msgid "Change profile photo"
|
||||
msgstr "Profiel foto wijzigen"
|
||||
|
||||
#: src/Model/Profile.php:357 src/Module/Directory.php:138
|
||||
#: src/Model/Profile.php:354 src/Module/Directory.php:138
|
||||
#: src/Module/Profile/Profile.php:200
|
||||
msgid "Homepage:"
|
||||
msgstr "Website:"
|
||||
|
||||
#: src/Model/Profile.php:358 src/Module/Contact/Profile.php:424
|
||||
#: src/Model/Profile.php:355 src/Module/Contact/Profile.php:424
|
||||
#: src/Module/Notifications/Introductions.php:182
|
||||
msgid "About:"
|
||||
msgstr "Over:"
|
||||
|
||||
#: src/Model/Profile.php:459
|
||||
#: src/Model/Profile.php:456
|
||||
msgid "Atom feed"
|
||||
msgstr "Atom feed"
|
||||
|
||||
#: src/Model/Profile.php:466
|
||||
#: src/Model/Profile.php:463
|
||||
msgid "This website has been verified to belong to the same person."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Profile.php:517
|
||||
#: src/Model/Profile.php:514
|
||||
msgid "F d"
|
||||
msgstr "d F"
|
||||
|
||||
#: src/Model/Profile.php:581 src/Model/Profile.php:662
|
||||
#: src/Model/Profile.php:578 src/Model/Profile.php:659
|
||||
msgid "[today]"
|
||||
msgstr "[vandaag]"
|
||||
|
||||
#: src/Model/Profile.php:590
|
||||
#: src/Model/Profile.php:587
|
||||
msgid "Birthday Reminders"
|
||||
msgstr "Verjaardagsherinneringen"
|
||||
|
||||
#: src/Model/Profile.php:591
|
||||
#: src/Model/Profile.php:588
|
||||
msgid "Birthdays this week:"
|
||||
msgstr "Verjaardagen deze week:"
|
||||
|
||||
#: src/Model/Profile.php:607
|
||||
#: src/Model/Profile.php:604
|
||||
msgid "g A l F d"
|
||||
msgstr "G l j F"
|
||||
|
||||
#: src/Model/Profile.php:649
|
||||
#: src/Model/Profile.php:646
|
||||
msgid "[No description]"
|
||||
msgstr "[Geen omschrijving]"
|
||||
|
||||
#: src/Model/Profile.php:675
|
||||
#: src/Model/Profile.php:672
|
||||
msgid "Event Reminders"
|
||||
msgstr "Gebeurtenisherinneringen"
|
||||
|
||||
#: src/Model/Profile.php:676
|
||||
#: src/Model/Profile.php:673
|
||||
msgid "Upcoming events the next 7 days:"
|
||||
msgstr "Evenementen de komende 7 dagen:"
|
||||
|
||||
#: src/Model/Profile.php:786
|
||||
#: src/Model/Profile.php:783
|
||||
msgid "Hometown:"
|
||||
msgstr "Woonplaats:"
|
||||
|
||||
#: src/Model/Profile.php:787
|
||||
#: src/Model/Profile.php:784
|
||||
msgid "Marital Status:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/Profile.php:788
|
||||
#: src/Model/Profile.php:785
|
||||
msgid "With:"
|
||||
msgstr "Met:"
|
||||
|
||||
#: src/Model/Profile.php:789
|
||||
#: src/Model/Profile.php:786
|
||||
msgid "Since:"
|
||||
msgstr "Sinds:"
|
||||
|
||||
#: src/Model/Profile.php:790
|
||||
#: src/Model/Profile.php:787
|
||||
msgid "Sexual Preference:"
|
||||
msgstr "Seksuele Voorkeur:"
|
||||
|
||||
#: src/Model/Profile.php:791
|
||||
#: src/Model/Profile.php:788
|
||||
msgid "Political Views:"
|
||||
msgstr "Politieke standpunten:"
|
||||
|
||||
#: src/Model/Profile.php:792
|
||||
#: src/Model/Profile.php:789
|
||||
msgid "Religious Views:"
|
||||
msgstr "Geloof:"
|
||||
|
||||
#: src/Model/Profile.php:793
|
||||
#: src/Model/Profile.php:790
|
||||
msgid "Likes:"
|
||||
msgstr "Houdt van:"
|
||||
|
||||
#: src/Model/Profile.php:794
|
||||
#: src/Model/Profile.php:791
|
||||
msgid "Dislikes:"
|
||||
msgstr "Houdt niet van:"
|
||||
|
||||
#: src/Model/Profile.php:795
|
||||
#: src/Model/Profile.php:792
|
||||
msgid "Title/Description:"
|
||||
msgstr "Titel/Beschrijving:"
|
||||
|
||||
#: src/Model/Profile.php:796 src/Module/Admin/Summary.php:174
|
||||
#: src/Model/Profile.php:793 src/Module/Admin/Summary.php:174
|
||||
#: src/Module/Moderation/Report/Create.php:266
|
||||
#: src/Module/Moderation/Summary.php:65
|
||||
msgid "Summary"
|
||||
msgstr "Samenvatting"
|
||||
|
||||
#: src/Model/Profile.php:797
|
||||
#: src/Model/Profile.php:794
|
||||
msgid "Musical interests"
|
||||
msgstr "Muzikale interesses"
|
||||
|
||||
#: src/Model/Profile.php:798
|
||||
#: src/Model/Profile.php:795
|
||||
msgid "Books, literature"
|
||||
msgstr "Boeken, literatuur"
|
||||
|
||||
#: src/Model/Profile.php:799
|
||||
#: src/Model/Profile.php:796
|
||||
msgid "Television"
|
||||
msgstr "Televisie"
|
||||
|
||||
#: src/Model/Profile.php:800
|
||||
#: src/Model/Profile.php:797
|
||||
msgid "Film/dance/culture/entertainment"
|
||||
msgstr "Film/dans/cultuur/ontspanning"
|
||||
|
||||
#: src/Model/Profile.php:801
|
||||
#: src/Model/Profile.php:798
|
||||
msgid "Hobbies/Interests"
|
||||
msgstr "Hobby's/Interesses"
|
||||
|
||||
#: src/Model/Profile.php:802
|
||||
#: src/Model/Profile.php:799
|
||||
msgid "Love/romance"
|
||||
msgstr "Liefde/romance"
|
||||
|
||||
#: src/Model/Profile.php:803
|
||||
#: src/Model/Profile.php:800
|
||||
msgid "Work/employment"
|
||||
msgstr "Werk"
|
||||
|
||||
#: src/Model/Profile.php:804
|
||||
#: src/Model/Profile.php:801
|
||||
msgid "School/education"
|
||||
msgstr "School/opleiding"
|
||||
|
||||
#: src/Model/Profile.php:805
|
||||
#: src/Model/Profile.php:802
|
||||
msgid "Contact information and Social Networks"
|
||||
msgstr "Contactinformatie en sociale netwerken"
|
||||
|
||||
#: src/Model/Profile.php:853
|
||||
#: src/Model/Profile.php:850
|
||||
#, php-format
|
||||
msgid "Responsible account: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:217 src/Model/User.php:1310
|
||||
#: src/Model/User.php:216 src/Model/User.php:1313
|
||||
msgid "SERIOUS ERROR: Generation of security keys failed."
|
||||
msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt."
|
||||
|
||||
|
|
@ -3755,137 +3757,137 @@ msgstr "ERNSTIGE FOUT: aanmaken van beveiligingssleutels mislukt."
|
|||
msgid "Login failed"
|
||||
msgstr "Login mislukt"
|
||||
|
||||
#: src/Model/User.php:804
|
||||
#: src/Model/User.php:805
|
||||
msgid "Not enough information to authenticate"
|
||||
msgstr "Niet genoeg informatie om te authentificeren"
|
||||
|
||||
#: src/Model/User.php:929
|
||||
#: src/Model/User.php:932
|
||||
msgid "Password can't be empty"
|
||||
msgstr "Wachtwoord mag niet leeg zijn"
|
||||
|
||||
#: src/Model/User.php:971
|
||||
#: src/Model/User.php:974
|
||||
msgid "Empty passwords are not allowed."
|
||||
msgstr "Lege wachtwoorden zijn niet toegestaan"
|
||||
|
||||
#: src/Model/User.php:975
|
||||
#: src/Model/User.php:978
|
||||
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:979
|
||||
#: src/Model/User.php:982
|
||||
msgid "The password length is limited to 72 characters."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:983
|
||||
#: src/Model/User.php:986
|
||||
msgid "The password can't contain white spaces nor accentuated letters"
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:1192
|
||||
#: src/Model/User.php:1195
|
||||
msgid "Passwords do not match. Password unchanged."
|
||||
msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd."
|
||||
|
||||
#: src/Model/User.php:1199
|
||||
#: src/Model/User.php:1202
|
||||
msgid "An invitation is required."
|
||||
msgstr "Een uitnodiging is vereist."
|
||||
|
||||
#: src/Model/User.php:1203
|
||||
#: src/Model/User.php:1206
|
||||
msgid "Invitation could not be verified."
|
||||
msgstr "Uitnodiging kon niet geverifieerd worden."
|
||||
|
||||
#: src/Model/User.php:1211
|
||||
#: src/Model/User.php:1214
|
||||
msgid "Invalid OpenID url"
|
||||
msgstr "Ongeldige OpenID url"
|
||||
|
||||
#: src/Model/User.php:1225 src/Security/Authentication.php:231
|
||||
#: src/Model/User.php:1228 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:231
|
||||
#: src/Model/User.php:1228 src/Security/Authentication.php:231
|
||||
msgid "The error message was:"
|
||||
msgstr "De foutboodschap was:"
|
||||
|
||||
#: src/Model/User.php:1231
|
||||
#: src/Model/User.php:1234
|
||||
msgid "Please enter the required information."
|
||||
msgstr "Vul de vereiste informatie in."
|
||||
|
||||
#: src/Model/User.php:1245
|
||||
#: src/Model/User.php:1248
|
||||
#, php-format
|
||||
msgid ""
|
||||
"system.username_min_length (%s) and system.username_max_length (%s) are "
|
||||
"excluding each other, swapping values."
|
||||
msgstr "system.username_min_length (%s) en system.username_max_length (%s) sluiten elkaar uit. Waarden worden omgedraaid."
|
||||
|
||||
#: src/Model/User.php:1252
|
||||
#: src/Model/User.php:1255
|
||||
#, php-format
|
||||
msgid "Username should be at least %s character."
|
||||
msgid_plural "Username should be at least %s characters."
|
||||
msgstr[0] "Gebruikersnaam moet minimaal %s tekens bevatten."
|
||||
msgstr[1] "Gebruikersnaam moet minimaal %s tekens bevatten"
|
||||
|
||||
#: src/Model/User.php:1256
|
||||
#: src/Model/User.php:1259
|
||||
#, php-format
|
||||
msgid "Username should be at most %s character."
|
||||
msgid_plural "Username should be at most %s characters."
|
||||
msgstr[0] "Gebruikersnaam mag maximaal %s tekens bevatten."
|
||||
msgstr[1] "Gebruikersnaam mag maximaal %s tekens bevatten."
|
||||
|
||||
#: src/Model/User.php:1264
|
||||
#: src/Model/User.php:1267
|
||||
msgid "That doesn't appear to be your full (First Last) name."
|
||||
msgstr "Dat lijkt niet je volledige naam (voor- en achternaam) te zijn."
|
||||
|
||||
#: src/Model/User.php:1269
|
||||
#: src/Model/User.php:1272
|
||||
msgid "Your email domain is not among those allowed on this site."
|
||||
msgstr "Je e-maildomein is op deze website niet toegestaan."
|
||||
|
||||
#: src/Model/User.php:1273
|
||||
#: src/Model/User.php:1276
|
||||
msgid "Not a valid email address."
|
||||
msgstr "Geen geldig e-mailadres."
|
||||
|
||||
#: src/Model/User.php:1276
|
||||
#: src/Model/User.php:1279
|
||||
msgid "The nickname was blocked from registration by the nodes admin."
|
||||
msgstr "De bijnaam werd geblokkeerd voor registratie door de node admin"
|
||||
|
||||
#: src/Model/User.php:1280 src/Model/User.php:1286
|
||||
#: src/Model/User.php:1283 src/Model/User.php:1289
|
||||
msgid "Cannot use that email."
|
||||
msgstr "Ik kan die e-mail niet gebruiken."
|
||||
|
||||
#: src/Model/User.php:1292
|
||||
#: src/Model/User.php:1295
|
||||
msgid "Your nickname can only contain a-z, 0-9 and _."
|
||||
msgstr "Je bijnaam mag alleen a-z, 0-9 of _ bevatten."
|
||||
|
||||
#: src/Model/User.php:1300 src/Model/User.php:1350
|
||||
#: src/Model/User.php:1303 src/Model/User.php:1353
|
||||
msgid "Nickname is already registered. Please choose another."
|
||||
msgstr "Bijnaam is al geregistreerd. Kies een andere."
|
||||
|
||||
#: src/Model/User.php:1337 src/Model/User.php:1341
|
||||
#: src/Model/User.php:1340 src/Model/User.php:1344
|
||||
msgid "An error occurred during registration. Please try again."
|
||||
msgstr "Er is een fout opgetreden tijdens de registratie. Probeer opnieuw."
|
||||
|
||||
#: src/Model/User.php:1364
|
||||
#: src/Model/User.php:1367
|
||||
msgid "An error occurred creating your default profile. Please try again."
|
||||
msgstr "Er is een fout opgetreden bij het aanmaken van je standaard profiel. Probeer opnieuw."
|
||||
|
||||
#: src/Model/User.php:1371
|
||||
#: src/Model/User.php:1374
|
||||
msgid "An error occurred creating your self contact. Please try again."
|
||||
msgstr "Er is een fout opgetreden bij het aanmaken van je self contact. Probeer opnieuw."
|
||||
|
||||
#: src/Model/User.php:1376
|
||||
#: src/Model/User.php:1379
|
||||
msgid "Friends"
|
||||
msgstr "Vrienden"
|
||||
|
||||
#: src/Model/User.php:1380
|
||||
#: src/Model/User.php:1383
|
||||
msgid ""
|
||||
"An error occurred creating your default contact circle. Please try again."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:1428
|
||||
#: src/Model/User.php:1431
|
||||
msgid "Profile Photos"
|
||||
msgstr "Profielfoto's"
|
||||
|
||||
#: src/Model/User.php:1616
|
||||
#: src/Model/User.php:1619
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
|
|
@ -3893,7 +3895,7 @@ msgid ""
|
|||
"\t\t\tthe administrator of %2$s has set up an account for you."
|
||||
msgstr "\n\t\tBeste %1$s,\n\t\t\tde administrator van %2$s heeft een gebruiker voor je aangemaakt."
|
||||
|
||||
#: src/Model/User.php:1619
|
||||
#: src/Model/User.php:1622
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
|
|
@ -3924,12 +3926,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:1654 src/Model/User.php:1760
|
||||
#, php-format
|
||||
msgid "Registration details for %s"
|
||||
msgstr "Registratie details voor %s"
|
||||
|
||||
#: src/Model/User.php:1671
|
||||
#: src/Model/User.php:1674
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
|
|
@ -3944,12 +3946,12 @@ msgid ""
|
|||
"\t\t"
|
||||
msgstr "\n\t\t\tHallo %1$s,\n\t\t\t\tBedankt voor uw registratie op %2$s. Uw account wacht op dit moment op bevestiging door de administrator.\n\n\t\t\tUw login details zijn:\n\n\t\t\tSite locatie:\t%3$s\n\t\t\tGebruikersnaam:\t\t%4$s\n\t\t\tWachtwoord:\t\t%5$s\n\t\t"
|
||||
|
||||
#: src/Model/User.php:1690
|
||||
#: src/Model/User.php:1693
|
||||
#, php-format
|
||||
msgid "Registration at %s"
|
||||
msgstr "Registratie bij %s"
|
||||
|
||||
#: src/Model/User.php:1714
|
||||
#: src/Model/User.php:1717
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
|
|
@ -3958,7 +3960,7 @@ msgid ""
|
|||
"\t\t\t"
|
||||
msgstr "\n\t\t\t\tBeste %1$s,\n\t\t\t\tBedankt voor je inschrijving op %2$s. Je gebruiker is aangemaakt.\n\t\t\t"
|
||||
|
||||
#: src/Model/User.php:1722
|
||||
#: src/Model/User.php:1725
|
||||
#, php-format
|
||||
msgid ""
|
||||
"\n"
|
||||
|
|
@ -3989,7 +3991,7 @@ msgid ""
|
|||
"\t\t\tThank you and welcome to %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: src/Model/User.php:1784
|
||||
#: src/Model/User.php:1787
|
||||
msgid ""
|
||||
"User with delegates can't be removed, please remove delegate users first"
|
||||
msgstr ""
|
||||
|
|
@ -4014,14 +4016,14 @@ msgid "Disable"
|
|||
msgstr "Uitschakelen"
|
||||
|
||||
#: src/Module/Admin/Addons/Details.php:75
|
||||
#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351
|
||||
#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:341
|
||||
msgid "Enable"
|
||||
msgstr "Inschakelen"
|
||||
|
||||
#: 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/Site.php:446 src/Module/Admin/Storage.php:124
|
||||
#: 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
|
||||
|
|
@ -4059,13 +4061,13 @@ msgid "Addon %s failed to install."
|
|||
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/Logs/Settings.php:76 src/Module/Admin/Site.php:449
|
||||
#: 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/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:307
|
||||
#: src/Module/Settings/Features.php:61
|
||||
msgid "Save Settings"
|
||||
msgstr "Instellingen opslaan"
|
||||
|
|
@ -4142,14 +4144,14 @@ msgstr "Probeer deze stap automatisch uit te voeren"
|
|||
|
||||
#: 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 "Nee"
|
||||
|
||||
#: 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 "Ja"
|
||||
|
|
@ -4272,8 +4274,8 @@ msgid "Enable Debugging"
|
|||
msgstr "Activeer Debugging"
|
||||
|
||||
#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Logs/Settings.php:81
|
||||
#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:470
|
||||
#: src/Module/Admin/Site.php:478
|
||||
#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:469
|
||||
#: src/Module/Admin/Site.php:477
|
||||
msgid ""
|
||||
"<strong>Read-only</strong> because it is set by an environment variable"
|
||||
msgstr ""
|
||||
|
|
@ -4389,10 +4391,6 @@ msgstr ""
|
|||
msgid "Process ID"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Logs/View.php:92
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Queue.php:36
|
||||
msgid "Inspect Deferred Worker Queue"
|
||||
msgstr "Inspecteer wachtrij van uitgestelde workers"
|
||||
|
|
@ -4438,274 +4436,274 @@ msgstr ""
|
|||
msgid "Priority"
|
||||
msgstr "Prioriteit"
|
||||
|
||||
#: src/Module/Admin/Site.php:230
|
||||
#: src/Module/Admin/Site.php:229
|
||||
#, php-format
|
||||
msgid "%s is no valid input for maximum media size"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:235
|
||||
#: src/Module/Admin/Site.php:234
|
||||
#, php-format
|
||||
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:361 src/Module/Settings/Display.php:206
|
||||
msgid "No special theme for mobile devices"
|
||||
msgstr "Geen speciaal thema voor mobiele apparaten"
|
||||
|
||||
#: src/Module/Admin/Site.php:379 src/Module/Settings/Display.php:222
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:216
|
||||
#, php-format
|
||||
msgid "%s - (Experimental)"
|
||||
msgstr "%s - (Experimenteel)"
|
||||
|
||||
#: src/Module/Admin/Site.php:391
|
||||
#: src/Module/Admin/Site.php:390
|
||||
msgid "No community page"
|
||||
msgstr "Geen groepspagina"
|
||||
|
||||
#: src/Module/Admin/Site.php:392
|
||||
#: src/Module/Admin/Site.php:391
|
||||
msgid "No community page for visitors"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:393
|
||||
#: src/Module/Admin/Site.php:392
|
||||
msgid "Public postings from users of this site"
|
||||
msgstr "Publieke berichten van gebruikers van deze site"
|
||||
|
||||
#: src/Module/Admin/Site.php:394
|
||||
#: src/Module/Admin/Site.php:393
|
||||
msgid "Public postings from the federated network"
|
||||
msgstr "Publieke berichten van het gefedereerde netwerk"
|
||||
|
||||
#: src/Module/Admin/Site.php:395
|
||||
#: src/Module/Admin/Site.php:394
|
||||
msgid "Public postings from local users and the federated network"
|
||||
msgstr "Publieke berichten van lokale gebruikers en van het gefedereerde netwerk"
|
||||
|
||||
#: src/Module/Admin/Site.php:401
|
||||
#: src/Module/Admin/Site.php:400
|
||||
msgid "Multi user instance"
|
||||
msgstr "Server voor meerdere gebruikers"
|
||||
|
||||
#: src/Module/Admin/Site.php:424
|
||||
#: src/Module/Admin/Site.php:423
|
||||
msgid "Closed"
|
||||
msgstr "Gesloten"
|
||||
|
||||
#: src/Module/Admin/Site.php:425
|
||||
#: src/Module/Admin/Site.php:424
|
||||
msgid "Requires approval"
|
||||
msgstr "Toestemming vereist"
|
||||
|
||||
#: src/Module/Admin/Site.php:426
|
||||
#: src/Module/Admin/Site.php:425
|
||||
msgid "Open"
|
||||
msgstr "Open"
|
||||
|
||||
#: src/Module/Admin/Site.php:430
|
||||
#: src/Module/Admin/Site.php:429
|
||||
msgid "Don't check"
|
||||
msgstr "Geen rekening mee houden"
|
||||
|
||||
#: src/Module/Admin/Site.php:431
|
||||
#: src/Module/Admin/Site.php:430
|
||||
msgid "check the stable version"
|
||||
msgstr "Neem de stabiele versie in rekening"
|
||||
|
||||
#: src/Module/Admin/Site.php:432
|
||||
#: src/Module/Admin/Site.php:431
|
||||
msgid "check the development version"
|
||||
msgstr "Neem de ontwikkel versie in rekening"
|
||||
|
||||
#: src/Module/Admin/Site.php:436
|
||||
#: src/Module/Admin/Site.php:435
|
||||
msgid "none"
|
||||
msgstr "geen"
|
||||
|
||||
#: src/Module/Admin/Site.php:437
|
||||
#: src/Module/Admin/Site.php:436
|
||||
msgid "Local contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:438
|
||||
#: src/Module/Admin/Site.php:437
|
||||
msgid "Interactors"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:448 src/Module/BaseAdmin.php:76
|
||||
#: src/Module/Admin/Site.php:447 src/Module/BaseAdmin.php:76
|
||||
msgid "Site"
|
||||
msgstr "Website"
|
||||
|
||||
#: src/Module/Admin/Site.php:449
|
||||
#: src/Module/Admin/Site.php:448
|
||||
msgid "General Information"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:451
|
||||
#: src/Module/Admin/Site.php:450
|
||||
msgid "Republish users to directory"
|
||||
msgstr "Opnieuw de gebruikers naar de gids publiceren"
|
||||
|
||||
#: src/Module/Admin/Site.php:452 src/Module/Register.php:146
|
||||
#: src/Module/Admin/Site.php:451 src/Module/Register.php:145
|
||||
msgid "Registration"
|
||||
msgstr "Registratie"
|
||||
|
||||
#: src/Module/Admin/Site.php:453
|
||||
#: src/Module/Admin/Site.php:452
|
||||
msgid "File upload"
|
||||
msgstr "Uploaden bestand"
|
||||
|
||||
#: src/Module/Admin/Site.php:454
|
||||
#: src/Module/Admin/Site.php:453
|
||||
msgid "Policies"
|
||||
msgstr "Beleid"
|
||||
|
||||
#: 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/Admin/Site.php:454 src/Module/Calendar/Event/Form.php:238
|
||||
#: src/Module/Contact.php:527 src/Module/Profile/Profile.php:267
|
||||
msgid "Advanced"
|
||||
msgstr "Geavanceerd"
|
||||
|
||||
#: src/Module/Admin/Site.php:456
|
||||
#: src/Module/Admin/Site.php:455
|
||||
msgid "Auto Discovered Contact Directory"
|
||||
msgstr "Automatisch Achterhaalde Contact Gids"
|
||||
|
||||
#: src/Module/Admin/Site.php:457
|
||||
#: src/Module/Admin/Site.php:456
|
||||
msgid "Performance"
|
||||
msgstr "Performantie"
|
||||
|
||||
#: src/Module/Admin/Site.php:458
|
||||
#: src/Module/Admin/Site.php:457
|
||||
msgid "Worker"
|
||||
msgstr "Worker"
|
||||
|
||||
#: src/Module/Admin/Site.php:459
|
||||
#: src/Module/Admin/Site.php:458
|
||||
msgid "Message Relay"
|
||||
msgstr "Boodschap Relais"
|
||||
|
||||
#: src/Module/Admin/Site.php:460
|
||||
#: src/Module/Admin/Site.php:459
|
||||
msgid ""
|
||||
"Use the command \"console relay\" in the command line to add or remove "
|
||||
"relays."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:461
|
||||
#: src/Module/Admin/Site.php:460
|
||||
msgid "The system is not subscribed to any relays at the moment."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:462
|
||||
#: src/Module/Admin/Site.php:461
|
||||
msgid "The system is currently subscribed to the following relays:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:465
|
||||
#: src/Module/Admin/Site.php:464
|
||||
msgid "Relocate Node"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:466
|
||||
#: src/Module/Admin/Site.php:465
|
||||
msgid ""
|
||||
"Relocating your node enables you to change the DNS domain of this node and "
|
||||
"keep all the existing users and posts. This process takes a while and can "
|
||||
"only be started from the relocate console command like this:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:467
|
||||
#: src/Module/Admin/Site.php:466
|
||||
msgid "(Friendica directory)# bin/console relocate https://newdomain.com"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:470
|
||||
#: src/Module/Admin/Site.php:469
|
||||
msgid "Site name"
|
||||
msgstr "Site naam"
|
||||
|
||||
#: src/Module/Admin/Site.php:471
|
||||
#: src/Module/Admin/Site.php:470
|
||||
msgid "Sender Email"
|
||||
msgstr "Verzender Email"
|
||||
|
||||
#: src/Module/Admin/Site.php:471
|
||||
#: src/Module/Admin/Site.php:470
|
||||
msgid ""
|
||||
"The email address your server shall use to send notification emails from."
|
||||
msgstr "Het email adres als afzender van notificatie emails."
|
||||
|
||||
#: src/Module/Admin/Site.php:472
|
||||
#: src/Module/Admin/Site.php:471
|
||||
msgid "Name of the system actor"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:472
|
||||
#: src/Module/Admin/Site.php:471
|
||||
msgid ""
|
||||
"Name of the internal system account that is used to perform ActivityPub "
|
||||
"requests. This must be an unused username. If set, this can't be changed "
|
||||
"again."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:473
|
||||
#: src/Module/Admin/Site.php:472
|
||||
msgid "Banner/Logo"
|
||||
msgstr "Banner/Logo"
|
||||
|
||||
#: src/Module/Admin/Site.php:474
|
||||
#: src/Module/Admin/Site.php:473
|
||||
msgid "Email Banner/Logo"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:475
|
||||
#: src/Module/Admin/Site.php:474
|
||||
msgid "Shortcut icon"
|
||||
msgstr "Snelkoppeling icoon"
|
||||
|
||||
#: src/Module/Admin/Site.php:475
|
||||
#: src/Module/Admin/Site.php:474
|
||||
msgid "Link to an icon that will be used for browsers."
|
||||
msgstr "Link naar een icoon dat zal gebruikt worden voor browsers."
|
||||
|
||||
#: src/Module/Admin/Site.php:476
|
||||
#: src/Module/Admin/Site.php:475
|
||||
msgid "Touch icon"
|
||||
msgstr "Pictogram voor smartphones"
|
||||
|
||||
#: src/Module/Admin/Site.php:476
|
||||
#: src/Module/Admin/Site.php:475
|
||||
msgid "Link to an icon that will be used for tablets and mobiles."
|
||||
msgstr "Link naar een icoon dat zal gebruikt worden voor tablets en mobiele telefoons."
|
||||
|
||||
#: src/Module/Admin/Site.php:477
|
||||
#: src/Module/Admin/Site.php:476
|
||||
msgid "Additional Info"
|
||||
msgstr "Bijkomende Info"
|
||||
|
||||
#: src/Module/Admin/Site.php:477
|
||||
#: src/Module/Admin/Site.php:476
|
||||
#, php-format
|
||||
msgid ""
|
||||
"For public servers: you can add additional information here that will be "
|
||||
"listed at %s/servers."
|
||||
msgstr "Voor publieke servers: je kan bijkomende informatie hier toevoegen die zal opgelijst zijn op %s/servers."
|
||||
|
||||
#: src/Module/Admin/Site.php:478
|
||||
#: src/Module/Admin/Site.php:477
|
||||
msgid "System language"
|
||||
msgstr "Systeemtaal"
|
||||
|
||||
#: src/Module/Admin/Site.php:479
|
||||
#: src/Module/Admin/Site.php:478
|
||||
msgid "System theme"
|
||||
msgstr "Systeem thema"
|
||||
|
||||
#: src/Module/Admin/Site.php:479
|
||||
#: src/Module/Admin/Site.php:478
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Default system theme - may be over-ridden by user profiles - <a href=\"%s\" "
|
||||
"id=\"cnftheme\">Change default theme settings</a>"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:480
|
||||
#: src/Module/Admin/Site.php:479
|
||||
msgid "Mobile system theme"
|
||||
msgstr "Mobiel systeem thema"
|
||||
|
||||
#: src/Module/Admin/Site.php:480
|
||||
#: src/Module/Admin/Site.php:479
|
||||
msgid "Theme for mobile devices"
|
||||
msgstr "Thema voor mobiele apparaten"
|
||||
|
||||
#: src/Module/Admin/Site.php:481
|
||||
#: src/Module/Admin/Site.php:480
|
||||
msgid "Force SSL"
|
||||
msgstr "Dwing SSL af"
|
||||
|
||||
#: src/Module/Admin/Site.php:481
|
||||
#: src/Module/Admin/Site.php:480
|
||||
msgid ""
|
||||
"Force all Non-SSL requests to SSL - Attention: on some systems it could lead"
|
||||
" to endless loops."
|
||||
msgstr "Forceer alle Niet-SSL aanvragen naar SSL - Pas op: dit kan op sommige systeem resulteren in oneindige lussen."
|
||||
|
||||
#: src/Module/Admin/Site.php:482
|
||||
#: src/Module/Admin/Site.php:481
|
||||
msgid "Show help entry from navigation menu"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:482
|
||||
#: src/Module/Admin/Site.php:481
|
||||
msgid ""
|
||||
"Displays the menu entry for the Help pages from the navigation menu. It is "
|
||||
"always accessible by calling /help directly."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:483
|
||||
#: src/Module/Admin/Site.php:482
|
||||
msgid "Single user instance"
|
||||
msgstr "Server voor één gebruiker"
|
||||
|
||||
#: src/Module/Admin/Site.php:483
|
||||
#: src/Module/Admin/Site.php:482
|
||||
msgid "Make this instance multi-user or single-user for the named user"
|
||||
msgstr "Stel deze server in voor meerdere gebruikers, of enkel voor de geselecteerde gebruiker."
|
||||
|
||||
#: src/Module/Admin/Site.php:485
|
||||
#: src/Module/Admin/Site.php:484
|
||||
msgid "Maximum image size"
|
||||
msgstr "Maximum afbeeldingsgrootte"
|
||||
|
||||
#: src/Module/Admin/Site.php:485
|
||||
#: src/Module/Admin/Site.php:484
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Maximum size in bytes of uploaded images. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n"
|
||||
|
|
@ -4713,31 +4711,31 @@ msgid ""
|
|||
"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently <code>upload_max_filesize</code> is set to %s (%s byte)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:489
|
||||
#: src/Module/Admin/Site.php:488
|
||||
msgid "Maximum image length"
|
||||
msgstr "Maximum afbeeldingslengte"
|
||||
|
||||
#: src/Module/Admin/Site.php:489
|
||||
#: src/Module/Admin/Site.php:488
|
||||
msgid ""
|
||||
"Maximum length in pixels of the longest side of uploaded images. Default is "
|
||||
"-1, which means no limits."
|
||||
msgstr "Maximum lengte in pixels van de langste kant van afbeeldingen. Standaard is -1, dus geen beperkingen."
|
||||
|
||||
#: src/Module/Admin/Site.php:490
|
||||
#: src/Module/Admin/Site.php:489
|
||||
msgid "JPEG image quality"
|
||||
msgstr "JPEG afbeeldingskwaliteit"
|
||||
|
||||
#: src/Module/Admin/Site.php:490
|
||||
#: src/Module/Admin/Site.php:489
|
||||
msgid ""
|
||||
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
|
||||
"100, which is full quality."
|
||||
msgstr "JPEGS zullen met deze kwaliteitsinstelling bewaard worden [0-100]. Standaard is 100, dit is volledige kwaliteit."
|
||||
|
||||
#: src/Module/Admin/Site.php:491
|
||||
#: src/Module/Admin/Site.php:490
|
||||
msgid "Maximum media file size"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:491
|
||||
#: src/Module/Admin/Site.php:490
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Maximum size in bytes of uploaded media files. Default is 0, which means no limits. You can put k, m, or g behind the desired value for KiB, MiB, GiB, respectively.\n"
|
||||
|
|
@ -4745,15 +4743,15 @@ msgid ""
|
|||
"\t\t\t\t\t\t\t\t\t\t\t\t\tCurrently <code>upload_max_filesize</code> is set to %s (%s byte)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:496
|
||||
#: src/Module/Admin/Site.php:495
|
||||
msgid "Register policy"
|
||||
msgstr "Registratiebeleid"
|
||||
|
||||
#: src/Module/Admin/Site.php:497
|
||||
#: src/Module/Admin/Site.php:496
|
||||
msgid "Maximum Users"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:497
|
||||
#: src/Module/Admin/Site.php:496
|
||||
msgid ""
|
||||
"If defined, the register policy is automatically closed when the given "
|
||||
"number of users is reached and reopens the registry when the number drops "
|
||||
|
|
@ -4761,167 +4759,167 @@ msgid ""
|
|||
"not when the policy is set to approval."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:498
|
||||
#: src/Module/Admin/Site.php:497
|
||||
msgid "Maximum Daily Registrations"
|
||||
msgstr "Maximum aantal registraties per dag"
|
||||
|
||||
#: src/Module/Admin/Site.php:498
|
||||
#: src/Module/Admin/Site.php:497
|
||||
msgid ""
|
||||
"If registration is permitted above, this sets the maximum number of new user"
|
||||
" registrations to accept per day. If register is set to closed, this "
|
||||
"setting has no effect."
|
||||
msgstr "Als registratie hierboven is toegelaten, zet dit het maximum aantal registraties van nieuwe gebruikers per dag. Als registratie niet is toegelaten heeft deze instelling geen effect."
|
||||
|
||||
#: src/Module/Admin/Site.php:499
|
||||
#: src/Module/Admin/Site.php:498
|
||||
msgid "Register text"
|
||||
msgstr "Registratietekst"
|
||||
|
||||
#: src/Module/Admin/Site.php:499
|
||||
#: src/Module/Admin/Site.php:498
|
||||
msgid ""
|
||||
"Will be displayed prominently on the registration page. You can use BBCode "
|
||||
"here."
|
||||
msgstr "Zal prominent op de registratie pagina getoond worden. Je kan hierin BBCode gebruiken."
|
||||
|
||||
#: src/Module/Admin/Site.php:500
|
||||
#: src/Module/Admin/Site.php:499
|
||||
msgid "Forbidden Nicknames"
|
||||
msgstr "Verboden bijnamen"
|
||||
|
||||
#: src/Module/Admin/Site.php:500
|
||||
#: src/Module/Admin/Site.php:499
|
||||
msgid ""
|
||||
"Comma separated list of nicknames that are forbidden from registration. "
|
||||
"Preset is a list of role names according RFC 2142."
|
||||
msgstr "Kommagescheiden lijst van bijnamen die verboden zijn voor registratie. De lijst uit RFC2142 is op voorhand ingesteld."
|
||||
|
||||
#: src/Module/Admin/Site.php:501
|
||||
#: src/Module/Admin/Site.php:500
|
||||
msgid "Accounts abandoned after x days"
|
||||
msgstr "Verlaten accounts na x dagen"
|
||||
|
||||
#: src/Module/Admin/Site.php:501
|
||||
#: src/Module/Admin/Site.php:500
|
||||
msgid ""
|
||||
"Will not waste system resources polling external sites for abandonded "
|
||||
"accounts. Enter 0 for no time limit."
|
||||
msgstr "Dit zal geen systeembronnen verspillen aan het nakijken van externe sites voor verlaten accounts. Geef 0 is voor geen tijdslimiet."
|
||||
|
||||
#: src/Module/Admin/Site.php:502
|
||||
#: src/Module/Admin/Site.php:501
|
||||
msgid "Allowed friend domains"
|
||||
msgstr "Toegelaten vriend domeinen"
|
||||
|
||||
#: src/Module/Admin/Site.php:502
|
||||
#: src/Module/Admin/Site.php:501
|
||||
msgid ""
|
||||
"Comma separated list of domains which are allowed to establish friendships "
|
||||
"with this site. Wildcards are accepted. Empty to allow any domains"
|
||||
msgstr "Komma-gescheiden lijst van domeinen die een vriendschapsband met deze website mogen aangaan. Jokers zijn toegelaten. Laat leeg om alle domeinen toe te laten."
|
||||
|
||||
#: src/Module/Admin/Site.php:503
|
||||
#: src/Module/Admin/Site.php:502
|
||||
msgid "Allowed email domains"
|
||||
msgstr "Toegelaten e-mail domeinen"
|
||||
|
||||
#: src/Module/Admin/Site.php:503
|
||||
#: src/Module/Admin/Site.php:502
|
||||
msgid ""
|
||||
"Comma separated list of domains which are allowed in email addresses for "
|
||||
"registrations to this site. Wildcards are accepted. Empty to allow any "
|
||||
"domains"
|
||||
msgstr "Door komma's gescheiden lijst met e-maildomeinen die op deze website mogen registeren. Wildcards zijn toegestaan.\nLeeg laten om alle domeinen toe te staan."
|
||||
|
||||
#: src/Module/Admin/Site.php:504
|
||||
#: src/Module/Admin/Site.php:503
|
||||
msgid "Disallowed email domains"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:504
|
||||
#: src/Module/Admin/Site.php:503
|
||||
msgid ""
|
||||
"Comma separated list of domains which are rejected as email addresses for "
|
||||
"registrations to this site. Wildcards are accepted."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:505
|
||||
#: src/Module/Admin/Site.php:504
|
||||
msgid "No OEmbed rich content"
|
||||
msgstr "Geen OEmbed richt content"
|
||||
|
||||
#: src/Module/Admin/Site.php:505
|
||||
#: src/Module/Admin/Site.php:504
|
||||
msgid ""
|
||||
"Don't show the rich content (e.g. embedded PDF), except from the domains "
|
||||
"listed below."
|
||||
msgstr "Toon geen rich content (bvb. embedded PDF), behalve van domeinen hieronder opgelijst."
|
||||
|
||||
#: src/Module/Admin/Site.php:506
|
||||
#: src/Module/Admin/Site.php:505
|
||||
msgid "Trusted third-party domains"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:506
|
||||
#: src/Module/Admin/Site.php:505
|
||||
msgid ""
|
||||
"Comma separated list of domains from which content is allowed to be embedded"
|
||||
" in posts like with OEmbed. All sub-domains of the listed domains are "
|
||||
"allowed as well."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:507
|
||||
#: src/Module/Admin/Site.php:506
|
||||
msgid "Block public"
|
||||
msgstr "Openbare toegang blokkeren"
|
||||
|
||||
#: src/Module/Admin/Site.php:507
|
||||
#: src/Module/Admin/Site.php:506
|
||||
msgid ""
|
||||
"Check to block public access to all otherwise public personal pages on this "
|
||||
"site unless you are currently logged in."
|
||||
msgstr "Kruis dit aan om alle openbare persoonlijke pagina's alleen toegankelijk te maken voor ingelogde gebruikers."
|
||||
|
||||
#: src/Module/Admin/Site.php:508
|
||||
#: src/Module/Admin/Site.php:507
|
||||
msgid "Force publish"
|
||||
msgstr "Dwing publiceren af"
|
||||
|
||||
#: src/Module/Admin/Site.php:508
|
||||
#: src/Module/Admin/Site.php:507
|
||||
msgid ""
|
||||
"Check to force all profiles on this site to be listed in the site directory."
|
||||
msgstr "Kruis dit aan om af te dwingen dat alle profielen op deze website in de gids van deze website gepubliceerd worden."
|
||||
|
||||
#: src/Module/Admin/Site.php:508
|
||||
#: src/Module/Admin/Site.php:507
|
||||
msgid "Enabling this may violate privacy laws like the GDPR"
|
||||
msgstr "Dit activeren zou privacy wetten zoals GDPR (AVG) kunnen overtreden"
|
||||
|
||||
#: src/Module/Admin/Site.php:509
|
||||
#: src/Module/Admin/Site.php:508
|
||||
msgid "Global directory URL"
|
||||
msgstr "Algemene gids URL"
|
||||
|
||||
#: src/Module/Admin/Site.php:509
|
||||
#: src/Module/Admin/Site.php:508
|
||||
msgid ""
|
||||
"URL to the global directory. If this is not set, the global directory is "
|
||||
"completely unavailable to the application."
|
||||
msgstr "URL naar de globale gids. Als dit niet geconfigureerd is, dan zal de globale gids volledig onbeschikbaar zijn voor de applicatie."
|
||||
|
||||
#: src/Module/Admin/Site.php:510
|
||||
#: src/Module/Admin/Site.php:509
|
||||
msgid "Private posts by default for new users"
|
||||
msgstr "Privéberichten als standaard voor nieuwe gebruikers"
|
||||
|
||||
#: src/Module/Admin/Site.php:510
|
||||
#: src/Module/Admin/Site.php:509
|
||||
msgid ""
|
||||
"Set default post permissions for all new members to the default privacy "
|
||||
"circle rather than public."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:511
|
||||
#: src/Module/Admin/Site.php:510
|
||||
msgid "Don't include post content in email notifications"
|
||||
msgstr "De inhoud van het bericht niet insluiten bij e-mailnotificaties"
|
||||
|
||||
#: src/Module/Admin/Site.php:511
|
||||
#: src/Module/Admin/Site.php:510
|
||||
msgid ""
|
||||
"Don't include the content of a post/comment/private message/etc. in the "
|
||||
"email notifications that are sent out from this site, as a privacy measure."
|
||||
msgstr "De inhoud van berichten/commentaar/privéberichten/enzovoort niet insluiten in e-mailnotificaties die door deze website verzonden worden, voor de bescherming van je privacy."
|
||||
|
||||
#: src/Module/Admin/Site.php:512
|
||||
#: src/Module/Admin/Site.php:511
|
||||
msgid "Disallow public access to addons listed in the apps menu."
|
||||
msgstr "Publieke toegang ontzeggen tot addons die opgelijst zijn in het applicatie menu."
|
||||
|
||||
#: src/Module/Admin/Site.php:512
|
||||
#: src/Module/Admin/Site.php:511
|
||||
msgid ""
|
||||
"Checking this box will restrict addons listed in the apps menu to members "
|
||||
"only."
|
||||
msgstr "Dit vakje aanvinken zal de lijst van addons in het applicatie menu beperken tot alleen leden."
|
||||
|
||||
#: src/Module/Admin/Site.php:513
|
||||
#: src/Module/Admin/Site.php:512
|
||||
msgid "Don't embed private images in posts"
|
||||
msgstr "Privé beelden in berichten niet inwerken"
|
||||
|
||||
#: src/Module/Admin/Site.php:513
|
||||
#: src/Module/Admin/Site.php:512
|
||||
msgid ""
|
||||
"Don't replace locally-hosted private photos in posts with an embedded copy "
|
||||
"of the image. This means that contacts who receive posts containing private "
|
||||
|
|
@ -4929,11 +4927,11 @@ msgid ""
|
|||
"while."
|
||||
msgstr "Vervang lokaal gehoste privé foto's in berichten niet door een ingewerkte kopie van het beeld. Dit betekent dat contacten die berichten krijgen met privé foto's zullen moeten authentificeren en elk beeld apart laden, wat een tijdje kan duren."
|
||||
|
||||
#: src/Module/Admin/Site.php:514
|
||||
#: src/Module/Admin/Site.php:513
|
||||
msgid "Explicit Content"
|
||||
msgstr "Expliciete inhoud"
|
||||
|
||||
#: src/Module/Admin/Site.php:514
|
||||
#: src/Module/Admin/Site.php:513
|
||||
msgid ""
|
||||
"Set this to announce that your node is used mostly for explicit content that"
|
||||
" might not be suited for minors. This information will be published in the "
|
||||
|
|
@ -4942,272 +4940,282 @@ msgid ""
|
|||
"will be shown at the user registration page."
|
||||
msgstr "Vink dit aan om aan te duiden dat deze node veel expliciet materiaal verspreid en niet bedoeld is voor minderjarigen. Deze info zal gepubliceert worden bij de node-info en kan vb. gebruikt worden voor een filter in de globale lijst. Dit word ook getoont naar de gebruiker op de registratie pagina."
|
||||
|
||||
#: src/Module/Admin/Site.php:515
|
||||
#: src/Module/Admin/Site.php:514
|
||||
msgid "Only local search"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:515
|
||||
#: src/Module/Admin/Site.php:514
|
||||
msgid ""
|
||||
"Blocks search for users who are not logged in to prevent crawlers from "
|
||||
"blocking your system."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:516
|
||||
#: src/Module/Admin/Site.php:515
|
||||
msgid "Blocked tags for trending tags"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:516
|
||||
#: src/Module/Admin/Site.php:515
|
||||
msgid ""
|
||||
"Comma separated list of hashtags that shouldn't be displayed in the trending"
|
||||
" tags."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:517
|
||||
#: src/Module/Admin/Site.php:516
|
||||
msgid "Cache contact avatars"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:517
|
||||
#: src/Module/Admin/Site.php:516
|
||||
msgid ""
|
||||
"Locally store the avatar pictures of the contacts. This uses a lot of "
|
||||
"storage space but it increases the performance."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:518
|
||||
#: src/Module/Admin/Site.php:517
|
||||
msgid "Allow Users to set remote_self"
|
||||
msgstr "Sta Gebruikers toe om remote_self te configureren"
|
||||
|
||||
#: src/Module/Admin/Site.php:518
|
||||
#: src/Module/Admin/Site.php:517
|
||||
msgid ""
|
||||
"With checking this, every user is allowed to mark every contact as a "
|
||||
"remote_self in the repair contact dialog. Setting this flag on a contact "
|
||||
"causes mirroring every posting of that contact in the users stream."
|
||||
msgstr "Als je dit aanvinkt, dan mag elke gebruiker elke contact als remote_self aanduiden in de 'herstel contact' dialoog. Deze vlag aanzetten voor een contact zorgt ervoor dat elke bericht van dit contact gespiegeld wordt in de gebruiker zijn of haar stroom. "
|
||||
|
||||
#: src/Module/Admin/Site.php:519
|
||||
#: src/Module/Admin/Site.php:518
|
||||
msgid "Allow Users to set up relay channels"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:519
|
||||
#: src/Module/Admin/Site.php:518
|
||||
msgid ""
|
||||
"If enabled, it is possible to create relay users that are used to reshare "
|
||||
"content based on user defined channels."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:520
|
||||
#: src/Module/Admin/Site.php:519
|
||||
msgid "Adjust the feed poll frequency"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:520
|
||||
#: src/Module/Admin/Site.php:519
|
||||
msgid "Automatically detect and set the best feed poll frequency."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:521
|
||||
#: src/Module/Admin/Site.php:520
|
||||
msgid "Minimum poll interval"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:521
|
||||
#: src/Module/Admin/Site.php:520
|
||||
msgid ""
|
||||
"Minimal distance in minutes between two polls for mail and feed contacts. "
|
||||
"Reasonable values are between 1 and 59."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:522
|
||||
#: src/Module/Admin/Site.php:521
|
||||
msgid "Enable multiple registrations"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:522
|
||||
#: src/Module/Admin/Site.php:521
|
||||
msgid "Enable users to register additional accounts for use as pages."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:523
|
||||
#: src/Module/Admin/Site.php:522
|
||||
msgid "Enable OpenID"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:523
|
||||
#: src/Module/Admin/Site.php:522
|
||||
msgid "Enable OpenID support for registration and logins."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:524
|
||||
#: src/Module/Admin/Site.php:523
|
||||
msgid "Enable full name check"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:524
|
||||
#: src/Module/Admin/Site.php:523
|
||||
msgid ""
|
||||
"Prevents users from registering with a display name with fewer than two "
|
||||
"parts separated by spaces."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:525
|
||||
#: src/Module/Admin/Site.php:524
|
||||
msgid "Email administrators on new registration"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:525
|
||||
#: src/Module/Admin/Site.php:524
|
||||
msgid ""
|
||||
"If enabled and the system is set to an open registration, an email for each "
|
||||
"new registration is sent to the administrators."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:526
|
||||
#: src/Module/Admin/Site.php:525
|
||||
msgid "Community pages for visitors"
|
||||
msgstr "Groepspagina voor bezoekers"
|
||||
|
||||
#: src/Module/Admin/Site.php:526
|
||||
#: src/Module/Admin/Site.php:525
|
||||
msgid ""
|
||||
"Which community pages should be available for visitors. Local users always "
|
||||
"see both pages."
|
||||
msgstr "Welke groepspagina's moeten beschikbaar zijn voor bezoekers. Lokale gebruikers zien altijd beide pagina's."
|
||||
|
||||
#: src/Module/Admin/Site.php:527
|
||||
#: src/Module/Admin/Site.php:526
|
||||
msgid "Posts per user on community page"
|
||||
msgstr "Berichten per gebruiker op de groepspagina"
|
||||
|
||||
#: src/Module/Admin/Site.php:527
|
||||
#: src/Module/Admin/Site.php:526
|
||||
msgid ""
|
||||
"The maximum number of posts per user on the local community page. This is "
|
||||
"useful, when a single user floods the local community page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:528
|
||||
#: src/Module/Admin/Site.php:527
|
||||
msgid "Posts per server on community page"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:528
|
||||
#: src/Module/Admin/Site.php:527
|
||||
msgid ""
|
||||
"The maximum number of posts per server on the global community page. This is"
|
||||
" useful, when posts from a single server flood the global community page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:530
|
||||
#: src/Module/Admin/Site.php:529
|
||||
msgid "Enable Mail support"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:530
|
||||
#: src/Module/Admin/Site.php:529
|
||||
msgid ""
|
||||
"Enable built-in mail support to poll IMAP folders and to reply via mail."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:531
|
||||
#: src/Module/Admin/Site.php:530
|
||||
msgid ""
|
||||
"Mail support can't be enabled because the PHP IMAP module is not installed."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:533
|
||||
#: src/Module/Admin/Site.php:532
|
||||
msgid ""
|
||||
"Diaspora support can't be enabled because Friendica was installed into a sub"
|
||||
" directory."
|
||||
msgstr "Diaspora ondersteuning is niet mogelijk omdat Friendica in een sub folder geïnstalleerd is."
|
||||
|
||||
#: src/Module/Admin/Site.php:534
|
||||
#: src/Module/Admin/Site.php:533
|
||||
msgid "Enable Diaspora support"
|
||||
msgstr "Diaspora ondersteuning activeren"
|
||||
|
||||
#: src/Module/Admin/Site.php:534
|
||||
#: src/Module/Admin/Site.php:533
|
||||
msgid ""
|
||||
"Enable built-in Diaspora network compatibility for communicating with "
|
||||
"diaspora servers."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:535
|
||||
#: src/Module/Admin/Site.php:534
|
||||
msgid "Verify SSL"
|
||||
msgstr "Controleer SSL"
|
||||
|
||||
#: src/Module/Admin/Site.php:535
|
||||
#: src/Module/Admin/Site.php:534
|
||||
msgid ""
|
||||
"If you wish, you can turn on strict certificate checking. This will mean you"
|
||||
" cannot connect (at all) to self-signed SSL sites."
|
||||
msgstr "Als je wilt kun je striktere certificaat controle activeren. Dit betekent dat je (totaal) niet kunt connecteren met sites die zelf-ondertekende SSL certificaten gebruiken."
|
||||
|
||||
#: src/Module/Admin/Site.php:536
|
||||
#: src/Module/Admin/Site.php:535
|
||||
msgid "Proxy user"
|
||||
msgstr "Proxy-gebruiker"
|
||||
|
||||
#: src/Module/Admin/Site.php:536
|
||||
#: src/Module/Admin/Site.php:535
|
||||
msgid "User name for the proxy server."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:537
|
||||
#: src/Module/Admin/Site.php:536
|
||||
msgid "Proxy URL"
|
||||
msgstr "Proxy-URL"
|
||||
|
||||
#: src/Module/Admin/Site.php:537
|
||||
#: src/Module/Admin/Site.php:536
|
||||
msgid ""
|
||||
"If you want to use a proxy server that Friendica should use to connect to "
|
||||
"the network, put the URL of the proxy here."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:538
|
||||
#: src/Module/Admin/Site.php:537
|
||||
msgid "Network timeout"
|
||||
msgstr "Netwerk timeout"
|
||||
|
||||
#: src/Module/Admin/Site.php:538
|
||||
#: src/Module/Admin/Site.php:537
|
||||
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
|
||||
msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)."
|
||||
|
||||
#: src/Module/Admin/Site.php:539
|
||||
#: src/Module/Admin/Site.php:538
|
||||
msgid "Maximum Load Average"
|
||||
msgstr "Maximum gemiddelde belasting"
|
||||
|
||||
#: src/Module/Admin/Site.php:539
|
||||
#: src/Module/Admin/Site.php:538
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Maximum system load before delivery and poll processes are deferred - "
|
||||
"default %d."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:540
|
||||
#: src/Module/Admin/Site.php:539
|
||||
msgid "Minimal Memory"
|
||||
msgstr "Minimaal Geheugen"
|
||||
|
||||
#: src/Module/Admin/Site.php:540
|
||||
#: src/Module/Admin/Site.php:539
|
||||
msgid ""
|
||||
"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - "
|
||||
"default 0 (deactivated)."
|
||||
msgstr "Minimum vrij geheugen in MB voor de worker. Toegang nodig tot /proc/meminfo - standaard waarde 0 (gedeactiveerd)."
|
||||
|
||||
#: src/Module/Admin/Site.php:541
|
||||
#: src/Module/Admin/Site.php:540
|
||||
msgid "Periodically optimize tables"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:541
|
||||
#: src/Module/Admin/Site.php:540
|
||||
msgid "Periodically optimize tables like the cache and the workerqueue"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:543
|
||||
#: src/Module/Admin/Site.php:542
|
||||
msgid "Discover followers/followings from contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:543
|
||||
#: src/Module/Admin/Site.php:542
|
||||
msgid ""
|
||||
"If enabled, contacts are checked for their followers and following contacts."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:544
|
||||
#: src/Module/Admin/Site.php:543
|
||||
msgid "None - deactivated"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:545
|
||||
#: src/Module/Admin/Site.php:544
|
||||
msgid ""
|
||||
"Local contacts - contacts of our local contacts are discovered for their "
|
||||
"followers/followings."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:546
|
||||
#: src/Module/Admin/Site.php:545
|
||||
msgid ""
|
||||
"Interactors - contacts of our local contacts and contacts who interacted on "
|
||||
"locally visible postings are discovered for their followers/followings."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:548
|
||||
#: src/Module/Admin/Site.php:547
|
||||
msgid "Only update contacts/servers with local data"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:548
|
||||
#: src/Module/Admin/Site.php:547
|
||||
msgid ""
|
||||
"If enabled, the system will only look for changes in contacts and servers "
|
||||
"that engaged on this system by either being in a contact list of a user or "
|
||||
"when posts or comments exists from the contact on this system."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:548
|
||||
msgid "Only update contacts with relations"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:548
|
||||
msgid ""
|
||||
"If enabled, the system will only look for changes in contacts that are in a "
|
||||
"contact list of a user on this system."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:549
|
||||
msgid "Synchronize the contacts with the directory server"
|
||||
msgstr ""
|
||||
|
|
@ -5519,7 +5527,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:315
|
||||
#: src/Module/Settings/Display.php:259
|
||||
#: src/Module/Settings/Display.php:249
|
||||
#: src/Module/Settings/TwoFactor/Index.php:132
|
||||
msgid "Disabled"
|
||||
msgstr "Uitgeschakeld"
|
||||
|
|
@ -5978,7 +5986,7 @@ msgstr "Geen toepassingen geïnstalleerd"
|
|||
msgid "Applications"
|
||||
msgstr "Toepassingen"
|
||||
|
||||
#: src/Module/Attach.php:35 src/Module/Attach.php:47
|
||||
#: src/Module/Attach.php:34 src/Module/Attach.php:46
|
||||
msgid "Item was not found."
|
||||
msgstr "Item niet gevonden"
|
||||
|
||||
|
|
@ -6057,19 +6065,19 @@ msgstr "Addon Features"
|
|||
msgid "User registrations waiting for confirmation"
|
||||
msgstr "Gebruikersregistraties wachten op bevestiging"
|
||||
|
||||
#: src/Module/BaseApi.php:443 src/Module/BaseApi.php:459
|
||||
#: src/Module/BaseApi.php:475
|
||||
#: src/Module/BaseApi.php:442 src/Module/BaseApi.php:458
|
||||
#: src/Module/BaseApi.php:474
|
||||
msgid "Too Many Requests"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseApi.php:444
|
||||
#: src/Module/BaseApi.php:443
|
||||
#, 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] "De dagelijkse limiet van %d bericht is bereikt. Dit bericht werd niet aanvaard."
|
||||
msgstr[1] "De dagelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard."
|
||||
|
||||
#: src/Module/BaseApi.php:460
|
||||
#: src/Module/BaseApi.php:459
|
||||
#, php-format
|
||||
msgid "Weekly posting limit of %d post reached. The post was rejected."
|
||||
msgid_plural ""
|
||||
|
|
@ -6077,7 +6085,7 @@ msgid_plural ""
|
|||
msgstr[0] "De wekelijkse limiet van %d bericht is bereikt. Dit bericht werd niet aanvaard."
|
||||
msgstr[1] "De wekelijkse limiet van %d berichten is bereikt. Dit bericht werd niet aanvaard."
|
||||
|
||||
#: src/Module/BaseApi.php:476
|
||||
#: src/Module/BaseApi.php:475
|
||||
#, php-format
|
||||
msgid "Monthly posting limit of %d post reached. The post was rejected."
|
||||
msgid_plural ""
|
||||
|
|
@ -6099,8 +6107,8 @@ msgstr ""
|
|||
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:102 src/Module/Moderation/Users/Index.php:97
|
||||
#: src/Module/Moderation/Users/Index.php:107
|
||||
msgid "Users"
|
||||
msgstr "Gebruiker"
|
||||
|
||||
|
|
@ -6124,7 +6132,7 @@ msgstr "Verwijder Item"
|
|||
msgid "Item Source"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseProfile.php:37 src/Module/Contact.php:488
|
||||
#: src/Module/BaseProfile.php:37 src/Module/Contact.php:487
|
||||
msgid "Profile Details"
|
||||
msgstr "Profieldetails"
|
||||
|
||||
|
|
@ -6148,21 +6156,29 @@ msgstr ""
|
|||
msgid "Tips for New Members"
|
||||
msgstr "Tips voor nieuwe leden"
|
||||
|
||||
#: src/Module/BaseSearch.php:57
|
||||
#: src/Module/BaseProfile.php:137 src/Module/Contact.php:390
|
||||
#: src/Module/Contact.php:537 src/Module/Conversation/Channel.php:98
|
||||
#: src/Module/Conversation/Community.php:91
|
||||
#: src/Module/Conversation/Network.php:295
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:606
|
||||
msgid "More"
|
||||
msgstr "Meer"
|
||||
|
||||
#: src/Module/BaseSearch.php:56
|
||||
#, php-format
|
||||
msgid "People Search - %s"
|
||||
msgstr "Mensen Zoeken - %s"
|
||||
|
||||
#: src/Module/BaseSearch.php:61
|
||||
#: src/Module/BaseSearch.php:60
|
||||
#, php-format
|
||||
msgid "Group Search - %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/BaseSearch.php:107 src/Module/Contact/MatchInterests.php:136
|
||||
#: src/Module/BaseSearch.php:114 src/Module/Contact/MatchInterests.php:136
|
||||
msgid "No matches"
|
||||
msgstr "Geen resultaten"
|
||||
|
||||
#: src/Module/BaseSearch.php:133
|
||||
#: src/Module/BaseSearch.php:140
|
||||
#, php-format
|
||||
msgid ""
|
||||
"%d result was filtered out because your node blocks the domain it is "
|
||||
|
|
@ -6256,12 +6272,12 @@ msgstr "Gebeurtenis begint:"
|
|||
|
||||
#: 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/Install.php:186 src/Module/Install.php:212
|
||||
#: src/Module/Install.php:217 src/Module/Install.php:231
|
||||
#: src/Module/Install.php:240 src/Module/Install.php:245
|
||||
#: src/Module/Install.php:251 src/Module/Install.php:256
|
||||
#: src/Module/Install.php:270 src/Module/Install.php:283
|
||||
#: src/Module/Install.php:312
|
||||
#: src/Module/Moderation/Blocklist/Server/Add.php:125
|
||||
#: src/Module/Moderation/Blocklist/Server/Add.php:127
|
||||
#: src/Module/Moderation/Blocklist/Server/Import.php:116
|
||||
|
|
@ -6269,7 +6285,7 @@ msgstr "Gebeurtenis begint:"
|
|||
#: 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/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
|
||||
|
|
@ -6321,19 +6337,19 @@ msgstr "Geen exporteerbare data gevonden"
|
|||
msgid "calendar"
|
||||
msgstr "kalender"
|
||||
|
||||
#: src/Module/Calendar/Show.php:113
|
||||
#: src/Module/Calendar/Show.php:112
|
||||
msgid "Events"
|
||||
msgstr "Gebeurtenissen"
|
||||
|
||||
#: src/Module/Calendar/Show.php:114
|
||||
#: src/Module/Calendar/Show.php:113
|
||||
msgid "View"
|
||||
msgstr "Beeld"
|
||||
|
||||
#: src/Module/Calendar/Show.php:115
|
||||
#: src/Module/Calendar/Show.php:114
|
||||
msgid "Create New Event"
|
||||
msgstr "Maak een nieuwe gebeurtenis"
|
||||
|
||||
#: src/Module/Calendar/Show.php:121 src/Module/Settings/Display.php:305
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:295
|
||||
msgid "list"
|
||||
msgstr "lijst"
|
||||
|
||||
|
|
@ -6439,149 +6455,149 @@ msgstr "Klik op een contact om het toe te voegen of te verwijderen."
|
|||
msgid "Add contact to circle"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:88
|
||||
#: src/Module/Contact.php:87
|
||||
#, php-format
|
||||
msgid "%d contact edited."
|
||||
msgid_plural "%d contacts edited."
|
||||
msgstr[0] "%d contact bewerkt."
|
||||
msgstr[1] "%d contacten bewerkt."
|
||||
|
||||
#: src/Module/Contact.php:328
|
||||
#: src/Module/Contact.php:327
|
||||
msgid "Show all contacts"
|
||||
msgstr "Toon alle contacten"
|
||||
|
||||
#: src/Module/Contact.php:333 src/Module/Contact.php:412
|
||||
#: src/Module/Contact.php:332 src/Module/Contact.php:411
|
||||
#: src/Module/Moderation/BaseUsers.php:74
|
||||
msgid "Pending"
|
||||
msgstr "In behandeling"
|
||||
|
||||
#: src/Module/Contact.php:336
|
||||
#: src/Module/Contact.php:335
|
||||
msgid "Only show pending contacts"
|
||||
msgstr "Toon alleen contacten in behandeling"
|
||||
|
||||
#: src/Module/Contact.php:341 src/Module/Contact.php:415
|
||||
#: src/Module/Contact.php:340 src/Module/Contact.php:414
|
||||
#: src/Module/Moderation/BaseUsers.php:82
|
||||
msgid "Blocked"
|
||||
msgstr "Geblokkeerd"
|
||||
|
||||
#: src/Module/Contact.php:344
|
||||
#: src/Module/Contact.php:343
|
||||
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:386
|
||||
#: src/Module/Contact.php:348 src/Module/Contact.php:420
|
||||
#: src/Module/Settings/Server/Index.php:93 src/Object/Post.php:385
|
||||
msgid "Ignored"
|
||||
msgstr "Genegeerd"
|
||||
|
||||
#: src/Module/Contact.php:352
|
||||
#: src/Module/Contact.php:351
|
||||
msgid "Only show ignored contacts"
|
||||
msgstr "Toon alleen genegeerde contacten"
|
||||
|
||||
#: src/Module/Contact.php:357 src/Module/Contact.php:424
|
||||
#: src/Module/Contact.php:356 src/Module/Contact.php:423
|
||||
msgid "Collapsed"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:360
|
||||
#: src/Module/Contact.php:359
|
||||
msgid "Only show collapsed contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:365 src/Module/Contact.php:427
|
||||
#: src/Module/Contact.php:364 src/Module/Contact.php:426
|
||||
msgid "Archived"
|
||||
msgstr "Gearchiveerd"
|
||||
|
||||
#: src/Module/Contact.php:368
|
||||
#: src/Module/Contact.php:367
|
||||
msgid "Only show archived contacts"
|
||||
msgstr "Toon alleen gearchiveerde contacten"
|
||||
|
||||
#: src/Module/Contact.php:373 src/Module/Contact.php:418
|
||||
#: src/Module/Contact.php:372 src/Module/Contact.php:417
|
||||
msgid "Hidden"
|
||||
msgstr "Verborgen"
|
||||
|
||||
#: src/Module/Contact.php:376
|
||||
#: src/Module/Contact.php:375
|
||||
msgid "Only show hidden contacts"
|
||||
msgstr "Toon alleen verborgen contacten"
|
||||
|
||||
#: src/Module/Contact.php:384
|
||||
#: src/Module/Contact.php:383
|
||||
msgid "Organize your contact circles"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:439
|
||||
#: src/Module/Contact.php:438
|
||||
msgid "Search your contacts"
|
||||
msgstr "Doorzoek je contacten"
|
||||
|
||||
#: src/Module/Contact.php:440 src/Module/Search/Index.php:193
|
||||
#: src/Module/Contact.php:439 src/Module/Search/Index.php:202
|
||||
#, php-format
|
||||
msgid "Results for: %s"
|
||||
msgstr "Resultaten voor: %s"
|
||||
|
||||
#: src/Module/Contact.php:448
|
||||
#: src/Module/Contact.php:447
|
||||
msgid "Update"
|
||||
msgstr "Wijzigen"
|
||||
|
||||
#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:524
|
||||
#: src/Module/Contact.php:448 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/Users/Blocked.php:94
|
||||
#: src/Module/Moderation/Users/Index.php:103
|
||||
msgid "Unblock"
|
||||
msgstr "Blokkering opheffen"
|
||||
|
||||
#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:532
|
||||
#: src/Module/Contact.php:449 src/Module/Contact/Profile.php:532
|
||||
msgid "Unignore"
|
||||
msgstr "Negeer niet meer"
|
||||
|
||||
#: src/Module/Contact.php:451 src/Module/Contact/Profile.php:540
|
||||
#: src/Module/Contact.php:450 src/Module/Contact/Profile.php:540
|
||||
msgid "Uncollapse"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:453
|
||||
#: src/Module/Contact.php:452
|
||||
msgid "Batch Actions"
|
||||
msgstr "Bulk Acties"
|
||||
|
||||
#: src/Module/Contact.php:496
|
||||
#: src/Module/Contact.php:495
|
||||
msgid "Conversations started by this contact"
|
||||
msgstr "Gesprekken gestart door dit contact"
|
||||
|
||||
#: src/Module/Contact.php:501
|
||||
#: src/Module/Contact.php:500
|
||||
msgid "Posts and Comments"
|
||||
msgstr "Berichten en reacties"
|
||||
|
||||
#: src/Module/Contact.php:504
|
||||
#: src/Module/Contact.php:503
|
||||
msgid "Individual Posts and Replies"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:512
|
||||
#: src/Module/Contact.php:511
|
||||
msgid "Posts containing media objects"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:520
|
||||
#: src/Module/Contact.php:519
|
||||
msgid "View all known contacts"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Contact.php:531
|
||||
#: src/Module/Contact.php:530
|
||||
msgid "Advanced Contact Settings"
|
||||
msgstr "Geavanceerde instellingen voor contacten"
|
||||
|
||||
#: src/Module/Contact.php:567
|
||||
#: src/Module/Contact.php:566
|
||||
msgid "Mutual Friendship"
|
||||
msgstr "Wederzijdse vriendschap"
|
||||
|
||||
#: src/Module/Contact.php:571
|
||||
#: src/Module/Contact.php:570
|
||||
msgid "is a fan of yours"
|
||||
msgstr "Is een fan van jou"
|
||||
|
||||
#: src/Module/Contact.php:575
|
||||
#: src/Module/Contact.php:574
|
||||
msgid "you are a fan of"
|
||||
msgstr "Jij bent een fan van"
|
||||
|
||||
#: src/Module/Contact.php:593
|
||||
#: src/Module/Contact.php:592
|
||||
msgid "Pending outgoing contact request"
|
||||
msgstr "In afwachting van uitgaande contactaanvraag"
|
||||
|
||||
#: src/Module/Contact.php:595
|
||||
#: src/Module/Contact.php:594
|
||||
msgid "Pending incoming contact request"
|
||||
msgstr "In afwachting van inkomende contactaanvraag"
|
||||
|
||||
#: src/Module/Contact.php:608 src/Module/Contact/Profile.php:383
|
||||
#: src/Module/Contact.php:607 src/Module/Contact/Profile.php:383
|
||||
#, php-format
|
||||
msgid "Visit %s's profile [%s]"
|
||||
msgstr "Bekijk het profiel van %s [%s]"
|
||||
|
|
@ -6597,12 +6613,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:115
|
||||
#: src/Module/Moderation/Users/Blocked.php:115
|
||||
#: src/Module/Moderation/Users/Active.php:82
|
||||
#: src/Module/Moderation/Users/Blocked.php:82
|
||||
#: 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:89
|
||||
#: src/Module/Moderation/Users/Index.php:109
|
||||
#: src/Module/Moderation/Users/Pending.php:85 src/Module/Settings/OAuth.php:58
|
||||
msgid "Name"
|
||||
msgstr "Naam"
|
||||
|
|
@ -6978,7 +6994,7 @@ msgid "Actions"
|
|||
msgstr "Acties"
|
||||
|
||||
#: src/Module/Contact/Profile.php:429
|
||||
#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:220
|
||||
#: src/Module/Settings/TwoFactor/Index.php:126 view/theme/frio/theme.php:218
|
||||
msgid "Status"
|
||||
msgstr "Tijdlijn"
|
||||
|
||||
|
|
@ -7126,8 +7142,8 @@ msgid "Unable to unfollow this contact, please contact your administrator"
|
|||
msgstr ""
|
||||
|
||||
#: src/Module/Conversation/Channel.php:125
|
||||
#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:138
|
||||
#: src/Module/Search/Index.php:180
|
||||
#: src/Module/Conversation/Community.php:114 src/Module/Search/Index.php:139
|
||||
#: src/Module/Search/Index.php:189
|
||||
msgid "No results."
|
||||
msgstr "Geen resultaten."
|
||||
|
||||
|
|
@ -7464,6 +7480,10 @@ msgstr ""
|
|||
msgid "Item was not removed"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Filer/SaveTag.php:59
|
||||
msgid "Folder:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Filer/SaveTag.php:59
|
||||
msgid "- select -"
|
||||
msgstr "- Kies -"
|
||||
|
|
@ -7555,149 +7575,149 @@ msgstr "Help:"
|
|||
msgid "Welcome to %s"
|
||||
msgstr "Welkom op %s"
|
||||
|
||||
#: src/Module/Install.php:175
|
||||
#: src/Module/Install.php:174
|
||||
msgid "Friendica Communications Server - Setup"
|
||||
msgstr "Friendica Communicatie Server - Setup"
|
||||
|
||||
#: src/Module/Install.php:186
|
||||
#: src/Module/Install.php:185
|
||||
msgid "System check"
|
||||
msgstr "Systeemcontrole"
|
||||
|
||||
#: src/Module/Install.php:188 src/Module/Install.php:233
|
||||
#: src/Module/Install.php:312
|
||||
#: src/Module/Install.php:187 src/Module/Install.php:232
|
||||
#: src/Module/Install.php:313
|
||||
msgid "Requirement not satisfied"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:189
|
||||
#: src/Module/Install.php:188
|
||||
msgid "Optional requirement not satisfied"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:190
|
||||
#: src/Module/Install.php:189
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:194
|
||||
#: src/Module/Install.php:193
|
||||
msgid "Next"
|
||||
msgstr "Volgende"
|
||||
|
||||
#: src/Module/Install.php:195
|
||||
#: src/Module/Install.php:194
|
||||
msgid "Check again"
|
||||
msgstr "Controleer opnieuw"
|
||||
|
||||
#: src/Module/Install.php:208
|
||||
#: src/Module/Install.php:207
|
||||
msgid "Base settings"
|
||||
msgstr "Basisinstellingen"
|
||||
|
||||
#: src/Module/Install.php:210
|
||||
#: src/Module/Install.php:209
|
||||
msgid "Base path to installation"
|
||||
msgstr "Basispad voor installatie"
|
||||
|
||||
#: src/Module/Install.php:212
|
||||
#: src/Module/Install.php:211
|
||||
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 "Als het systeem het correcte pad naar je installatie niet kan detecteren, geef hier dan het correcte pad in. Deze instelling zou alleen geconfigureerd moeten worden als je een systeem met restricties hebt en symbolische links naar je webroot."
|
||||
|
||||
#: src/Module/Install.php:215
|
||||
#: src/Module/Install.php:214
|
||||
msgid "The Friendica system URL"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Install.php:217
|
||||
#: src/Module/Install.php:216
|
||||
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:227
|
||||
msgid "Database connection"
|
||||
msgstr "Verbinding met database"
|
||||
|
||||
#: src/Module/Install.php:229
|
||||
#: src/Module/Install.php:228
|
||||
msgid ""
|
||||
"In order to install Friendica we need to know how to connect to your "
|
||||
"database."
|
||||
msgstr "Om Friendica te kunnen installeren moet ik weten hoe ik jouw database kan bereiken."
|
||||
|
||||
#: src/Module/Install.php:230
|
||||
#: src/Module/Install.php:229
|
||||
msgid ""
|
||||
"Please contact your hosting provider or site administrator if you have "
|
||||
"questions about these settings."
|
||||
msgstr "Neem contact op met jouw hostingprovider of websitebeheerder, wanneer je vragen hebt over deze instellingen. "
|
||||
|
||||
#: src/Module/Install.php:231
|
||||
#: src/Module/Install.php:230
|
||||
msgid ""
|
||||
"The database you specify below should already exist. If it does not, please "
|
||||
"create it before continuing."
|
||||
msgstr "De database die je hier opgeeft zou al moeten bestaan. Maak anders de database aan voordat je verder gaat."
|
||||
|
||||
#: src/Module/Install.php:238
|
||||
#: src/Module/Install.php:237
|
||||
msgid "Database Server Name"
|
||||
msgstr "Servernaam database"
|
||||
|
||||
#: src/Module/Install.php:243
|
||||
#: src/Module/Install.php:242
|
||||
msgid "Database Login Name"
|
||||
msgstr "Gebruikersnaam database"
|
||||
|
||||
#: src/Module/Install.php:249
|
||||
#: src/Module/Install.php:248
|
||||
msgid "Database Login Password"
|
||||
msgstr "Wachtwoord database"
|
||||
|
||||
#: src/Module/Install.php:251
|
||||
#: src/Module/Install.php:250
|
||||
msgid "For security reasons the password must not be empty"
|
||||
msgstr "Om veiligheidsreden mag het wachtwoord niet leeg zijn"
|
||||
|
||||
#: src/Module/Install.php:254
|
||||
#: src/Module/Install.php:253
|
||||
msgid "Database Name"
|
||||
msgstr "Naam database"
|
||||
|
||||
#: src/Module/Install.php:258 src/Module/Install.php:286
|
||||
#: src/Module/Install.php:257 src/Module/Install.php:286
|
||||
msgid "Please select a default timezone for your website"
|
||||
msgstr "Selecteer een standaard tijdzone voor je website"
|
||||
|
||||
#: src/Module/Install.php:273
|
||||
#: src/Module/Install.php:272
|
||||
msgid "Site settings"
|
||||
msgstr "Website-instellingen"
|
||||
|
||||
#: src/Module/Install.php:281
|
||||
#: src/Module/Install.php:280
|
||||
msgid "Site administrator email address"
|
||||
msgstr "E-mailadres van de websitebeheerder"
|
||||
|
||||
#: src/Module/Install.php:283
|
||||
#: src/Module/Install.php:282
|
||||
msgid ""
|
||||
"Your account email address must match this in order to use the web admin "
|
||||
"panel."
|
||||
msgstr "Het e-mailadres van je account moet hiermee overeenkomen om het administratiepaneel te kunnen gebruiken."
|
||||
|
||||
#: src/Module/Install.php:290
|
||||
#: src/Module/Install.php:291
|
||||
msgid "System Language:"
|
||||
msgstr "Systeem taal:"
|
||||
|
||||
#: 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 "Stel de standaard taal in voor je Friendica installatie interface en emails."
|
||||
|
||||
#: src/Module/Install.php:304
|
||||
#: src/Module/Install.php:305
|
||||
msgid "Your Friendica site database has been installed."
|
||||
msgstr "De database van je Friendica-website is geïnstalleerd."
|
||||
|
||||
#: src/Module/Install.php:314
|
||||
#: src/Module/Install.php:315
|
||||
msgid "Installation finished"
|
||||
msgstr "Installaitie beëindigd"
|
||||
|
||||
#: src/Module/Install.php:334
|
||||
#: src/Module/Install.php:335
|
||||
msgid "<h1>What next</h1>"
|
||||
msgstr "<h1>Wat nu</h1>"
|
||||
|
||||
#: 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 "BELANGRIJK: Je zal [manueel] een geplande taak moeten opzetten voor de worker."
|
||||
|
||||
#: src/Module/Install.php:338
|
||||
#: src/Module/Install.php:339
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Go to your new Friendica node <a href=\"%s/register\">registration page</a> "
|
||||
|
|
@ -8013,9 +8033,9 @@ msgid "Block Remote Contact"
|
|||
msgstr "Blokkeer Remote Contact"
|
||||
|
||||
#: 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/Users/Active.php:91
|
||||
#: src/Module/Moderation/Users/Blocked.php:91
|
||||
#: src/Module/Moderation/Users/Index.php:98
|
||||
#: src/Module/Moderation/Users/Pending.php:84
|
||||
msgid "select all"
|
||||
msgstr "Alles selecteren"
|
||||
|
|
@ -8356,9 +8376,9 @@ 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/Users/Active.php:82
|
||||
#: src/Module/Moderation/Users/Blocked.php:82
|
||||
#: src/Module/Moderation/Users/Index.php:89
|
||||
msgid "Type"
|
||||
msgstr "Type"
|
||||
|
||||
|
|
@ -8644,11 +8664,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:149
|
||||
#: src/Module/Moderation/Users/Blocked.php:37
|
||||
#: src/Module/Moderation/Users/Blocked.php:74
|
||||
#: src/Module/Moderation/Users/Blocked.php:148
|
||||
#: src/Module/Moderation/Users/Index.php:44
|
||||
#: src/Module/Moderation/Users/Index.php:81
|
||||
#: src/Module/Moderation/Users/Index.php:160
|
||||
msgid "You can't remove yourself"
|
||||
msgstr "Je kan jezelf niet verwijderen"
|
||||
|
||||
|
|
@ -8661,86 +8681,86 @@ msgid_plural "%s users deleted"
|
|||
msgstr[0] "%s gebruiker verwijderd"
|
||||
msgstr[1] "%s gebruikers verwijderd"
|
||||
|
||||
#: 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:82
|
||||
#: src/Module/Moderation/Users/Index.php:89
|
||||
#, 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/Blocked.php:82
|
||||
#: 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:89
|
||||
#: src/Module/Moderation/Users/Index.php:109
|
||||
msgid "Register date"
|
||||
msgstr "Registratiedatum"
|
||||
|
||||
#: src/Module/Moderation/Users/Active.php:115
|
||||
#: src/Module/Moderation/Users/Blocked.php:115
|
||||
#: src/Module/Moderation/Users/Active.php:82
|
||||
#: src/Module/Moderation/Users/Blocked.php:82
|
||||
#: 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:89
|
||||
#: src/Module/Moderation/Users/Index.php:109
|
||||
msgid "Last login"
|
||||
msgstr "Laatste login"
|
||||
|
||||
#: src/Module/Moderation/Users/Active.php:115
|
||||
#: src/Module/Moderation/Users/Blocked.php:115
|
||||
#: src/Module/Moderation/Users/Active.php:82
|
||||
#: src/Module/Moderation/Users/Blocked.php:82
|
||||
#: 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:89
|
||||
#: src/Module/Moderation/Users/Index.php:109
|
||||
msgid "Last public item"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Moderation/Users/Active.php:123
|
||||
#: src/Module/Moderation/Users/Active.php:90
|
||||
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:94
|
||||
#: src/Module/Moderation/Users/Blocked.php:93
|
||||
#: src/Module/Moderation/Users/Index.php:102
|
||||
msgid "User blocked"
|
||||
msgstr "Gebruiker geblokeerd"
|
||||
|
||||
#: 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:95
|
||||
#: src/Module/Moderation/Users/Blocked.php:95
|
||||
#: src/Module/Moderation/Users/Index.php:104
|
||||
msgid "Site admin"
|
||||
msgstr "Sitebeheerder"
|
||||
|
||||
#: 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:96
|
||||
#: src/Module/Moderation/Users/Blocked.php:96
|
||||
#: src/Module/Moderation/Users/Index.php:105
|
||||
msgid "Account expired"
|
||||
msgstr "Account verlopen"
|
||||
|
||||
#: src/Module/Moderation/Users/Active.php:130
|
||||
#: src/Module/Moderation/Users/Index.php:148
|
||||
#: src/Module/Moderation/Users/Active.php:97
|
||||
#: src/Module/Moderation/Users/Index.php:108
|
||||
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:103
|
||||
#: src/Module/Moderation/Users/Blocked.php:102
|
||||
#: src/Module/Moderation/Users/Index.php:114
|
||||
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:137
|
||||
#: src/Module/Moderation/Users/Blocked.php:136
|
||||
#: src/Module/Moderation/Users/Index.php:155
|
||||
#: src/Module/Moderation/Users/Active.php:104
|
||||
#: src/Module/Moderation/Users/Blocked.php:103
|
||||
#: src/Module/Moderation/Users/Index.php:115
|
||||
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 "De gebruiker {0} zal verwijderd worden!\\n\\nAlles wat deze gebruiker gepost heeft op deze website zal permanent verwijderd worden!\\n\\nBen je zeker?"
|
||||
|
||||
#: src/Module/Moderation/Users/Active.php:147
|
||||
#: src/Module/Moderation/Users/Blocked.php:146
|
||||
#: src/Module/Moderation/Users/Index.php:158
|
||||
#, php-format
|
||||
msgid "User \"%s\" deleted"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Moderation/Users/Active.php:157
|
||||
#: src/Module/Moderation/Users/Index.php:168
|
||||
#, php-format
|
||||
msgid "User \"%s\" blocked"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Moderation/Users/Blocked.php:29
|
||||
#: src/Module/Moderation/Users/Index.php:36
|
||||
#, php-format
|
||||
|
|
@ -8749,14 +8769,14 @@ msgid_plural "%s users unblocked"
|
|||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: src/Module/Moderation/Users/Blocked.php:81
|
||||
#: src/Module/Moderation/Users/Index.php:95
|
||||
#, php-format
|
||||
msgid "User \"%s\" unblocked"
|
||||
#: src/Module/Moderation/Users/Blocked.php:90
|
||||
msgid "Blocked Users"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Moderation/Users/Blocked.php:123
|
||||
msgid "Blocked Users"
|
||||
#: src/Module/Moderation/Users/Blocked.php:155
|
||||
#: src/Module/Moderation/Users/Index.php:174
|
||||
#, php-format
|
||||
msgid "User \"%s\" unblocked"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Moderation/Users/Create.php:48
|
||||
|
|
@ -8788,11 +8808,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:109
|
||||
msgid "Permanent deletion"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Moderation/Users/Index.php:139
|
||||
#: src/Module/Moderation/Users/Index.php:99
|
||||
msgid "User waiting for permanent deletion"
|
||||
msgstr "Gebruiker wacht op permanente verwijdering"
|
||||
|
||||
|
|
@ -8938,15 +8958,15 @@ msgid ""
|
|||
" and/or create new posts for you?"
|
||||
msgstr "Wil je deze toepassing toestemming geven om jouw berichten en contacten in te kijken, en/of nieuwe berichten in jouw plaats aan te maken?"
|
||||
|
||||
#: src/Module/OAuth/Authorize.php:40
|
||||
#: src/Module/OAuth/Authorize.php:39
|
||||
msgid "Unsupported or missing response type"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/OAuth/Authorize.php:45 src/Module/OAuth/Token.php:61
|
||||
#: src/Module/OAuth/Authorize.php:44 src/Module/OAuth/Token.php:60
|
||||
msgid "Incomplete request data"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/OAuth/Authorize.php:93
|
||||
#: src/Module/OAuth/Authorize.php:92
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Please copy the following authentication code into your application and "
|
||||
|
|
@ -9131,19 +9151,19 @@ msgid "No contacts."
|
|||
msgstr "Geen contacten."
|
||||
|
||||
#: src/Module/Profile/Conversations.php:96 src/Module/Profile/Profile.php:342
|
||||
#: src/Protocol/Feed.php:1097
|
||||
#: src/Protocol/Feed.php:1096
|
||||
#, php-format
|
||||
msgid "%s's posts"
|
||||
msgstr "Berichten van %s"
|
||||
|
||||
#: src/Module/Profile/Conversations.php:97 src/Module/Profile/Profile.php:343
|
||||
#: src/Protocol/Feed.php:1100
|
||||
#: src/Protocol/Feed.php:1099
|
||||
#, php-format
|
||||
msgid "%s's comments"
|
||||
msgstr "reactie van %s"
|
||||
|
||||
#: src/Module/Profile/Conversations.php:98 src/Module/Profile/Profile.php:344
|
||||
#: src/Protocol/Feed.php:1093
|
||||
#: src/Protocol/Feed.php:1092
|
||||
#, php-format
|
||||
msgid "%s's timeline"
|
||||
msgstr "Tijdslijn van %s"
|
||||
|
|
@ -9204,17 +9224,17 @@ msgstr "F j Y"
|
|||
msgid "j F"
|
||||
msgstr "F j"
|
||||
|
||||
#: src/Module/Profile/Profile.php:178 src/Util/Temporal.php:154
|
||||
#: src/Module/Profile/Profile.php:178 src/Util/Temporal.php:155
|
||||
msgid "Birthday:"
|
||||
msgstr "Verjaardag:"
|
||||
|
||||
#: src/Module/Profile/Profile.php:181
|
||||
#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
|
||||
#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:157
|
||||
msgid "Age: "
|
||||
msgstr "Leeftijd:"
|
||||
|
||||
#: src/Module/Profile/Profile.php:181
|
||||
#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:156
|
||||
#: src/Module/Settings/Profile/Index.php:282 src/Util/Temporal.php:157
|
||||
#, php-format
|
||||
msgid "%d year old"
|
||||
msgid_plural "%d years old"
|
||||
|
|
@ -9301,141 +9321,142 @@ msgstr ""
|
|||
msgid "Remove post"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:78
|
||||
#: src/Module/Register.php:77
|
||||
msgid "Only parent users can create additional accounts."
|
||||
msgstr "Alleen bovenliggende gebruikers kunnen extra gebruikers maken."
|
||||
|
||||
#: 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 "Deze website heeft het toegelaten dagelijkse aantal registraties overschreden. Probeer morgen opnieuw."
|
||||
|
||||
#: 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 "U kunt (optioneel) dit formulier invullen via OpenID door uw OpenID in te vullen en op 'Registreren' te klikken."
|
||||
|
||||
#: 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 "Laat dit veld leeg als je niet vertrouwd bent met OpenID, en vul de rest van de items in."
|
||||
|
||||
#: src/Module/Register.php:112
|
||||
#: src/Module/Register.php:111
|
||||
msgid "Your OpenID (optional): "
|
||||
msgstr "Je OpenID (optioneel):"
|
||||
|
||||
#: src/Module/Register.php:121
|
||||
#: src/Module/Register.php:120
|
||||
msgid "Include your profile in member directory?"
|
||||
msgstr "Je profiel in de ledengids opnemen?"
|
||||
|
||||
#: src/Module/Register.php:142
|
||||
#: src/Module/Register.php:141
|
||||
msgid "Note for the admin"
|
||||
msgstr "Nota voor de beheerder"
|
||||
|
||||
#: 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 "Laat een boodschap na voor de beheerder, waarom je bij deze node wil komen"
|
||||
|
||||
#: src/Module/Register.php:143
|
||||
#: src/Module/Register.php:142
|
||||
msgid "Membership on this site is by invitation only."
|
||||
msgstr "Lidmaatschap van deze website is uitsluitend op uitnodiging."
|
||||
|
||||
#: src/Module/Register.php:144
|
||||
#: src/Module/Register.php:143
|
||||
msgid "Your invitation code: "
|
||||
msgstr "Je uitnodigingscode:"
|
||||
|
||||
#: 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:152
|
||||
msgid "Your Display Name (as you would like it to be displayed on this system"
|
||||
msgid ""
|
||||
"Your Email Address (initial information will be sent there, so this must be "
|
||||
"a valid address):"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:153
|
||||
msgid ""
|
||||
"Your Email Address: (Initial information will be send there, so this has to "
|
||||
"be an existing address.)"
|
||||
msgstr "Je Email Adres: (Initiële informatie zal hier naartoe gezonden worden, dus dit moet een bestaand adres zijn.)"
|
||||
|
||||
#: src/Module/Register.php:154
|
||||
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/Register.php:155 src/Module/Security/PasswordTooLong.php:86
|
||||
#: src/Module/Settings/Account.php:513
|
||||
msgid "New Password:"
|
||||
msgstr "Nieuw Wachtwoord:"
|
||||
|
||||
#: src/Module/Register.php:156
|
||||
#: src/Module/Register.php:155
|
||||
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/Register.php:156 src/Module/Security/PasswordTooLong.php:87
|
||||
#: src/Module/Settings/Account.php:514
|
||||
msgid "Confirm:"
|
||||
msgstr "Bevestig:"
|
||||
|
||||
#: src/Module/Register.php:158
|
||||
#: src/Module/Register.php:157
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Choose a profile nickname. This must begin with a text character. Your "
|
||||
"profile address on this site will then be \"<strong>nickname@%s</strong>\"."
|
||||
msgstr "Kies een profiel bijnaam. Deze dient te beginnen met een letter. Uw profiel adres op deze site zal dan \"<strong>bijnaam@%s</strong>\" zijn."
|
||||
|
||||
#: src/Module/Register.php:159
|
||||
#: src/Module/Register.php:158
|
||||
msgid "Choose a nickname: "
|
||||
msgstr "Kies een bijnaam:"
|
||||
|
||||
#: 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 "Importeren"
|
||||
|
||||
#: src/Module/Register.php:168
|
||||
#: src/Module/Register.php:167
|
||||
msgid "Import your profile to this friendica instance"
|
||||
msgstr "Importeer je profiel op deze friendica server"
|
||||
|
||||
#: src/Module/Register.php:175
|
||||
#: src/Module/Register.php:174
|
||||
msgid "Note: This node explicitly contains adult content"
|
||||
msgstr "Waarschuwing: Deze node heeft inhoud enkel bedoeld voor volwassenen."
|
||||
|
||||
#: 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 "Ouderlijk wachtwoord:"
|
||||
|
||||
#: 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 "Geef alstublieft het wachtwoord van het ouderlijke account om je verzoek te legitimeren."
|
||||
|
||||
#: src/Module/Register.php:206
|
||||
#: src/Module/Register.php:205
|
||||
msgid "Password doesn't match."
|
||||
msgstr "Wachtwoorden komen niet overeen."
|
||||
|
||||
#: src/Module/Register.php:212
|
||||
#: src/Module/Register.php:211
|
||||
msgid "Please enter your password."
|
||||
msgstr "Voer uw wachtwoord in."
|
||||
|
||||
#: src/Module/Register.php:254
|
||||
#: src/Module/Register.php:253
|
||||
msgid "You have entered too much information."
|
||||
msgstr "U heeft te veel informatie ingevoerd."
|
||||
|
||||
#: src/Module/Register.php:277
|
||||
#: src/Module/Register.php:276
|
||||
msgid "Please enter the identical mail address in the second field."
|
||||
msgstr "Voer in het tweede veld het identieke mailadres in."
|
||||
|
||||
#: 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 "De toegevoegde gebruiker is aangemaakt."
|
||||
|
||||
#: src/Module/Register.php:341
|
||||
#: src/Module/Register.php:340
|
||||
msgid ""
|
||||
"Registration successful. Please check your email for further instructions."
|
||||
msgstr "Registratie geslaagd. Kijk je e-mail na voor verdere instructies."
|
||||
|
|
@ -9447,24 +9468,24 @@ msgid ""
|
|||
"password: %s<br><br>You can change your password after login."
|
||||
msgstr "Kon email niet verzenden. Hier zijn je account details: <br> login: %s <br> wachtwoord: %s<br><br> Je kan je wachtwoord aanpassen nadat je ingelogd bent."
|
||||
|
||||
#: src/Module/Register.php:354
|
||||
#: src/Module/Register.php:355
|
||||
msgid "Registration successful."
|
||||
msgstr "Registratie succes."
|
||||
|
||||
#: src/Module/Register.php:363 src/Module/Register.php:370
|
||||
#: src/Module/Register.php:380
|
||||
#: src/Module/Register.php:364 src/Module/Register.php:371
|
||||
#: src/Module/Register.php:381
|
||||
msgid "Your registration can not be processed."
|
||||
msgstr "Je registratie kan niet verwerkt worden."
|
||||
|
||||
#: src/Module/Register.php:369
|
||||
#: src/Module/Register.php:370
|
||||
msgid "You have to leave a request note for the admin."
|
||||
msgstr "U dient een verzoekmelding achter te laten voor de beheerder."
|
||||
|
||||
#: src/Module/Register.php:379
|
||||
#: src/Module/Register.php:380
|
||||
msgid "An internal error occured."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Register.php:401
|
||||
#: src/Module/Register.php:402
|
||||
msgid "Your registration is pending approval by the site owner."
|
||||
msgstr "Jouw registratie wacht op goedkeuring van de beheerder."
|
||||
|
||||
|
|
@ -9472,15 +9493,15 @@ msgstr "Jouw registratie wacht op goedkeuring van de beheerder."
|
|||
msgid "You must be logged in to use this module."
|
||||
msgstr "Je moet ingelogd zijn om deze module te gebruiken."
|
||||
|
||||
#: src/Module/Search/Index.php:55
|
||||
#: src/Module/Search/Index.php:54
|
||||
msgid "Only logged in users are permitted to perform a search."
|
||||
msgstr "Alleen ingelogde gebruikers mogen een zoekopdracht starten."
|
||||
|
||||
#: src/Module/Search/Index.php:75
|
||||
#: src/Module/Search/Index.php:76
|
||||
msgid "Only one search per minute is permitted for not logged in users."
|
||||
msgstr "Niet ingelogde gebruikers mogen slechts 1 opzoeking doen per minuut"
|
||||
|
||||
#: src/Module/Search/Index.php:191
|
||||
#: src/Module/Search/Index.php:200
|
||||
#, php-format
|
||||
msgid "Items tagged with: %s"
|
||||
msgstr "Items getagd met: %s"
|
||||
|
|
@ -10218,13 +10239,13 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
|
||||
#: src/Module/Settings/Display.php:349
|
||||
#: src/Module/Settings/Display.php:339
|
||||
msgid "Label"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Channels.php:177 src/Module/Settings/Channels.php:198
|
||||
#: src/Module/Settings/Display.php:350
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:124
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:123
|
||||
msgid "Description"
|
||||
msgstr "Omschrijving"
|
||||
|
||||
|
|
@ -10256,8 +10277,13 @@ msgstr ""
|
|||
msgid "Full Text Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Channels.php:188 src/Module/Settings/Channels.php:209
|
||||
msgid "Select all languages that you want to see in this channel."
|
||||
#: src/Module/Settings/Channels.php:188
|
||||
msgid ""
|
||||
"Select all languages that you want to see in this channel. \"Unspecified\" "
|
||||
"describes all posts for which no language information was detected (e.g. "
|
||||
"posts with just an image or too little text to be sure of the language). If "
|
||||
"you want to see all languages, you will need to select all items in the "
|
||||
"list."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Channels.php:190
|
||||
|
|
@ -10330,6 +10356,10 @@ msgstr ""
|
|||
msgid "Check to display audio in the channel."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Channels.php:209
|
||||
msgid "Select all languages that you want to see in this channel."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Channels.php:213
|
||||
msgid "Add new entry to the channel list"
|
||||
msgstr ""
|
||||
|
|
@ -10650,221 +10680,228 @@ msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed "
|
|||
msgid "No entries."
|
||||
msgstr "Geen gegevens."
|
||||
|
||||
#: src/Module/Settings/Display.php:180
|
||||
#: src/Module/Settings/Display.php:174
|
||||
msgid "The theme you chose isn't available."
|
||||
msgstr "Het thema dat je koos is niet beschikbaar"
|
||||
|
||||
#: src/Module/Settings/Display.php:220
|
||||
#: src/Module/Settings/Display.php:214
|
||||
#, php-format
|
||||
msgid "%s - (Unsupported)"
|
||||
msgstr "%s - (Niet ondersteund)"
|
||||
|
||||
#: src/Module/Settings/Display.php:260
|
||||
#: src/Module/Settings/Display.php:250
|
||||
msgid "Color/Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:261 view/theme/frio/php/scheme.php:95
|
||||
#: src/Module/Settings/Display.php:251 view/theme/frio/php/scheme.php:95
|
||||
msgid "Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:262
|
||||
#: src/Module/Settings/Display.php:252
|
||||
msgid "Color/White"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:263
|
||||
#: src/Module/Settings/Display.php:253
|
||||
msgid "White"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:268
|
||||
#: src/Module/Settings/Display.php:258
|
||||
msgid "No preview"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:269
|
||||
#: src/Module/Settings/Display.php:259
|
||||
msgid "No image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:270
|
||||
#: src/Module/Settings/Display.php:260
|
||||
msgid "Small Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:271
|
||||
#: src/Module/Settings/Display.php:261
|
||||
msgid "Large Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:316
|
||||
#: src/Module/Settings/Display.php:306
|
||||
msgid "Display Settings"
|
||||
msgstr "Scherminstellingen"
|
||||
|
||||
#: src/Module/Settings/Display.php:318
|
||||
#: src/Module/Settings/Display.php:308
|
||||
msgid "General Theme Settings"
|
||||
msgstr "Algemene Thema Instellingen"
|
||||
|
||||
#: src/Module/Settings/Display.php:319
|
||||
#: src/Module/Settings/Display.php:309
|
||||
msgid "Custom Theme Settings"
|
||||
msgstr "Speciale Thema Instellingen"
|
||||
|
||||
#: src/Module/Settings/Display.php:320
|
||||
#: src/Module/Settings/Display.php:310
|
||||
msgid "Content Settings"
|
||||
msgstr "Content Instellingen"
|
||||
|
||||
#: src/Module/Settings/Display.php:321 view/theme/duepuntozero/config.php:74
|
||||
#: src/Module/Settings/Display.php:311 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 "Thema-instellingen"
|
||||
|
||||
#: src/Module/Settings/Display.php:322
|
||||
#: src/Module/Settings/Display.php:312
|
||||
msgid "Timelines"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:329
|
||||
#: src/Module/Settings/Display.php:319
|
||||
msgid "Display Theme:"
|
||||
msgstr "Schermthema:"
|
||||
|
||||
#: src/Module/Settings/Display.php:330
|
||||
#: src/Module/Settings/Display.php:320
|
||||
msgid "Mobile Theme:"
|
||||
msgstr "Mobiel thema:"
|
||||
|
||||
#: src/Module/Settings/Display.php:333
|
||||
#: src/Module/Settings/Display.php:323
|
||||
msgid "Number of items to display per page:"
|
||||
msgstr "Aantal items te tonen per pagina:"
|
||||
|
||||
#: src/Module/Settings/Display.php:333 src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:323 src/Module/Settings/Display.php:324
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr "Maximum 100 items"
|
||||
|
||||
#: src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:324
|
||||
msgid "Number of items to display per page when viewed from mobile device:"
|
||||
msgstr "Aantal items per pagina als je een mobiel toestel gebruikt:"
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr "Browser elke xx seconden verversen"
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid "Regularly update the page content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Minimum of 10 seconds. Enter -1 to disable it."
|
||||
msgstr "Minimum 10 seconden. Geef -1 op om te deactiveren."
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid ""
|
||||
"When enabled, new content on network, community and channels are added on "
|
||||
"top."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "Display emoticons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "When enabled, emoticons are replaced with matching symbols."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Infinite scroll"
|
||||
msgstr "Oneindig scrollen"
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Automatic fetch new items when reaching the page end."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable Smart Threading"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable the automatic suppression of extraneous thread indentation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid "Display the Dislike feature"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid ""
|
||||
"Display the Dislike button and dislike reactions on posts and comments."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
msgid "Display the resharer"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
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:331
|
||||
msgid "Stay local"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:341
|
||||
#: src/Module/Settings/Display.php:331
|
||||
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:332
|
||||
msgid "Show the post deletion checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:342
|
||||
#: src/Module/Settings/Display.php:332
|
||||
msgid "Display the checkbox for the post deletion on the network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "DIsplay the event list"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "Display the birthday reminder and event list on the network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
msgid "Link preview mode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
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:335
|
||||
msgid "Hide pictures with empty alternative text"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:345
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Don't display pictures that are missing the alternative text."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Hide custom emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Don't display custom emojis."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Platform icons style"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Style of the platform icons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:352
|
||||
#: src/Module/Settings/Display.php:342
|
||||
msgid "Bookmark"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:354
|
||||
#: src/Module/Settings/Display.php:344
|
||||
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:346
|
||||
msgid "Channel languages:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:356
|
||||
msgid "Select all languages that you want to see in your channels."
|
||||
#: src/Module/Settings/Display.php:346
|
||||
msgid ""
|
||||
"Select all the languages you want to see in your channels. \"Unspecified\" "
|
||||
"describes all posts for which no language information was detected (e.g. "
|
||||
"posts with just an image or too little text to be sure of the language). If "
|
||||
"you want to see all languages, you will need to select all items in the "
|
||||
"list."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:358
|
||||
#: src/Module/Settings/Display.php:348
|
||||
msgid "Beginning of week:"
|
||||
msgstr "Begin van de week:"
|
||||
|
||||
#: src/Module/Settings/Display.php:359
|
||||
#: src/Module/Settings/Display.php:349
|
||||
msgid "Default calendar view:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -11108,8 +11145,8 @@ msgid "If this error persists, please contact your administrator."
|
|||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/RemoveMe.php:76
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:457
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:478
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:463
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:487
|
||||
msgid "[Friendica System Notify]"
|
||||
msgstr "[Friendica systeem notificatie]"
|
||||
|
||||
|
|
@ -11199,62 +11236,61 @@ msgid ""
|
|||
msgstr "App-specifieke wachtwoordgeneratie mislukt: deze beschrijving bestaat al."
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:80
|
||||
#, php-format
|
||||
msgid "New app-specific password generated: %s"
|
||||
msgid "New app-specific password generated."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:87
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:86
|
||||
msgid "App-specific passwords successfully revoked."
|
||||
msgstr "App-specifieke wachtwoorden succesvol ingetrokken."
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:97
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:96
|
||||
msgid "App-specific password successfully revoked."
|
||||
msgstr "App-specifiek wachtwoord succesvol ingetrokken."
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:118
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:117
|
||||
msgid "Two-factor app-specific passwords"
|
||||
msgstr "Twee-factor app-specifieke wachtwoorden"
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:120
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:119
|
||||
msgid ""
|
||||
"<p>App-specific passwords are randomly generated passwords used instead your"
|
||||
" regular password to authenticate your account on third-party applications "
|
||||
"that don't support two-factor authentication.</p>"
|
||||
msgstr "<p>App-specifieke wachtwoorden zijn willekeurig gegenereerde wachtwoorden die in plaats daarvan uw normale wachtwoord worden gebruikt om uw account te verifiëren bij applicaties van derden die geen tweefactorauthenticatie ondersteunen.</p>"
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:121
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:120
|
||||
msgid ""
|
||||
"Make sure to copy your new app-specific password now. You won’t be able to "
|
||||
"see it again!"
|
||||
msgstr "Zorg ervoor dat u nu uw nieuwe app-specifieke wachtwoord kopieert. U zult het niet meer kunnen zien!"
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:125
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:124
|
||||
msgid "Last Used"
|
||||
msgstr "Laatst gebruikt"
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:126
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:125
|
||||
msgid "Revoke"
|
||||
msgstr "Intrekken"
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:127
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:126
|
||||
msgid "Revoke All"
|
||||
msgstr "Alles intrekken"
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:130
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:129
|
||||
msgid ""
|
||||
"When you generate a new app-specific password, you must use it right away, "
|
||||
"it will be shown to you once after you generate it."
|
||||
msgstr "Wanneer u een nieuw app-specifiek wachtwoord genereert, moet u dit meteen gebruiken, het wordt u een keer getoond nadat u het hebt gegenereerd."
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:131
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:130
|
||||
msgid "Generate new app-specific password"
|
||||
msgstr "Genereer een nieuw app-specifiek wachtwoord"
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:132
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:131
|
||||
msgid "Friendiqa on my Fairphone 2..."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:133
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:132
|
||||
msgid "Generate"
|
||||
msgstr "Genereer"
|
||||
|
||||
|
|
@ -11537,6 +11573,10 @@ msgstr ""
|
|||
msgid "Possible reasons include:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Special/HTTPException.php:64
|
||||
msgid "Go back"
|
||||
msgstr "Ga terug"
|
||||
|
||||
#: src/Module/Special/HTTPException.php:65
|
||||
msgid "Stack trace:"
|
||||
msgstr ""
|
||||
|
|
@ -12030,74 +12070,74 @@ msgstr ""
|
|||
msgid "%1$s commented on your thread %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:211
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:740
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:210
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:754
|
||||
msgid "[Friendica:Notify]"
|
||||
msgstr ""
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:279
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:278
|
||||
#, php-format
|
||||
msgid "%s New mail received at %s"
|
||||
msgstr "%s Nieuw bericht ontvangen op %s"
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:281
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:280
|
||||
#, php-format
|
||||
msgid "%1$s sent you a new private message at %2$s."
|
||||
msgstr "%1$s sent you a new private message at %2$s."
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:282
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:281
|
||||
msgid "a private message"
|
||||
msgstr "een prive bericht"
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:282
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:281
|
||||
#, php-format
|
||||
msgid "%1$s sent you %2$s."
|
||||
msgstr "%1$s stuurde jou %2$s."
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:284
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:283
|
||||
#, php-format
|
||||
msgid "Please visit %s to view and/or reply to your private messages."
|
||||
msgstr "Bezoek %s om je privé-berichten te bekijken en/of te beantwoorden."
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:314
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:313
|
||||
#, php-format
|
||||
msgid "%1$s commented on %2$s's %3$s %4$s"
|
||||
msgstr "%1$s heeft een opmerking geplaatst op %2$s's %3$s %4$s"
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:319
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:318
|
||||
#, php-format
|
||||
msgid "%1$s commented on your %2$s %3$s"
|
||||
msgstr "%1$s heeft een opmerking geplaatst op jou %2$s %3$s"
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:323
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:322
|
||||
#, php-format
|
||||
msgid "%1$s commented on their %2$s %3$s"
|
||||
msgstr "%1$s heeft een opmering geschreven op hun %2$s %3$s"
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:327
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:774
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:326
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:788
|
||||
#, php-format
|
||||
msgid "%1$s Comment to conversation #%2$d by %3$s"
|
||||
msgstr "%1$s Opmerking bij conversatie #%2$d door %3$s"
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:329
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:328
|
||||
#, php-format
|
||||
msgid "%s commented on an item/conversation you have been following."
|
||||
msgstr "%s gaf een reactie op een bericht/gesprek die jij volgt."
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:333
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:332
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:348
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:800
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:814
|
||||
#, php-format
|
||||
msgid "Please visit %s to view and/or reply to the conversation."
|
||||
msgstr "Bezoek %s om het gesprek te bekijken en/of te beantwoorden."
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:340
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:339
|
||||
#, php-format
|
||||
msgid "%s %s posted to your profile wall"
|
||||
msgstr "%s %s heeft op je profiel wall gepost"
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:342
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:341
|
||||
#, php-format
|
||||
msgid "%1$s posted to your profile wall at %2$s"
|
||||
msgstr "%1$splaatste een bericht op je tijdlijn op %2$s"
|
||||
|
|
@ -12117,103 +12157,103 @@ msgstr "%s Introductie ontvangen"
|
|||
msgid "You've received an introduction from '%1$s' at %2$s"
|
||||
msgstr "Je hebt een vriendschaps- of connectieverzoek ontvangen van '%1$s' om %2$s"
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:359
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:360
|
||||
#, php-format
|
||||
msgid "You've received [url=%1$s]an introduction[/url] from %2$s."
|
||||
msgstr "Je ontving [url=%1$s]een vriendschaps- of connectieverzoek[/url] van %2$s."
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:364
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:410
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:365
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:414
|
||||
#, php-format
|
||||
msgid "You may visit their profile at %s"
|
||||
msgstr "Je kunt hun profiel bezoeken op %s"
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:366
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:367
|
||||
#, php-format
|
||||
msgid "Please visit %s to approve or reject the introduction."
|
||||
msgstr "Bezoek %s om het verzoek goed of af te keuren."
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:373
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:374
|
||||
#, php-format
|
||||
msgid "%s A new person is sharing with you"
|
||||
msgstr "%s Een nieuwe persoon deelt met je"
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:375
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:376
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:378
|
||||
#, php-format
|
||||
msgid "%1$s is sharing with you at %2$s"
|
||||
msgstr "%1$s deelt met jou in %2$s"
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:383
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:385
|
||||
#, php-format
|
||||
msgid "%s You have a new follower"
|
||||
msgstr "%s Je hebt een nieuwe volger"
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:385
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:386
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:387
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:389
|
||||
#, php-format
|
||||
msgid "You have a new follower at %2$s : %1$s"
|
||||
msgstr "Je hebt een nieuwe volger op %2$s: %1$s"
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:399
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:402
|
||||
#, php-format
|
||||
msgid "%s Friend suggestion received"
|
||||
msgstr "%s Vriend suggestie ontvangen"
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:401
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:404
|
||||
#, php-format
|
||||
msgid "You've received a friend suggestion from '%1$s' at %2$s"
|
||||
msgstr "Je kreeg een vriendschapssuggestie van '%1$s' op %2$s"
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:402
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:406
|
||||
#, php-format
|
||||
msgid ""
|
||||
"You've received [url=%1$s]a friend suggestion[/url] for %2$s from %3$s."
|
||||
msgstr "Je kreeg een [url=%1$s]vriendschapssuggestie[/url] voor %2$s op %3$s."
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:408
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:412
|
||||
msgid "Name:"
|
||||
msgstr "Naam:"
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:409
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:413
|
||||
msgid "Photo:"
|
||||
msgstr "Foto: "
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:412
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:416
|
||||
#, php-format
|
||||
msgid "Please visit %s to approve or reject the suggestion."
|
||||
msgstr "Bezoek %s om de suggestie goed of af te keuren."
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:420
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:435
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:424
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:440
|
||||
#, php-format
|
||||
msgid "%s Connection accepted"
|
||||
msgstr "%s Verbinding geaccepteerd"
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:422
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:437
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:426
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:442
|
||||
#, php-format
|
||||
msgid "'%1$s' has accepted your connection request at %2$s"
|
||||
msgstr "'%1$s' aanvaarde je contactaanvraag op %2$s"
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:423
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:438
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:428
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:444
|
||||
#, php-format
|
||||
msgid "%2$s has accepted your [url=%1$s]connection request[/url]."
|
||||
msgstr "%2$saanvaardde jouw [url=%1$s]contactaanvraag[/url]."
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:428
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:433
|
||||
msgid ""
|
||||
"You are now mutual friends and may exchange status updates, photos, and "
|
||||
"email without restriction."
|
||||
msgstr "Jullie zijn nu in contact met elkaar en kunnen statusberichten, foto's en email delen zonder beperkingen."
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:430
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:435
|
||||
#, php-format
|
||||
msgid "Please visit %s if you wish to make any changes to this relationship."
|
||||
msgstr "Bezoek alstublieft %s als je deze relatie wil wijzigen."
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:443
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:449
|
||||
#, php-format
|
||||
msgid ""
|
||||
"'%1$s' has chosen to accept you a fan, which restricts some forms of "
|
||||
|
|
@ -12222,34 +12262,34 @@ msgid ""
|
|||
"automatically."
|
||||
msgstr "'%1$s' koos om je te accepteren als fan, wat sommige communicatievormen beperkt - zoals privéberichten en sommige profielfuncties. Als dit een beroemdheid- of groepspagina is, werd dit automatisch toegepast."
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:445
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:451
|
||||
#, php-format
|
||||
msgid ""
|
||||
"'%1$s' may choose to extend this into a two-way or more permissive "
|
||||
"relationship in the future."
|
||||
msgstr "'%1$s' kan er later voor kiezen om deze beperkingen aan te passen."
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:447
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:453
|
||||
#, php-format
|
||||
msgid "Please visit %s if you wish to make any changes to this relationship."
|
||||
msgstr "Bezoek %s wanneer je deze relatie wil wijzigen."
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:457
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:463
|
||||
msgid "registration request"
|
||||
msgstr "registratie verzoek"
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:459
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:465
|
||||
#, php-format
|
||||
msgid "You've received a registration request from '%1$s' at %2$s"
|
||||
msgstr "Je kreeg een registratieaanvraag van '%1$s' op %2$s"
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:460
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:467
|
||||
#, php-format
|
||||
msgid "You've received a [url=%1$s]registration request[/url] from %2$s."
|
||||
msgstr "Je kreeg een [url=%1$s]registratieaanvraag[/url] van %2$s."
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:465
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:486
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:473
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:497
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Display Name:\t%s\n"
|
||||
|
|
@ -12257,46 +12297,46 @@ msgid ""
|
|||
"Login Name:\t%s (%s)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:471
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:480
|
||||
#, php-format
|
||||
msgid "Please visit %s to approve or reject the request."
|
||||
msgstr "Bezoek %s om de aanvraag goed of af te keuren."
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:478
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:487
|
||||
msgid "new registration"
|
||||
msgstr ""
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:480
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:489
|
||||
#, php-format
|
||||
msgid "You've received a new registration from '%1$s' at %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:481
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:491
|
||||
#, php-format
|
||||
msgid "You've received a [url=%1$s]new registration[/url] from %2$s."
|
||||
msgstr ""
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:492
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:504
|
||||
#, php-format
|
||||
msgid "Please visit %s to have a look at the new registration."
|
||||
msgstr ""
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:768
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:782
|
||||
#, php-format
|
||||
msgid "%s %s tagged you"
|
||||
msgstr "%s %s heeft jou getagged"
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:771
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:785
|
||||
#, php-format
|
||||
msgid "%s %s shared a new post"
|
||||
msgstr "%s %s deelde een nieuwe post"
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:779
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:793
|
||||
#, php-format
|
||||
msgid "%1$s %2$s liked your post #%3$d"
|
||||
msgstr ""
|
||||
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:782
|
||||
#: src/Navigation/Notifications/Repository/Notify.php:796
|
||||
#, php-format
|
||||
msgid "%1$s %2$s liked your comment on #%3$d"
|
||||
msgstr ""
|
||||
|
|
@ -12324,295 +12364,291 @@ 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:125
|
||||
#: src/Object/Post.php:124
|
||||
msgid "Private Message"
|
||||
msgstr "Privébericht"
|
||||
|
||||
#: src/Object/Post.php:129
|
||||
#: src/Object/Post.php:128
|
||||
msgid "Public Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:133
|
||||
#: src/Object/Post.php:132
|
||||
msgid "Unlisted Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:169
|
||||
#: src/Object/Post.php:168
|
||||
msgid "This entry was edited"
|
||||
msgstr "Deze entry werd bewerkt"
|
||||
|
||||
#: src/Object/Post.php:197
|
||||
#: src/Object/Post.php:196
|
||||
msgid "Connector Message"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:226 src/Object/Post.php:228
|
||||
#: src/Object/Post.php:225 src/Object/Post.php:227
|
||||
msgid "Edit"
|
||||
msgstr "Bewerken"
|
||||
|
||||
#: src/Object/Post.php:262
|
||||
#: src/Object/Post.php:261
|
||||
msgid "Delete globally"
|
||||
msgstr "Verwijder globaal"
|
||||
|
||||
#: src/Object/Post.php:262
|
||||
#: src/Object/Post.php:261
|
||||
msgid "Remove locally"
|
||||
msgstr "Verwijder lokaal"
|
||||
|
||||
#: src/Object/Post.php:269
|
||||
#: src/Object/Post.php:268
|
||||
#, php-format
|
||||
msgid "Block %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:274
|
||||
#: src/Object/Post.php:273
|
||||
#, php-format
|
||||
msgid "Ignore %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:279
|
||||
#: src/Object/Post.php:278
|
||||
#, php-format
|
||||
msgid "Collapse %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:283
|
||||
#: src/Object/Post.php:282
|
||||
msgid "Report post"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:294
|
||||
#: src/Object/Post.php:293
|
||||
msgid "Save to folder"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:334
|
||||
#: src/Object/Post.php:333
|
||||
msgid "I will attend"
|
||||
msgstr "Ik zal er zijn"
|
||||
|
||||
#: src/Object/Post.php:334
|
||||
#: src/Object/Post.php:333
|
||||
msgid "I will not attend"
|
||||
msgstr "Ik zal er niet zijn"
|
||||
|
||||
#: src/Object/Post.php:334
|
||||
#: src/Object/Post.php:333
|
||||
msgid "I might attend"
|
||||
msgstr "Ik ga misschien"
|
||||
|
||||
#: src/Object/Post.php:381
|
||||
#: src/Object/Post.php:380
|
||||
msgid "Ignore thread"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:382
|
||||
#: src/Object/Post.php:381
|
||||
msgid "Unignore thread"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:383
|
||||
#: src/Object/Post.php:382
|
||||
msgid "Toggle ignore status"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:393
|
||||
#: src/Object/Post.php:392
|
||||
msgid "Add star"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:394
|
||||
#: src/Object/Post.php:393
|
||||
msgid "Remove star"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:395
|
||||
#: src/Object/Post.php:394
|
||||
msgid "Toggle star status"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:406
|
||||
#: src/Object/Post.php:405
|
||||
msgid "Pin"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:407
|
||||
#: src/Object/Post.php:406
|
||||
msgid "Unpin"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:408
|
||||
#: src/Object/Post.php:407
|
||||
msgid "Toggle pin status"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:411
|
||||
#: src/Object/Post.php:410
|
||||
msgid "Pinned"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:416
|
||||
#: src/Object/Post.php:415
|
||||
msgid "Add tag"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:431
|
||||
#: src/Object/Post.php:430
|
||||
msgid "Quote share this"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:431
|
||||
#: src/Object/Post.php:430
|
||||
msgid "Quote Share"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:434
|
||||
#: src/Object/Post.php:433
|
||||
msgid "Reshare this"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:434
|
||||
#: src/Object/Post.php:433
|
||||
msgid "Reshare"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:435
|
||||
#: src/Object/Post.php:434
|
||||
msgid "Cancel your Reshare"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:435
|
||||
#: src/Object/Post.php:434
|
||||
msgid "Unshare"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:479
|
||||
#: src/Object/Post.php:478
|
||||
#, php-format
|
||||
msgid "%s (Received %s)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:485
|
||||
#: src/Object/Post.php:484
|
||||
msgid "Comment this item on your system"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:485
|
||||
#: src/Object/Post.php:484
|
||||
msgid "Remote comment"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:507
|
||||
#: src/Object/Post.php:508
|
||||
msgid "Share via ..."
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:507
|
||||
#: src/Object/Post.php:508
|
||||
msgid "Share via external services"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:514
|
||||
#: src/Object/Post.php:515
|
||||
msgid "Unknown parent"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:518
|
||||
#: src/Object/Post.php:519
|
||||
#, php-format
|
||||
msgid "in reply to %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:520
|
||||
#: src/Object/Post.php:521
|
||||
msgid "Parent is probably private or not federated."
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:544
|
||||
#: src/Object/Post.php:545
|
||||
msgid "to"
|
||||
msgstr "aan"
|
||||
|
||||
#: src/Object/Post.php:545
|
||||
#: src/Object/Post.php:546
|
||||
msgid "via"
|
||||
msgstr "via"
|
||||
|
||||
#: src/Object/Post.php:546
|
||||
#: src/Object/Post.php:547
|
||||
msgid "Wall-to-Wall"
|
||||
msgstr "wall-to-wall"
|
||||
|
||||
#: src/Object/Post.php:547
|
||||
#: src/Object/Post.php:548
|
||||
msgid "via Wall-To-Wall:"
|
||||
msgstr "via wall-to-wall"
|
||||
|
||||
#: src/Object/Post.php:600
|
||||
#: src/Object/Post.php:603
|
||||
#, php-format
|
||||
msgid "Reply to %s"
|
||||
msgstr "Antwoord aan %s"
|
||||
|
||||
#: src/Object/Post.php:603
|
||||
msgid "More"
|
||||
msgstr "Meer"
|
||||
|
||||
#: src/Object/Post.php:622
|
||||
#: src/Object/Post.php:625
|
||||
msgid "Notifier task is pending"
|
||||
msgstr "Meldingstaak is in behandeling"
|
||||
|
||||
#: src/Object/Post.php:623
|
||||
#: src/Object/Post.php:626
|
||||
msgid "Delivery to remote servers is pending"
|
||||
msgstr "Levering aan externe servers is in behandeling"
|
||||
|
||||
#: src/Object/Post.php:624
|
||||
#: src/Object/Post.php:627
|
||||
msgid "Delivery to remote servers is underway"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:625
|
||||
#: src/Object/Post.php:628
|
||||
msgid "Delivery to remote servers is mostly done"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:626
|
||||
#: src/Object/Post.php:629
|
||||
msgid "Delivery to remote servers is done"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:648
|
||||
#: src/Object/Post.php:651
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
msgstr[0] "%d reactie"
|
||||
msgstr[1] "%d reacties"
|
||||
|
||||
#: src/Object/Post.php:649
|
||||
#: src/Object/Post.php:652
|
||||
msgid "Show more"
|
||||
msgstr "Toon meer"
|
||||
|
||||
#: src/Object/Post.php:650
|
||||
#: src/Object/Post.php:653
|
||||
msgid "Show fewer"
|
||||
msgstr "Toon minder"
|
||||
|
||||
#: src/Object/Post.php:687
|
||||
#: src/Object/Post.php:690
|
||||
#, php-format
|
||||
msgid "Reshared by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:692
|
||||
#: src/Object/Post.php:695
|
||||
#, php-format
|
||||
msgid "Viewed by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:697
|
||||
#: src/Object/Post.php:700
|
||||
#, php-format
|
||||
msgid "Read by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:702
|
||||
#: src/Object/Post.php:705
|
||||
#, php-format
|
||||
msgid "Liked by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:707
|
||||
#: src/Object/Post.php:710
|
||||
#, php-format
|
||||
msgid "Disliked by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:712
|
||||
#: src/Object/Post.php:715
|
||||
#, php-format
|
||||
msgid "Attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:717
|
||||
#: src/Object/Post.php:720
|
||||
#, php-format
|
||||
msgid "Maybe attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:722
|
||||
#: src/Object/Post.php:725
|
||||
#, php-format
|
||||
msgid "Not attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:727
|
||||
#: src/Object/Post.php:730
|
||||
#, php-format
|
||||
msgid "Commented by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:732
|
||||
#: src/Object/Post.php:735
|
||||
#, php-format
|
||||
msgid "Reacted with %s by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:755
|
||||
#: src/Object/Post.php:758
|
||||
#, php-format
|
||||
msgid "Quote shared by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Protocol/ActivityPub/Receiver.php:558
|
||||
#: src/Protocol/ActivityPub/Receiver.php:565
|
||||
msgid "Chat"
|
||||
msgstr ""
|
||||
|
||||
#: src/Protocol/Delivery.php:531
|
||||
#: src/Protocol/Delivery.php:532
|
||||
msgid "(no subject)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -12629,16 +12665,20 @@ msgstr "Login mislukt."
|
|||
msgid "Login failed. Please check your credentials."
|
||||
msgstr "Aanmelden mislukt. Controleer uw inloggegevens."
|
||||
|
||||
#: src/Security/Authentication.php:374
|
||||
#: src/Security/Authentication.php:267
|
||||
msgid "Login failed because your account is blocked."
|
||||
msgstr ""
|
||||
|
||||
#: src/Security/Authentication.php:380
|
||||
#, php-format
|
||||
msgid "Welcome %s"
|
||||
msgstr "Welkom %s"
|
||||
|
||||
#: src/Security/Authentication.php:375
|
||||
#: src/Security/Authentication.php:381
|
||||
msgid "Please upload a profile photo."
|
||||
msgstr "Upload een profielfoto."
|
||||
|
||||
#: src/Security/OpenWebAuth.php:150
|
||||
#: src/Security/OpenWebAuth.php:149
|
||||
#, php-format
|
||||
msgid "OpenWebAuth: %1$s welcomes %2$s"
|
||||
msgstr "OpenWebAuth: %1$s verwelkomt %2$s"
|
||||
|
|
@ -12666,82 +12706,82 @@ msgstr ""
|
|||
msgid "thanks"
|
||||
msgstr ""
|
||||
|
||||
#: src/Util/Temporal.php:158
|
||||
#: src/Util/Temporal.php:159
|
||||
msgid "YYYY-MM-DD or MM-DD"
|
||||
msgstr ""
|
||||
|
||||
#: src/Util/Temporal.php:266
|
||||
#: src/Util/Temporal.php:270
|
||||
#, php-format
|
||||
msgid "Time zone: <strong>%s</strong> <a href=\"%s\">Change in Settings</a>"
|
||||
msgstr ""
|
||||
|
||||
#: src/Util/Temporal.php:306 src/Util/Temporal.php:315
|
||||
#: src/Util/Temporal.php:310 src/Util/Temporal.php:319
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
#: src/Util/Temporal.php:329
|
||||
#: src/Util/Temporal.php:333
|
||||
msgid "less than a second ago"
|
||||
msgstr ""
|
||||
|
||||
#: src/Util/Temporal.php:338
|
||||
#: src/Util/Temporal.php:342
|
||||
msgid "year"
|
||||
msgstr ""
|
||||
|
||||
#: src/Util/Temporal.php:338
|
||||
#: src/Util/Temporal.php:342
|
||||
msgid "years"
|
||||
msgstr ""
|
||||
|
||||
#: src/Util/Temporal.php:339
|
||||
#: src/Util/Temporal.php:343
|
||||
msgid "months"
|
||||
msgstr ""
|
||||
|
||||
#: src/Util/Temporal.php:340
|
||||
#: src/Util/Temporal.php:344
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#: src/Util/Temporal.php:341
|
||||
#: src/Util/Temporal.php:345
|
||||
msgid "days"
|
||||
msgstr ""
|
||||
|
||||
#: src/Util/Temporal.php:342
|
||||
#: src/Util/Temporal.php:346
|
||||
msgid "hour"
|
||||
msgstr ""
|
||||
|
||||
#: src/Util/Temporal.php:342
|
||||
#: src/Util/Temporal.php:346
|
||||
msgid "hours"
|
||||
msgstr ""
|
||||
|
||||
#: src/Util/Temporal.php:343
|
||||
#: src/Util/Temporal.php:347
|
||||
msgid "minute"
|
||||
msgstr ""
|
||||
|
||||
#: src/Util/Temporal.php:343
|
||||
#: src/Util/Temporal.php:347
|
||||
msgid "minutes"
|
||||
msgstr ""
|
||||
|
||||
#: src/Util/Temporal.php:344
|
||||
#: src/Util/Temporal.php:348
|
||||
msgid "second"
|
||||
msgstr ""
|
||||
|
||||
#: src/Util/Temporal.php:344
|
||||
#: src/Util/Temporal.php:348
|
||||
msgid "seconds"
|
||||
msgstr ""
|
||||
|
||||
#: src/Util/Temporal.php:353
|
||||
#: src/Util/Temporal.php:357
|
||||
#, php-format
|
||||
msgid "in %1$d %2$s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Util/Temporal.php:356
|
||||
#: src/Util/Temporal.php:359
|
||||
#, php-format
|
||||
msgid "%1$d %2$s ago"
|
||||
msgstr ""
|
||||
|
||||
#: src/Worker/PushSubscription.php:96
|
||||
#: src/Worker/PushSubscription.php:95
|
||||
msgid "Notification from Friendica"
|
||||
msgstr ""
|
||||
|
||||
#: src/Worker/PushSubscription.php:97
|
||||
#: src/Worker/PushSubscription.php:96
|
||||
msgid "Empty Post"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -12910,11 +12950,7 @@ msgstr ""
|
|||
msgid "Repeat image to fill the screen."
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/php/default.php:70 view/theme/frio/php/standard.php:28
|
||||
msgid "Skip to main content"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/php/default.php:141 view/theme/frio/php/standard.php:63
|
||||
#: view/theme/frio/php/default.php:143 view/theme/frio/php/standard.php:84
|
||||
msgid "Back to top"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -12930,11 +12966,11 @@ msgstr ""
|
|||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/theme.php:202
|
||||
#: view/theme/frio/theme.php:200
|
||||
msgid "Guest"
|
||||
msgstr ""
|
||||
|
||||
#: view/theme/frio/theme.php:205
|
||||
#: view/theme/frio/theme.php:203
|
||||
msgid "Visitor"
|
||||
msgstr ""
|
||||
|
||||
|
|
|
|||
|
|
@ -251,7 +251,6 @@ $a->strings['and %d other people'] = 'en %d anderen';
|
|||
$a->strings['Visible to <strong>everybody</strong>'] = 'Zichtbaar voor <strong>iedereen</strong>';
|
||||
$a->strings['Please enter a image/video/audio/webpage URL:'] = 'Geef een afbeelding/video/audio/webpagina in:';
|
||||
$a->strings['Tag term:'] = 'Label:';
|
||||
$a->strings['Save to Folder:'] = 'Bewaren in map:';
|
||||
$a->strings['Where are you right now?'] = 'Waar ben je nu?';
|
||||
$a->strings['Delete item(s)?'] = 'Item(s) verwijderen?';
|
||||
$a->strings['New Post'] = 'Nieuw bericht';
|
||||
|
|
@ -334,7 +333,7 @@ $a->strings['Block'] = 'Blokkeren';
|
|||
$a->strings['Ignore'] = 'Negeren';
|
||||
$a->strings['Connect/Follow'] = 'Verbind/Volg';
|
||||
$a->strings['Nothing new here'] = 'Niets nieuw hier';
|
||||
$a->strings['Go back'] = 'Ga terug';
|
||||
$a->strings['Home'] = 'Tijdlijn';
|
||||
$a->strings['Clear notifications'] = 'Notificaties verwijderen';
|
||||
$a->strings['Logout'] = 'Uitloggen';
|
||||
$a->strings['End this session'] = 'Deze sessie beëindigen';
|
||||
|
|
@ -347,7 +346,6 @@ $a->strings['Your photos'] = 'Jouw foto\'s';
|
|||
$a->strings['Calendar'] = 'Kalender';
|
||||
$a->strings['Personal notes'] = 'Persoonlijke nota\'s';
|
||||
$a->strings['Your personal notes'] = 'Je persoonlijke nota\'s';
|
||||
$a->strings['Home'] = 'Tijdlijn';
|
||||
$a->strings['Home Page'] = 'Jouw tijdlijn';
|
||||
$a->strings['Register'] = 'Registreer';
|
||||
$a->strings['Create an account'] = 'Maak een accoount';
|
||||
|
|
@ -958,6 +956,7 @@ $a->strings['Delete Item'] = 'Verwijder Item';
|
|||
$a->strings['Profile Details'] = 'Profieldetails';
|
||||
$a->strings['Only You Can See This'] = 'Alleen jij kunt dit zien';
|
||||
$a->strings['Tips for New Members'] = 'Tips voor nieuwe leden';
|
||||
$a->strings['More'] = 'Meer';
|
||||
$a->strings['People Search - %s'] = 'Mensen Zoeken - %s';
|
||||
$a->strings['No matches'] = 'Geen resultaten';
|
||||
$a->strings['Account'] = 'Account';
|
||||
|
|
@ -1400,7 +1399,6 @@ $a->strings['Note for the admin'] = 'Nota voor de beheerder';
|
|||
$a->strings['Leave a message for the admin, why you want to join this node'] = 'Laat een boodschap na voor de beheerder, waarom je bij deze node wil komen';
|
||||
$a->strings['Membership on this site is by invitation only.'] = 'Lidmaatschap van deze website is uitsluitend op uitnodiging.';
|
||||
$a->strings['Your invitation code: '] = 'Je uitnodigingscode:';
|
||||
$a->strings['Your Email Address: (Initial information will be send there, so this has to be an existing address.)'] = 'Je Email Adres: (Initiële informatie zal hier naartoe gezonden worden, dus dit moet een bestaand adres zijn.)';
|
||||
$a->strings['Please repeat your e-mail address:'] = 'Herhaal uw e-mailadres:';
|
||||
$a->strings['New Password:'] = 'Nieuw Wachtwoord:';
|
||||
$a->strings['Leave empty for an auto generated password.'] = 'Laat leeg voor een automatisch gegenereerd wachtwoord.';
|
||||
|
|
@ -1597,8 +1595,6 @@ $a->strings['Mobile Theme:'] = 'Mobiel thema:';
|
|||
$a->strings['Number of items to display per page:'] = 'Aantal items te tonen per pagina:';
|
||||
$a->strings['Maximum of 100 items'] = 'Maximum 100 items';
|
||||
$a->strings['Number of items to display per page when viewed from mobile device:'] = 'Aantal items per pagina als je een mobiel toestel gebruikt:';
|
||||
$a->strings['Update browser every xx seconds'] = 'Browser elke xx seconden verversen';
|
||||
$a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Minimum 10 seconden. Geef -1 op om te deactiveren.';
|
||||
$a->strings['Infinite scroll'] = 'Oneindig scrollen';
|
||||
$a->strings['Beginning of week:'] = 'Begin van de week:';
|
||||
$a->strings['Additional Features'] = 'Extra functies';
|
||||
|
|
@ -1731,6 +1727,7 @@ $a->strings['Export all'] = 'Alles exporteren';
|
|||
$a->strings['Export your account info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)'] = 'Exporteer uw gebruikersgegevens, contacten en al uw items als json. Kan een heel groot bestand zijn en kan veel tijd in beslag nemen. Gebruik dit om een volledige back-up van uw account te maken (foto\'s worden niet geëxporteerd)';
|
||||
$a->strings['Export Contacts to CSV'] = 'Export Contacten naar CSV';
|
||||
$a->strings['Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon.'] = 'Exporteer de lijst met de gebruikers die u volgt als CSV-bestand. Compatibel met b.v. Mastodont.';
|
||||
$a->strings['Go back'] = 'Ga terug';
|
||||
$a->strings['At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node\'s user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication.'] = 'Op het moment van de registratie, en om communicatie mogelijk te maken tussen de gebruikersaccount en zijn of haar contacten, moet de gebruiker een weergave naam opgeven, een gebruikersnaam (bijnaam) en een werkend email adres. De namen zullen toegankelijk zijn op de profiel pagina van het account voor elke bezoeker van de pagina, zelfs als andere profiel details niet getoond worden. Het email adres zal enkel gebruikt worden om de gebruiker notificaties te sturen over interacties, maar zal niet zichtbaar getoond worden. Het oplijsten van een account in de gids van de node van de gebruiker of in de globale gids is optioneel en kan beheerd worden in de gebruikersinstellingen, dit is niet nodig voor communicatie.';
|
||||
$a->strings['This data is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts.'] = 'Deze data is vereist voor communicatie en wordt doorgegeven aan de nodes van de communicatie partners en wordt daar opgeslagen. Gebruikers kunnen bijkomende privé data opgeven die mag doorgegeven worden aan de accounts van de communicatie partners.';
|
||||
$a->strings['Privacy Statement'] = 'Privacy Verklaring';
|
||||
|
|
@ -1852,7 +1849,6 @@ $a->strings['via'] = 'via';
|
|||
$a->strings['Wall-to-Wall'] = 'wall-to-wall';
|
||||
$a->strings['via Wall-To-Wall:'] = 'via wall-to-wall';
|
||||
$a->strings['Reply to %s'] = 'Antwoord aan %s';
|
||||
$a->strings['More'] = 'Meer';
|
||||
$a->strings['Notifier task is pending'] = 'Meldingstaak is in behandeling';
|
||||
$a->strings['Delivery to remote servers is pending'] = 'Levering aan externe servers is in behandeling';
|
||||
$a->strings['%d comment'] = [
|
||||
|
|
|
|||
|
|
@ -59,7 +59,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-05 22:44+0000\n"
|
||||
"POT-Creation-Date: 2025-02-09 20:13+0000\n"
|
||||
"PO-Revision-Date: 2011-05-05 10:19+0000\n"
|
||||
"Last-Translator: Piotr Strebski <strebski@gmail.com>, 2022\n"
|
||||
"Language-Team: Polish (http://app.transifex.com/Friendica/friendica/language/pl/)\n"
|
||||
|
|
@ -121,7 +121,7 @@ msgstr "Element nie znaleziony."
|
|||
#: 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/Display.php:188
|
||||
#: src/Module/Settings/Profile/Photo/Crop.php:148
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:96
|
||||
#: src/Module/Settings/RemoveMe.php:103 src/Module/Settings/UserExport.php:64
|
||||
|
|
@ -342,7 +342,7 @@ msgstr "Wstaw link"
|
|||
#: mod/message.php:188 mod/message.php:344 mod/photos.php:1252
|
||||
#: 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:607
|
||||
#: src/Object/Post.php:608
|
||||
msgid "Please wait"
|
||||
msgstr "Proszę czekać"
|
||||
|
||||
|
|
@ -365,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:1148 view/theme/duepuntozero/config.php:73
|
||||
#: src/Object/Post.php:1149 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"
|
||||
|
|
@ -653,25 +653,25 @@ msgstr "Obróć w przeciwnym kierunku do ruchu wskazówek zegara (w lewo)"
|
|||
|
||||
#: mod/photos.php:1090 mod/photos.php:1146 mod/photos.php:1226
|
||||
#: src/Module/Contact.php:599 src/Module/Item/Compose.php:184
|
||||
#: src/Object/Post.php:1145
|
||||
#: src/Object/Post.php:1146
|
||||
msgid "This is you"
|
||||
msgstr "To jesteś Ty"
|
||||
|
||||
#: mod/photos.php:1092 mod/photos.php:1148 mod/photos.php:1228
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:601
|
||||
#: src/Object/Post.php:1147
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:602
|
||||
#: src/Object/Post.php:1148
|
||||
msgid "Comment"
|
||||
msgstr "Komentarz"
|
||||
|
||||
#: mod/photos.php:1094 mod/photos.php:1150 mod/photos.php:1230
|
||||
#: 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:1161
|
||||
#: src/Object/Post.php:1162
|
||||
msgid "Preview"
|
||||
msgstr "Podgląd"
|
||||
|
||||
#: mod/photos.php:1095 src/Content/Conversation.php:357
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1149
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1150
|
||||
msgid "Loading..."
|
||||
msgstr "Wczytywanie..."
|
||||
|
||||
|
|
@ -713,112 +713,112 @@ msgstr "Mapa"
|
|||
msgid "Apologies but the website is unavailable at the moment."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:247
|
||||
#: src/App/Page.php:236
|
||||
msgid "Delete this item?"
|
||||
msgstr "Usunąć ten element?"
|
||||
|
||||
#: src/App/Page.php:248
|
||||
#: 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 "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:249
|
||||
#: 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:250
|
||||
#: src/App/Page.php:239
|
||||
msgid "Collapse this author's posts?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:251
|
||||
#: src/App/Page.php:240
|
||||
msgid "Ignore this author's server?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:252 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:254
|
||||
#: src/App/Page.php:243
|
||||
msgid "Like not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:255
|
||||
#: src/App/Page.php:244
|
||||
msgid "Dislike not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:256
|
||||
#: src/App/Page.php:245
|
||||
msgid "Sharing not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:257
|
||||
#: src/App/Page.php:246
|
||||
msgid "Attendance unsuccessful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:258
|
||||
#: src/App/Page.php:247
|
||||
msgid "Backend error"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:259
|
||||
#: src/App/Page.php:248
|
||||
msgid "Network error"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:262
|
||||
#: src/App/Page.php:251
|
||||
msgid "Drop files here to upload"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:263
|
||||
#: src/App/Page.php:252
|
||||
msgid "Your browser does not support drag and drop file uploads."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:264
|
||||
#: 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:265
|
||||
#: src/App/Page.php:254
|
||||
msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:266
|
||||
#: src/App/Page.php:255
|
||||
msgid "You can't upload files of this type."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:267
|
||||
#: src/App/Page.php:256
|
||||
msgid "Server responded with {{statusCode}} code."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:268
|
||||
#: src/App/Page.php:257
|
||||
msgid "Cancel upload"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:269
|
||||
#: src/App/Page.php:258
|
||||
msgid "Upload canceled."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:270
|
||||
#: src/App/Page.php:259
|
||||
msgid "Are you sure you want to cancel this upload?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:271
|
||||
#: src/App/Page.php:260
|
||||
msgid "Remove file"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:272
|
||||
#: src/App/Page.php:261
|
||||
msgid "You can't upload any more files."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:356
|
||||
#: src/App/Page.php:345
|
||||
msgid "toggle mobile"
|
||||
msgstr "przełącz na mobilny"
|
||||
|
||||
#: src/App/Page.php:367 src/Module/Admin/Logs/View.php:92
|
||||
#: src/App/Page.php:356 src/Module/Admin/Logs/View.php:92
|
||||
#: view/theme/frio/php/minimal.php:39 view/theme/frio/php/standard.php:138
|
||||
msgid "Close"
|
||||
msgstr "Zamknij"
|
||||
|
|
@ -1335,7 +1335,7 @@ msgid "Visible to <strong>everybody</strong>"
|
|||
msgstr "Widoczne dla <strong>wszystkich</strong>"
|
||||
|
||||
#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196
|
||||
#: src/Object/Post.php:1160
|
||||
#: src/Object/Post.php:1161
|
||||
msgid "Please enter a image/video/audio/webpage URL:"
|
||||
msgstr "Wprowadź adres URL obrazu/wideo/audio/strony:"
|
||||
|
||||
|
|
@ -1380,52 +1380,52 @@ msgid "attach file"
|
|||
msgstr "załącz plik"
|
||||
|
||||
#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1150
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1151
|
||||
msgid "Bold"
|
||||
msgstr "Pogrubienie"
|
||||
|
||||
#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1151
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1152
|
||||
msgid "Italic"
|
||||
msgstr "Kursywa"
|
||||
|
||||
#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1152
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1153
|
||||
msgid "Underline"
|
||||
msgstr "Podkreślenie"
|
||||
|
||||
#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1154
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1155
|
||||
msgid "Quote"
|
||||
msgstr "Cytat"
|
||||
|
||||
#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1155
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1156
|
||||
msgid "Add emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191
|
||||
#: src/Object/Post.php:1153
|
||||
#: src/Object/Post.php:1154
|
||||
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:1156
|
||||
#: src/Module/Post/Edit.php:167 src/Object/Post.php:1157
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193
|
||||
#: src/Object/Post.php:1157
|
||||
#: src/Object/Post.php:1158
|
||||
msgid "Image"
|
||||
msgstr "Obraz"
|
||||
|
||||
#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1158
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1159
|
||||
msgid "Link"
|
||||
msgstr "Odnośnik"
|
||||
|
||||
#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1159
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1160
|
||||
msgid "Link or Media"
|
||||
msgstr "Odnośnik lub Media"
|
||||
|
||||
|
|
@ -1599,7 +1599,7 @@ msgstr "Kategorie:"
|
|||
msgid "Filed under:"
|
||||
msgstr "Umieszczono w:"
|
||||
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:558
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:559
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "%s od %s"
|
||||
|
|
@ -1859,7 +1859,7 @@ msgstr ""
|
|||
|
||||
#: src/Content/Feature.php:131 src/Content/Widget.php:610
|
||||
#: src/Module/Admin/Site.php:463 src/Module/BaseSettings.php:113
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:323
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:313
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2034,7 +2034,7 @@ msgstr ""
|
|||
msgid "Languages"
|
||||
msgstr "Języki"
|
||||
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:585
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:586
|
||||
msgid "Search Text"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2127,7 +2127,7 @@ msgstr "Twoje wpisy z mediami"
|
|||
#: src/Content/Nav.php:229 src/Content/Nav.php:289
|
||||
#: 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:225
|
||||
#: src/Module/Settings/Display.php:314 view/theme/frio/theme.php:225
|
||||
#: view/theme/frio/theme.php:229
|
||||
msgid "Calendar"
|
||||
msgstr "Kalendarz"
|
||||
|
|
@ -3023,37 +3023,37 @@ msgid "%s (%s)"
|
|||
msgstr ""
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:416
|
||||
#: src/Module/Settings/Display.php:292
|
||||
#: src/Module/Settings/Display.php:282
|
||||
msgid "Monday"
|
||||
msgstr "Poniedziałek"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:417
|
||||
#: src/Module/Settings/Display.php:293
|
||||
#: src/Module/Settings/Display.php:283
|
||||
msgid "Tuesday"
|
||||
msgstr "Wtorek"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:418
|
||||
#: src/Module/Settings/Display.php:294
|
||||
#: src/Module/Settings/Display.php:284
|
||||
msgid "Wednesday"
|
||||
msgstr "Środa"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:419
|
||||
#: src/Module/Settings/Display.php:295
|
||||
#: src/Module/Settings/Display.php:285
|
||||
msgid "Thursday"
|
||||
msgstr "Czwartek"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:420
|
||||
#: src/Module/Settings/Display.php:296
|
||||
#: src/Module/Settings/Display.php:286
|
||||
msgid "Friday"
|
||||
msgstr "Piątek"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:421
|
||||
#: src/Module/Settings/Display.php:297
|
||||
#: src/Module/Settings/Display.php:287
|
||||
msgid "Saturday"
|
||||
msgstr "Sobota"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:415
|
||||
#: src/Module/Settings/Display.php:291
|
||||
#: src/Module/Settings/Display.php:281
|
||||
msgid "Sunday"
|
||||
msgstr "Niedziela"
|
||||
|
||||
|
|
@ -3506,17 +3506,17 @@ msgid "today"
|
|||
msgstr "dzisiaj"
|
||||
|
||||
#: src/Model/Event.php:449 src/Module/Calendar/Show.php:117
|
||||
#: src/Module/Settings/Display.php:302 src/Util/Temporal.php:343
|
||||
#: src/Module/Settings/Display.php:292 src/Util/Temporal.php:343
|
||||
msgid "month"
|
||||
msgstr "miesiąc"
|
||||
|
||||
#: src/Model/Event.php:450 src/Module/Calendar/Show.php:118
|
||||
#: src/Module/Settings/Display.php:303 src/Util/Temporal.php:344
|
||||
#: src/Module/Settings/Display.php:293 src/Util/Temporal.php:344
|
||||
msgid "week"
|
||||
msgstr "tydzień"
|
||||
|
||||
#: src/Model/Event.php:451 src/Module/Calendar/Show.php:119
|
||||
#: src/Module/Settings/Display.php:304 src/Util/Temporal.php:345
|
||||
#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:345
|
||||
msgid "day"
|
||||
msgstr "dzień"
|
||||
|
||||
|
|
@ -4101,7 +4101,7 @@ msgid "Disable"
|
|||
msgstr "Wyłącz"
|
||||
|
||||
#: src/Module/Admin/Addons/Details.php:75
|
||||
#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351
|
||||
#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:341
|
||||
msgid "Enable"
|
||||
msgstr "Zezwól"
|
||||
|
||||
|
|
@ -4152,7 +4152,7 @@ msgstr "Instalacja dodatku %s nie powiodła się."
|
|||
#: 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:307
|
||||
#: src/Module/Settings/Features.php:61
|
||||
msgid "Save Settings"
|
||||
msgstr "Zapisz ustawienia"
|
||||
|
|
@ -4547,11 +4547,11 @@ msgstr ""
|
|||
msgid "%s is no valid input for maximum image size"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:212
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:206
|
||||
msgid "No special theme for mobile devices"
|
||||
msgstr "Brak specialnego motywu dla urządzeń mobilnych"
|
||||
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:222
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:216
|
||||
#, php-format
|
||||
msgid "%s - (Experimental)"
|
||||
msgstr "%s- (Eksperymentalne)"
|
||||
|
|
@ -5628,7 +5628,7 @@ msgid ""
|
|||
msgstr "Mogą to być „wszystkie” lub „znaczniki”. „Wszystkie” oznacza, że każdy publiczny wpis powinien zostać odebrany. „Znaczniki” oznaczają, że powinny być odbierane tylko wpisy z wybranymi znacznikami."
|
||||
|
||||
#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:315
|
||||
#: src/Module/Settings/Display.php:259
|
||||
#: src/Module/Settings/Display.php:249
|
||||
#: src/Module/Settings/TwoFactor/Index.php:132
|
||||
msgid "Disabled"
|
||||
msgstr "Wyłączony"
|
||||
|
|
@ -6267,7 +6267,7 @@ msgstr "Wskazówki dla nowych użytkowników"
|
|||
#: src/Module/Contact.php:537 src/Module/Conversation/Channel.php:98
|
||||
#: src/Module/Conversation/Community.php:91
|
||||
#: src/Module/Conversation/Network.php:295
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:605
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:606
|
||||
msgid "More"
|
||||
msgstr "Więcej"
|
||||
|
||||
|
|
@ -6458,7 +6458,7 @@ msgstr "Widok"
|
|||
msgid "Create New Event"
|
||||
msgstr "Stwórz nowe wydarzenie"
|
||||
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:305
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:295
|
||||
msgid "list"
|
||||
msgstr "lista"
|
||||
|
||||
|
|
@ -10392,12 +10392,12 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
|
||||
#: src/Module/Settings/Display.php:349
|
||||
#: src/Module/Settings/Display.php:339
|
||||
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:340
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:123
|
||||
msgid "Description"
|
||||
msgstr "Opis"
|
||||
|
|
@ -10833,213 +10833,215 @@ msgstr "Potencjalni delegaci"
|
|||
msgid "No entries."
|
||||
msgstr "Brak wpisów."
|
||||
|
||||
#: src/Module/Settings/Display.php:180
|
||||
#: src/Module/Settings/Display.php:174
|
||||
msgid "The theme you chose isn't available."
|
||||
msgstr "Wybrany motyw jest niedostępny."
|
||||
|
||||
#: src/Module/Settings/Display.php:220
|
||||
#: src/Module/Settings/Display.php:214
|
||||
#, php-format
|
||||
msgid "%s - (Unsupported)"
|
||||
msgstr "%s - (Nieobsługiwane)"
|
||||
|
||||
#: src/Module/Settings/Display.php:260
|
||||
#: src/Module/Settings/Display.php:250
|
||||
msgid "Color/Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:261 view/theme/frio/php/scheme.php:95
|
||||
#: src/Module/Settings/Display.php:251 view/theme/frio/php/scheme.php:95
|
||||
msgid "Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:262
|
||||
#: src/Module/Settings/Display.php:252
|
||||
msgid "Color/White"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:263
|
||||
#: src/Module/Settings/Display.php:253
|
||||
msgid "White"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:268
|
||||
#: src/Module/Settings/Display.php:258
|
||||
msgid "No preview"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:269
|
||||
#: src/Module/Settings/Display.php:259
|
||||
msgid "No image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:270
|
||||
#: src/Module/Settings/Display.php:260
|
||||
msgid "Small Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:271
|
||||
#: src/Module/Settings/Display.php:261
|
||||
msgid "Large Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:316
|
||||
#: src/Module/Settings/Display.php:306
|
||||
msgid "Display Settings"
|
||||
msgstr "Ustawienia wyglądu"
|
||||
|
||||
#: src/Module/Settings/Display.php:318
|
||||
#: src/Module/Settings/Display.php:308
|
||||
msgid "General Theme Settings"
|
||||
msgstr "Ogólne ustawienia motywu"
|
||||
|
||||
#: src/Module/Settings/Display.php:319
|
||||
#: src/Module/Settings/Display.php:309
|
||||
msgid "Custom Theme Settings"
|
||||
msgstr "Niestandardowe ustawienia motywów"
|
||||
|
||||
#: src/Module/Settings/Display.php:320
|
||||
#: src/Module/Settings/Display.php:310
|
||||
msgid "Content Settings"
|
||||
msgstr "Ustawienia zawartości"
|
||||
|
||||
#: src/Module/Settings/Display.php:321 view/theme/duepuntozero/config.php:74
|
||||
#: src/Module/Settings/Display.php:311 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 "Ustawienia motywu"
|
||||
|
||||
#: src/Module/Settings/Display.php:322
|
||||
#: src/Module/Settings/Display.php:312
|
||||
msgid "Timelines"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:329
|
||||
#: src/Module/Settings/Display.php:319
|
||||
msgid "Display Theme:"
|
||||
msgstr "Wyświetl motyw:"
|
||||
|
||||
#: src/Module/Settings/Display.php:330
|
||||
#: src/Module/Settings/Display.php:320
|
||||
msgid "Mobile Theme:"
|
||||
msgstr "Motyw dla urządzeń mobilnych:"
|
||||
|
||||
#: src/Module/Settings/Display.php:333
|
||||
#: src/Module/Settings/Display.php:323
|
||||
msgid "Number of items to display per page:"
|
||||
msgstr "Liczba elementów do wyświetlenia na stronie:"
|
||||
|
||||
#: src/Module/Settings/Display.php:333 src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:323 src/Module/Settings/Display.php:324
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr "Maksymalnie 100 elementów"
|
||||
|
||||
#: src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:324
|
||||
msgid "Number of items to display per page when viewed from mobile device:"
|
||||
msgstr "Liczba elementów do wyświetlenia na stronie podczas przeglądania z urządzenia mobilnego:"
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr "Odświeżaj stronę co xx sekund"
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid "Regularly update the page content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Minimum of 10 seconds. Enter -1 to disable it."
|
||||
msgstr "Minimum 10 sekund. Wprowadź -1, aby go wyłączyć."
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid ""
|
||||
"When enabled, new content on network, community and channels are added on "
|
||||
"top."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "Display emoticons"
|
||||
msgstr "Wyświetl emotikony"
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "When enabled, emoticons are replaced with matching symbols."
|
||||
msgstr "Po włączeniu emotikony są zastępowane pasującymi symbolami."
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Infinite scroll"
|
||||
msgstr "Nieskończone przewijanie"
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Automatic fetch new items when reaching the page end."
|
||||
msgstr "Automatyczne pobieranie nowych elementów po osiągnięciu końca strony."
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable Smart Threading"
|
||||
msgstr "Włącz inteligentne wątkowanie"
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable the automatic suppression of extraneous thread indentation."
|
||||
msgstr "Włącz automatyczne tłumienie obcych wcięć wątku."
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid "Display the Dislike feature"
|
||||
msgstr "Wyświetl funkcję \"Nie lubię\""
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid ""
|
||||
"Display the Dislike button and dislike reactions on posts and comments."
|
||||
msgstr "Wyświetlaj przycisk \"Nie lubię\" i reakcje na wpisy i komentarze."
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
msgid "Display the resharer"
|
||||
msgstr "Wyświetl udostępniającego"
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
msgid "Display the first resharer as icon and text on a reshared item."
|
||||
msgstr "Wyświetlaj pierwszego udostępniającego jako ikonę i tekst na elemencie udostępnianym dalej."
|
||||
|
||||
#: src/Module/Settings/Display.php:341
|
||||
#: src/Module/Settings/Display.php:331
|
||||
msgid "Stay local"
|
||||
msgstr "Pozostań lokalny"
|
||||
|
||||
#: src/Module/Settings/Display.php:341
|
||||
#: src/Module/Settings/Display.php:331
|
||||
msgid "Don't go to a remote system when following a contact link."
|
||||
msgstr "Nie przechodź do zdalnego systemu podczas korzystania z łącza kontaktowego."
|
||||
|
||||
#: src/Module/Settings/Display.php:342
|
||||
#: src/Module/Settings/Display.php:332
|
||||
msgid "Show the post deletion checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:342
|
||||
#: src/Module/Settings/Display.php:332
|
||||
msgid "Display the checkbox for the post deletion on the network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "DIsplay the event list"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "Display the birthday reminder and event list on the network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
msgid "Link preview mode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
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:335
|
||||
msgid "Hide pictures with empty alternative text"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:345
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Don't display pictures that are missing the alternative text."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Hide custom emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Don't display custom emojis."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Platform icons style"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Style of the platform icons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:352
|
||||
#: src/Module/Settings/Display.php:342
|
||||
msgid "Bookmark"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:354
|
||||
#: src/Module/Settings/Display.php:344
|
||||
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:346
|
||||
msgid "Channel languages:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:356
|
||||
#: src/Module/Settings/Display.php:346
|
||||
msgid ""
|
||||
"Select all the languages you want to see in your channels. \"Unspecified\" "
|
||||
"describes all posts for which no language information was detected (e.g. "
|
||||
|
|
@ -11048,11 +11050,11 @@ msgid ""
|
|||
"list."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:358
|
||||
#: src/Module/Settings/Display.php:348
|
||||
msgid "Beginning of week:"
|
||||
msgstr "Początek tygodnia:"
|
||||
|
||||
#: src/Module/Settings/Display.php:359
|
||||
#: src/Module/Settings/Display.php:349
|
||||
msgid "Default calendar view:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -12702,32 +12704,32 @@ msgstr "Tablica-w-Tablicę"
|
|||
msgid "via Wall-To-Wall:"
|
||||
msgstr "przez Tablica-w-Tablicę:"
|
||||
|
||||
#: src/Object/Post.php:602
|
||||
#: src/Object/Post.php:603
|
||||
#, php-format
|
||||
msgid "Reply to %s"
|
||||
msgstr "Odpowiedź %s"
|
||||
|
||||
#: src/Object/Post.php:624
|
||||
#: src/Object/Post.php:625
|
||||
msgid "Notifier task is pending"
|
||||
msgstr "Zadanie Notifier jest w toku"
|
||||
|
||||
#: src/Object/Post.php:625
|
||||
#: src/Object/Post.php:626
|
||||
msgid "Delivery to remote servers is pending"
|
||||
msgstr "Trwa przesyłanie do serwerów zdalnych"
|
||||
|
||||
#: src/Object/Post.php:626
|
||||
#: src/Object/Post.php:627
|
||||
msgid "Delivery to remote servers is underway"
|
||||
msgstr "Trwa dostawa do serwerów zdalnych"
|
||||
|
||||
#: src/Object/Post.php:627
|
||||
#: src/Object/Post.php:628
|
||||
msgid "Delivery to remote servers is mostly done"
|
||||
msgstr "Dostawa do zdalnych serwerów jest w większości wykonywana"
|
||||
|
||||
#: src/Object/Post.php:628
|
||||
#: src/Object/Post.php:629
|
||||
msgid "Delivery to remote servers is done"
|
||||
msgstr "Trwa dostarczanie do zdalnych serwerów"
|
||||
|
||||
#: src/Object/Post.php:650
|
||||
#: src/Object/Post.php:651
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
|
|
@ -12736,65 +12738,65 @@ msgstr[1] "%d komentarze"
|
|||
msgstr[2] "%d komentarzy"
|
||||
msgstr[3] "%d komentarzy"
|
||||
|
||||
#: src/Object/Post.php:651
|
||||
#: src/Object/Post.php:652
|
||||
msgid "Show more"
|
||||
msgstr "Pokaż więcej"
|
||||
|
||||
#: src/Object/Post.php:652
|
||||
#: src/Object/Post.php:653
|
||||
msgid "Show fewer"
|
||||
msgstr "Pokaż mniej"
|
||||
|
||||
#: src/Object/Post.php:689
|
||||
#: src/Object/Post.php:690
|
||||
#, php-format
|
||||
msgid "Reshared by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:694
|
||||
#: src/Object/Post.php:695
|
||||
#, php-format
|
||||
msgid "Viewed by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:699
|
||||
#: src/Object/Post.php:700
|
||||
#, php-format
|
||||
msgid "Read by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:704
|
||||
#: src/Object/Post.php:705
|
||||
#, php-format
|
||||
msgid "Liked by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:709
|
||||
#: src/Object/Post.php:710
|
||||
#, php-format
|
||||
msgid "Disliked by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:714
|
||||
#: src/Object/Post.php:715
|
||||
#, php-format
|
||||
msgid "Attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:719
|
||||
#: src/Object/Post.php:720
|
||||
#, php-format
|
||||
msgid "Maybe attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:724
|
||||
#: src/Object/Post.php:725
|
||||
#, php-format
|
||||
msgid "Not attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:729
|
||||
#: src/Object/Post.php:730
|
||||
#, php-format
|
||||
msgid "Commented by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:734
|
||||
#: src/Object/Post.php:735
|
||||
#, php-format
|
||||
msgid "Reacted with %s by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:757
|
||||
#: src/Object/Post.php:758
|
||||
#, php-format
|
||||
msgid "Quote shared by: %s"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -2073,8 +2073,6 @@ $a->strings['Mobile Theme:'] = 'Motyw dla urządzeń mobilnych:';
|
|||
$a->strings['Number of items to display per page:'] = 'Liczba elementów do wyświetlenia na stronie:';
|
||||
$a->strings['Maximum of 100 items'] = 'Maksymalnie 100 elementów';
|
||||
$a->strings['Number of items to display per page when viewed from mobile device:'] = 'Liczba elementów do wyświetlenia na stronie podczas przeglądania z urządzenia mobilnego:';
|
||||
$a->strings['Update browser every xx seconds'] = 'Odświeżaj stronę co xx sekund';
|
||||
$a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Minimum 10 sekund. Wprowadź -1, aby go wyłączyć.';
|
||||
$a->strings['Display emoticons'] = 'Wyświetl emotikony';
|
||||
$a->strings['When enabled, emoticons are replaced with matching symbols.'] = 'Po włączeniu emotikony są zastępowane pasującymi symbolami.';
|
||||
$a->strings['Infinite scroll'] = 'Nieskończone przewijanie';
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-05 22:44+0000\n"
|
||||
"POT-Creation-Date: 2025-02-09 20:13+0000\n"
|
||||
"PO-Revision-Date: 2011-05-05 10:19+0000\n"
|
||||
"Last-Translator: Fitik Old Account, 2025\n"
|
||||
"Language-Team: Russian (http://app.transifex.com/Friendica/friendica/language/ru/)\n"
|
||||
|
|
@ -88,7 +88,7 @@ msgstr "Пункт не найден."
|
|||
#: 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/Display.php:188
|
||||
#: src/Module/Settings/Profile/Photo/Crop.php:148
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:96
|
||||
#: src/Module/Settings/RemoveMe.php:103 src/Module/Settings/UserExport.php:64
|
||||
|
|
@ -309,7 +309,7 @@ msgstr "Вставить веб-ссылку"
|
|||
#: mod/message.php:188 mod/message.php:344 mod/photos.php:1252
|
||||
#: 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:607
|
||||
#: src/Object/Post.php:608
|
||||
msgid "Please wait"
|
||||
msgstr "Пожалуйста, подождите"
|
||||
|
||||
|
|
@ -332,7 +332,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:1148 view/theme/duepuntozero/config.php:73
|
||||
#: src/Object/Post.php:1149 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"
|
||||
|
|
@ -620,25 +620,25 @@ msgstr "Поворот против часовой стрелки (налево)
|
|||
|
||||
#: mod/photos.php:1090 mod/photos.php:1146 mod/photos.php:1226
|
||||
#: src/Module/Contact.php:599 src/Module/Item/Compose.php:184
|
||||
#: src/Object/Post.php:1145
|
||||
#: src/Object/Post.php:1146
|
||||
msgid "This is you"
|
||||
msgstr "Это вы"
|
||||
|
||||
#: mod/photos.php:1092 mod/photos.php:1148 mod/photos.php:1228
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:601
|
||||
#: src/Object/Post.php:1147
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:602
|
||||
#: src/Object/Post.php:1148
|
||||
msgid "Comment"
|
||||
msgstr "Комментировать"
|
||||
|
||||
#: mod/photos.php:1094 mod/photos.php:1150 mod/photos.php:1230
|
||||
#: 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:1161
|
||||
#: src/Object/Post.php:1162
|
||||
msgid "Preview"
|
||||
msgstr "Просмотр"
|
||||
|
||||
#: mod/photos.php:1095 src/Content/Conversation.php:357
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1149
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1150
|
||||
msgid "Loading..."
|
||||
msgstr "Загрузка..."
|
||||
|
||||
|
|
@ -680,112 +680,112 @@ msgstr "Карта"
|
|||
msgid "Apologies but the website is unavailable at the moment."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:247
|
||||
#: src/App/Page.php:236
|
||||
msgid "Delete this item?"
|
||||
msgstr "Удалить этот элемент?"
|
||||
|
||||
#: src/App/Page.php:248
|
||||
#: 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:249
|
||||
#: 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:250
|
||||
#: src/App/Page.php:239
|
||||
msgid "Collapse this author's posts?"
|
||||
msgstr "Сворачивать записи этого автора?"
|
||||
|
||||
#: src/App/Page.php:251
|
||||
#: src/App/Page.php:240
|
||||
msgid "Ignore this author's server?"
|
||||
msgstr "Игнорировать сервер этого автора?"
|
||||
|
||||
#: src/App/Page.php:252 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:254
|
||||
#: src/App/Page.php:243
|
||||
msgid "Like not successful"
|
||||
msgstr "Ошибка отправки \"мне нравится\""
|
||||
|
||||
#: src/App/Page.php:255
|
||||
#: src/App/Page.php:244
|
||||
msgid "Dislike not successful"
|
||||
msgstr "Ошибка оправки \"мне не нравится\""
|
||||
|
||||
#: src/App/Page.php:256
|
||||
#: src/App/Page.php:245
|
||||
msgid "Sharing not successful"
|
||||
msgstr "Ошибка при попытке поделиться"
|
||||
|
||||
#: src/App/Page.php:257
|
||||
#: src/App/Page.php:246
|
||||
msgid "Attendance unsuccessful"
|
||||
msgstr "Ошибка обновления календаря"
|
||||
|
||||
#: src/App/Page.php:258
|
||||
#: src/App/Page.php:247
|
||||
msgid "Backend error"
|
||||
msgstr "Ошибка бэкенда"
|
||||
|
||||
#: src/App/Page.php:259
|
||||
#: src/App/Page.php:248
|
||||
msgid "Network error"
|
||||
msgstr "Ошибка сети"
|
||||
|
||||
#: src/App/Page.php:262
|
||||
#: src/App/Page.php:251
|
||||
msgid "Drop files here to upload"
|
||||
msgstr "Перетащите сюда файлы для загрузки"
|
||||
|
||||
#: src/App/Page.php:263
|
||||
#: src/App/Page.php:252
|
||||
msgid "Your browser does not support drag and drop file uploads."
|
||||
msgstr "Ваш браузер не поддерживает перетаскивание файлов для загрузки"
|
||||
|
||||
#: src/App/Page.php:264
|
||||
#: 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:265
|
||||
#: src/App/Page.php:254
|
||||
msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB."
|
||||
msgstr "Файл слишком большой ({{filesize}}MiB). Ограничение: {{maxFilesize}}MiB."
|
||||
|
||||
#: src/App/Page.php:266
|
||||
#: src/App/Page.php:255
|
||||
msgid "You can't upload files of this type."
|
||||
msgstr "Нельзя загрузить этот тип файла."
|
||||
|
||||
#: src/App/Page.php:267
|
||||
#: src/App/Page.php:256
|
||||
msgid "Server responded with {{statusCode}} code."
|
||||
msgstr "Сервер ответил с кодом {{statusCode}}."
|
||||
|
||||
#: src/App/Page.php:268
|
||||
#: src/App/Page.php:257
|
||||
msgid "Cancel upload"
|
||||
msgstr "Отменить загрузку"
|
||||
|
||||
#: src/App/Page.php:269
|
||||
#: src/App/Page.php:258
|
||||
msgid "Upload canceled."
|
||||
msgstr "Загрузка отменена"
|
||||
|
||||
#: src/App/Page.php:270
|
||||
#: src/App/Page.php:259
|
||||
msgid "Are you sure you want to cancel this upload?"
|
||||
msgstr "Вы уверены, что хотите отменить загрузку?"
|
||||
|
||||
#: src/App/Page.php:271
|
||||
#: src/App/Page.php:260
|
||||
msgid "Remove file"
|
||||
msgstr "Убрать файл"
|
||||
|
||||
#: src/App/Page.php:272
|
||||
#: src/App/Page.php:261
|
||||
msgid "You can't upload any more files."
|
||||
msgstr "Вы не можете загрузить больше файлов."
|
||||
|
||||
#: src/App/Page.php:356
|
||||
#: src/App/Page.php:345
|
||||
msgid "toggle mobile"
|
||||
msgstr "мобильная версия"
|
||||
|
||||
#: src/App/Page.php:367 src/Module/Admin/Logs/View.php:92
|
||||
#: src/App/Page.php:356 src/Module/Admin/Logs/View.php:92
|
||||
#: view/theme/frio/php/minimal.php:39 view/theme/frio/php/standard.php:138
|
||||
msgid "Close"
|
||||
msgstr "Закрыть"
|
||||
|
|
@ -1302,7 +1302,7 @@ msgid "Visible to <strong>everybody</strong>"
|
|||
msgstr "Видимое <strong>всем</strong>"
|
||||
|
||||
#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196
|
||||
#: src/Object/Post.php:1160
|
||||
#: src/Object/Post.php:1161
|
||||
msgid "Please enter a image/video/audio/webpage URL:"
|
||||
msgstr "Пожалуйста, введите адрес картинки/видео/аудио/странички:"
|
||||
|
||||
|
|
@ -1347,52 +1347,52 @@ 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:1150
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1151
|
||||
msgid "Bold"
|
||||
msgstr "Жирный"
|
||||
|
||||
#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1151
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1152
|
||||
msgid "Italic"
|
||||
msgstr "Kурсивный"
|
||||
|
||||
#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1152
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1153
|
||||
msgid "Underline"
|
||||
msgstr "Подчеркнутый"
|
||||
|
||||
#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1154
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1155
|
||||
msgid "Quote"
|
||||
msgstr "Цитата"
|
||||
|
||||
#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1155
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1156
|
||||
msgid "Add emojis"
|
||||
msgstr "Добавить эмодзи"
|
||||
|
||||
#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191
|
||||
#: src/Object/Post.php:1153
|
||||
#: src/Object/Post.php:1154
|
||||
msgid "Content Warning"
|
||||
msgstr "Предупреждение о контенте (CW)"
|
||||
|
||||
#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:192
|
||||
#: src/Module/Post/Edit.php:167 src/Object/Post.php:1156
|
||||
#: src/Module/Post/Edit.php:167 src/Object/Post.php:1157
|
||||
msgid "Code"
|
||||
msgstr "Код"
|
||||
|
||||
#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193
|
||||
#: src/Object/Post.php:1157
|
||||
#: src/Object/Post.php:1158
|
||||
msgid "Image"
|
||||
msgstr "Изображение / Фото"
|
||||
|
||||
#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1158
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1159
|
||||
msgid "Link"
|
||||
msgstr "Ссылка"
|
||||
|
||||
#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1159
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1160
|
||||
msgid "Link or Media"
|
||||
msgstr "Ссылка или медиа"
|
||||
|
||||
|
|
@ -1566,7 +1566,7 @@ msgstr "Категории:"
|
|||
msgid "Filed under:"
|
||||
msgstr "В рубрике:"
|
||||
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:558
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:559
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "%s из %s"
|
||||
|
|
@ -1826,7 +1826,7 @@ msgstr "Показывать записи от выбранных типов к
|
|||
|
||||
#: src/Content/Feature.php:131 src/Content/Widget.php:610
|
||||
#: src/Module/Admin/Site.php:463 src/Module/BaseSettings.php:113
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:323
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:313
|
||||
msgid "Channels"
|
||||
msgstr "Каналы"
|
||||
|
||||
|
|
@ -2001,7 +2001,7 @@ msgstr "Игнорировать сервер %s "
|
|||
msgid "Languages"
|
||||
msgstr "Языки"
|
||||
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:585
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:586
|
||||
msgid "Search Text"
|
||||
msgstr "Текст поиска"
|
||||
|
||||
|
|
@ -2094,7 +2094,7 @@ msgstr "Ваши записи с фото и видео"
|
|||
#: src/Content/Nav.php:229 src/Content/Nav.php:289
|
||||
#: 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:225
|
||||
#: src/Module/Settings/Display.php:314 view/theme/frio/theme.php:225
|
||||
#: view/theme/frio/theme.php:229
|
||||
msgid "Calendar"
|
||||
msgstr "Календарь"
|
||||
|
|
@ -2990,37 +2990,37 @@ msgid "%s (%s)"
|
|||
msgstr ""
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:416
|
||||
#: src/Module/Settings/Display.php:292
|
||||
#: src/Module/Settings/Display.php:282
|
||||
msgid "Monday"
|
||||
msgstr "Понедельник"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:417
|
||||
#: src/Module/Settings/Display.php:293
|
||||
#: src/Module/Settings/Display.php:283
|
||||
msgid "Tuesday"
|
||||
msgstr "Вторник"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:418
|
||||
#: src/Module/Settings/Display.php:294
|
||||
#: src/Module/Settings/Display.php:284
|
||||
msgid "Wednesday"
|
||||
msgstr "Среда"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:419
|
||||
#: src/Module/Settings/Display.php:295
|
||||
#: src/Module/Settings/Display.php:285
|
||||
msgid "Thursday"
|
||||
msgstr "Четверг"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:420
|
||||
#: src/Module/Settings/Display.php:296
|
||||
#: src/Module/Settings/Display.php:286
|
||||
msgid "Friday"
|
||||
msgstr "Пятница"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:421
|
||||
#: src/Module/Settings/Display.php:297
|
||||
#: src/Module/Settings/Display.php:287
|
||||
msgid "Saturday"
|
||||
msgstr "Суббота"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:415
|
||||
#: src/Module/Settings/Display.php:291
|
||||
#: src/Module/Settings/Display.php:281
|
||||
msgid "Sunday"
|
||||
msgstr "Воскресенье"
|
||||
|
||||
|
|
@ -3473,17 +3473,17 @@ msgid "today"
|
|||
msgstr "сегодня"
|
||||
|
||||
#: src/Model/Event.php:449 src/Module/Calendar/Show.php:117
|
||||
#: src/Module/Settings/Display.php:302 src/Util/Temporal.php:343
|
||||
#: src/Module/Settings/Display.php:292 src/Util/Temporal.php:343
|
||||
msgid "month"
|
||||
msgstr "мес."
|
||||
|
||||
#: src/Model/Event.php:450 src/Module/Calendar/Show.php:118
|
||||
#: src/Module/Settings/Display.php:303 src/Util/Temporal.php:344
|
||||
#: src/Module/Settings/Display.php:293 src/Util/Temporal.php:344
|
||||
msgid "week"
|
||||
msgstr "неделя"
|
||||
|
||||
#: src/Model/Event.php:451 src/Module/Calendar/Show.php:119
|
||||
#: src/Module/Settings/Display.php:304 src/Util/Temporal.php:345
|
||||
#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:345
|
||||
msgid "day"
|
||||
msgstr "день"
|
||||
|
||||
|
|
@ -4068,7 +4068,7 @@ 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/Themes/Details.php:41 src/Module/Settings/Display.php:341
|
||||
msgid "Enable"
|
||||
msgstr "Включить"
|
||||
|
||||
|
|
@ -4119,7 +4119,7 @@ msgstr "Не удалось установить дополнение %s."
|
|||
#: 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:307
|
||||
#: src/Module/Settings/Features.php:61
|
||||
msgid "Save Settings"
|
||||
msgstr "Сохранить настройки"
|
||||
|
|
@ -4514,11 +4514,11 @@ msgstr ""
|
|||
msgid "%s is no valid input for maximum image size"
|
||||
msgstr "%s недопустимое значение для максимального размера изображений"
|
||||
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:212
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:206
|
||||
msgid "No special theme for mobile devices"
|
||||
msgstr "Нет специальной темы для мобильных устройств"
|
||||
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:222
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:216
|
||||
#, php-format
|
||||
msgid "%s - (Experimental)"
|
||||
msgstr "%s - (экспериментально)"
|
||||
|
|
@ -5595,7 +5595,7 @@ msgid ""
|
|||
msgstr "Допустимые значения \"all\" или \"tags\". \"all\" означает, что любые публичные записи будут получены. \"tags\" включает приём публичных записей с выбранными тэгами."
|
||||
|
||||
#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:315
|
||||
#: src/Module/Settings/Display.php:259
|
||||
#: src/Module/Settings/Display.php:249
|
||||
#: src/Module/Settings/TwoFactor/Index.php:132
|
||||
msgid "Disabled"
|
||||
msgstr "Отключено"
|
||||
|
|
@ -6234,7 +6234,7 @@ msgstr "Советы для новых участников"
|
|||
#: src/Module/Contact.php:537 src/Module/Conversation/Channel.php:98
|
||||
#: src/Module/Conversation/Community.php:91
|
||||
#: src/Module/Conversation/Network.php:295
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:605
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:606
|
||||
msgid "More"
|
||||
msgstr "Ещё"
|
||||
|
||||
|
|
@ -6425,7 +6425,7 @@ msgstr "Смотреть"
|
|||
msgid "Create New Event"
|
||||
msgstr "Создать новое мероприятие"
|
||||
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:305
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:295
|
||||
msgid "list"
|
||||
msgstr "список"
|
||||
|
||||
|
|
@ -10359,12 +10359,12 @@ msgid ""
|
|||
msgstr "Если включено, содержимое канала будет публиковаться. Это будет работать только для публичных записей, поступивших по ActivityPub из публичной ленты или кругов пользователя."
|
||||
|
||||
#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
|
||||
#: src/Module/Settings/Display.php:349
|
||||
#: src/Module/Settings/Display.php:339
|
||||
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:340
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:123
|
||||
msgid "Description"
|
||||
msgstr "Описание"
|
||||
|
|
@ -10800,213 +10800,215 @@ msgstr "Возможные доверенные лица"
|
|||
msgid "No entries."
|
||||
msgstr "Нет записей."
|
||||
|
||||
#: src/Module/Settings/Display.php:180
|
||||
#: src/Module/Settings/Display.php:174
|
||||
msgid "The theme you chose isn't available."
|
||||
msgstr "Выбранная вами тема недоступна."
|
||||
|
||||
#: src/Module/Settings/Display.php:220
|
||||
#: src/Module/Settings/Display.php:214
|
||||
#, php-format
|
||||
msgid "%s - (Unsupported)"
|
||||
msgstr "%s - (Не поддерживается)"
|
||||
|
||||
#: src/Module/Settings/Display.php:260
|
||||
#: src/Module/Settings/Display.php:250
|
||||
msgid "Color/Black"
|
||||
msgstr "Цвет/Черная"
|
||||
|
||||
#: src/Module/Settings/Display.php:261 view/theme/frio/php/scheme.php:95
|
||||
#: src/Module/Settings/Display.php:251 view/theme/frio/php/scheme.php:95
|
||||
msgid "Black"
|
||||
msgstr "Чёрная"
|
||||
|
||||
#: src/Module/Settings/Display.php:262
|
||||
#: src/Module/Settings/Display.php:252
|
||||
msgid "Color/White"
|
||||
msgstr "Цвет/Светлая"
|
||||
|
||||
#: src/Module/Settings/Display.php:263
|
||||
#: src/Module/Settings/Display.php:253
|
||||
msgid "White"
|
||||
msgstr "Светлая"
|
||||
|
||||
#: src/Module/Settings/Display.php:268
|
||||
#: src/Module/Settings/Display.php:258
|
||||
msgid "No preview"
|
||||
msgstr "Нет предпросмотра"
|
||||
|
||||
#: src/Module/Settings/Display.php:269
|
||||
#: src/Module/Settings/Display.php:259
|
||||
msgid "No image"
|
||||
msgstr "Без изображения"
|
||||
|
||||
#: src/Module/Settings/Display.php:270
|
||||
#: src/Module/Settings/Display.php:260
|
||||
msgid "Small Image"
|
||||
msgstr "Маленькое изображение"
|
||||
|
||||
#: src/Module/Settings/Display.php:271
|
||||
#: src/Module/Settings/Display.php:261
|
||||
msgid "Large Image"
|
||||
msgstr "Большое изображение"
|
||||
|
||||
#: src/Module/Settings/Display.php:316
|
||||
#: src/Module/Settings/Display.php:306
|
||||
msgid "Display Settings"
|
||||
msgstr "Внешний вид"
|
||||
|
||||
#: src/Module/Settings/Display.php:318
|
||||
#: src/Module/Settings/Display.php:308
|
||||
msgid "General Theme Settings"
|
||||
msgstr "Общие настройки тем"
|
||||
|
||||
#: src/Module/Settings/Display.php:319
|
||||
#: src/Module/Settings/Display.php:309
|
||||
msgid "Custom Theme Settings"
|
||||
msgstr "Личные настройки тем"
|
||||
|
||||
#: src/Module/Settings/Display.php:320
|
||||
#: src/Module/Settings/Display.php:310
|
||||
msgid "Content Settings"
|
||||
msgstr "Настройки контента"
|
||||
|
||||
#: src/Module/Settings/Display.php:321 view/theme/duepuntozero/config.php:74
|
||||
#: src/Module/Settings/Display.php:311 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:312
|
||||
msgid "Timelines"
|
||||
msgstr "Ленты"
|
||||
|
||||
#: src/Module/Settings/Display.php:329
|
||||
#: src/Module/Settings/Display.php:319
|
||||
msgid "Display Theme:"
|
||||
msgstr "Показать тему:"
|
||||
|
||||
#: src/Module/Settings/Display.php:330
|
||||
#: src/Module/Settings/Display.php:320
|
||||
msgid "Mobile Theme:"
|
||||
msgstr "Мобильная тема:"
|
||||
|
||||
#: src/Module/Settings/Display.php:333
|
||||
#: src/Module/Settings/Display.php:323
|
||||
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:323 src/Module/Settings/Display.php:324
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr "Максимум 100 элементов"
|
||||
|
||||
#: src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:324
|
||||
msgid "Number of items to display per page when viewed from mobile device:"
|
||||
msgstr "Количество элементов на странице, когда просмотр осуществляется с мобильных устройств:"
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr "Обновление браузера каждые хх секунд"
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid "Regularly update the page content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Minimum of 10 seconds. Enter -1 to disable it."
|
||||
msgstr "Минимум 10 секунд. Введите -1 для отключения."
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid ""
|
||||
"When enabled, new content on network, community and channels are added on "
|
||||
"top."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "Display emoticons"
|
||||
msgstr "Показывать смайлики"
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "When enabled, emoticons are replaced with matching symbols."
|
||||
msgstr "Когда включено, соответствующие символы отображаются как смайлики."
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Infinite scroll"
|
||||
msgstr "Бесконечная прокрутка"
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Automatic fetch new items when reaching the page end."
|
||||
msgstr "Автоматически подгружать новые записи, когда вы оказываетесь в конце страницы."
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable Smart Threading"
|
||||
msgstr "Включить умное ветвление обсуждений"
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable the automatic suppression of extraneous thread indentation."
|
||||
msgstr "Включить автоматическое удаление излишних отступов в ветках обсуждений."
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid "Display the Dislike feature"
|
||||
msgstr "Показывать \"Не нравится\""
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid ""
|
||||
"Display the Dislike button and dislike reactions on posts and comments."
|
||||
msgstr "Показывать кнопку \"Не нравится\" и соответствующие реакции на записях и комментариях."
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
msgid "Display the resharer"
|
||||
msgstr "Показывать поделившегося"
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
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:331
|
||||
msgid "Stay local"
|
||||
msgstr "Оставаться локально"
|
||||
|
||||
#: src/Module/Settings/Display.php:341
|
||||
#: src/Module/Settings/Display.php:331
|
||||
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:332
|
||||
msgid "Show the post deletion checkbox"
|
||||
msgstr "Показывать отметку для удаления записи"
|
||||
|
||||
#: src/Module/Settings/Display.php:342
|
||||
#: src/Module/Settings/Display.php:332
|
||||
msgid "Display the checkbox for the post deletion on the network page."
|
||||
msgstr "Показывать галочку отметки записей для удаления на странице ленты"
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "DIsplay the event list"
|
||||
msgstr "Показывать события"
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "Display the birthday reminder and event list on the network page."
|
||||
msgstr "Показывать напоминания о днях рождения и список событий на странице ленты."
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
msgid "Link preview mode"
|
||||
msgstr "Предпросмотр ссылок"
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
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:335
|
||||
msgid "Hide pictures with empty alternative text"
|
||||
msgstr "Скрывать картинки без альт-текста"
|
||||
|
||||
#: src/Module/Settings/Display.php:345
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Don't display pictures that are missing the alternative text."
|
||||
msgstr "Не отображать картинки, у которых отсутствует альтернативный текст-описание."
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Hide custom emojis"
|
||||
msgstr "Скрывать нестандартные смайлики"
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Don't display custom emojis."
|
||||
msgstr "Не показывать нестандартные смайлики"
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Platform icons style"
|
||||
msgstr "Тема иконок платформ"
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Style of the platform icons"
|
||||
msgstr "Стиль отображения иконок платформ"
|
||||
|
||||
#: src/Module/Settings/Display.php:352
|
||||
#: src/Module/Settings/Display.php:342
|
||||
msgid "Bookmark"
|
||||
msgstr "Главное меню"
|
||||
|
||||
#: src/Module/Settings/Display.php:354
|
||||
#: src/Module/Settings/Display.php:344
|
||||
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:346
|
||||
msgid "Channel languages:"
|
||||
msgstr "Языки каналов:"
|
||||
|
||||
#: src/Module/Settings/Display.php:356
|
||||
#: src/Module/Settings/Display.php:346
|
||||
msgid ""
|
||||
"Select all the languages you want to see in your channels. \"Unspecified\" "
|
||||
"describes all posts for which no language information was detected (e.g. "
|
||||
|
|
@ -11015,11 +11017,11 @@ msgid ""
|
|||
"list."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:358
|
||||
#: src/Module/Settings/Display.php:348
|
||||
msgid "Beginning of week:"
|
||||
msgstr "Начало недели:"
|
||||
|
||||
#: src/Module/Settings/Display.php:359
|
||||
#: src/Module/Settings/Display.php:349
|
||||
msgid "Default calendar view:"
|
||||
msgstr "Вид календаря по-умолчанию:"
|
||||
|
||||
|
|
@ -12669,32 +12671,32 @@ msgstr "Стена-на-Стену"
|
|||
msgid "via Wall-To-Wall:"
|
||||
msgstr "через Стена-на-Стену:"
|
||||
|
||||
#: src/Object/Post.php:602
|
||||
#: src/Object/Post.php:603
|
||||
#, php-format
|
||||
msgid "Reply to %s"
|
||||
msgstr "Ответ %s"
|
||||
|
||||
#: src/Object/Post.php:624
|
||||
#: src/Object/Post.php:625
|
||||
msgid "Notifier task is pending"
|
||||
msgstr "Постановка в очередь"
|
||||
|
||||
#: src/Object/Post.php:625
|
||||
#: src/Object/Post.php:626
|
||||
msgid "Delivery to remote servers is pending"
|
||||
msgstr "Ожидается отправка адресатам"
|
||||
|
||||
#: src/Object/Post.php:626
|
||||
#: src/Object/Post.php:627
|
||||
msgid "Delivery to remote servers is underway"
|
||||
msgstr "Отправка адресатам в процессе"
|
||||
|
||||
#: src/Object/Post.php:627
|
||||
#: src/Object/Post.php:628
|
||||
msgid "Delivery to remote servers is mostly done"
|
||||
msgstr "Отправка адресатам почти завершилась"
|
||||
|
||||
#: src/Object/Post.php:628
|
||||
#: src/Object/Post.php:629
|
||||
msgid "Delivery to remote servers is done"
|
||||
msgstr "Отправка адресатам завершена"
|
||||
|
||||
#: src/Object/Post.php:650
|
||||
#: src/Object/Post.php:651
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
|
|
@ -12703,65 +12705,65 @@ msgstr[1] "%d комментариев"
|
|||
msgstr[2] "%d комментариев"
|
||||
msgstr[3] "%d комментариев"
|
||||
|
||||
#: src/Object/Post.php:651
|
||||
#: src/Object/Post.php:652
|
||||
msgid "Show more"
|
||||
msgstr "Показать больше"
|
||||
|
||||
#: src/Object/Post.php:652
|
||||
#: src/Object/Post.php:653
|
||||
msgid "Show fewer"
|
||||
msgstr "Показать меньше"
|
||||
|
||||
#: src/Object/Post.php:689
|
||||
#: src/Object/Post.php:690
|
||||
#, php-format
|
||||
msgid "Reshared by: %s"
|
||||
msgstr "Репост от: %s"
|
||||
|
||||
#: src/Object/Post.php:694
|
||||
#: src/Object/Post.php:695
|
||||
#, php-format
|
||||
msgid "Viewed by: %s"
|
||||
msgstr "Просмотрено: %s"
|
||||
|
||||
#: src/Object/Post.php:699
|
||||
#: src/Object/Post.php:700
|
||||
#, php-format
|
||||
msgid "Read by: %s"
|
||||
msgstr "Прочитано: %s"
|
||||
|
||||
#: src/Object/Post.php:704
|
||||
#: src/Object/Post.php:705
|
||||
#, php-format
|
||||
msgid "Liked by: %s"
|
||||
msgstr "Понравилось: %s"
|
||||
|
||||
#: src/Object/Post.php:709
|
||||
#: src/Object/Post.php:710
|
||||
#, php-format
|
||||
msgid "Disliked by: %s"
|
||||
msgstr "Не понравилось: %s"
|
||||
|
||||
#: src/Object/Post.php:714
|
||||
#: src/Object/Post.php:715
|
||||
#, php-format
|
||||
msgid "Attended by: %s"
|
||||
msgstr "Присутствуют: %s"
|
||||
|
||||
#: src/Object/Post.php:719
|
||||
#: src/Object/Post.php:720
|
||||
#, php-format
|
||||
msgid "Maybe attended by: %s"
|
||||
msgstr "Под вопросом: %s"
|
||||
|
||||
#: src/Object/Post.php:724
|
||||
#: src/Object/Post.php:725
|
||||
#, php-format
|
||||
msgid "Not attended by: %s"
|
||||
msgstr "Не присутствуют: %s"
|
||||
|
||||
#: src/Object/Post.php:729
|
||||
#: src/Object/Post.php:730
|
||||
#, php-format
|
||||
msgid "Commented by: %s"
|
||||
msgstr "Прокомментировали: %s"
|
||||
|
||||
#: src/Object/Post.php:734
|
||||
#: src/Object/Post.php:735
|
||||
#, php-format
|
||||
msgid "Reacted with %s by: %s"
|
||||
msgstr "Отреагировали как %s : %s"
|
||||
|
||||
#: src/Object/Post.php:757
|
||||
#: src/Object/Post.php:758
|
||||
#, php-format
|
||||
msgid "Quote shared by: %s"
|
||||
msgstr "Процитировано: %s"
|
||||
|
|
|
|||
|
|
@ -2467,8 +2467,6 @@ $a->strings['Mobile Theme:'] = 'Мобильная тема:';
|
|||
$a->strings['Number of items to display per page:'] = 'Количество элементов, отображаемых на одной странице:';
|
||||
$a->strings['Maximum of 100 items'] = 'Максимум 100 элементов';
|
||||
$a->strings['Number of items to display per page when viewed from mobile device:'] = 'Количество элементов на странице, когда просмотр осуществляется с мобильных устройств:';
|
||||
$a->strings['Update browser every xx seconds'] = 'Обновление браузера каждые хх секунд';
|
||||
$a->strings['Minimum of 10 seconds. Enter -1 to disable it.'] = 'Минимум 10 секунд. Введите -1 для отключения.';
|
||||
$a->strings['Display emoticons'] = 'Показывать смайлики';
|
||||
$a->strings['When enabled, emoticons are replaced with matching symbols.'] = 'Когда включено, соответствующие символы отображаются как смайлики.';
|
||||
$a->strings['Infinite scroll'] = 'Бесконечная прокрутка';
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-05 22:44+0000\n"
|
||||
"POT-Creation-Date: 2025-02-09 20:13+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"
|
||||
|
|
@ -76,7 +76,7 @@ msgstr "Hittar inte."
|
|||
#: 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/Display.php:188
|
||||
#: src/Module/Settings/Profile/Photo/Crop.php:148
|
||||
#: src/Module/Settings/Profile/Photo/Index.php:96
|
||||
#: src/Module/Settings/RemoveMe.php:103 src/Module/Settings/UserExport.php:64
|
||||
|
|
@ -297,7 +297,7 @@ msgstr "Infoga länk"
|
|||
#: mod/message.php:188 mod/message.php:344 mod/photos.php:1252
|
||||
#: 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:607
|
||||
#: src/Object/Post.php:608
|
||||
msgid "Please wait"
|
||||
msgstr "Var god vänta"
|
||||
|
||||
|
|
@ -320,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:1148 view/theme/duepuntozero/config.php:73
|
||||
#: src/Object/Post.php:1149 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"
|
||||
|
|
@ -606,25 +606,25 @@ msgstr "Rotera Moturs (vänster)"
|
|||
|
||||
#: mod/photos.php:1090 mod/photos.php:1146 mod/photos.php:1226
|
||||
#: src/Module/Contact.php:599 src/Module/Item/Compose.php:184
|
||||
#: src/Object/Post.php:1145
|
||||
#: src/Object/Post.php:1146
|
||||
msgid "This is you"
|
||||
msgstr "Det här är du"
|
||||
|
||||
#: mod/photos.php:1092 mod/photos.php:1148 mod/photos.php:1228
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:601
|
||||
#: src/Object/Post.php:1147
|
||||
#: src/Module/Moderation/Reports.php:105 src/Object/Post.php:602
|
||||
#: src/Object/Post.php:1148
|
||||
msgid "Comment"
|
||||
msgstr "Kommentera"
|
||||
|
||||
#: mod/photos.php:1094 mod/photos.php:1150 mod/photos.php:1230
|
||||
#: 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:1161
|
||||
#: src/Object/Post.php:1162
|
||||
msgid "Preview"
|
||||
msgstr "Förhandsgranskning"
|
||||
|
||||
#: mod/photos.php:1095 src/Content/Conversation.php:357
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1149
|
||||
#: src/Module/Post/Edit.php:121 src/Object/Post.php:1150
|
||||
msgid "Loading..."
|
||||
msgstr "Laddar..."
|
||||
|
||||
|
|
@ -666,112 +666,112 @@ msgstr "Karta"
|
|||
msgid "Apologies but the website is unavailable at the moment."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:247
|
||||
#: src/App/Page.php:236
|
||||
msgid "Delete this item?"
|
||||
msgstr "Ta bort?"
|
||||
|
||||
#: src/App/Page.php:248
|
||||
#: 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:249
|
||||
#: 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:250
|
||||
#: src/App/Page.php:239
|
||||
msgid "Collapse this author's posts?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:251
|
||||
#: src/App/Page.php:240
|
||||
msgid "Ignore this author's server?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:252 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:254
|
||||
#: src/App/Page.php:243
|
||||
msgid "Like not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:255
|
||||
#: src/App/Page.php:244
|
||||
msgid "Dislike not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:256
|
||||
#: src/App/Page.php:245
|
||||
msgid "Sharing not successful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:257
|
||||
#: src/App/Page.php:246
|
||||
msgid "Attendance unsuccessful"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:258
|
||||
#: src/App/Page.php:247
|
||||
msgid "Backend error"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:259
|
||||
#: src/App/Page.php:248
|
||||
msgid "Network error"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:262
|
||||
#: src/App/Page.php:251
|
||||
msgid "Drop files here to upload"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:263
|
||||
#: src/App/Page.php:252
|
||||
msgid "Your browser does not support drag and drop file uploads."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:264
|
||||
#: 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:265
|
||||
#: src/App/Page.php:254
|
||||
msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:266
|
||||
#: src/App/Page.php:255
|
||||
msgid "You can't upload files of this type."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:267
|
||||
#: src/App/Page.php:256
|
||||
msgid "Server responded with {{statusCode}} code."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:268
|
||||
#: src/App/Page.php:257
|
||||
msgid "Cancel upload"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:269
|
||||
#: src/App/Page.php:258
|
||||
msgid "Upload canceled."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:270
|
||||
#: src/App/Page.php:259
|
||||
msgid "Are you sure you want to cancel this upload?"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:271
|
||||
#: src/App/Page.php:260
|
||||
msgid "Remove file"
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:272
|
||||
#: src/App/Page.php:261
|
||||
msgid "You can't upload any more files."
|
||||
msgstr ""
|
||||
|
||||
#: src/App/Page.php:356
|
||||
#: src/App/Page.php:345
|
||||
msgid "toggle mobile"
|
||||
msgstr "växla mobil"
|
||||
|
||||
#: src/App/Page.php:367 src/Module/Admin/Logs/View.php:92
|
||||
#: src/App/Page.php:356 src/Module/Admin/Logs/View.php:92
|
||||
#: view/theme/frio/php/minimal.php:39 view/theme/frio/php/standard.php:138
|
||||
msgid "Close"
|
||||
msgstr "Stäng"
|
||||
|
|
@ -1264,7 +1264,7 @@ msgid "Visible to <strong>everybody</strong>"
|
|||
msgstr "Synlig för <strong>alla</strong>"
|
||||
|
||||
#: src/Content/Conversation.php:327 src/Module/Item/Compose.php:196
|
||||
#: src/Object/Post.php:1160
|
||||
#: src/Object/Post.php:1161
|
||||
msgid "Please enter a image/video/audio/webpage URL:"
|
||||
msgstr "Vänligen fyll i URL till en bild/video/ljudklipp/hemsida:"
|
||||
|
||||
|
|
@ -1309,52 +1309,52 @@ msgid "attach file"
|
|||
msgstr "bifoga fil"
|
||||
|
||||
#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:186
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1150
|
||||
#: src/Module/Post/Edit.php:162 src/Object/Post.php:1151
|
||||
msgid "Bold"
|
||||
msgstr "Fet"
|
||||
|
||||
#: src/Content/Conversation.php:363 src/Module/Item/Compose.php:187
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1151
|
||||
#: src/Module/Post/Edit.php:163 src/Object/Post.php:1152
|
||||
msgid "Italic"
|
||||
msgstr "Kursiv"
|
||||
|
||||
#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:188
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1152
|
||||
#: src/Module/Post/Edit.php:164 src/Object/Post.php:1153
|
||||
msgid "Underline"
|
||||
msgstr "Understruken"
|
||||
|
||||
#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:189
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1154
|
||||
#: src/Module/Post/Edit.php:165 src/Object/Post.php:1155
|
||||
msgid "Quote"
|
||||
msgstr "Citat"
|
||||
|
||||
#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:190
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1155
|
||||
#: src/Module/Post/Edit.php:166 src/Object/Post.php:1156
|
||||
msgid "Add emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:191
|
||||
#: src/Object/Post.php:1153
|
||||
#: src/Object/Post.php:1154
|
||||
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:1156
|
||||
#: src/Module/Post/Edit.php:167 src/Object/Post.php:1157
|
||||
msgid "Code"
|
||||
msgstr "Källkod"
|
||||
|
||||
#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:193
|
||||
#: src/Object/Post.php:1157
|
||||
#: src/Object/Post.php:1158
|
||||
msgid "Image"
|
||||
msgstr "Bild"
|
||||
|
||||
#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:194
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1158
|
||||
#: src/Module/Post/Edit.php:168 src/Object/Post.php:1159
|
||||
msgid "Link"
|
||||
msgstr "Länk"
|
||||
|
||||
#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:195
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1159
|
||||
#: src/Module/Post/Edit.php:169 src/Object/Post.php:1160
|
||||
msgid "Link or Media"
|
||||
msgstr "Länk eller media"
|
||||
|
||||
|
|
@ -1528,7 +1528,7 @@ msgstr "Kategorier:"
|
|||
msgid "Filed under:"
|
||||
msgstr "Sparad under:"
|
||||
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:558
|
||||
#: src/Content/Conversation.php:1547 src/Object/Post.php:559
|
||||
#, php-format
|
||||
msgid "%s from %s"
|
||||
msgstr "%s från %s"
|
||||
|
|
@ -1788,7 +1788,7 @@ msgstr ""
|
|||
|
||||
#: src/Content/Feature.php:131 src/Content/Widget.php:610
|
||||
#: src/Module/Admin/Site.php:463 src/Module/BaseSettings.php:113
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:323
|
||||
#: src/Module/Settings/Channels.php:211 src/Module/Settings/Display.php:313
|
||||
msgid "Channels"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -1963,7 +1963,7 @@ msgstr ""
|
|||
msgid "Languages"
|
||||
msgstr "Språk"
|
||||
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:585
|
||||
#: src/Content/Item.php:435 src/Object/Post.php:586
|
||||
msgid "Search Text"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -2056,7 +2056,7 @@ msgstr ""
|
|||
#: src/Content/Nav.php:229 src/Content/Nav.php:289
|
||||
#: 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:225
|
||||
#: src/Module/Settings/Display.php:314 view/theme/frio/theme.php:225
|
||||
#: view/theme/frio/theme.php:229
|
||||
msgid "Calendar"
|
||||
msgstr ""
|
||||
|
|
@ -2944,37 +2944,37 @@ msgid "%s (%s)"
|
|||
msgstr ""
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:416
|
||||
#: src/Module/Settings/Display.php:292
|
||||
#: src/Module/Settings/Display.php:282
|
||||
msgid "Monday"
|
||||
msgstr "måndag"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:417
|
||||
#: src/Module/Settings/Display.php:293
|
||||
#: src/Module/Settings/Display.php:283
|
||||
msgid "Tuesday"
|
||||
msgstr "tisdag"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:418
|
||||
#: src/Module/Settings/Display.php:294
|
||||
#: src/Module/Settings/Display.php:284
|
||||
msgid "Wednesday"
|
||||
msgstr "onsdag"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:419
|
||||
#: src/Module/Settings/Display.php:295
|
||||
#: src/Module/Settings/Display.php:285
|
||||
msgid "Thursday"
|
||||
msgstr "torsdag"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:420
|
||||
#: src/Module/Settings/Display.php:296
|
||||
#: src/Module/Settings/Display.php:286
|
||||
msgid "Friday"
|
||||
msgstr "fredag"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:421
|
||||
#: src/Module/Settings/Display.php:297
|
||||
#: src/Module/Settings/Display.php:287
|
||||
msgid "Saturday"
|
||||
msgstr "lördag"
|
||||
|
||||
#: src/Core/L10n.php:481 src/Model/Event.php:415
|
||||
#: src/Module/Settings/Display.php:291
|
||||
#: src/Module/Settings/Display.php:281
|
||||
msgid "Sunday"
|
||||
msgstr "söndag"
|
||||
|
||||
|
|
@ -3427,17 +3427,17 @@ msgid "today"
|
|||
msgstr "idag"
|
||||
|
||||
#: src/Model/Event.php:449 src/Module/Calendar/Show.php:117
|
||||
#: src/Module/Settings/Display.php:302 src/Util/Temporal.php:343
|
||||
#: src/Module/Settings/Display.php:292 src/Util/Temporal.php:343
|
||||
msgid "month"
|
||||
msgstr "månad"
|
||||
|
||||
#: src/Model/Event.php:450 src/Module/Calendar/Show.php:118
|
||||
#: src/Module/Settings/Display.php:303 src/Util/Temporal.php:344
|
||||
#: src/Module/Settings/Display.php:293 src/Util/Temporal.php:344
|
||||
msgid "week"
|
||||
msgstr "vecka"
|
||||
|
||||
#: src/Model/Event.php:451 src/Module/Calendar/Show.php:119
|
||||
#: src/Module/Settings/Display.php:304 src/Util/Temporal.php:345
|
||||
#: src/Module/Settings/Display.php:294 src/Util/Temporal.php:345
|
||||
msgid "day"
|
||||
msgstr "dag"
|
||||
|
||||
|
|
@ -4010,7 +4010,7 @@ msgid "Disable"
|
|||
msgstr "Inaktivera"
|
||||
|
||||
#: src/Module/Admin/Addons/Details.php:75
|
||||
#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:351
|
||||
#: src/Module/Admin/Themes/Details.php:41 src/Module/Settings/Display.php:341
|
||||
msgid "Enable"
|
||||
msgstr "Aktivera"
|
||||
|
||||
|
|
@ -4061,7 +4061,7 @@ msgstr ""
|
|||
#: 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:307
|
||||
#: src/Module/Settings/Features.php:61
|
||||
msgid "Save Settings"
|
||||
msgstr "Spara inställningar"
|
||||
|
|
@ -4440,11 +4440,11 @@ msgstr ""
|
|||
msgid "%s is no valid input for maximum image size"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:212
|
||||
#: src/Module/Admin/Site.php:361 src/Module/Settings/Display.php:206
|
||||
msgid "No special theme for mobile devices"
|
||||
msgstr "Inget speciellt tema för mobil-enheter"
|
||||
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:222
|
||||
#: src/Module/Admin/Site.php:378 src/Module/Settings/Display.php:216
|
||||
#, php-format
|
||||
msgid "%s - (Experimental)"
|
||||
msgstr "%s - (Experimentell)"
|
||||
|
|
@ -5521,7 +5521,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: src/Module/Admin/Site.php:584 src/Module/Contact/Profile.php:315
|
||||
#: src/Module/Settings/Display.php:259
|
||||
#: src/Module/Settings/Display.php:249
|
||||
#: src/Module/Settings/TwoFactor/Index.php:132
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
|
@ -6154,7 +6154,7 @@ msgstr "Tips för nya medlemmar"
|
|||
#: src/Module/Contact.php:537 src/Module/Conversation/Channel.php:98
|
||||
#: src/Module/Conversation/Community.php:91
|
||||
#: src/Module/Conversation/Network.php:295
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:605
|
||||
#: src/Module/Moderation/BaseUsers.php:102 src/Object/Post.php:606
|
||||
msgid "More"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -6343,7 +6343,7 @@ msgstr "Visa"
|
|||
msgid "Create New Event"
|
||||
msgstr "Skapa nytt evenemang"
|
||||
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:305
|
||||
#: src/Module/Calendar/Show.php:120 src/Module/Settings/Display.php:295
|
||||
msgid "list"
|
||||
msgstr "lista"
|
||||
|
||||
|
|
@ -10233,12 +10233,12 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Channels.php:176 src/Module/Settings/Channels.php:197
|
||||
#: src/Module/Settings/Display.php:349
|
||||
#: src/Module/Settings/Display.php:339
|
||||
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:340
|
||||
#: src/Module/Settings/TwoFactor/AppSpecific.php:123
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
|
@ -10674,213 +10674,215 @@ msgstr "Potentiella delegater"
|
|||
msgid "No entries."
|
||||
msgstr "Inga poster."
|
||||
|
||||
#: src/Module/Settings/Display.php:180
|
||||
#: src/Module/Settings/Display.php:174
|
||||
msgid "The theme you chose isn't available."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:220
|
||||
#: src/Module/Settings/Display.php:214
|
||||
#, php-format
|
||||
msgid "%s - (Unsupported)"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:260
|
||||
#: src/Module/Settings/Display.php:250
|
||||
msgid "Color/Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:261 view/theme/frio/php/scheme.php:95
|
||||
#: src/Module/Settings/Display.php:251 view/theme/frio/php/scheme.php:95
|
||||
msgid "Black"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:262
|
||||
#: src/Module/Settings/Display.php:252
|
||||
msgid "Color/White"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:263
|
||||
#: src/Module/Settings/Display.php:253
|
||||
msgid "White"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:268
|
||||
#: src/Module/Settings/Display.php:258
|
||||
msgid "No preview"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:269
|
||||
#: src/Module/Settings/Display.php:259
|
||||
msgid "No image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:270
|
||||
#: src/Module/Settings/Display.php:260
|
||||
msgid "Small Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:271
|
||||
#: src/Module/Settings/Display.php:261
|
||||
msgid "Large Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:316
|
||||
#: src/Module/Settings/Display.php:306
|
||||
msgid "Display Settings"
|
||||
msgstr "Skärm-inställningar"
|
||||
|
||||
#: src/Module/Settings/Display.php:318
|
||||
#: src/Module/Settings/Display.php:308
|
||||
msgid "General Theme Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:319
|
||||
#: src/Module/Settings/Display.php:309
|
||||
msgid "Custom Theme Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:320
|
||||
#: src/Module/Settings/Display.php:310
|
||||
msgid "Content Settings"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:321 view/theme/duepuntozero/config.php:74
|
||||
#: src/Module/Settings/Display.php:311 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 "Tema-inställningar"
|
||||
|
||||
#: src/Module/Settings/Display.php:322
|
||||
#: src/Module/Settings/Display.php:312
|
||||
msgid "Timelines"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:329
|
||||
#: src/Module/Settings/Display.php:319
|
||||
msgid "Display Theme:"
|
||||
msgstr "Tema/utseende:"
|
||||
|
||||
#: src/Module/Settings/Display.php:330
|
||||
#: src/Module/Settings/Display.php:320
|
||||
msgid "Mobile Theme:"
|
||||
msgstr "Mobil-tema:"
|
||||
|
||||
#: src/Module/Settings/Display.php:333
|
||||
#: src/Module/Settings/Display.php:323
|
||||
msgid "Number of items to display per page:"
|
||||
msgstr "Antalet objekt att visa per sida:"
|
||||
|
||||
#: src/Module/Settings/Display.php:333 src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:323 src/Module/Settings/Display.php:324
|
||||
msgid "Maximum of 100 items"
|
||||
msgstr "Maximalt 100 objekt"
|
||||
|
||||
#: src/Module/Settings/Display.php:334
|
||||
#: src/Module/Settings/Display.php:324
|
||||
msgid "Number of items to display per page when viewed from mobile device:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Update browser every xx seconds"
|
||||
msgstr "Uppdatera webbläsaren var xx sekunder"
|
||||
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Minimum of 10 seconds. Enter -1 to disable it."
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid "Regularly update the page content"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:325
|
||||
msgid ""
|
||||
"When enabled, new content on network, community and channels are added on "
|
||||
"top."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "Display emoticons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:336
|
||||
#: src/Module/Settings/Display.php:326
|
||||
msgid "When enabled, emoticons are replaced with matching symbols."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Infinite scroll"
|
||||
msgstr "Oändlig skroll"
|
||||
|
||||
#: src/Module/Settings/Display.php:337
|
||||
#: src/Module/Settings/Display.php:327
|
||||
msgid "Automatic fetch new items when reaching the page end."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable Smart Threading"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:338
|
||||
#: src/Module/Settings/Display.php:328
|
||||
msgid "Enable the automatic suppression of extraneous thread indentation."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid "Display the Dislike feature"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:339
|
||||
#: src/Module/Settings/Display.php:329
|
||||
msgid ""
|
||||
"Display the Dislike button and dislike reactions on posts and comments."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
msgid "Display the resharer"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:340
|
||||
#: src/Module/Settings/Display.php:330
|
||||
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:331
|
||||
msgid "Stay local"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:341
|
||||
#: src/Module/Settings/Display.php:331
|
||||
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:332
|
||||
msgid "Show the post deletion checkbox"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:342
|
||||
#: src/Module/Settings/Display.php:332
|
||||
msgid "Display the checkbox for the post deletion on the network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "DIsplay the event list"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:343
|
||||
#: src/Module/Settings/Display.php:333
|
||||
msgid "Display the birthday reminder and event list on the network page."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
msgid "Link preview mode"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:344
|
||||
#: src/Module/Settings/Display.php:334
|
||||
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:335
|
||||
msgid "Hide pictures with empty alternative text"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:345
|
||||
#: src/Module/Settings/Display.php:335
|
||||
msgid "Don't display pictures that are missing the alternative text."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Hide custom emojis"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:346
|
||||
#: src/Module/Settings/Display.php:336
|
||||
msgid "Don't display custom emojis."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Platform icons style"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:347
|
||||
#: src/Module/Settings/Display.php:337
|
||||
msgid "Style of the platform icons"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:352
|
||||
#: src/Module/Settings/Display.php:342
|
||||
msgid "Bookmark"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:354
|
||||
#: src/Module/Settings/Display.php:344
|
||||
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:346
|
||||
msgid "Channel languages:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:356
|
||||
#: src/Module/Settings/Display.php:346
|
||||
msgid ""
|
||||
"Select all the languages you want to see in your channels. \"Unspecified\" "
|
||||
"describes all posts for which no language information was detected (e.g. "
|
||||
|
|
@ -10889,11 +10891,11 @@ msgid ""
|
|||
"list."
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:358
|
||||
#: src/Module/Settings/Display.php:348
|
||||
msgid "Beginning of week:"
|
||||
msgstr ""
|
||||
|
||||
#: src/Module/Settings/Display.php:359
|
||||
#: src/Module/Settings/Display.php:349
|
||||
msgid "Default calendar view:"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -12541,97 +12543,97 @@ msgstr "Profil-till-profil"
|
|||
msgid "via Wall-To-Wall:"
|
||||
msgstr "via profil-till-profil:"
|
||||
|
||||
#: src/Object/Post.php:602
|
||||
#: src/Object/Post.php:603
|
||||
#, php-format
|
||||
msgid "Reply to %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:624
|
||||
#: src/Object/Post.php:625
|
||||
msgid "Notifier task is pending"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:625
|
||||
#: src/Object/Post.php:626
|
||||
msgid "Delivery to remote servers is pending"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:626
|
||||
#: src/Object/Post.php:627
|
||||
msgid "Delivery to remote servers is underway"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:627
|
||||
#: src/Object/Post.php:628
|
||||
msgid "Delivery to remote servers is mostly done"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:628
|
||||
#: src/Object/Post.php:629
|
||||
msgid "Delivery to remote servers is done"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:650
|
||||
#: src/Object/Post.php:651
|
||||
#, php-format
|
||||
msgid "%d comment"
|
||||
msgid_plural "%d comments"
|
||||
msgstr[0] "%d kommentar"
|
||||
msgstr[1] "%d kommentarer"
|
||||
|
||||
#: src/Object/Post.php:651
|
||||
#: src/Object/Post.php:652
|
||||
msgid "Show more"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:652
|
||||
#: src/Object/Post.php:653
|
||||
msgid "Show fewer"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:689
|
||||
#: src/Object/Post.php:690
|
||||
#, php-format
|
||||
msgid "Reshared by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:694
|
||||
#: src/Object/Post.php:695
|
||||
#, php-format
|
||||
msgid "Viewed by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:699
|
||||
#: src/Object/Post.php:700
|
||||
#, php-format
|
||||
msgid "Read by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:704
|
||||
#: src/Object/Post.php:705
|
||||
#, php-format
|
||||
msgid "Liked by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:709
|
||||
#: src/Object/Post.php:710
|
||||
#, php-format
|
||||
msgid "Disliked by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:714
|
||||
#: src/Object/Post.php:715
|
||||
#, php-format
|
||||
msgid "Attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:719
|
||||
#: src/Object/Post.php:720
|
||||
#, php-format
|
||||
msgid "Maybe attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:724
|
||||
#: src/Object/Post.php:725
|
||||
#, php-format
|
||||
msgid "Not attended by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:729
|
||||
#: src/Object/Post.php:730
|
||||
#, php-format
|
||||
msgid "Commented by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:734
|
||||
#: src/Object/Post.php:735
|
||||
#, php-format
|
||||
msgid "Reacted with %s by: %s"
|
||||
msgstr ""
|
||||
|
||||
#: src/Object/Post.php:757
|
||||
#: src/Object/Post.php:758
|
||||
#, php-format
|
||||
msgid "Quote shared by: %s"
|
||||
msgstr ""
|
||||
|
|
|
|||
|
|
@ -1108,7 +1108,6 @@ $a->strings['Display Theme:'] = 'Tema/utseende:';
|
|||
$a->strings['Mobile Theme:'] = 'Mobil-tema:';
|
||||
$a->strings['Number of items to display per page:'] = 'Antalet objekt att visa per sida:';
|
||||
$a->strings['Maximum of 100 items'] = 'Maximalt 100 objekt';
|
||||
$a->strings['Update browser every xx seconds'] = 'Uppdatera webbläsaren var xx sekunder';
|
||||
$a->strings['Infinite scroll'] = 'Oändlig skroll';
|
||||
$a->strings['Additional Features'] = 'Ytterligare funktioner';
|
||||
$a->strings['Connected Apps'] = 'Anslutna appar';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue