diff --git a/.codecov.yml b/.codecov.yml index 0c54747c9..4d2921cc4 100644 --- a/.codecov.yml +++ b/.codecov.yml @@ -8,7 +8,7 @@ coverage: round: down range: "70...100" status: - project: off - patch: off + project: false + patch: false -comment: off +comment: false diff --git a/.drone.yml b/.drone.yml index ec9963135..b45409a84 100644 --- a/.drone.yml +++ b/.drone.yml @@ -52,21 +52,81 @@ trigger: - pull_request steps: + - name: Restore cache + image: meltwater/drone-cache:dev + settings: + backend: "filesystem" + restore: true + cache_key: '{{ .Repo.Name }}_phpcs_{{ arch }}_{{ os }}' + archive_format: "gzip" + mount: + - '.composer' + volumes: + - name: cache + path: /tmp/cache - name: Install dependencies image: composer commands: + - export COMPOSER_HOME=.composer - ./bin/composer.phar run cs:install + - name: Rebuild cache + image: meltwater/drone-cache:dev + settings: + backend: "filesystem" + rebuild: true + cache_key: '{{ .Repo.Name }}_phpcs_{{ arch }}_{{ os }}' + archive_format: "gzip" + mount: + - '.composer' + volumes: + - name: cache + path: /tmp/cache - name: Run coding standards check image: friendicaci/php-cs commands: - export CHANGED_FILES="$(git diff --name-status ${DRONE_COMMIT_BEFORE}..${DRONE_COMMIT_AFTER} | grep ^A | cut -f2)" - /check-php-cs.sh + +volumes: + - name: cache + host: + path: /tmp/drone-cache --- kind: pipeline type: docker name: php7.3-mariadb steps: + - name: Restore cache + image: meltwater/drone-cache:dev + settings: + backend: "filesystem" + restore: true + cache_key: '{{ .Repo.Name }}_php73_{{ arch }}_{{ os }}' + archive_format: "gzip" + mount: + - '.composer' + volumes: + - name: cache + path: /tmp/cache + - name: Composer install + image: friendicaci/php7.3:php7.3.28 + commands: + - export COMPOSER_HOME=.composer + - ./bin/composer.phar validate + - ./bin/composer.phar install --prefer-dist + - name: Rebuild cache + image: meltwater/drone-cache:dev + settings: + backend: "filesystem" + rebuild: true + cache_key: '{{ .Repo.Name }}_php73_{{ arch }}_{{ os }}' + archive_format: "gzip" + mount: + - '.composer' + volumes: + - name: cache + path: /tmp/cache - name: Test Friendica image: friendicaci/php7.3:php7.3.28 environment: @@ -79,8 +139,6 @@ steps: MEMCACHED_HOST: "memcached" MEMCACHE_HOST: "memcached" commands: - - composer validate - - composer install --prefer-dist - cp config/local-sample.config.php config/local.config.php - if ! bin/wait-for-connection $MYSQL_HOST $MYSQL_PORT 300; then echo "[ERROR] Waited 300 seconds, no response" >&2; exit 1; fi - mysql -h$MYSQL_HOST -P$MYSQL_PORT -p$MYSQL_PASSWORD -u$MYSQL_USER $MYSQL_DATABASE < database.sql @@ -102,12 +160,47 @@ services: - name: redis image: redis + +volumes: + - name: cache + host: + path: /tmp/drone-cache --- kind: pipeline type: docker name: php7.4-mariadb steps: + - name: Restore cache + image: meltwater/drone-cache:dev + settings: + backend: "filesystem" + restore: true + cache_key: '{{ .Repo.Name }}_php74_{{ arch }}_{{ os }}' + archive_format: "gzip" + mount: + - '.composer' + volumes: + - name: cache + path: /tmp/cache + - name: Composer install + image: friendicaci/php7.4:php7.4.18 + commands: + - export COMPOSER_HOME=.composer + - ./bin/composer.phar validate + - ./bin/composer.phar install --prefer-dist + - name: Rebuild cache + image: meltwater/drone-cache:dev + settings: + backend: "filesystem" + rebuild: true + cache_key: '{{ .Repo.Name }}_php74_{{ arch }}_{{ os }}' + archive_format: "gzip" + mount: + - '.composer' + volumes: + - name: cache + path: /tmp/cache - name: Test Friendica image: friendicaci/php7.4:php7.4.18 environment: @@ -122,8 +215,6 @@ steps: XDEBUG_MODE: "coverage" commands: - phpenmod xdebug - - composer validate - - composer install --prefer-dist - cp config/local-sample.config.php config/local.config.php - if ! bin/wait-for-connection $MYSQL_HOST $MYSQL_PORT 300; then echo "[ERROR] Waited 300 seconds, no response" >&2; exit 1; fi - mysql -h$MYSQL_HOST -P$MYSQL_PORT -p$MYSQL_PASSWORD -u$MYSQL_USER $MYSQL_DATABASE < database.sql @@ -155,12 +246,47 @@ services: - name: redis image: redis + +volumes: + - name: cache + host: + path: /tmp/drone-cache --- kind: pipeline type: docker name: php8.0-mariadb steps: + - name: Restore cache + image: meltwater/drone-cache:dev + settings: + backend: "filesystem" + restore: true + cache_key: '{{ .Repo.Name }}_php80_{{ arch }}_{{ os }}' + archive_format: "gzip" + mount: + - '.composer' + volumes: + - name: cache + path: /tmp/cache + - name: Composer install + image: friendicaci/php8.0:php8.0.5 + commands: + - export COMPOSER_HOME=.composer + - ./bin/composer.phar validate + - ./bin/composer.phar install --prefer-dist + - name: Rebuild cache + image: meltwater/drone-cache:dev + settings: + backend: "filesystem" + rebuild: true + cache_key: '{{ .Repo.Name }}_php80_{{ arch }}_{{ os }}' + archive_format: "gzip" + mount: + - '.composer' + volumes: + - name: cache + path: /tmp/cache - name: Test Friendica image: friendicaci/php8.0:php8.0.5 environment: @@ -173,8 +299,6 @@ steps: MEMCACHED_HOST: "memcached" MEMCACHE_HOST: "memcached" commands: - - composer validate - - composer install --prefer-dist - cp config/local-sample.config.php config/local.config.php - if ! bin/wait-for-connection $MYSQL_HOST $MYSQL_PORT 300; then echo "[ERROR] Waited 300 seconds, no response" >&2; exit 1; fi - mysql -h$MYSQL_HOST -P$MYSQL_PORT -p$MYSQL_PASSWORD -u$MYSQL_USER $MYSQL_DATABASE < database.sql @@ -196,3 +320,8 @@ services: - name: redis image: redis + +volumes: + - name: cache + host: + path: /tmp/drone-cache diff --git a/.gitignore b/.gitignore index 9044604f8..f0d31912d 100644 --- a/.gitignore +++ b/.gitignore @@ -16,7 +16,8 @@ robots.txt /config/addon.ini.php #ignore documentation, it should be newly built -/doc/html +/doc/api +/doc/cache #ignore reports, should be generated with every build report/ diff --git a/CHANGELOG b/CHANGELOG index 75f8a8da1..aac93543e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,71 @@ +Version 2021.07 (2021-07-04) + Friendica Core + Updates to the translation DE, EN-GB, HU, IT, JA [translation teams] + Updates to the themes (frio, vier) [annando, MrPetovan] + Updates to the documentation [annando, nupplaphil] + Updated composer and dependencies [nupplaphil, MrPetovan] + General code cleanup [annando, nupplaphil, mexon, MrPetovan, very-apen] + Enhanced the Mastodon compatible API [annando] + Enhanced the possibilities to download the calendar [annando] + Enhanced the Vagrant development box setup [fabrixxm] + Enhanced the console commands [fabrixxm, mexon] + Enhances the support of PHP8 [nupplaphil, MrPetovan] + Enhanced the link detection [annando] + Enhanced the worker task display in the admin panel [tobiasd] + Enhanced the installation wizard [tobiasd] + Enhanced the federation statistics page [annando] + Enhanced the profile picture handling [annando] + Fixed information contained in the nodeinfo [MrPetovan] + Fixed an avatar setting problem during the account creation [nupplaphil] + Fixed a display problem with picture only postings from Diaspora* [annando] + Fixed a problem receiving BCC postings from accounts that are not followed [annando] + Fixed a problem with local delivery of postings [annando] + Fixed a problem with block/ignore via API [nupplaphil] + Fixed a problem with directory search results [MrPetovan] + Fixed problems with the console autoinstall command [annando, tobiasd] + Fixed problems with forum delivery [annando] + Fixed a problem fetching photos in private postings [annando] + Fixed a problem with author names containing hash tags [annando] + Fixed a problem when following local contacts [annando] + Fixed problems with the addon settings [MrPetovan] + Removed the Diaspora* relay support [annando] + Removed the system user from the user counting [annando] + Make birthday time comparison 32-bit safe in Protocol/DFRN [MrPetovan] + CI process was switched to drone [nupplaphil] + The "authenticate" hook was moved deeper into the process [very-ape] + Added support for RTL languages [MrPetovan] + Added download link for the calendar entries [annando] + + Friendica Addons + Updates to the translations DE, HU, IT, JA [translation teams] + nitter + added addon to replace links to twitter in postings [tobiasd] + keycloakpassword + added addon for password-based authentication against Keycloak [very-ape] + SAML + added addon to support SAML services [very-ape] + twitter + improved the image upload [annando] + improved the exception handling [nupplaphil] + incoming posts are unlisted [annando] + openstreetmap + Ensure location key is available in hook data [MrPetovan] + catavatar + make the addon work again [nupplaphil] + securemail + fixed a problem in connection with the phpmailer addon [nupplaphil] + Blockbot + Move Zabbix to the "good" agents [annando] + mailstream + adaptation of new addon functionalities and code improvements [mexon] + phpmailer + updated dependencies [nupplaphil] + + Closed Issues + 7967, 8262, 9715, 9064, 9993, 10055, 10147, 10184, 10198, 10205, 10210, + 10219, 10232, 10254, 10287, 10293, 10306, 10312, 10314, 10342, 10364, + 10375, 10378, 10392, 10424, 10433, 10439, 10443 + Version 2021.04 (2021-04-26) Friendica Core Updates to the translations BG, DE, EN-US, ES, HU, IT, RU [translation teams] diff --git a/CREDITS.txt b/CREDITS.txt index 127db14fe..13c138da2 100644 --- a/CREDITS.txt +++ b/CREDITS.txt @@ -46,6 +46,8 @@ ben-utzer Beringer Zsolt BinkaDroid Bjoessi +bob lebonche +Boris Daniel Martinez Millàn bufalo1973 ButterflyOfFire Calango Jr @@ -71,6 +73,7 @@ Daria Początek David David Martín Miranda David Rabel +Davide Pesenti Dean Townsley Denis Chenu dependabot[bot] @@ -109,7 +112,6 @@ Gregory Smith guzzisti Haakon Meland Eriksen Hans Meine -hauke Hauke Hauke Altmann Herbert Thielen @@ -259,12 +261,14 @@ Thecross Thomas Thomas Willingham thorsten23 +Till Mohr Tim Stahel TiMESPLiNTER Tino Tobias Diekershoff Tobias Hößl Tom +Tom Aurlund tomamplius tomtom84 Tony Baldwin @@ -282,14 +286,19 @@ utzer Valvin Vasudev Kamath Vasya Novikov +very-ape Vinzenz Vietzke vislav +vladimir N Vladimir Núñez VVelox Vít Šesták 'v6ak' Waldemar Stoczkowski +Wil Tur Wouter Broers +XMPPはいいぞ Yasen Pramatarov +Yasmine A ylms Zach Prezkuta Zane C. Bowers-Hadley diff --git a/VERSION b/VERSION index e9cd37efe..9eb200ca4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2021.06-dev +2021.07 diff --git a/Vagrantfile b/Vagrantfile index f9ffe0c75..81676df61 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -34,10 +34,14 @@ Vagrant.configure(2) do |config| # # # Customize the amount of memory on the VM: vb.memory = server_memory + + unless Vagrant.has_plugin?("vagrant-vbguest") + raise 'vagrant-vbguest plugin is not installed! Install with "vagrant plugin install vagrant-vbguest"' + end end # Enable provisioning with a shell script. - config.vm.provision "shell", path: "./bin/dev/vagrant_provision.sh" + config.vm.provision "shell", path: "./bin/dev/vagrant_provision.sh", privileged: true # run: "always" # run: "once" end diff --git a/bin/composer.phar b/bin/composer.phar index 7ebd2b991..c5d589526 100755 Binary files a/bin/composer.phar and b/bin/composer.phar differ diff --git a/bin/dev/vagrant_provision.sh b/bin/dev/vagrant_provision.sh index bc28cc384..4de6a4684 100755 --- a/bin/dev/vagrant_provision.sh +++ b/bin/dev/vagrant_provision.sh @@ -1,13 +1,23 @@ #!/bin/bash -#Script to setup the vagrant instance for running friendica +# Script to setup the vagrant instance for running friendica # -#DO NOT RUN on your physical machine as this won't be of any use -#and f.e. deletes your /var/www/ folder! -echo "Friendica configuration settings" -sudo apt-get update +# DO NOT RUN on your physical machine as this won't be of any use +# and f.e. deletes your /var/www/ folder! +# +# Run as root by vagrant +# +## -# Install virtualbox guest additions -sudo apt-get install virtualbox-guest-x11 +ADMIN_NICK="admin" +ADMIN_PASSW="admin" + +USER_NICK="user" +USER_PASSW="user" + +## + +echo "Friendica configuration settings" +apt-get update #Selfsigned cert echo ">>> Installing *.xip.io self-signed SSL" @@ -23,32 +33,32 @@ localityName=New Haven/ commonName=$DOMAIN/ subjectAltName=DNS:$EXTRADOMAIN " -sudo mkdir -p "$SSL_DIR" -sudo openssl genrsa -out "$SSL_DIR/xip.io.key" 4096 -sudo openssl req -new -subj "$(echo -n "$SUBJ" | tr "\n" "/")" -key "$SSL_DIR/xip.io.key" -out "$SSL_DIR/xip.io.csr" -passin pass:$PASSPHRASE -sudo openssl x509 -req -days 365 -in "$SSL_DIR/xip.io.csr" -signkey "$SSL_DIR/xip.io.key" -out "$SSL_DIR/xip.io.crt" +mkdir -p "$SSL_DIR" +openssl genrsa -out "$SSL_DIR/xip.io.key" 4096 +openssl req -new -subj "$(echo -n "$SUBJ" | tr "\n" "/")" -key "$SSL_DIR/xip.io.key" -out "$SSL_DIR/xip.io.csr" -passin pass:$PASSPHRASE +openssl x509 -req -days 365 -in "$SSL_DIR/xip.io.csr" -signkey "$SSL_DIR/xip.io.key" -out "$SSL_DIR/xip.io.crt" #Install apache2 echo ">>> Installing Apache2 webserver" -sudo apt-get install -y apache2 -sudo a2enmod rewrite actions ssl -sudo cp /vagrant/bin/dev/vagrant_vhost.sh /usr/local/bin/vhost -sudo chmod guo+x /usr/local/bin/vhost -sudo vhost -s 192.168.22.10.xip.io -d /var/www -p /etc/ssl/xip.io -c xip.io -a friendica.local -sudo a2dissite 000-default -sudo service apache2 restart +apt-get install -qq apache2 +a2enmod rewrite actions ssl +cp /vagrant/bin/dev/vagrant_vhost.sh /usr/local/bin/vhost +chmod guo+x /usr/local/bin/vhost +vhost -s 192.168.22.10.xip.io -d /var/www -p /etc/ssl/xip.io -c xip.io -a friendica.local +a2dissite 000-default +service apache2 restart #Install php echo ">>> Installing PHP7" -sudo apt-get install -y php libapache2-mod-php php-cli php-mysql php-curl php-gd php-mbstring php-xml imagemagick php-imagick php-zip -sudo systemctl restart apache2 +apt-get install -qq php libapache2-mod-php php-cli php-mysql php-curl php-gd php-mbstring php-xml imagemagick php-imagick php-zip +systemctl restart apache2 #Install mysql echo ">>> Installing Mysql" -sudo debconf-set-selections <<< "mariadb-server mariadb-server/root_password password root" -sudo debconf-set-selections <<< "mariadb-server mariadb-server/root_password_again password root" -sudo apt-get install -qq mariadb-server +debconf-set-selections <<< "mariadb-server mariadb-server/root_password password root" +debconf-set-selections <<< "mariadb-server mariadb-server/root_password_again password root" +apt-get install -qq mariadb-server # enable remote access # setting the mysql bind-address to allow connections from everywhere sed -i "s/bind-address.*/bind-address = 0.0.0.0/" /etc/mysql/my.cnf @@ -66,41 +76,60 @@ $MYSQL -uroot -proot -e "FLUSH PRIVILEGES" systemctl restart mysql - #configure rudimentary mail server (local delivery only) #add Friendica accounts for local user accounts, use email address like vagrant@friendica.local, read the email with 'mail'. +echo ">>> Installing 'Local Only' postfix" debconf-set-selections <<< "postfix postfix/mailname string friendica.local" debconf-set-selections <<< "postfix postfix/main_mailer_type string 'Local Only'" -sudo apt-get install -y postfix mailutils libmailutils-dev -sudo echo -e "friendica1: vagrant\nfriendica2: vagrant\nfriendica3: vagrant\nfriendica4: vagrant\nfriendica5: vagrant" >> /etc/aliases && sudo newaliases +apt-get install -qq postfix mailutils libmailutils-dev +echo -e "friendica1: vagrant\nfriendica2: vagrant\nfriendica3: vagrant\nfriendica4: vagrant\nfriendica5: vagrant" >> /etc/aliases && newaliases # Friendica needs git for fetching some dependencies -sudo apt-get install -y git +echo ">>> Installing git" +apt-get install -qq git #make the vagrant directory the docroot -sudo rm -rf /var/www/ -sudo ln -fs /vagrant /var/www +echo ">>> Symlink /var/www to /vagrant" +rm -rf /var/www/ +ln -fs /vagrant /var/www # install deps with composer -sudo apt install unzip +echo ">>> Installing php requirements" +apt install unzip cd /var/www -sudo -u www-data php bin/composer.phar install +php bin/composer.phar install -# initial config file for friendica in vagrant -cp /vagrant/mods/local.config.vagrant.php /vagrant/config/local.config.php + +echo ">>> Setup Friendica" # copy the .htaccess-dist file to .htaccess so that rewrite rules work cp /vagrant/.htaccess-dist /vagrant/.htaccess # create the friendica database echo "create database friendica DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci" | $MYSQL -u root -proot -# import test database -$MYSQL -uroot -proot friendica < /vagrant/friendica_test_data.sql +# import test database (disabled because too old) +#$MYSQL -uroot -proot friendica < /vagrant/friendica_test_data.sql + +# install friendica +bin/console autoinstall -f /vagrant/mods/local.config.vagrant.php + +# add users +# (disable a bunch of validation because this is a dev install, deh, it needs invalid emails and stupid passwords) +bin/console config system disable_email_validation 1 +bin/console config system disable_password_exposed 1 +bin/console user add "$ADMIN_NICK" "$ADMIN_NICK" "$ADMIN_NICK@friendica.local" en +bin/console user password "$ADMIN_NICK" "$ADMIN_PASSW" +bin/console user add "$USER_NICK" "$USER_NICK" "$USER_NICK@friendica.local" en +bin/console user password "$USER_NICK" "$USER_PASSW" + +# set the admin +bin/console config config admin_email ""$ADMIN_NICK@friendica.local"" + # create cronjob - activate if you have enough memory in you dev VM -echo "*/10 * * * * cd /vagrant; /usr/bin/php bin/worker.php" >> friendicacron -sudo crontab friendicacron -sudo rm friendicacron +# cronjob runs as www-data user +echo ">>> Installing cronjob" +echo "*/10 * * * * www-data cd /vagrant; /usr/bin/php bin/worker.php" >> /etc/cron.d/friendica # friendica needs write access to /tmp -sudo chmod 777 /tmp +chmod 777 /tmp diff --git a/boot.php b/boot.php index bbb66c2f9..47f626629 100644 --- a/boot.php +++ b/boot.php @@ -38,7 +38,7 @@ use Friendica\Util\DateTimeFormat; define('FRIENDICA_PLATFORM', 'Friendica'); define('FRIENDICA_CODENAME', 'Siberian Iris'); -define('FRIENDICA_VERSION', '2021.06-dev'); +define('FRIENDICA_VERSION', '2021.07'); define('DFRN_PROTOCOL_VERSION', '2.23'); define('NEW_TABLE_STRUCTURE_VERSION', 1288); diff --git a/build.xml b/build.xml deleted file mode 100644 index a61a5123d..000000000 --- a/build.xml +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/composer.lock b/composer.lock index 39419ca4e..bf85afb79 100644 --- a/composer.lock +++ b/composer.lock @@ -736,16 +736,16 @@ }, { "name": "guzzlehttp/psr7", - "version": "1.8.1", + "version": "1.8.2", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "35ea11d335fd638b5882ff1725228b3d35496ab1" + "reference": "dc960a912984efb74d0a90222870c72c87f10c91" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/35ea11d335fd638b5882ff1725228b3d35496ab1", - "reference": "35ea11d335fd638b5882ff1725228b3d35496ab1", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91", + "reference": "dc960a912984efb74d0a90222870c72c87f10c91", "shasum": "" }, "require": { @@ -803,7 +803,7 @@ "uri", "url" ], - "time": "2021-03-21T16:25:00+00:00" + "time": "2021-04-26T09:17:50+00:00" }, { "name": "league/html-to-markdown", @@ -1119,16 +1119,16 @@ }, { "name": "monolog/monolog", - "version": "1.26.0", + "version": "1.26.1", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "2209ddd84e7ef1256b7af205d0717fb62cfc9c33" + "reference": "c6b00f05152ae2c9b04a448f99c7590beb6042f5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/2209ddd84e7ef1256b7af205d0717fb62cfc9c33", - "reference": "2209ddd84e7ef1256b7af205d0717fb62cfc9c33", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/c6b00f05152ae2c9b04a448f99c7590beb6042f5", + "reference": "c6b00f05152ae2c9b04a448f99c7590beb6042f5", "shasum": "" }, "require": { @@ -1197,7 +1197,7 @@ "type": "tidelift" } ], - "time": "2020-12-14T12:56:38+00:00" + "time": "2021-05-28T08:32:12+00:00" }, { "name": "nikic/fast-route", @@ -1591,19 +1591,11 @@ }, { "name": "npm-asset/jgrowl", - "version": "1.4.6", + "version": "1.4.8", "dist": { "type": "tar", - "url": "https://registry.npmjs.org/jgrowl/-/jgrowl-1.4.6.tgz", - "shasum": "2736e332aaee73ccf0a14a5f0066391a0a13f4a3" - }, - "require-dev": { - "npm-asset/grunt": "~0.4.2", - "npm-asset/grunt-contrib-cssmin": "~0.9.0", - "npm-asset/grunt-contrib-jshint": "~0.6.3", - "npm-asset/grunt-contrib-less": "~0.11.0", - "npm-asset/grunt-contrib-uglify": "~0.4.0", - "npm-asset/grunt-contrib-watch": "~0.6.1" + "url": "https://registry.npmjs.org/jgrowl/-/jgrowl-1.4.8.tgz", + "shasum": "4ba40ffb93757a7e1d9b262d916be299d03df3a4" }, "type": "npm-asset-library", "extra": { @@ -1616,8 +1608,13 @@ "type": "git", "url": "git+ssh://git@github.com/stanlemon/jGrowl.git" }, - "npm-asset-scripts": [] + "npm-asset-scripts": { + "build": "grunt" + } }, + "license": [ + "MIT" + ], "authors": [ { "name": "Stan Lemon", @@ -1627,7 +1624,7 @@ ], "description": "jGrowl is a jQuery plugin that raises unobtrusive messages within the browser, similar to the way that OS X's Growl Framework works. The idea is simple, deliver notifications to the end user in a noticeable way that doesn't obstruct the work flow and yet ", "homepage": "https://github.com/stanlemon/jGrowl#readme", - "time": "2017-07-21T02:36:34+00:00" + "time": "2021-05-20T17:11:40+00:00" }, { "name": "npm-asset/jquery", @@ -2224,16 +2221,16 @@ }, { "name": "paragonie/certainty", - "version": "v2.8.0", + "version": "v2.8.1", "source": { "type": "git", "url": "https://github.com/paragonie/certainty.git", - "reference": "94fc99f8c1f5bdce960713d6b63a108a64d90dfa" + "reference": "e2a1da558f95074545ad811d60359c74500a5e24" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/certainty/zipball/94fc99f8c1f5bdce960713d6b63a108a64d90dfa", - "reference": "94fc99f8c1f5bdce960713d6b63a108a64d90dfa", + "url": "https://api.github.com/repos/paragonie/certainty/zipball/e2a1da558f95074545ad811d60359c74500a5e24", + "reference": "e2a1da558f95074545ad811d60359c74500a5e24", "shasum": "" }, "require": { @@ -2241,12 +2238,12 @@ "ext-json": "*", "guzzlehttp/guzzle": "^6|^7", "paragonie/constant_time_encoding": "^1|^2", - "paragonie/sodium_compat": "^1.11", + "paragonie/sodium_compat": "^1.13", "php": "^5.5|^7|^8" }, "require-dev": { - "composer/composer": "^1", - "phpunit/phpunit": "^4|^5|^6|^7" + "composer/composer": "^1|>=2.0.14", + "phpunit/phpunit": "^4|^5|^6|^7|^8|^9" }, "bin": [ "bin/certainty-cert-symlink" @@ -2282,7 +2279,7 @@ "ssl", "tls" ], - "time": "2020-10-15T08:10:12+00:00" + "time": "2021-05-25T18:27:41+00:00" }, { "name": "paragonie/constant_time_encoding", @@ -2442,16 +2439,16 @@ }, { "name": "paragonie/sodium_compat", - "version": "v1.14.0", + "version": "v1.16.1", "source": { "type": "git", "url": "https://github.com/paragonie/sodium_compat.git", - "reference": "a1cfe0b21faf9c0b61ac0c6188c4af7fd6fd0db3" + "reference": "2e856afe80bfc968b47da1f4a7e1ea8f03d06b38" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/a1cfe0b21faf9c0b61ac0c6188c4af7fd6fd0db3", - "reference": "a1cfe0b21faf9c0b61ac0c6188c4af7fd6fd0db3", + "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/2e856afe80bfc968b47da1f4a7e1ea8f03d06b38", + "reference": "2e856afe80bfc968b47da1f4a7e1ea8f03d06b38", "shasum": "" }, "require": { @@ -2520,7 +2517,7 @@ "secret-key cryptography", "side-channel resistant" ], - "time": "2020-12-03T16:26:19+00:00" + "time": "2021-05-25T12:58:14+00:00" }, { "name": "patrickschur/language-detection", @@ -2625,16 +2622,16 @@ }, { "name": "phpseclib/phpseclib", - "version": "2.0.30", + "version": "2.0.31", "source": { "type": "git", "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "136b9ca7eebef78be14abf90d65c5e57b6bc5d36" + "reference": "233a920cb38636a43b18d428f9a8db1f0a1a08f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/136b9ca7eebef78be14abf90d65c5e57b6bc5d36", - "reference": "136b9ca7eebef78be14abf90d65c5e57b6bc5d36", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/233a920cb38636a43b18d428f9a8db1f0a1a08f4", + "reference": "233a920cb38636a43b18d428f9a8db1f0a1a08f4", "shasum": "" }, "require": { @@ -2726,7 +2723,7 @@ "type": "tidelift" } ], - "time": "2020-12-17T05:42:04+00:00" + "time": "2021-04-06T13:56:45+00:00" }, { "name": "pragmarx/google2fa", @@ -3058,16 +3055,16 @@ }, { "name": "psr/log", - "version": "1.1.3", + "version": "1.1.4", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc" + "reference": "d49695b909c3b7628b6289db5479a1c204601f11" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc", - "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc", + "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11", + "reference": "d49695b909c3b7628b6289db5479a1c204601f11", "shasum": "" }, "require": { @@ -3091,7 +3088,7 @@ "authors": [ { "name": "PHP-FIG", - "homepage": "http://www.php-fig.org/" + "homepage": "https://www.php-fig.org/" } ], "description": "Common interface for logging libraries", @@ -3101,7 +3098,7 @@ "psr", "psr-3" ], - "time": "2020-03-23T09:12:05+00:00" + "time": "2021-05-03T11:20:27+00:00" }, { "name": "ralouphie/getallheaders", diff --git a/database.sql b/database.sql index d080b4158..b6dcb8ab7 100644 --- a/database.sql +++ b/database.sql @@ -1,6 +1,6 @@ -- ------------------------------------------ --- Friendica 2021.06-dev (Siberian Iris) --- DB_UPDATE_VERSION 1418 +-- Friendica 2021.06-rc (Siberian Iris) +-- DB_UPDATE_VERSION 1424 -- ------------------------------------------ @@ -120,6 +120,7 @@ CREATE TABLE IF NOT EXISTS `contact` ( `photo` varchar(255) DEFAULT '' COMMENT 'Link to the profile photo of the contact', `thumb` varchar(255) DEFAULT '' COMMENT 'Link to the profile photo (thumb size)', `micro` varchar(255) DEFAULT '' COMMENT 'Link to the profile photo (micro size)', + `header` varchar(255) COMMENT 'Header picture', `site-pubkey` text COMMENT '', `issued-id` varchar(255) NOT NULL DEFAULT '' COMMENT '', `dfrn-id` varchar(255) NOT NULL DEFAULT '' COMMENT '', @@ -339,10 +340,12 @@ CREATE TABLE IF NOT EXISTS `apcontact` ( `outbox` varchar(255) COMMENT '', `sharedinbox` varchar(255) COMMENT '', `manually-approve` boolean COMMENT '', + `discoverable` boolean COMMENT 'Mastodon extension: true if profile is published in their directory', `nick` varchar(255) NOT NULL DEFAULT '' COMMENT '', `name` varchar(255) COMMENT '', `about` text COMMENT '', `photo` varchar(255) COMMENT '', + `header` varchar(255) COMMENT 'Header picture', `addr` varchar(255) COMMENT '', `alias` varchar(255) COMMENT '', `pubkey` text COMMENT '', @@ -751,6 +754,7 @@ CREATE TABLE IF NOT EXISTS `mail` ( `from-photo` varchar(255) NOT NULL DEFAULT '' COMMENT 'contact photo link of the sender', `from-url` varchar(255) NOT NULL DEFAULT '' COMMENT 'profile linke of the sender', `contact-id` varchar(255) COMMENT 'contact.id', + `author-id` int unsigned COMMENT 'Link to the contact table with uid=0 of the author of the mail', `convid` int unsigned COMMENT 'conv.id', `title` varchar(255) NOT NULL DEFAULT '' COMMENT '', `body` mediumtext COMMENT '', @@ -759,7 +763,11 @@ CREATE TABLE IF NOT EXISTS `mail` ( `replied` boolean NOT NULL DEFAULT '0' COMMENT '', `unknown` boolean NOT NULL DEFAULT '0' COMMENT 'if sender not in the contact table this is 1', `uri` varchar(255) NOT NULL DEFAULT '' COMMENT '', + `uri-id` int unsigned COMMENT 'Item-uri id of the related mail', `parent-uri` varchar(255) NOT NULL DEFAULT '' COMMENT '', + `parent-uri-id` int unsigned COMMENT 'Item-uri id of the parent of the related mail', + `thr-parent` varchar(255) COMMENT '', + `thr-parent-id` int unsigned COMMENT 'Id of the item-uri table that contains the thread parent uri', `created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00' COMMENT 'creation time of the private message', PRIMARY KEY(`id`), INDEX `uid_seen` (`uid`,`seen`), @@ -767,7 +775,15 @@ CREATE TABLE IF NOT EXISTS `mail` ( INDEX `uri` (`uri`(64)), INDEX `parent-uri` (`parent-uri`(64)), INDEX `contactid` (`contact-id`(32)), - FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE + INDEX `author-id` (`author-id`), + INDEX `uri-id` (`uri-id`), + INDEX `parent-uri-id` (`parent-uri-id`), + INDEX `thr-parent-id` (`thr-parent-id`), + FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE, + FOREIGN KEY (`author-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT, + FOREIGN KEY (`uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE, + FOREIGN KEY (`parent-uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE, + FOREIGN KEY (`thr-parent-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='private messages'; -- @@ -806,6 +822,33 @@ CREATE TABLE IF NOT EXISTS `manage` ( FOREIGN KEY (`mid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='table of accounts that can manage each other'; +-- +-- TABLE notification +-- +CREATE TABLE IF NOT EXISTS `notification` ( + `id` int unsigned NOT NULL auto_increment COMMENT 'sequential ID', + `uid` mediumint unsigned COMMENT 'Owner User id', + `vid` smallint unsigned COMMENT 'Id of the verb table entry that contains the activity verbs', + `type` tinyint unsigned COMMENT '', + `actor-id` int unsigned COMMENT 'Link to the contact table with uid=0 of the actor that caused the notification', + `target-uri-id` int unsigned COMMENT 'Item-uri id of the related post', + `parent-uri-id` int unsigned COMMENT 'Item-uri id of the parent of the related post', + `created` datetime COMMENT '', + `seen` boolean DEFAULT '0' COMMENT '', + PRIMARY KEY(`id`), + UNIQUE INDEX `uid_vid_type_actor-id_target-uri-id` (`uid`,`vid`,`type`,`actor-id`,`target-uri-id`), + INDEX `vid` (`vid`), + INDEX `actor-id` (`actor-id`), + INDEX `target-uri-id` (`target-uri-id`), + INDEX `parent-uri-id` (`parent-uri-id`), + INDEX `seen_uid` (`seen`,`uid`), + FOREIGN KEY (`uid`) REFERENCES `user` (`uid`) ON UPDATE RESTRICT ON DELETE CASCADE, + FOREIGN KEY (`vid`) REFERENCES `verb` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT, + FOREIGN KEY (`actor-id`) REFERENCES `contact` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE, + FOREIGN KEY (`target-uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE, + FOREIGN KEY (`parent-uri-id`) REFERENCES `item-uri` (`id`) ON UPDATE RESTRICT ON DELETE CASCADE +) DEFAULT COLLATE utf8mb4_general_ci COMMENT='notifications'; + -- -- TABLE notify -- @@ -1672,7 +1715,9 @@ CREATE VIEW `post-user-view` AS SELECT `parent-post`.`author-id` AS `parent-author-id`, `parent-post-author`.`url` AS `parent-author-link`, `parent-post-author`.`name` AS `parent-author-name`, - `parent-post-author`.`network` AS `parent-author-network` + `parent-post-author`.`network` AS `parent-author-network`, + `parent-post-author`.`blocked` AS `parent-author-blocked`, + `parent-post-author`.`hidden` AS `parent-author-hidden` FROM `post-user` STRAIGHT_JOIN `post-thread-user` ON `post-thread-user`.`uri-id` = `post-user`.`parent-uri-id` AND `post-thread-user`.`uid` = `post-user`.`uid` STRAIGHT_JOIN `contact` ON `contact`.`id` = `post-user`.`contact-id` @@ -1832,7 +1877,9 @@ CREATE VIEW `post-thread-user-view` AS SELECT `parent-post`.`author-id` AS `parent-author-id`, `parent-post-author`.`url` AS `parent-author-link`, `parent-post-author`.`name` AS `parent-author-name`, - `parent-post-author`.`network` AS `parent-author-network` + `parent-post-author`.`network` AS `parent-author-network`, + `parent-post-author`.`blocked` AS `parent-author-blocked`, + `parent-post-author`.`hidden` AS `parent-author-hidden` FROM `post-thread-user` INNER JOIN `post-user` ON `post-user`.`id` = `post-thread-user`.`post-user-id` STRAIGHT_JOIN `contact` ON `contact`.`id` = `post-thread-user`.`contact-id` @@ -1896,6 +1943,31 @@ CREATE VIEW `post-view` AS SELECT `post-content`.`target-type` AS `target-type`, `post-content`.`target` AS `target`, `post-content`.`resource-id` AS `resource-id`, + `post`.`author-id` AS `contact-id`, + `author`.`url` AS `contact-link`, + `author`.`addr` AS `contact-addr`, + `author`.`name` AS `contact-name`, + `author`.`nick` AS `contact-nick`, + `author`.`thumb` AS `contact-avatar`, + `author`.`network` AS `contact-network`, + `author`.`blocked` AS `contact-blocked`, + `author`.`hidden` AS `contact-hidden`, + `author`.`readonly` AS `contact-readonly`, + `author`.`archive` AS `contact-archive`, + `author`.`pending` AS `contact-pending`, + `author`.`rel` AS `contact-rel`, + `author`.`uid` AS `contact-uid`, + `author`.`contact-type` AS `contact-contact-type`, + IF (`post`.`network` IN ('apub', 'dfrn', 'dspr', 'stat'), true, `author`.`writable`) AS `writable`, + false AS `self`, + `author`.`id` AS `cid`, + `author`.`alias` AS `alias`, + `author`.`photo` AS `photo`, + `author`.`name-date` AS `name-date`, + `author`.`uri-date` AS `uri-date`, + `author`.`avatar-date` AS `avatar-date`, + `author`.`thumb` AS `thumb`, + `author`.`dfrn-id` AS `dfrn-id`, `post`.`author-id` AS `author-id`, `author`.`url` AS `author-link`, `author`.`addr` AS `author-addr`, @@ -1931,7 +2003,9 @@ CREATE VIEW `post-view` AS SELECT `parent-post`.`author-id` AS `parent-author-id`, `parent-post-author`.`url` AS `parent-author-link`, `parent-post-author`.`name` AS `parent-author-name`, - `parent-post-author`.`network` AS `parent-author-network` + `parent-post-author`.`network` AS `parent-author-network`, + `parent-post-author`.`blocked` AS `parent-author-blocked`, + `parent-post-author`.`hidden` AS `parent-author-hidden` FROM `post` STRAIGHT_JOIN `post-thread` ON `post-thread`.`uri-id` = `post`.`parent-uri-id` STRAIGHT_JOIN `contact` AS `author` ON `author`.`id` = `post`.`author-id` @@ -1991,6 +2065,31 @@ CREATE VIEW `post-thread-view` AS SELECT `post-content`.`target-type` AS `target-type`, `post-content`.`target` AS `target`, `post-content`.`resource-id` AS `resource-id`, + `post-thread`.`author-id` AS `contact-id`, + `author`.`url` AS `contact-link`, + `author`.`addr` AS `contact-addr`, + `author`.`name` AS `contact-name`, + `author`.`nick` AS `contact-nick`, + `author`.`thumb` AS `contact-avatar`, + `author`.`network` AS `contact-network`, + `author`.`blocked` AS `contact-blocked`, + `author`.`hidden` AS `contact-hidden`, + `author`.`readonly` AS `contact-readonly`, + `author`.`archive` AS `contact-archive`, + `author`.`pending` AS `contact-pending`, + `author`.`rel` AS `contact-rel`, + `author`.`uid` AS `contact-uid`, + `author`.`contact-type` AS `contact-contact-type`, + IF (`post`.`network` IN ('apub', 'dfrn', 'dspr', 'stat'), true, `author`.`writable`) AS `writable`, + false AS `self`, + `author`.`id` AS `cid`, + `author`.`alias` AS `alias`, + `author`.`photo` AS `photo`, + `author`.`name-date` AS `name-date`, + `author`.`uri-date` AS `uri-date`, + `author`.`avatar-date` AS `avatar-date`, + `author`.`thumb` AS `thumb`, + `author`.`dfrn-id` AS `dfrn-id`, `post-thread`.`author-id` AS `author-id`, `author`.`url` AS `author-link`, `author`.`addr` AS `author-addr`, @@ -2026,7 +2125,9 @@ CREATE VIEW `post-thread-view` AS SELECT `parent-post`.`author-id` AS `parent-author-id`, `parent-post-author`.`url` AS `parent-author-link`, `parent-post-author`.`name` AS `parent-author-name`, - `parent-post-author`.`network` AS `parent-author-network` + `parent-post-author`.`network` AS `parent-author-network`, + `parent-post-author`.`blocked` AS `parent-author-blocked`, + `parent-post-author`.`hidden` AS `parent-author-hidden` FROM `post-thread` INNER JOIN `post` ON `post`.`uri-id` = `post-thread`.`uri-id` STRAIGHT_JOIN `contact` AS `author` ON `author`.`id` = `post-thread`.`author-id` @@ -2158,6 +2259,7 @@ CREATE VIEW `owner-view` AS SELECT `contact`.`photo` AS `photo`, `contact`.`thumb` AS `thumb`, `contact`.`micro` AS `micro`, + `contact`.`header` AS `header`, `contact`.`site-pubkey` AS `site-pubkey`, `contact`.`issued-id` AS `issued-id`, `contact`.`dfrn-id` AS `dfrn-id`, diff --git a/doc/API-Mastodon.md b/doc/API-Mastodon.md index a734bd544..2c0f613a2 100644 --- a/doc/API-Mastodon.md +++ b/doc/API-Mastodon.md @@ -11,21 +11,22 @@ Authentication is the same as described in [Using the APIs](help/api#Authenticat ## Clients -Supported mobile apps: +### Supported apps -- [AndStatus](http://andstatus.org) -- [Husky](https://husky.fwgs.ru) -- [Subway Tooter](https://github.com/tateisu/SubwayTooter) -- [Tusky](https://tusky.app) -- [Twidere](https://github.com/TwidereProject/) -- [twitlatte](https://github.com/moko256/twitlatte) -- [Yuito](https://github.com/accelforce/Yuito) +For supported apps please have a look at the [FAQ](help/FAQ#clients) -Unsupported mobile apps: +### Unsupported apps + +#### Android - [Fedilab](https://framagit.org/tom79/fedilab) Automatically uses the legacy API, see issue: https://framagit.org/tom79/fedilab/-/issues/520 - [Mammut](https://github.com/jamiesanson/Mammut) There are problems with the token request, see issue https://github.com/jamiesanson/Mammut/issues/19 +#### iOS + +- [Mast](https://github.com/Beesitech/Mast) Doesn't accept the entered instance name. Claims that it is invalid (Message is: "Not a valid instance (may be closed or dead)") +- [Toot!](https://apps.apple.com/app/toot/id1229021451) + ## Entities These endpoints use the [Mastodon API entities](https://docs.joinmastodon.org/entities/). @@ -73,6 +74,7 @@ These endpoints use the [Mastodon API entities](https://docs.joinmastodon.org/en - [`GET /api/v1/instance`](https://docs.joinmastodon.org/methods/instance#fetch-instance) +- GET /api/v1/instance/rules Undocumented, returns Terms of Service - [`GET /api/v1/instance/peers`](https://docs.joinmastodon.org/methods/instance#list-of-connected-domains) - [`GET /api/v1/lists`](https://docs.joinmastodon.org/methods/timelines/lists/) - [`POST /api/v1/lists`](https://docs.joinmastodon.org/methods/timelines/lists/) @@ -119,17 +121,30 @@ These endpoints use the [Mastodon API entities](https://docs.joinmastodon.org/en ## Currently unimplemented endpoints -These emdpoints are planned to be implemented +These emdpoints are planned to be implemented somewhere in the future. - [`PATCH /api/v1/accounts/update_credentials`](https://docs.joinmastodon.org/methods/accounts/) -- [`GET /api/v1/instance/activity`](https://docs.joinmastodon.org/methods/instance#weekly-activity) + +## Dummy endpoints + +These endpoints are returning empty data to avoid error messages when using third party clients. +They refer to features that don't exist in Friendica yet. + +- [`GET /api/v1/accounts/:id/identity_proofs`](https://docs.joinmastodon.org/methods/accounts/) +- [`GET /api/v1/announcements`](https://docs.joinmastodon.org/methods/announcements/) +- [`GET /api/v1/endorsements`](https://docs.joinmastodon.org/methods/accounts/endorsements/) +- [`GET /api/v1/filters`](https://docs.joinmastodon.org/methods/accounts/filters/) +- [`GET /api/v1/markers`](https://docs.joinmastodon.org/methods/timelines/markers/) +- [`GET /api/v1/scheduled_statuses`](https://docs.joinmastodon.org/methods/statuses/scheduled_statuses/) ## Non supportable endpoints -These endpoints won't be implemented, since they refer to functionality that doesn't exist in Friendica +These endpoints won't be implemented at the moment. +They refer to features or data that don't exist in Friendica yet. +- POST /api/meta Misskey API endpoint. - [`POST /api/v1/accounts`](https://docs.joinmastodon.org/methods/accounts/) -- [`GET /api/v1/accounts/:id/identity_proofs`](https://docs.joinmastodon.org/methods/accounts/) +- [`GET /api/v1/accounts/:id/featured_tags`](https://docs.joinmastodon.org/methods/accounts/) - [`POST /api/v1/accounts/:id/pin`](https://docs.joinmastodon.org/methods/accounts/) - [`POST /api/v1/accounts/:id/unpin`](https://docs.joinmastodon.org/methods/accounts/) - [`GET /api/v1/admin/accounts`](https://docs.joinmastodon.org/methods/admin/) @@ -138,30 +153,31 @@ These endpoints won't be implemented, since they refer to functionality that doe - [`GET /api/v1/admin/reports`](https://docs.joinmastodon.org/methods/admin/) - [`GET /api/v1/admin/reports/:id`](https://docs.joinmastodon.org/methods/admin/) - [`POST /api/v1/admin/reports/:id/{action}`](https://docs.joinmastodon.org/methods/admin/) -- [`GET /api/v1/announcements`](https://docs.joinmastodon.org/methods/announcements/) - [`POST /api/v1/announcements/:id/dismiss`](https://docs.joinmastodon.org/methods/announcements/) - [`PUT /api/v1/announcements/:id/reactions/{name}`](https://docs.joinmastodon.org/methods/announcements/) - [`DELETE /api/v1/announcements/:id/reactions/{name}`](https://docs.joinmastodon.org/methods/announcements/) - [`GET /api/v1/domain_blocks`](https://docs.joinmastodon.org/methods/accounts/domain_blocks/) - [`POST /api/v1/domain_blocks`](https://docs.joinmastodon.org/methods/accounts/domain_blocks/) - [`DELETE /api/v1/domain_blocks`](https://docs.joinmastodon.org/methods/accounts/domain_blocks/) -- [`GET /api/v1/endorsements`](https://docs.joinmastodon.org/methods/accounts/endorsements/) - [`GET /api/v1/featured_tags`](https://docs.joinmastodon.org/methods/accounts/featured_tags/) - [`POST /api/v1/featured_tags`](https://docs.joinmastodon.org/methods/accounts/featured_tags/) - [`DELETE /api/v1/featured_tags/:id`](https://docs.joinmastodon.org/methods/accounts/featured_tags/) - [`GET /api/v1/featured_tags/suggestions`](https://docs.joinmastodon.org/methods/accounts/featured_tags/) -- [`GET /api/v1/filters`](https://docs.joinmastodon.org/methods/accounts/filters/) - [`GET /api/v1/filters/:id`](https://docs.joinmastodon.org/methods/accounts/filters/) - [`POST /api/v1/filters/:id`](https://docs.joinmastodon.org/methods/accounts/filters/) - [`PUT /api/v1/filters/:id`](https://docs.joinmastodon.org/methods/accounts/filters/) - [`DELETE /api/v1/filters/:id`](https://docs.joinmastodon.org/methods/accounts/filters/) -- [`GET /api/v1/markers`](https://docs.joinmastodon.org/methods/timelines/markers/) +- [`GET /api/v1/instance/activity`](https://docs.joinmastodon.org/methods/instance#weekly-activity) - [`POST /api/v1/markers`](https://docs.joinmastodon.org/methods/timelines/markers/) - [`GET /api/v1/polls/:id`](https://docs.joinmastodon.org/methods/statuses/polls/) - [`POST /api/v1/polls/:id/votes`](https://docs.joinmastodon.org/methods/statuses/polls/) +- [`DELETE /api/v1/push/subscription`](https://docs.joinmastodon.org/methods/notifications/push/) +- [`GET /api/v1/push/subscription`](https://docs.joinmastodon.org/methods/notifications/push/) +- [`PUSH /api/v1/push/subscription`](https://docs.joinmastodon.org/methods/notifications/push/) +- [`PUT /api/v1/push/subscription`](https://docs.joinmastodon.org/methods/notifications/push/) - [`POST /api/v1/reports`](https://docs.joinmastodon.org/methods/accounts/reports/) -- [`GET /api/v1/scheduled_statuses`](https://docs.joinmastodon.org/methods/statuses/scheduled_statuses/) - [`GET /api/v1/scheduled_statuses/:id`](https://docs.joinmastodon.org/methods/statuses/scheduled_statuses/) - [`PUT /api/v1/scheduled_statuses/:id`](https://docs.joinmastodon.org/methods/statuses/scheduled_statuses/) - [`DELETE /api/v1/scheduled_statuses/:id`](https://docs.joinmastodon.org/methods/statuses/scheduled_statuses/) +- [`GET /api/v1/streaming`](https://docs.joinmastodon.org/methods/timelines/streaming/) - [`DELETE /api/v1/suggestions/:id`](https://docs.joinmastodon.org/methods/accounts/suggestions/) diff --git a/doc/FAQ.md b/doc/FAQ.md index eda41d5ab..4a310041b 100644 --- a/doc/FAQ.md +++ b/doc/FAQ.md @@ -33,9 +33,10 @@ User If this FAQ does not answer your question you can always reach out to the community via the following options: * Friendica Support Forum: [@helpers@forum.friendi.ca](https://forum.friendi.ca/~helpers) - * XMPP: support(at)forum.friendi.ca - * IRC: [#friendica at freenode.net](https://webchat.freenode.net/?settings=#friendica) - * Matrix: [#friendica-en:matrix.org](https://matrix.to/#/#friendica-en:matrix.org) or [#friendi.ca:matrix.org](https://matrix.to/#/#friendi.ca:matrix.org) + * Community chat rooms (the IRC, Matrix and XMPP rooms are bridged) these public chats are logged [from IRC](https://gnusociarg.nsupdate.info/2021/%23friendica/) and [Matrix](https://view.matrix.org/alias/%23friendi.ca:matrix.org/) + * XMPP: support(at)forum.friendi.ca + * IRC: #friendica at libera.chat or [#friendica at freenode.net](https://webchat.freenode.net/?settings=#friendica) + * Matrix: [#friendica-en:matrix.org](https://matrix.to/#/#friendica-en:matrix.org) or [#friendi.ca:matrix.org](https://matrix.to/#/#friendi.ca:matrix.org) * [Mailing List](http://mailman.friendi.ca/mailman/listinfo/support-friendi.ca) @@ -16,14 +16,14 @@ .. - config/ - doc/ - images/ - library/ - spec/ - tests/ - view/ - vendor/ + ../config/ + ../doc/ + ../images/ + ../library/ + ../spec/ + ../tests/ + ../view/ + ../vendor/ diff --git a/tests/src/Core/InstallerTest.php b/tests/src/Core/InstallerTest.php index 7404e216e..8cd1a3fad 100644 --- a/tests/src/Core/InstallerTest.php +++ b/tests/src/Core/InstallerTest.php @@ -103,7 +103,7 @@ class InstallerTest extends MockedTest $this->mockL10nT('File Information PHP module', 1); $this->mockL10nT('Error: File Information PHP module required but not installed.', 1); $this->mockL10nT('Program execution functions', 1); - $this->mockL10nT('Error: Program execution functions required but not enabled.', 1); + $this->mockL10nT('Error: Program execution functions (proc_open) required but not enabled.', 1); } private function assertCheckExist($position, $title, $help, $status, $required, $assertionArray) @@ -248,7 +248,7 @@ class InstallerTest extends MockedTest self::assertFalse($install->checkFunctions()); self::assertCheckExist(9, 'Program execution functions', - 'Error: Program execution functions required but not enabled.', + 'Error: Program execution functions (proc_open) required but not enabled.', false, true, $install->getChecks()); diff --git a/tests/src/Core/StorageManagerTest.php b/tests/src/Core/StorageManagerTest.php index d2078c7e2..618b5e33c 100644 --- a/tests/src/Core/StorageManagerTest.php +++ b/tests/src/Core/StorageManagerTest.php @@ -35,6 +35,7 @@ use Friendica\Model\Config\Config; use Friendica\Model\Storage; use Friendica\Core\Session; use Friendica\Model\Storage\StorageException; +use Friendica\Network\HTTPRequest; use Friendica\Test\DatabaseTest; use Friendica\Test\Util\Database\StaticDatabase; use Friendica\Test\Util\VFSTrait; @@ -54,6 +55,8 @@ class StorageManagerTest extends DatabaseTest private $logger; /** @var L10n */ private $l10n; + /** @var HTTPRequest */ + private $httpRequest; use VFSTrait; @@ -79,6 +82,8 @@ class StorageManagerTest extends DatabaseTest $this->config = new PreloadConfig($configCache, $configModel); $this->l10n = \Mockery::mock(L10n::class); + + $this->httpRequest = \Mockery::mock(HTTPRequest::class); } /** @@ -86,7 +91,7 @@ class StorageManagerTest extends DatabaseTest */ public function testInstance() { - $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n); + $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, $this->httpRequest); self::assertInstanceOf(StorageManager::class, $storageManager); } @@ -168,7 +173,7 @@ class StorageManagerTest extends DatabaseTest */ public function testGetByName($name, $assert, $assertName, $userBackend) { - $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n); + $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, $this->httpRequest); $storage = $storageManager->getByName($name, $userBackend); @@ -188,7 +193,7 @@ class StorageManagerTest extends DatabaseTest */ public function testIsValidBackend($name, $assert, $assertName, $userBackend) { - $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n); + $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, $this->httpRequest); // true in every of the backends self::assertEquals(!empty($assertName), $storageManager->isValidBackend($name)); @@ -202,7 +207,7 @@ class StorageManagerTest extends DatabaseTest */ public function testListBackends() { - $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n); + $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, $this->httpRequest); self::assertEquals(StorageManager::DEFAULT_BACKENDS, $storageManager->listBackends()); } @@ -214,7 +219,7 @@ class StorageManagerTest extends DatabaseTest */ public function testGetBackend($name, $assert, $assertName, $userBackend) { - $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n); + $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, $this->httpRequest); self::assertNull($storageManager->getBackend()); @@ -235,7 +240,7 @@ class StorageManagerTest extends DatabaseTest { $this->config->set('storage', 'name', $name); - $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n); + $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, $this->httpRequest); if ($userBackend) { self::assertInstanceOf($assert, $storageManager->getBackend()); @@ -260,7 +265,7 @@ class StorageManagerTest extends DatabaseTest ->addRule(ISession::class, ['instanceOf' => Session\Memory::class, 'shared' => true, 'call' => null]); DI::init($dice); - $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n); + $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, $this->httpRequest); self::assertTrue($storageManager->register(SampleStorageBackend::class)); @@ -301,7 +306,7 @@ class StorageManagerTest extends DatabaseTest $this->loadFixture(__DIR__ . '/../../datasets/storage/database.fixture.php', $this->dba); - $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n); + $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, $this->httpRequest); $storage = $storageManager->getByName($name); $storageManager->move($storage); @@ -326,7 +331,7 @@ class StorageManagerTest extends DatabaseTest $this->expectExceptionMessage("Can't move to storage backend 'SystemResource'"); $this->expectException(StorageException::class); - $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n); + $storageManager = new StorageManager($this->dba, $this->config, $this->logger, $this->l10n, $this->httpRequest); $storage = $storageManager->getByName(Storage\SystemResource::getName()); $storageManager->move($storage); } diff --git a/tests/src/Model/Storage/FilesystemStorageTest.php b/tests/src/Model/Storage/FilesystemStorageTest.php index 6d50e06c4..deb453a04 100644 --- a/tests/src/Model/Storage/FilesystemStorageTest.php +++ b/tests/src/Model/Storage/FilesystemStorageTest.php @@ -81,7 +81,7 @@ class FilesystemStorageTest extends StorageTest public function testMissingDirPermissions() { $this->expectException(StorageException::class); - $this->expectExceptionMessageRegExp("/Filesystem storage failed to create \".*\". Check you write permissions./"); + $this->expectExceptionMessageMatches("/Filesystem storage failed to create \".*\". Check you write permissions./"); $this->root->getChild('storage')->chmod(000); $instance = $this->getInstance(); @@ -97,7 +97,7 @@ class FilesystemStorageTest extends StorageTest static::markTestIncomplete("Cannot catch file_put_content() error due vfsStream failure"); $this->expectException(StorageException::class); - $this->expectExceptionMessageRegExp("/Filesystem storage failed to save data to \".*\". Check your write permissions/"); + $this->expectExceptionMessageMatches("/Filesystem storage failed to save data to \".*\". Check your write permissions/"); vfsStream::create(['storage' => ['f0' => ['c0' => ['k0i0' => '']]]], $this->root); diff --git a/tests/src/Util/BasePathTest.php b/tests/src/Util/BasePathTest.php index ffafa5b55..7cdf612e6 100644 --- a/tests/src/Util/BasePathTest.php +++ b/tests/src/Util/BasePathTest.php @@ -68,7 +68,7 @@ class BasePathTest extends MockedTest public function testFailedBasePath() { $this->expectException(\Exception::class); - $this->expectExceptionMessageRegExp("/(.*) is not a valid basepath/"); + $this->expectExceptionMessageMatches("/(.*) is not a valid basepath/"); $basepath = new BasePath('/now23452sgfgas', []); $basepath->getPath(); diff --git a/tests/src/Util/Config/ConfigFileLoaderTest.php b/tests/src/Util/Config/ConfigFileLoaderTest.php index 781e1415f..b54ae1ec2 100644 --- a/tests/src/Util/Config/ConfigFileLoaderTest.php +++ b/tests/src/Util/Config/ConfigFileLoaderTest.php @@ -59,7 +59,7 @@ class ConfigFileLoaderTest extends MockedTest */ public function testLoadConfigWrong() { - $this->expectExceptionMessageRegExp("/Error loading config file \w+/"); + $this->expectExceptionMessageMatches("/Error loading config file \w+/"); $this->expectException(\Exception::class); $this->delConfigFile('local.config.php'); diff --git a/tests/src/Util/EMailerTest.php b/tests/src/Util/EMailerTest.php index 3b1c3cc1f..7f96e010a 100644 --- a/tests/src/Util/EMailerTest.php +++ b/tests/src/Util/EMailerTest.php @@ -78,16 +78,16 @@ class EMailerTest extends MockedTest self::assertTrue($emailer->send($testEmail)); - self::assertContains("X-Friendica-Host: friendica.local", EmailerSpy::$MAIL_DATA['headers']); - self::assertContains("X-Friendica-Platform: Friendica", EmailerSpy::$MAIL_DATA['headers']); - self::assertContains("List-ID: ", EmailerSpy::$MAIL_DATA['headers']); - self::assertContains("List-Archive: ", EmailerSpy::$MAIL_DATA['headers']); - self::assertContains("Reply-To: Sender ", EmailerSpy::$MAIL_DATA['headers']); - self::assertContains("MIME-Version: 1.0", EmailerSpy::$MAIL_DATA['headers']); + self::assertStringContainsString("X-Friendica-Host: friendica.local", EmailerSpy::$MAIL_DATA['headers']); + self::assertStringContainsString("X-Friendica-Platform: Friendica", EmailerSpy::$MAIL_DATA['headers']); + self::assertStringContainsString("List-ID: ", EmailerSpy::$MAIL_DATA['headers']); + self::assertStringContainsString("List-Archive: ", EmailerSpy::$MAIL_DATA['headers']); + self::assertStringContainsString("Reply-To: Sender ", EmailerSpy::$MAIL_DATA['headers']); + self::assertStringContainsString("MIME-Version: 1.0", EmailerSpy::$MAIL_DATA['headers']); // Base64 "Test Text" - self::assertContains(chunk_split(base64_encode('Test Text')), EmailerSpy::$MAIL_DATA['body']); + self::assertStringContainsString(chunk_split(base64_encode('Test Text')), EmailerSpy::$MAIL_DATA['body']); // Base64 "Test MessageBold" - self::assertContains(chunk_split(base64_encode("Test MessageBold")), EmailerSpy::$MAIL_DATA['body']); + self::assertStringContainsString(chunk_split(base64_encode("Test MessageBold")), EmailerSpy::$MAIL_DATA['body']); self::assertEquals("Test Subject", EmailerSpy::$MAIL_DATA['subject']); self::assertEquals("recipient@friendica.local", EmailerSpy::$MAIL_DATA['to']); self::assertEquals("-f sender@friendica.local", EmailerSpy::$MAIL_DATA['parameters']); diff --git a/tests/src/Util/HTTPInputDataTest.php b/tests/src/Util/HTTPInputDataTest.php new file mode 100644 index 000000000..5e8fd228f --- /dev/null +++ b/tests/src/Util/HTTPInputDataTest.php @@ -0,0 +1,152 @@ +. + * + */ + +namespace Friendica\Test\src\Util; + +use Friendica\Test\MockedTest; +use Friendica\Test\Util\HTTPInputDataDouble; +use Friendica\Util\HTTPInputData; + +/** + * Testing HTTPInputData + * + * @see HTTPInputData + */ +class HTTPInputDataTest extends MockedTest +{ + /** + * Returns the data stream for the unit test + * Each array element of the first hierarchy represents one test run + * Each array element of the second hierarchy represents the parameters, passed to the test function + * + * @return array[] + */ + public function dataStream() + { + return [ + 'multipart' => [ + 'contenttype' => 'multipart/form-data;boundary=43395968-f65c-437e-b536-5b33e3e3c7e5;charset=utf8', + 'input' => file_get_contents(__DIR__ . '/../../datasets/http/multipart.httpinput'), + 'expected' => [ + 'variables' => [ + 'display_name' => 'User Name', + 'note' => 'About me', + 'locked' => 'false', + 'fields_attributes' => [ + 0 => [ + 'name' => 'variable 1', + 'value' => 'value 1', + ], + 1 => [ + 'name' => 'variable 2', + 'value' => 'value 2', + ] + ] + ], + 'files' => [] + ] + ], + 'multipart-file' => [ + 'contenttype' => 'multipart/form-data;boundary=6d4d5a40-651a-4468-a62e-5a6ca2bf350d;charset=utf8', + 'input' => file_get_contents(__DIR__ . '/../../datasets/http/multipart-file.httpinput'), + 'expected' => [ + 'variables' => [ + 'display_name' => 'Vorname Nachname', + 'note' => 'About me', + 'fields_attributes' => [ + 0 => [ + 'name' => 'variable 1', + 'value' => 'value 1', + ], + 1 => [ + 'name' => 'variable 2', + 'value' => 'value 2', + ] + ] + ], + 'files' => [ + 'avatar' => [ + 'name' => '8ZUCS34Y5XNH', + 'type' => 'image/png', + 'tmp_name' => '8ZUCS34Y5XNH', + 'error' => 0, + 'size' => 349330 + ], + 'header' => [ + 'name' => 'V2B6Z1IICGPM', + 'type' => 'image/png', + 'tmp_name' => 'V2B6Z1IICGPM', + 'error' => 0, + 'size' => 1323635 + ] + ] + ] + ], + 'form-urlencoded' => [ + 'contenttype' => 'application/x-www-form-urlencoded;charset=utf8', + 'input' => file_get_contents(__DIR__ . '/../../datasets/http/form-urlencoded.httpinput'), + 'expected' => [ + 'variables' => [ + 'title' => 'Test2', + ], + 'files' => [] + ] + ], + 'form-urlencoded-json' => [ + 'contenttype' => 'application/x-www-form-urlencoded;charset=utf8', + 'input' => file_get_contents(__DIR__ . '/../../datasets/http/form-urlencoded-json.httpinput'), + 'expected' => [ + 'variables' => [ + 'media_ids' => [], + 'sensitive' => false, + 'status' => 'Test Status', + 'visibility' => 'private', + 'spoiler_text' => 'Title' + ], + 'files' => [] + ] + ] + ]; + } + + /** + * Tests the HTTPInputData::process() method + * + * @param string $contentType The content typer of the transmitted data + * @param string $input The input, we got from the data stream + * @param array $expected The expected output + * + * @dataProvider dataStream + * @see HTTPInputData::process() + */ + public function testHttpInput(string $contentType, string $input, array $expected) + { + HTTPInputDataDouble::setPhpInputContentType($contentType); + HTTPInputDataDouble::setPhpInputContent($input); + $stream = fopen('php://memory', 'r+'); + fwrite($stream, $input); + rewind($stream); + + HTTPInputDataDouble::setPhpInputStream($stream); + $output = HTTPInputDataDouble::process(); + $this->assertEqualsCanonicalizing($expected, $output); + } +} diff --git a/tests/src/Util/Logger/AbstractLoggerTest.php b/tests/src/Util/Logger/AbstractLoggerTest.php index 44e210b9c..d008f4dc4 100644 --- a/tests/src/Util/Logger/AbstractLoggerTest.php +++ b/tests/src/Util/Logger/AbstractLoggerTest.php @@ -106,8 +106,8 @@ abstract class AbstractLoggerTest extends MockedTest $logger->emergency('A {psr} test', ['psr' => 'working']); $logger->alert('An {array} test', ['array' => ['it', 'is', 'working']]); $text = $this->getContent(); - self::assertContains('A working test', $text); - self::assertContains('An ["it","is","working"] test', $text); + self::assertStringContainsString('A working test', $text); + self::assertStringContainsString('An ["it","is","working"] test', $text); } /** @@ -119,9 +119,9 @@ abstract class AbstractLoggerTest extends MockedTest $logger->emergency('A test'); $text = $this->getContent(); - self::assertContains('"file":"' . self::FILE . '"', $text); - self::assertContains('"line":' . self::LINE, $text); - self::assertContains('"function":"' . self::FUNC . '"', $text); + self::assertStringContainsString('"file":"' . self::FILE . '"', $text); + self::assertStringContainsString('"line":' . self::LINE, $text); + self::assertStringContainsString('"function":"' . self::FUNC . '"', $text); } /** @@ -157,7 +157,7 @@ abstract class AbstractLoggerTest extends MockedTest self::assertLogline($text); - self::assertContains(@json_encode($context), $text); + self::assertStringContainsString(@json_encode($context), $text); } /** @@ -176,7 +176,7 @@ abstract class AbstractLoggerTest extends MockedTest self::assertLogline($text); - self::assertContains(@json_encode($assertion), $this->getContent()); + self::assertStringContainsString(@json_encode($assertion), $this->getContent()); } public function testNoObjectHandling() @@ -187,6 +187,6 @@ abstract class AbstractLoggerTest extends MockedTest self::assertLogline($text); - self::assertContains('test', $this->getContent()); + self::assertStringContainsString('test', $this->getContent()); } } diff --git a/tests/src/Util/Logger/StreamLoggerTest.php b/tests/src/Util/Logger/StreamLoggerTest.php index f6bf3313a..8599e08f4 100644 --- a/tests/src/Util/Logger/StreamLoggerTest.php +++ b/tests/src/Util/Logger/StreamLoggerTest.php @@ -128,7 +128,7 @@ class StreamLoggerTest extends AbstractLoggerTest public function testWrongUrl() { $this->expectException(\UnexpectedValueException::class); - $this->expectExceptionMessageRegExp("/The stream or file .* could not be opened: .* /"); + $this->expectExceptionMessageMatches("/The stream or file .* could not be opened: .* /"); $logfile = vfsStream::newFile('friendica.log') ->at($this->root)->chmod(0); @@ -144,7 +144,7 @@ class StreamLoggerTest extends AbstractLoggerTest public function testWrongDir() { $this->expectException(\UnexpectedValueException::class); - $this->expectExceptionMessageRegExp("/Directory .* cannot get created: .* /"); + $this->expectExceptionMessageMatches("/Directory .* cannot get created: .* /"); static::markTestIncomplete('We need a platform independent way to set directory to readonly'); @@ -159,7 +159,7 @@ class StreamLoggerTest extends AbstractLoggerTest public function testWrongMinimumLevel() { $this->expectException(\InvalidArgumentException::class); - $this->expectExceptionMessageRegExp("/The level \".*\" is not valid./"); + $this->expectExceptionMessageMatches("/The level \".*\" is not valid./"); $logger = new StreamLogger('test', 'file.text', $this->introspection, $this->fileSystem, 'NOPE'); } @@ -170,7 +170,7 @@ class StreamLoggerTest extends AbstractLoggerTest public function testWrongLogLevel() { $this->expectException(\InvalidArgumentException::class); - $this->expectExceptionMessageRegExp("/The level \".*\" is not valid./"); + $this->expectExceptionMessageMatches("/The level \".*\" is not valid./"); $logfile = vfsStream::newFile('friendica.log') ->at($this->root); diff --git a/tests/src/Util/Logger/SyslogLoggerTest.php b/tests/src/Util/Logger/SyslogLoggerTest.php index 9408495e7..e93e43dd5 100644 --- a/tests/src/Util/Logger/SyslogLoggerTest.php +++ b/tests/src/Util/Logger/SyslogLoggerTest.php @@ -63,7 +63,7 @@ class SyslogLoggerTest extends AbstractLoggerTest public function testWrongMinimumLevel() { $this->expectException(\InvalidArgumentException::class); - $this->expectExceptionMessageRegExp("/The level \".*\" is not valid./"); + $this->expectExceptionMessageMatches("/The level \".*\" is not valid./"); $logger = new SyslogLoggerWrapper('test', $this->introspection, 'NOPE'); } @@ -74,7 +74,7 @@ class SyslogLoggerTest extends AbstractLoggerTest public function testWrongLogLevel() { $this->expectException(\InvalidArgumentException::class); - $this->expectExceptionMessageRegExp("/The level \".*\" is not valid./"); + $this->expectExceptionMessageMatches("/The level \".*\" is not valid./"); $logger = new SyslogLoggerWrapper('test', $this->introspection); @@ -88,7 +88,7 @@ class SyslogLoggerTest extends AbstractLoggerTest { if (PHP_MAJOR_VERSION < 8) { $this->expectException(\UnexpectedValueException::class); - $this->expectExceptionMessageRegExp("/Can\'t open syslog for ident \".*\" and facility \".*\": .* /"); + $this->expectExceptionMessageMatches("/Can\'t open syslog for ident \".*\" and facility \".*\": .* /"); } else { $this->expectException(\TypeError::class); $this->expectExceptionMessage("openlog(): Argument #3 (\$facility) must be of type int, string given"); diff --git a/update.php b/update.php index a34a5dbb0..aa043468c 100644 --- a/update.php +++ b/update.php @@ -49,9 +49,11 @@ use Friendica\Database\DBStructure; use Friendica\DI; use Friendica\Model\Contact; use Friendica\Model\Item; +use Friendica\Model\ItemURI; use Friendica\Model\Notification; use Friendica\Model\Photo; use Friendica\Model\Post; +use Friendica\Model\Profile; use Friendica\Model\Storage; use Friendica\Worker\Delivery; @@ -97,8 +99,9 @@ function update_1298() DBA::update('profile', [$translateKey => $key], ['id' => $data['id']]); Logger::notice('Updated contact', ['action' => 'update', 'contact' => $data['id'], "$translateKey" => $key, 'was' => $data[$translateKey]]); - Worker::add(PRIORITY_LOW, 'ProfileUpdate', $data['id']); + Contact::updateSelfFromUserID($data['id']); + Profile::publishUpdate($data['id']); $success++; } } @@ -152,7 +155,9 @@ function update_1323() { $users = DBA::select('user', ['uid']); while ($user = DBA::fetch($users)) { - Contact::updateSelfFromUserID($user['uid']); + if (Contact::updateSelfFromUserID($user['uid'])) { + Profile::publishUpdate($user['uid']); + } } DBA::close($users); @@ -834,7 +839,7 @@ function update_1404() while ($task = DBA::fetch($tasks)) { $parameters = json_decode($task['parameter'], true); - if (in_array($parameters[0], [Delivery::MAIL, Delivery::SUGGESTION, Delivery::REMOVAL, Delivery::RELOCATION])) { + if (is_array($parameters) && count($parameters) && in_array($parameters[0], [Delivery::MAIL, Delivery::SUGGESTION, Delivery::REMOVAL, Delivery::RELOCATION])) { continue; } @@ -912,3 +917,31 @@ function update_1413() return Update::FAILED; } } + +function update_1419() +{ + $mails = DBA::select('mail', ['id', 'from-url', 'uri', 'parent-uri', 'guid'], [], ['order' => ['id']]); + while ($mail = DBA::fetch($mails)) { + $fields = []; + $fields['author-id'] = Contact::getIdForURL($mail['from-url'], 0, false); + if (empty($fields['author-id'])) { + continue; + } + + $fields['uri-id'] = ItemURI::insert(['uri' => $mail['uri'], 'guid' => $mail['guid']]); + $fields['parent-uri-id'] = ItemURI::getIdByURI($mail['parent-uri']); + + $reply = DBA::selectFirst('mail', ['uri', 'uri-id', 'guid'], ['parent-uri' => $mail['parent-uri'], 'reply' => false]); + if (!empty($reply)) { + $fields['thr-parent'] = $reply['uri']; + if (!empty($reply['uri-id'])) { + $fields['thr-parent-id'] = $reply['uri-id']; + } else { + $fields['thr-parent-id'] = ItemURI::insert(['uri' => $reply['uri'], 'guid' => $reply['guid']]); + } + } + + DBA::update('mail', $fields, ['id' => $mail['id']]); + } + return Update::SUCCESS; +} diff --git a/view/lang/C/messages.po b/view/lang/C/messages.po index 2234a8c16..2ba0ba2e9 100644 --- a/view/lang/C/messages.po +++ b/view/lang/C/messages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2021.06-dev\n" +"Project-Id-Version: 2021.06-rc\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-16 07:41+0000\n" +"POT-Creation-Date: 2021-06-27 23:18-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,32 +18,32 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" -#: include/api.php:1137 +#: include/api.php:1136 #, php-format msgid "Daily posting limit of %d post reached. The post was rejected." msgid_plural "Daily posting limit of %d posts reached. The post was rejected." msgstr[0] "" msgstr[1] "" -#: include/api.php:1151 +#: include/api.php:1150 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "Weekly posting limit of %d posts reached. The post was rejected." msgstr[0] "" msgstr[1] "" -#: include/api.php:1165 +#: include/api.php:1164 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgstr "" -#: include/api.php:4528 mod/photos.php:107 mod/photos.php:211 +#: include/api.php:4527 mod/photos.php:107 mod/photos.php:211 #: mod/photos.php:639 mod/photos.php:1043 mod/photos.php:1060 -#: mod/photos.php:1609 src/Model/User.php:1045 src/Model/User.php:1053 -#: src/Model/User.php:1061 src/Module/Settings/Profile/Photo/Crop.php:97 -#: src/Module/Settings/Profile/Photo/Crop.php:113 -#: src/Module/Settings/Profile/Photo/Crop.php:129 -#: src/Module/Settings/Profile/Photo/Crop.php:178 +#: mod/photos.php:1609 src/Model/User.php:1105 src/Model/User.php:1113 +#: src/Model/User.php:1121 src/Module/Settings/Profile/Photo/Crop.php:98 +#: src/Module/Settings/Profile/Photo/Crop.php:114 +#: src/Module/Settings/Profile/Photo/Crop.php:130 +#: src/Module/Settings/Profile/Photo/Crop.php:176 #: src/Module/Settings/Profile/Photo/Index.php:96 #: src/Module/Settings/Profile/Photo/Index.php:102 msgid "Profile Photos" @@ -54,7 +54,7 @@ msgstr "" msgid "%1$s poked %2$s" msgstr "" -#: include/conversation.php:227 src/Model/Item.php:2523 +#: include/conversation.php:227 src/Model/Item.php:2609 msgid "event" msgstr "" @@ -62,7 +62,7 @@ msgstr "" msgid "status" msgstr "" -#: include/conversation.php:235 mod/tagger.php:90 src/Model/Item.php:2525 +#: include/conversation.php:235 mod/tagger.php:90 src/Model/Item.php:2611 msgid "photo" msgstr "" @@ -75,27 +75,27 @@ msgstr "" msgid "Select" msgstr "" -#: include/conversation.php:565 mod/photos.php:1471 mod/settings.php:660 +#: include/conversation.php:565 mod/photos.php:1471 mod/settings.php:636 #: src/Module/Admin/Users/Active.php:139 src/Module/Admin/Users/Blocked.php:140 #: src/Module/Admin/Users/Index.php:153 src/Module/Contact.php:894 #: src/Module/Contact.php:1198 msgid "Delete" msgstr "" -#: include/conversation.php:600 src/Object/Post.php:449 src/Object/Post.php:450 +#: include/conversation.php:600 src/Object/Post.php:453 src/Object/Post.php:454 #, php-format msgid "View %s's profile @ %s" msgstr "" -#: include/conversation.php:613 src/Object/Post.php:437 +#: include/conversation.php:613 src/Object/Post.php:441 msgid "Categories:" msgstr "" -#: include/conversation.php:614 src/Object/Post.php:438 +#: include/conversation.php:614 src/Object/Post.php:442 msgid "Filed under:" msgstr "" -#: include/conversation.php:621 src/Object/Post.php:463 +#: include/conversation.php:621 src/Object/Post.php:467 #, php-format msgid "%s from %s" msgstr "" @@ -104,10 +104,10 @@ msgstr "" msgid "View in context" msgstr "" -#: include/conversation.php:638 include/conversation.php:1224 +#: include/conversation.php:638 include/conversation.php:1222 #: mod/editpost.php:104 mod/message.php:204 mod/message.php:374 #: mod/photos.php:1536 mod/wallmessage.php:155 src/Module/Item/Compose.php:159 -#: src/Object/Post.php:497 +#: src/Object/Post.php:501 msgid "Please wait" msgstr "" @@ -119,108 +119,108 @@ msgstr "" msgid "Delete Selected Items" msgstr "" -#: include/conversation.php:744 include/conversation.php:747 -#: include/conversation.php:750 include/conversation.php:753 +#: include/conversation.php:742 include/conversation.php:745 +#: include/conversation.php:748 include/conversation.php:751 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: include/conversation.php:756 +#: include/conversation.php:754 #, php-format msgid "You are following %s." msgstr "" -#: include/conversation.php:759 +#: include/conversation.php:757 msgid "Tagged" msgstr "" -#: include/conversation.php:772 include/conversation.php:1116 -#: include/conversation.php:1154 +#: include/conversation.php:770 include/conversation.php:1114 +#: include/conversation.php:1152 #, php-format msgid "%s reshared this." msgstr "" -#: include/conversation.php:774 +#: include/conversation.php:772 msgid "Reshared" msgstr "" -#: include/conversation.php:774 +#: include/conversation.php:772 #, php-format -msgid "Reshared by %s" +msgid "Reshared by %s <%s>" msgstr "" -#: include/conversation.php:777 +#: include/conversation.php:775 #, php-format msgid "%s is participating in this thread." msgstr "" -#: include/conversation.php:780 +#: include/conversation.php:778 msgid "Stored" msgstr "" -#: include/conversation.php:783 +#: include/conversation.php:781 msgid "Global" msgstr "" -#: include/conversation.php:786 +#: include/conversation.php:784 msgid "Relayed" msgstr "" -#: include/conversation.php:786 +#: include/conversation.php:784 #, php-format -msgid "Relayed by %s." +msgid "Relayed by %s <%s>" msgstr "" -#: include/conversation.php:789 +#: include/conversation.php:787 msgid "Fetched" msgstr "" -#: include/conversation.php:789 +#: include/conversation.php:787 #, php-format -msgid "Fetched because of %s" +msgid "Fetched because of %s <%s>" msgstr "" -#: include/conversation.php:949 view/theme/frio/theme.php:323 +#: include/conversation.php:947 view/theme/frio/theme.php:323 msgid "Follow Thread" msgstr "" -#: include/conversation.php:950 src/Model/Contact.php:986 +#: include/conversation.php:948 src/Model/Contact.php:1002 msgid "View Status" msgstr "" -#: include/conversation.php:951 include/conversation.php:973 -#: src/Model/Contact.php:912 src/Model/Contact.php:978 -#: src/Model/Contact.php:987 src/Module/Directory.php:166 -#: src/Module/Settings/Profile/Index.php:240 +#: include/conversation.php:949 include/conversation.php:971 +#: src/Model/Contact.php:928 src/Model/Contact.php:994 +#: src/Model/Contact.php:1003 src/Module/Directory.php:166 +#: src/Module/Settings/Profile/Index.php:224 msgid "View Profile" msgstr "" -#: include/conversation.php:952 src/Model/Contact.php:988 +#: include/conversation.php:950 src/Model/Contact.php:1004 msgid "View Photos" msgstr "" -#: include/conversation.php:953 src/Model/Contact.php:979 -#: src/Model/Contact.php:989 +#: include/conversation.php:951 src/Model/Contact.php:995 +#: src/Model/Contact.php:1005 msgid "Network Posts" msgstr "" -#: include/conversation.php:954 src/Model/Contact.php:980 -#: src/Model/Contact.php:990 +#: include/conversation.php:952 src/Model/Contact.php:996 +#: src/Model/Contact.php:1006 msgid "View Contact" msgstr "" -#: include/conversation.php:955 src/Model/Contact.php:992 +#: include/conversation.php:953 src/Model/Contact.php:1008 msgid "Send PM" msgstr "" -#: include/conversation.php:956 src/Module/Admin/Blocklist/Contact.php:84 +#: include/conversation.php:954 src/Module/Admin/Blocklist/Contact.php:84 #: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:154 #: src/Module/Contact.php:633 src/Module/Contact.php:891 #: src/Module/Contact.php:1173 msgid "Block" msgstr "" -#: include/conversation.php:957 src/Module/Contact.php:634 +#: include/conversation.php:955 src/Module/Contact.php:634 #: src/Module/Contact.php:892 src/Module/Contact.php:1181 #: src/Module/Notifications/Introductions.php:113 #: src/Module/Notifications/Introductions.php:191 @@ -228,273 +228,273 @@ msgstr "" msgid "Ignore" msgstr "" -#: include/conversation.php:961 src/Object/Post.php:424 +#: include/conversation.php:959 src/Object/Post.php:428 msgid "Languages" msgstr "" -#: include/conversation.php:965 src/Model/Contact.php:993 +#: include/conversation.php:963 src/Model/Contact.php:1009 msgid "Poke" msgstr "" -#: include/conversation.php:970 mod/follow.php:146 src/Content/Widget.php:76 -#: src/Model/Contact.php:981 src/Model/Contact.php:994 +#: include/conversation.php:968 mod/follow.php:146 src/Content/Widget.php:76 +#: src/Model/Contact.php:997 src/Model/Contact.php:1010 #: view/theme/vier/theme.php:172 msgid "Connect/Follow" msgstr "" -#: include/conversation.php:1101 +#: include/conversation.php:1099 #, php-format msgid "%s likes this." msgstr "" -#: include/conversation.php:1104 +#: include/conversation.php:1102 #, php-format msgid "%s doesn't like this." msgstr "" -#: include/conversation.php:1107 +#: include/conversation.php:1105 #, php-format msgid "%s attends." msgstr "" -#: include/conversation.php:1110 +#: include/conversation.php:1108 #, php-format msgid "%s doesn't attend." msgstr "" -#: include/conversation.php:1113 +#: include/conversation.php:1111 #, php-format msgid "%s attends maybe." msgstr "" -#: include/conversation.php:1122 +#: include/conversation.php:1120 msgid "and" msgstr "" -#: include/conversation.php:1125 +#: include/conversation.php:1123 #, php-format msgid "and %d other people" msgstr "" -#: include/conversation.php:1133 +#: include/conversation.php:1131 #, php-format msgid "%2$d people like this" msgstr "" -#: include/conversation.php:1134 +#: include/conversation.php:1132 #, php-format msgid "%s like this." msgstr "" -#: include/conversation.php:1137 +#: include/conversation.php:1135 #, php-format msgid "%2$d people don't like this" msgstr "" -#: include/conversation.php:1138 +#: include/conversation.php:1136 #, php-format msgid "%s don't like this." msgstr "" -#: include/conversation.php:1141 +#: include/conversation.php:1139 #, php-format msgid "%2$d people attend" msgstr "" -#: include/conversation.php:1142 +#: include/conversation.php:1140 #, php-format msgid "%s attend." msgstr "" -#: include/conversation.php:1145 +#: include/conversation.php:1143 #, php-format msgid "%2$d people don't attend" msgstr "" -#: include/conversation.php:1146 +#: include/conversation.php:1144 #, php-format msgid "%s don't attend." msgstr "" -#: include/conversation.php:1149 +#: include/conversation.php:1147 #, php-format msgid "%2$d people attend maybe" msgstr "" -#: include/conversation.php:1150 +#: include/conversation.php:1148 #, php-format msgid "%s attend maybe." msgstr "" -#: include/conversation.php:1153 +#: include/conversation.php:1151 #, php-format msgid "%2$d people reshared this" msgstr "" -#: include/conversation.php:1183 +#: include/conversation.php:1181 msgid "Visible to everybody" msgstr "" -#: include/conversation.php:1184 src/Module/Item/Compose.php:153 -#: src/Object/Post.php:966 +#: include/conversation.php:1182 src/Module/Item/Compose.php:153 +#: src/Object/Post.php:970 msgid "Please enter a image/video/audio/webpage URL:" msgstr "" -#: include/conversation.php:1185 +#: include/conversation.php:1183 msgid "Tag term:" msgstr "" -#: include/conversation.php:1186 src/Module/Filer/SaveTag.php:69 +#: include/conversation.php:1184 src/Module/Filer/SaveTag.php:69 msgid "Save to Folder:" msgstr "" -#: include/conversation.php:1187 +#: include/conversation.php:1185 msgid "Where are you right now?" msgstr "" -#: include/conversation.php:1188 +#: include/conversation.php:1186 msgid "Delete item(s)?" msgstr "" -#: include/conversation.php:1198 +#: include/conversation.php:1196 msgid "New Post" msgstr "" -#: include/conversation.php:1201 +#: include/conversation.php:1199 msgid "Share" msgstr "" -#: include/conversation.php:1202 mod/editpost.php:89 mod/photos.php:1382 -#: src/Module/Contact/Poke.php:154 src/Object/Post.php:957 +#: include/conversation.php:1200 mod/editpost.php:89 mod/photos.php:1382 +#: src/Module/Contact/Poke.php:154 src/Object/Post.php:961 msgid "Loading..." msgstr "" -#: include/conversation.php:1203 mod/editpost.php:90 mod/message.php:202 +#: include/conversation.php:1201 mod/editpost.php:90 mod/message.php:202 #: mod/message.php:371 mod/wallmessage.php:153 msgid "Upload photo" msgstr "" -#: include/conversation.php:1204 mod/editpost.php:91 +#: include/conversation.php:1202 mod/editpost.php:91 msgid "upload photo" msgstr "" -#: include/conversation.php:1205 mod/editpost.php:92 +#: include/conversation.php:1203 mod/editpost.php:92 msgid "Attach file" msgstr "" -#: include/conversation.php:1206 mod/editpost.php:93 +#: include/conversation.php:1204 mod/editpost.php:93 msgid "attach file" msgstr "" -#: include/conversation.php:1207 src/Module/Item/Compose.php:145 -#: src/Object/Post.php:958 +#: include/conversation.php:1205 src/Module/Item/Compose.php:145 +#: src/Object/Post.php:962 msgid "Bold" msgstr "" -#: include/conversation.php:1208 src/Module/Item/Compose.php:146 -#: src/Object/Post.php:959 +#: include/conversation.php:1206 src/Module/Item/Compose.php:146 +#: src/Object/Post.php:963 msgid "Italic" msgstr "" -#: include/conversation.php:1209 src/Module/Item/Compose.php:147 -#: src/Object/Post.php:960 +#: include/conversation.php:1207 src/Module/Item/Compose.php:147 +#: src/Object/Post.php:964 msgid "Underline" msgstr "" -#: include/conversation.php:1210 src/Module/Item/Compose.php:148 -#: src/Object/Post.php:961 +#: include/conversation.php:1208 src/Module/Item/Compose.php:148 +#: src/Object/Post.php:965 msgid "Quote" msgstr "" -#: include/conversation.php:1211 src/Module/Item/Compose.php:149 -#: src/Object/Post.php:962 +#: include/conversation.php:1209 src/Module/Item/Compose.php:149 +#: src/Object/Post.php:966 msgid "Code" msgstr "" -#: include/conversation.php:1212 src/Module/Item/Compose.php:150 -#: src/Object/Post.php:963 +#: include/conversation.php:1210 src/Module/Item/Compose.php:150 +#: src/Object/Post.php:967 msgid "Image" msgstr "" -#: include/conversation.php:1213 src/Module/Item/Compose.php:151 -#: src/Object/Post.php:964 +#: include/conversation.php:1211 src/Module/Item/Compose.php:151 +#: src/Object/Post.php:968 msgid "Link" msgstr "" -#: include/conversation.php:1214 src/Module/Item/Compose.php:152 -#: src/Object/Post.php:965 +#: include/conversation.php:1212 src/Module/Item/Compose.php:152 +#: src/Object/Post.php:969 msgid "Link or Media" msgstr "" -#: include/conversation.php:1215 +#: include/conversation.php:1213 msgid "Video" msgstr "" -#: include/conversation.php:1216 mod/editpost.php:100 +#: include/conversation.php:1214 mod/editpost.php:100 #: src/Module/Item/Compose.php:155 msgid "Set your location" msgstr "" -#: include/conversation.php:1217 mod/editpost.php:101 +#: include/conversation.php:1215 mod/editpost.php:101 msgid "set location" msgstr "" -#: include/conversation.php:1218 mod/editpost.php:102 +#: include/conversation.php:1216 mod/editpost.php:102 msgid "Clear browser location" msgstr "" -#: include/conversation.php:1219 mod/editpost.php:103 +#: include/conversation.php:1217 mod/editpost.php:103 msgid "clear location" msgstr "" -#: include/conversation.php:1221 mod/editpost.php:117 +#: include/conversation.php:1219 mod/editpost.php:117 #: src/Module/Item/Compose.php:160 msgid "Set title" msgstr "" -#: include/conversation.php:1223 mod/editpost.php:119 +#: include/conversation.php:1221 mod/editpost.php:119 #: src/Module/Item/Compose.php:161 msgid "Categories (comma-separated list)" msgstr "" -#: include/conversation.php:1225 mod/editpost.php:105 +#: include/conversation.php:1223 mod/editpost.php:105 msgid "Permission settings" msgstr "" -#: include/conversation.php:1226 mod/editpost.php:134 mod/events.php:578 +#: include/conversation.php:1224 mod/editpost.php:134 mod/events.php:578 #: mod/photos.php:969 mod/photos.php:1335 msgid "Permissions" msgstr "" -#: include/conversation.php:1235 mod/editpost.php:114 +#: include/conversation.php:1233 mod/editpost.php:114 msgid "Public post" msgstr "" -#: include/conversation.php:1239 mod/editpost.php:125 mod/events.php:573 +#: include/conversation.php:1237 mod/editpost.php:125 mod/events.php:573 #: mod/photos.php:1381 mod/photos.php:1438 mod/photos.php:1513 -#: src/Module/Item/Compose.php:154 src/Object/Post.php:967 +#: src/Module/Item/Compose.php:154 src/Object/Post.php:971 msgid "Preview" msgstr "" -#: include/conversation.php:1243 mod/dfrn_request.php:642 mod/editpost.php:128 +#: include/conversation.php:1241 mod/dfrn_request.php:642 mod/editpost.php:128 #: mod/fbrowser.php:105 mod/fbrowser.php:134 mod/follow.php:152 -#: mod/photos.php:1037 mod/photos.php:1143 mod/tagrm.php:37 mod/tagrm.php:127 +#: mod/photos.php:1037 mod/photos.php:1143 mod/tagrm.php:37 mod/tagrm.php:129 #: mod/unfollow.php:100 src/Module/Contact.php:467 #: src/Module/RemoteFollow.php:110 msgid "Cancel" msgstr "" -#: include/conversation.php:1250 mod/editpost.php:132 src/Model/Profile.php:450 +#: include/conversation.php:1248 mod/editpost.php:132 src/Model/Profile.php:524 #: src/Module/Contact.php:344 msgid "Message" msgstr "" -#: include/conversation.php:1251 mod/editpost.php:133 +#: include/conversation.php:1249 mod/editpost.php:133 #: src/Module/Settings/TwoFactor/Trusted.php:101 msgid "Browser" msgstr "" -#: include/conversation.php:1253 mod/editpost.php:136 +#: include/conversation.php:1251 mod/editpost.php:136 msgid "Open Compose page" msgstr "" @@ -824,19 +824,17 @@ msgid "Please visit %s to approve or reject the request." msgstr "" #: mod/api.php:52 mod/api.php:57 mod/dfrn_confirm.php:78 mod/editpost.php:37 -#: mod/events.php:231 mod/follow.php:55 mod/follow.php:135 mod/item.php:184 -#: mod/item.php:189 mod/item.php:909 mod/message.php:69 mod/message.php:112 +#: mod/events.php:231 mod/follow.php:55 mod/follow.php:135 mod/item.php:185 +#: mod/item.php:190 mod/item.php:917 mod/message.php:69 mod/message.php:112 #: mod/notes.php:44 mod/ostatus_subscribe.php:30 mod/photos.php:176 #: mod/photos.php:922 mod/repair_ostatus.php:31 mod/settings.php:47 -#: mod/settings.php:65 mod/settings.php:498 mod/suggest.php:34 +#: mod/settings.php:65 mod/settings.php:475 mod/suggest.php:34 #: mod/uimport.php:32 mod/unfollow.php:35 mod/unfollow.php:50 #: mod/unfollow.php:82 mod/wall_attach.php:78 mod/wall_attach.php:81 #: mod/wall_upload.php:99 mod/wall_upload.php:102 mod/wallmessage.php:35 #: mod/wallmessage.php:59 mod/wallmessage.php:96 mod/wallmessage.php:120 -#: src/Module/Attach.php:56 src/Module/BaseApi.php:74 src/Module/BaseApi.php:80 -#: src/Module/BaseApi.php:87 src/Module/BaseApi.php:93 -#: src/Module/BaseApi.php:100 src/Module/BaseApi.php:106 -#: src/Module/BaseApi.php:113 src/Module/BaseApi.php:119 +#: src/Module/Attach.php:56 src/Module/BaseApi.php:79 src/Module/BaseApi.php:90 +#: src/Module/BaseApi.php:101 src/Module/BaseApi.php:112 #: src/Module/BaseNotifications.php:88 src/Module/Contact.php:385 #: src/Module/Contact/Advanced.php:43 src/Module/Delegation.php:118 #: src/Module/FollowConfirm.php:16 src/Module/FriendSuggest.php:44 @@ -849,7 +847,7 @@ msgstr "" #: src/Module/Search/Directory.php:38 src/Module/Settings/Delegation.php:42 #: src/Module/Settings/Delegation.php:70 src/Module/Settings/Display.php:42 #: src/Module/Settings/Display.php:118 -#: src/Module/Settings/Profile/Photo/Crop.php:157 +#: src/Module/Settings/Profile/Photo/Crop.php:155 #: src/Module/Settings/Profile/Photo/Index.php:113 #: src/Module/Settings/UserExport.php:59 src/Module/Settings/UserExport.php:94 #: src/Module/Settings/UserExport.php:201 @@ -903,7 +901,7 @@ msgstr "" msgid "User not found." msgstr "" -#: mod/cal.php:143 mod/display.php:283 src/Module/Profile/Profile.php:94 +#: mod/cal.php:143 mod/display.php:284 src/Module/Profile/Profile.php:94 #: src/Module/Profile/Profile.php:109 src/Module/Profile/Status.php:109 #: src/Module/Update/Profile.php:55 msgid "Access to this profile has been restricted." @@ -951,10 +949,10 @@ msgstr "" msgid "list" msgstr "" -#: mod/cal.php:297 src/Console/User.php:182 src/Model/User.php:607 +#: mod/cal.php:297 src/Console/User.php:182 src/Model/User.php:667 #: src/Module/Admin/Users/Active.php:73 src/Module/Admin/Users/Blocked.php:74 #: src/Module/Admin/Users/Index.php:80 src/Module/Admin/Users/Pending.php:71 -#: src/Module/Api/Twitter/ContactEndpoint.php:73 +#: src/Module/Api/Twitter/ContactEndpoint.php:71 msgid "User not found" msgstr "" @@ -1047,7 +1045,7 @@ msgstr "" msgid "Unable to update your contact profile details on our system" msgstr "" -#: mod/dfrn_poll.php:135 mod/dfrn_poll.php:506 +#: mod/dfrn_poll.php:136 mod/dfrn_poll.php:509 #, php-format msgid "%1$s welcomes %2$s" msgstr "" @@ -1117,11 +1115,11 @@ msgstr "" msgid "Invalid profile URL." msgstr "" -#: mod/dfrn_request.php:355 src/Model/Contact.php:2159 +#: mod/dfrn_request.php:355 src/Model/Contact.php:2233 msgid "Disallowed profile URL." msgstr "" -#: mod/dfrn_request.php:361 src/Model/Contact.php:2164 +#: mod/dfrn_request.php:361 src/Model/Contact.php:2238 #: src/Module/Friendica.php:80 msgid "Blocked domain" msgstr "" @@ -1217,11 +1215,11 @@ msgstr "" msgid "Add a personal note:" msgstr "" -#: mod/display.php:235 mod/display.php:319 +#: mod/display.php:235 mod/display.php:320 msgid "The requested item doesn't exist or has been deleted." msgstr "" -#: mod/display.php:399 +#: mod/display.php:400 msgid "The feed for this item is unavailable." msgstr "" @@ -1326,12 +1324,12 @@ msgid "Adjust for viewer timezone" msgstr "" #: mod/events.php:561 src/Module/Profile/Profile.php:172 -#: src/Module/Settings/Profile/Index.php:253 +#: src/Module/Settings/Profile/Index.php:237 msgid "Description:" msgstr "" #: mod/events.php:563 src/Model/Event.php:84 src/Model/Event.php:111 -#: src/Model/Event.php:472 src/Model/Event.php:959 src/Model/Profile.php:358 +#: src/Model/Event.php:472 src/Model/Event.php:959 src/Model/Profile.php:434 #: src/Module/Contact.php:654 src/Module/Directory.php:156 #: src/Module/Notifications/Introductions.php:172 #: src/Module/Profile/Profile.php:190 @@ -1358,7 +1356,7 @@ msgstr "" #: src/Module/Install.php:245 src/Module/Install.php:287 #: src/Module/Install.php:324 src/Module/Invite.php:174 #: src/Module/Item/Compose.php:144 src/Module/Profile/Profile.php:243 -#: src/Module/Settings/Profile/Index.php:237 src/Object/Post.php:956 +#: src/Module/Settings/Profile/Index.php:221 src/Object/Post.php:960 #: view/theme/duepuntozero/config.php:69 view/theme/frio/config.php:160 #: view/theme/quattro/config.php:71 view/theme/vier/config.php:119 msgid "Submit" @@ -1368,7 +1366,7 @@ msgstr "" msgid "Basic" msgstr "" -#: mod/events.php:577 src/Module/Admin/Site.php:587 src/Module/Contact.php:961 +#: mod/events.php:577 src/Module/Admin/Site.php:584 src/Module/Contact.php:961 #: src/Module/Profile/Profile.php:245 msgid "Advanced" msgstr "" @@ -1433,27 +1431,27 @@ msgstr "" msgid "The contact could not be added." msgstr "" -#: mod/item.php:135 mod/item.php:139 +#: mod/item.php:136 mod/item.php:140 msgid "Unable to locate original post." msgstr "" -#: mod/item.php:340 mod/item.php:345 +#: mod/item.php:341 mod/item.php:346 msgid "Empty post discarded." msgstr "" -#: mod/item.php:709 +#: mod/item.php:724 msgid "Post updated." msgstr "" -#: mod/item.php:726 mod/item.php:731 +#: mod/item.php:734 mod/item.php:739 msgid "Item wasn't stored." msgstr "" -#: mod/item.php:742 +#: mod/item.php:750 msgid "Item couldn't be fetched." msgstr "" -#: mod/item.php:888 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:896 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:47 #: src/Module/Debug/ItemBody.php:60 msgid "Item not found." @@ -1601,19 +1599,11 @@ msgstr "" msgid "No keywords to match. Please add keywords to your profile." msgstr "" -#: mod/match.php:105 src/Content/Pager.php:216 -msgid "first" -msgstr "" - -#: mod/match.php:110 src/Content/Pager.php:276 -msgid "next" -msgstr "" - -#: mod/match.php:120 src/Module/BaseSearch.php:117 +#: mod/match.php:93 src/Module/BaseSearch.php:117 msgid "No matches" msgstr "" -#: mod/match.php:125 +#: mod/match.php:98 msgid "Profile Match" msgstr "" @@ -1985,12 +1975,12 @@ msgstr "" #: mod/photos.php:1377 mod/photos.php:1434 mod/photos.php:1509 #: src/Module/Contact.php:1104 src/Module/Item/Compose.php:142 -#: src/Object/Post.php:953 +#: src/Object/Post.php:957 msgid "This is you" msgstr "" #: mod/photos.php:1379 mod/photos.php:1436 mod/photos.php:1511 -#: src/Object/Post.php:491 src/Object/Post.php:955 +#: src/Object/Post.php:495 src/Object/Post.php:959 msgid "Comment" msgstr "" @@ -2143,15 +2133,15 @@ msgstr "" msgid "Private forum has no privacy permissions and no default privacy group." msgstr "" -#: mod/settings.php:451 +#: mod/settings.php:453 msgid "Settings were not updated." msgstr "" -#: mod/settings.php:517 +#: mod/settings.php:494 msgid "Connected Apps" msgstr "" -#: mod/settings.php:518 src/Module/Admin/Blocklist/Contact.php:90 +#: mod/settings.php:495 src/Module/Admin/Blocklist/Contact.php:90 #: src/Module/Admin/Users/Active.php:129 src/Module/Admin/Users/Blocked.php:130 #: src/Module/Admin/Users/Create.php:71 src/Module/Admin/Users/Deleted.php:88 #: src/Module/Admin/Users/Index.php:142 src/Module/Admin/Users/Index.php:162 @@ -2159,80 +2149,80 @@ msgstr "" msgid "Name" msgstr "" -#: mod/settings.php:519 src/Content/Nav.php:216 +#: mod/settings.php:496 src/Content/Nav.php:216 msgid "Home Page" msgstr "" -#: mod/settings.php:520 src/Module/Admin/Queue.php:78 +#: mod/settings.php:497 src/Module/Admin/Queue.php:78 msgid "Created" msgstr "" -#: mod/settings.php:521 +#: mod/settings.php:498 msgid "Remove authorization" msgstr "" -#: mod/settings.php:532 -msgid "No Addon settings configured" -msgstr "" - -#: mod/settings.php:541 +#: mod/settings.php:516 msgid "Addon Settings" msgstr "" -#: mod/settings.php:562 +#: mod/settings.php:517 +msgid "No Addon settings configured" +msgstr "" + +#: mod/settings.php:538 msgid "Additional Features" msgstr "" -#: mod/settings.php:564 mod/settings.php:662 mod/settings.php:797 +#: mod/settings.php:540 mod/settings.php:638 mod/settings.php:773 #: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:87 -#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:582 +#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:579 #: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:66 #: src/Module/Settings/Delegation.php:170 src/Module/Settings/Display.php:189 msgid "Save Settings" msgstr "" -#: mod/settings.php:587 +#: mod/settings.php:563 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "" -#: mod/settings.php:587 mod/settings.php:588 +#: mod/settings.php:563 mod/settings.php:564 msgid "enabled" msgstr "" -#: mod/settings.php:587 mod/settings.php:588 +#: mod/settings.php:563 mod/settings.php:564 msgid "disabled" msgstr "" -#: mod/settings.php:587 mod/settings.php:588 +#: mod/settings.php:563 mod/settings.php:564 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "" -#: mod/settings.php:588 +#: mod/settings.php:564 msgid "OStatus (GNU Social)" msgstr "" -#: mod/settings.php:619 +#: mod/settings.php:595 msgid "Email access is disabled on this site." msgstr "" -#: mod/settings.php:624 mod/settings.php:660 +#: mod/settings.php:600 mod/settings.php:636 msgid "None" msgstr "" -#: mod/settings.php:630 src/Module/BaseSettings.php:80 +#: mod/settings.php:606 src/Module/BaseSettings.php:80 msgid "Social Networks" msgstr "" -#: mod/settings.php:635 +#: mod/settings.php:611 msgid "General Social Media Settings" msgstr "" -#: mod/settings.php:636 +#: mod/settings.php:612 msgid "Accept only top level posts by contacts you follow" msgstr "" -#: mod/settings.php:636 +#: mod/settings.php:612 msgid "" "The system does an auto completion of threads when a comment arrives. This " "has got the side effect that you can receive posts that had been started by " @@ -2241,11 +2231,11 @@ msgid "" "posts from people you really do follow." msgstr "" -#: mod/settings.php:637 +#: mod/settings.php:613 msgid "Disable Content Warning" msgstr "" -#: mod/settings.php:637 +#: mod/settings.php:613 msgid "" "Users on networks like Mastodon or Pleroma are able to set a content warning " "field which collapse their post by default. This disables the automatic " @@ -2253,227 +2243,227 @@ msgid "" "any other content filtering you eventually set up." msgstr "" -#: mod/settings.php:638 +#: mod/settings.php:614 msgid "Disable intelligent shortening" msgstr "" -#: mod/settings.php:638 +#: mod/settings.php:614 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If this option is enabled then every shortened post will always point to the " "original friendica post." msgstr "" -#: mod/settings.php:639 +#: mod/settings.php:615 msgid "Attach the link title" msgstr "" -#: mod/settings.php:639 +#: mod/settings.php:615 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that " "share feed content." msgstr "" -#: mod/settings.php:640 +#: mod/settings.php:616 msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" msgstr "" -#: mod/settings.php:640 +#: mod/settings.php:616 msgid "" "If you receive a message from an unknown OStatus user, this option decides " "what to do. If it is checked, a new contact will be created for every " "unknown user." msgstr "" -#: mod/settings.php:641 +#: mod/settings.php:617 msgid "Default group for OStatus contacts" msgstr "" -#: mod/settings.php:642 +#: mod/settings.php:618 msgid "Your legacy GNU Social account" msgstr "" -#: mod/settings.php:642 +#: mod/settings.php:618 msgid "" "If you enter your old GNU Social/Statusnet account name here (in the format " "user@domain.tld), your contacts will be added automatically. The field will " "be emptied when done." msgstr "" -#: mod/settings.php:645 +#: mod/settings.php:621 msgid "Repair OStatus subscriptions" msgstr "" -#: mod/settings.php:649 +#: mod/settings.php:625 msgid "Email/Mailbox Setup" msgstr "" -#: mod/settings.php:650 +#: mod/settings.php:626 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "" -#: mod/settings.php:651 +#: mod/settings.php:627 msgid "Last successful email check:" msgstr "" -#: mod/settings.php:653 +#: mod/settings.php:629 msgid "IMAP server name:" msgstr "" -#: mod/settings.php:654 +#: mod/settings.php:630 msgid "IMAP port:" msgstr "" -#: mod/settings.php:655 +#: mod/settings.php:631 msgid "Security:" msgstr "" -#: mod/settings.php:656 +#: mod/settings.php:632 msgid "Email login name:" msgstr "" -#: mod/settings.php:657 +#: mod/settings.php:633 msgid "Email password:" msgstr "" -#: mod/settings.php:658 +#: mod/settings.php:634 msgid "Reply-to address:" msgstr "" -#: mod/settings.php:659 +#: mod/settings.php:635 msgid "Send public posts to all email contacts:" msgstr "" -#: mod/settings.php:660 +#: mod/settings.php:636 msgid "Action after import:" msgstr "" -#: mod/settings.php:660 src/Content/Nav.php:284 +#: mod/settings.php:636 src/Content/Nav.php:284 msgid "Mark as seen" msgstr "" -#: mod/settings.php:660 +#: mod/settings.php:636 msgid "Move to folder" msgstr "" -#: mod/settings.php:661 +#: mod/settings.php:637 msgid "Move to folder:" msgstr "" -#: mod/settings.php:675 +#: mod/settings.php:651 msgid "Unable to find your profile. Please contact your admin." msgstr "" -#: mod/settings.php:711 src/Content/Widget.php:536 +#: mod/settings.php:687 src/Content/Widget.php:536 msgid "Account Types" msgstr "" -#: mod/settings.php:712 +#: mod/settings.php:688 msgid "Personal Page Subtypes" msgstr "" -#: mod/settings.php:713 +#: mod/settings.php:689 msgid "Community Forum Subtypes" msgstr "" -#: mod/settings.php:720 src/Module/Admin/BaseUsers.php:106 +#: mod/settings.php:696 src/Module/Admin/BaseUsers.php:106 msgid "Personal Page" msgstr "" -#: mod/settings.php:721 +#: mod/settings.php:697 msgid "Account for a personal profile." msgstr "" -#: mod/settings.php:724 src/Module/Admin/BaseUsers.php:107 +#: mod/settings.php:700 src/Module/Admin/BaseUsers.php:107 msgid "Organisation Page" msgstr "" -#: mod/settings.php:725 +#: mod/settings.php:701 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: mod/settings.php:728 src/Module/Admin/BaseUsers.php:108 +#: mod/settings.php:704 src/Module/Admin/BaseUsers.php:108 msgid "News Page" msgstr "" -#: mod/settings.php:729 +#: mod/settings.php:705 msgid "" "Account for a news reflector that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: mod/settings.php:732 src/Module/Admin/BaseUsers.php:109 +#: mod/settings.php:708 src/Module/Admin/BaseUsers.php:109 msgid "Community Forum" msgstr "" -#: mod/settings.php:733 +#: mod/settings.php:709 msgid "Account for community discussions." msgstr "" -#: mod/settings.php:736 src/Module/Admin/BaseUsers.php:99 +#: mod/settings.php:712 src/Module/Admin/BaseUsers.php:99 msgid "Normal Account Page" msgstr "" -#: mod/settings.php:737 +#: mod/settings.php:713 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "" -#: mod/settings.php:740 src/Module/Admin/BaseUsers.php:100 +#: mod/settings.php:716 src/Module/Admin/BaseUsers.php:100 msgid "Soapbox Page" msgstr "" -#: mod/settings.php:741 +#: mod/settings.php:717 msgid "" "Account for a public profile that automatically approves contact requests as " "\"Followers\"." msgstr "" -#: mod/settings.php:744 src/Module/Admin/BaseUsers.php:101 +#: mod/settings.php:720 src/Module/Admin/BaseUsers.php:101 msgid "Public Forum" msgstr "" -#: mod/settings.php:745 +#: mod/settings.php:721 msgid "Automatically approves all contact requests." msgstr "" -#: mod/settings.php:748 src/Module/Admin/BaseUsers.php:102 +#: mod/settings.php:724 src/Module/Admin/BaseUsers.php:102 msgid "Automatic Friend Page" msgstr "" -#: mod/settings.php:749 +#: mod/settings.php:725 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "" -#: mod/settings.php:752 +#: mod/settings.php:728 msgid "Private Forum [Experimental]" msgstr "" -#: mod/settings.php:753 +#: mod/settings.php:729 msgid "Requires manual approval of contact requests." msgstr "" -#: mod/settings.php:764 +#: mod/settings.php:740 msgid "OpenID:" msgstr "" -#: mod/settings.php:764 +#: mod/settings.php:740 msgid "(Optional) Allow this OpenID to login to this account." msgstr "" -#: mod/settings.php:772 +#: mod/settings.php:748 msgid "Publish your profile in your local site directory?" msgstr "" -#: mod/settings.php:772 +#: mod/settings.php:748 #, php-format msgid "" "Your profile will be published in this node's local " @@ -2481,115 +2471,115 @@ msgid "" "system settings." msgstr "" -#: mod/settings.php:778 +#: mod/settings.php:754 #, php-format msgid "" "Your profile will also be published in the global friendica directories (e." "g. %s)." msgstr "" -#: mod/settings.php:784 +#: mod/settings.php:760 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "" -#: mod/settings.php:795 +#: mod/settings.php:771 msgid "Account Settings" msgstr "" -#: mod/settings.php:803 +#: mod/settings.php:779 msgid "Password Settings" msgstr "" -#: mod/settings.php:804 src/Module/Register.php:149 +#: mod/settings.php:780 src/Module/Register.php:149 msgid "New Password:" msgstr "" -#: mod/settings.php:804 +#: mod/settings.php:780 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " "spaces, accentuated letters and colon (:)." msgstr "" -#: mod/settings.php:805 src/Module/Register.php:150 +#: mod/settings.php:781 src/Module/Register.php:150 msgid "Confirm:" msgstr "" -#: mod/settings.php:805 +#: mod/settings.php:781 msgid "Leave password fields blank unless changing" msgstr "" -#: mod/settings.php:806 +#: mod/settings.php:782 msgid "Current Password:" msgstr "" -#: mod/settings.php:806 +#: mod/settings.php:782 msgid "Your current password to confirm the changes" msgstr "" -#: mod/settings.php:807 +#: mod/settings.php:783 msgid "Password:" msgstr "" -#: mod/settings.php:807 +#: mod/settings.php:783 msgid "Your current password to confirm the changes of the email address" msgstr "" -#: mod/settings.php:810 +#: mod/settings.php:786 msgid "Delete OpenID URL" msgstr "" -#: mod/settings.php:812 +#: mod/settings.php:788 msgid "Basic Settings" msgstr "" -#: mod/settings.php:813 src/Module/Profile/Profile.php:144 +#: mod/settings.php:789 src/Module/Profile/Profile.php:144 msgid "Full Name:" msgstr "" -#: mod/settings.php:814 +#: mod/settings.php:790 msgid "Email Address:" msgstr "" -#: mod/settings.php:815 +#: mod/settings.php:791 msgid "Your Timezone:" msgstr "" -#: mod/settings.php:816 +#: mod/settings.php:792 msgid "Your Language:" msgstr "" -#: mod/settings.php:816 +#: mod/settings.php:792 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "" -#: mod/settings.php:817 +#: mod/settings.php:793 msgid "Default Post Location:" msgstr "" -#: mod/settings.php:818 +#: mod/settings.php:794 msgid "Use Browser Location:" msgstr "" -#: mod/settings.php:820 +#: mod/settings.php:796 msgid "Security and Privacy Settings" msgstr "" -#: mod/settings.php:822 +#: mod/settings.php:798 msgid "Maximum Friend Requests/Day:" msgstr "" -#: mod/settings.php:822 mod/settings.php:832 +#: mod/settings.php:798 mod/settings.php:808 msgid "(to prevent spam abuse)" msgstr "" -#: mod/settings.php:824 +#: mod/settings.php:800 msgid "Allow your profile to be searchable globally?" msgstr "" -#: mod/settings.php:824 +#: mod/settings.php:800 msgid "" "Activate this setting if you want others to easily find and follow you. Your " "profile will be searchable on remote systems. This setting also determines " @@ -2597,43 +2587,43 @@ msgid "" "indexed or not." msgstr "" -#: mod/settings.php:825 +#: mod/settings.php:801 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "" -#: mod/settings.php:825 +#: mod/settings.php:801 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "" -#: mod/settings.php:826 +#: mod/settings.php:802 msgid "Hide your profile details from anonymous viewers?" msgstr "" -#: mod/settings.php:826 +#: mod/settings.php:802 msgid "" "Anonymous visitors will only see your profile picture, your display name and " "the nickname you are using on your profile page. Your public posts and " "replies will still be accessible by other means." msgstr "" -#: mod/settings.php:827 +#: mod/settings.php:803 msgid "Make public posts unlisted" msgstr "" -#: mod/settings.php:827 +#: mod/settings.php:803 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "" -#: mod/settings.php:828 +#: mod/settings.php:804 msgid "Make all posted pictures accessible" msgstr "" -#: mod/settings.php:828 +#: mod/settings.php:804 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -2641,209 +2631,209 @@ msgid "" "public on your photo albums though." msgstr "" -#: mod/settings.php:829 +#: mod/settings.php:805 msgid "Allow friends to post to your profile page?" msgstr "" -#: mod/settings.php:829 +#: mod/settings.php:805 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "" -#: mod/settings.php:830 +#: mod/settings.php:806 msgid "Allow friends to tag your posts?" msgstr "" -#: mod/settings.php:830 +#: mod/settings.php:806 msgid "Your contacts can add additional tags to your posts." msgstr "" -#: mod/settings.php:831 +#: mod/settings.php:807 msgid "Permit unknown people to send you private mail?" msgstr "" -#: mod/settings.php:831 +#: mod/settings.php:807 msgid "" "Friendica network users may send you private messages even if they are not " "in your contact list." msgstr "" -#: mod/settings.php:832 +#: mod/settings.php:808 msgid "Maximum private messages per day from unknown people:" msgstr "" -#: mod/settings.php:834 +#: mod/settings.php:810 msgid "Default Post Permissions" msgstr "" -#: mod/settings.php:838 +#: mod/settings.php:814 msgid "Expiration settings" msgstr "" -#: mod/settings.php:839 +#: mod/settings.php:815 msgid "Automatically expire posts after this many days:" msgstr "" -#: mod/settings.php:839 +#: mod/settings.php:815 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "" -#: mod/settings.php:840 +#: mod/settings.php:816 msgid "Expire posts" msgstr "" -#: mod/settings.php:840 +#: mod/settings.php:816 msgid "When activated, posts and comments will be expired." msgstr "" -#: mod/settings.php:841 +#: mod/settings.php:817 msgid "Expire personal notes" msgstr "" -#: mod/settings.php:841 +#: mod/settings.php:817 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "" -#: mod/settings.php:842 +#: mod/settings.php:818 msgid "Expire starred posts" msgstr "" -#: mod/settings.php:842 +#: mod/settings.php:818 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "" -#: mod/settings.php:843 +#: mod/settings.php:819 msgid "Expire photos" msgstr "" -#: mod/settings.php:843 +#: mod/settings.php:819 msgid "When activated, photos will be expired." msgstr "" -#: mod/settings.php:844 +#: mod/settings.php:820 msgid "Only expire posts by others" msgstr "" -#: mod/settings.php:844 +#: mod/settings.php:820 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "" -#: mod/settings.php:847 +#: mod/settings.php:823 msgid "Notification Settings" msgstr "" -#: mod/settings.php:848 +#: mod/settings.php:824 msgid "Send a notification email when:" msgstr "" -#: mod/settings.php:849 +#: mod/settings.php:825 msgid "You receive an introduction" msgstr "" -#: mod/settings.php:850 +#: mod/settings.php:826 msgid "Your introductions are confirmed" msgstr "" -#: mod/settings.php:851 +#: mod/settings.php:827 msgid "Someone writes on your profile wall" msgstr "" -#: mod/settings.php:852 +#: mod/settings.php:828 msgid "Someone writes a followup comment" msgstr "" -#: mod/settings.php:853 +#: mod/settings.php:829 msgid "You receive a private message" msgstr "" -#: mod/settings.php:854 +#: mod/settings.php:830 msgid "You receive a friend suggestion" msgstr "" -#: mod/settings.php:855 +#: mod/settings.php:831 msgid "You are tagged in a post" msgstr "" -#: mod/settings.php:856 +#: mod/settings.php:832 msgid "You are poked/prodded/etc. in a post" msgstr "" -#: mod/settings.php:858 +#: mod/settings.php:834 msgid "Activate desktop notifications" msgstr "" -#: mod/settings.php:858 +#: mod/settings.php:834 msgid "Show desktop popup on new notifications" msgstr "" -#: mod/settings.php:860 +#: mod/settings.php:836 msgid "Text-only notification emails" msgstr "" -#: mod/settings.php:862 +#: mod/settings.php:838 msgid "Send text only notification emails, without the html part" msgstr "" -#: mod/settings.php:864 +#: mod/settings.php:840 msgid "Show detailled notifications" msgstr "" -#: mod/settings.php:866 +#: mod/settings.php:842 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "" -#: mod/settings.php:868 +#: mod/settings.php:844 msgid "Show notifications of ignored contacts" msgstr "" -#: mod/settings.php:870 +#: mod/settings.php:846 msgid "" "You don't see posts from ignored contacts. But you still see their comments. " "This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "" -#: mod/settings.php:872 +#: mod/settings.php:848 msgid "Advanced Account/Page Type Settings" msgstr "" -#: mod/settings.php:873 +#: mod/settings.php:849 msgid "Change the behaviour of this account for special situations" msgstr "" -#: mod/settings.php:876 +#: mod/settings.php:852 msgid "Import Contacts" msgstr "" -#: mod/settings.php:877 +#: mod/settings.php:853 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "" -#: mod/settings.php:878 +#: mod/settings.php:854 msgid "Upload File" msgstr "" -#: mod/settings.php:880 +#: mod/settings.php:856 msgid "Relocate" msgstr "" -#: mod/settings.php:881 +#: mod/settings.php:857 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "" -#: mod/settings.php:882 +#: mod/settings.php:858 msgid "Resend relocate message to contacts" msgstr "" @@ -2857,15 +2847,15 @@ msgstr "" msgid "Friend Suggestions" msgstr "" -#: mod/tagrm.php:113 +#: mod/tagrm.php:115 msgid "Remove Item Tag" msgstr "" -#: mod/tagrm.php:115 +#: mod/tagrm.php:117 msgid "Select a tag to remove: " msgstr "" -#: mod/tagrm.php:126 src/Module/Settings/Delegation.php:179 +#: mod/tagrm.php:128 src/Module/Settings/Delegation.php:179 #: src/Module/Settings/TwoFactor/Trusted.php:104 msgid "Remove" msgstr "" @@ -2966,7 +2956,7 @@ msgstr "" msgid "File upload failed." msgstr "" -#: mod/wall_upload.php:233 +#: mod/wall_upload.php:233 src/Model/Photo.php:976 msgid "Wall Photos" msgstr "" @@ -2990,7 +2980,7 @@ msgid "" "your site allow private mail from unknown senders." msgstr "" -#: src/App.php:311 +#: src/App.php:312 msgid "No system theme config value set." msgstr "" @@ -3012,12 +3002,12 @@ msgstr "" msgid "toggle mobile" msgstr "" -#: src/App/Router.php:234 +#: src/App/Router.php:236 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "" -#: src/App/Router.php:236 src/Module/HTTPException/PageNotFound.php:32 +#: src/App/Router.php:238 src/Module/HTTPException/PageNotFound.php:32 msgid "Page not found." msgstr "" @@ -3628,47 +3618,55 @@ msgstr "" msgid "Embedded content" msgstr "" +#: src/Content/Pager.php:216 +msgid "first" +msgstr "" + #: src/Content/Pager.php:221 msgid "prev" msgstr "" +#: src/Content/Pager.php:276 +msgid "next" +msgstr "" + #: src/Content/Pager.php:281 msgid "last" msgstr "" -#: src/Content/Text/BBCode.php:942 src/Content/Text/BBCode.php:1605 -#: src/Content/Text/BBCode.php:1606 +#: src/Content/Text/BBCode.php:942 src/Content/Text/BBCode.php:1609 +#: src/Content/Text/BBCode.php:1610 msgid "Image/photo" msgstr "" -#: src/Content/Text/BBCode.php:1064 +#: src/Content/Text/BBCode.php:1068 #, php-format msgid "" "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:1089 src/Model/Item.php:3024 -#: src/Model/Item.php:3030 src/Model/Item.php:3031 +#: src/Content/Text/BBCode.php:1093 src/Model/Item.php:3110 +#: src/Model/Item.php:3116 src/Model/Item.php:3117 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1523 src/Content/Text/HTML.php:951 +#: src/Content/Text/BBCode.php:1527 src/Content/Text/HTML.php:951 msgid "Click to open/close" msgstr "" -#: src/Content/Text/BBCode.php:1554 +#: src/Content/Text/BBCode.php:1558 msgid "$1 wrote:" msgstr "" -#: src/Content/Text/BBCode.php:1608 src/Content/Text/BBCode.php:1609 +#: src/Content/Text/BBCode.php:1612 src/Content/Text/BBCode.php:1613 msgid "Encrypted content" msgstr "" -#: src/Content/Text/BBCode.php:1822 +#: src/Content/Text/BBCode.php:1826 msgid "Invalid source protocol" msgstr "" -#: src/Content/Text/BBCode.php:1837 +#: src/Content/Text/BBCode.php:1841 msgid "Invalid link protocol" msgstr "" @@ -3680,7 +3678,7 @@ msgstr "" msgid "The end" msgstr "" -#: src/Content/Text/HTML.php:893 src/Model/Profile.php:444 +#: src/Content/Text/HTML.php:893 src/Model/Profile.php:518 #: src/Module/Contact.php:340 msgid "Follow" msgstr "" @@ -3803,7 +3801,7 @@ msgstr "" msgid "Organisations" msgstr "" -#: src/Content/Widget.php:532 src/Model/Contact.php:1410 +#: src/Content/Widget.php:532 src/Model/Contact.php:1426 msgid "News" msgstr "" @@ -3811,15 +3809,15 @@ msgstr "" msgid "All" msgstr "" -#: src/Content/Widget/CalendarExport.php:63 +#: src/Content/Widget/CalendarExport.php:54 msgid "Export" msgstr "" -#: src/Content/Widget/CalendarExport.php:64 +#: src/Content/Widget/CalendarExport.php:55 msgid "Export calendar as ical" msgstr "" -#: src/Content/Widget/CalendarExport.php:65 +#: src/Content/Widget/CalendarExport.php:56 msgid "Export calendar as csv" msgstr "" @@ -4072,7 +4070,8 @@ msgid "Program execution functions" msgstr "" #: src/Core/Installer.php:468 -msgid "Error: Program execution functions required but not enabled." +msgid "" +"Error: Program execution functions (proc_open) required but not enabled." msgstr "" #: src/Core/Installer.php:474 @@ -4425,12 +4424,12 @@ msgstr "" msgid "%s: executing post update %d" msgstr "" -#: src/Core/Update.php:259 +#: src/Core/Update.php:261 #, php-format msgid "Update %s failed. See error logs." msgstr "" -#: src/Core/Update.php:312 +#: src/Core/Update.php:314 #, php-format msgid "" "\n" @@ -4442,16 +4441,16 @@ msgid "" "might be invalid." msgstr "" -#: src/Core/Update.php:318 +#: src/Core/Update.php:320 #, php-format msgid "The error message is\\n[pre]%s[/pre]" msgstr "" -#: src/Core/Update.php:322 src/Core/Update.php:364 +#: src/Core/Update.php:324 src/Core/Update.php:366 msgid "[Friendica Notify] Database update" msgstr "" -#: src/Core/Update.php:358 +#: src/Core/Update.php:360 #, php-format msgid "" "\n" @@ -4490,33 +4489,33 @@ msgstr "" msgid "Done. You can now login with your username and password" msgstr "" -#: src/Database/DBStructure.php:64 +#: src/Database/DBStructure.php:65 #, php-format msgid "The database version had been set to %s." msgstr "" -#: src/Database/DBStructure.php:77 +#: src/Database/DBStructure.php:78 #, 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:89 +#: src/Database/DBStructure.php:90 msgid "No unused tables found." msgstr "" -#: src/Database/DBStructure.php:94 +#: src/Database/DBStructure.php:95 msgid "" "These tables are not used for friendica and will be deleted when you execute " "\"dbstructure drop -e\":" msgstr "" -#: src/Database/DBStructure.php:132 +#: src/Database/DBStructure.php:133 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "" -#: src/Database/DBStructure.php:156 +#: src/Database/DBStructure.php:157 #, php-format msgid "" "\n" @@ -4524,43 +4523,43 @@ msgid "" "%s\n" msgstr "" -#: src/Database/DBStructure.php:159 +#: src/Database/DBStructure.php:160 msgid "Errors encountered performing database changes: " msgstr "" -#: src/Database/DBStructure.php:439 +#: src/Database/DBStructure.php:548 msgid "Another database update is currently running." msgstr "" -#: src/Database/DBStructure.php:443 +#: src/Database/DBStructure.php:552 #, php-format msgid "%s: Database update" msgstr "" -#: src/Database/DBStructure.php:743 +#: src/Database/DBStructure.php:852 #, php-format msgid "%s: updating %s table." msgstr "" -#: src/Factory/Api/Mastodon/Error.php:32 +#: src/Factory/Api/Mastodon/Error.php:55 msgid "Record not found" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:41 +#: src/Factory/Api/Mastodon/Error.php:65 msgid "Unprocessable Entity" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:50 +#: src/Factory/Api/Mastodon/Error.php:75 #: src/Module/Special/HTTPException.php:50 msgid "Unauthorized" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:59 +#: src/Factory/Api/Mastodon/Error.php:85 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:68 +#: src/Factory/Api/Mastodon/Error.php:95 #: src/Module/Special/HTTPException.php:53 msgid "Internal Server Error" msgstr "" @@ -4577,43 +4576,43 @@ msgstr "" msgid "New Follower" msgstr "" -#: src/Factory/Notification/Notification.php:103 +#: src/Factory/Notification/Notification.php:104 #, php-format msgid "%s created a new post" msgstr "" -#: src/Factory/Notification/Notification.php:104 -#: src/Factory/Notification/Notification.php:362 +#: src/Factory/Notification/Notification.php:105 +#: src/Factory/Notification/Notification.php:363 #, php-format msgid "%s commented on %s's post" msgstr "" -#: src/Factory/Notification/Notification.php:130 +#: src/Factory/Notification/Notification.php:131 #, php-format msgid "%s liked %s's post" msgstr "" -#: src/Factory/Notification/Notification.php:141 +#: src/Factory/Notification/Notification.php:142 #, php-format msgid "%s disliked %s's post" msgstr "" -#: src/Factory/Notification/Notification.php:152 +#: src/Factory/Notification/Notification.php:153 #, php-format msgid "%s is attending %s's event" msgstr "" -#: src/Factory/Notification/Notification.php:163 +#: src/Factory/Notification/Notification.php:164 #, php-format msgid "%s is not attending %s's event" msgstr "" -#: src/Factory/Notification/Notification.php:174 +#: src/Factory/Notification/Notification.php:175 #, php-format msgid "%s may attending %s's event" msgstr "" -#: src/Factory/Notification/Notification.php:201 +#: src/Factory/Notification/Notification.php:202 #, php-format msgid "%s is now friends with %s" msgstr "" @@ -4623,82 +4622,82 @@ msgstr "" msgid "Legacy module file not found: %s" msgstr "" -#: src/Model/Contact.php:982 src/Model/Contact.php:995 +#: src/Model/Contact.php:998 src/Model/Contact.php:1011 msgid "UnFollow" msgstr "" -#: src/Model/Contact.php:991 +#: src/Model/Contact.php:1007 msgid "Drop Contact" msgstr "" -#: src/Model/Contact.php:1001 src/Module/Admin/Users/Pending.php:107 +#: src/Model/Contact.php:1017 src/Module/Admin/Users/Pending.php:107 #: src/Module/Notifications/Introductions.php:111 #: src/Module/Notifications/Introductions.php:189 msgid "Approve" msgstr "" -#: src/Model/Contact.php:1406 +#: src/Model/Contact.php:1422 msgid "Organisation" msgstr "" -#: src/Model/Contact.php:1414 +#: src/Model/Contact.php:1430 msgid "Forum" msgstr "" -#: src/Model/Contact.php:2169 +#: src/Model/Contact.php:2243 msgid "Connect URL missing." msgstr "" -#: src/Model/Contact.php:2178 +#: src/Model/Contact.php:2252 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "" -#: src/Model/Contact.php:2219 +#: src/Model/Contact.php:2293 msgid "" "This site is not configured to allow communications with other networks." msgstr "" -#: src/Model/Contact.php:2220 src/Model/Contact.php:2233 +#: src/Model/Contact.php:2294 src/Model/Contact.php:2307 msgid "No compatible communication protocols or feeds were discovered." msgstr "" -#: src/Model/Contact.php:2231 +#: src/Model/Contact.php:2305 msgid "The profile address specified does not provide adequate information." msgstr "" -#: src/Model/Contact.php:2236 +#: src/Model/Contact.php:2310 msgid "An author or name was not found." msgstr "" -#: src/Model/Contact.php:2239 +#: src/Model/Contact.php:2313 msgid "No browser URL could be matched to this address." msgstr "" -#: src/Model/Contact.php:2242 +#: src/Model/Contact.php:2316 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "" -#: src/Model/Contact.php:2243 +#: src/Model/Contact.php:2317 msgid "Use mailto: in front of address to force email check." msgstr "" -#: src/Model/Contact.php:2249 +#: src/Model/Contact.php:2323 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "" -#: src/Model/Contact.php:2254 +#: src/Model/Contact.php:2328 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "" -#: src/Model/Contact.php:2313 +#: src/Model/Contact.php:2387 msgid "Unable to retrieve contact information." msgstr "" @@ -4815,110 +4814,110 @@ msgstr "" msgid "Edit groups" msgstr "" -#: src/Model/Item.php:1582 +#: src/Model/Item.php:1663 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "" -#: src/Model/Item.php:2527 +#: src/Model/Item.php:2613 msgid "activity" msgstr "" -#: src/Model/Item.php:2529 +#: src/Model/Item.php:2615 msgid "comment" msgstr "" -#: src/Model/Item.php:2532 +#: src/Model/Item.php:2618 msgid "post" msgstr "" -#: src/Model/Item.php:2646 +#: src/Model/Item.php:2732 #, php-format msgid "Content warning: %s" msgstr "" -#: src/Model/Item.php:2989 +#: src/Model/Item.php:3075 msgid "bytes" msgstr "" -#: src/Model/Item.php:3018 src/Model/Item.php:3019 +#: src/Model/Item.php:3104 src/Model/Item.php:3105 msgid "View on separate page" msgstr "" -#: src/Model/Mail.php:120 src/Model/Mail.php:258 +#: src/Model/Mail.php:136 src/Model/Mail.php:268 msgid "[no subject]" msgstr "" -#: src/Model/Profile.php:346 src/Module/Profile/Profile.php:252 +#: src/Model/Profile.php:422 src/Module/Profile/Profile.php:252 #: src/Module/Profile/Profile.php:254 msgid "Edit profile" msgstr "" -#: src/Model/Profile.php:348 +#: src/Model/Profile.php:424 msgid "Change profile photo" msgstr "" -#: src/Model/Profile.php:361 src/Module/Directory.php:161 +#: src/Model/Profile.php:437 src/Module/Directory.php:161 #: src/Module/Profile/Profile.php:180 msgid "Homepage:" msgstr "" -#: src/Model/Profile.php:362 src/Module/Contact.php:658 +#: src/Model/Profile.php:438 src/Module/Contact.php:658 #: src/Module/Notifications/Introductions.php:174 msgid "About:" msgstr "" -#: src/Model/Profile.php:363 src/Module/Contact.php:656 +#: src/Model/Profile.php:439 src/Module/Contact.php:656 #: src/Module/Profile/Profile.php:176 msgid "XMPP:" msgstr "" -#: src/Model/Profile.php:446 src/Module/Contact.php:342 +#: src/Model/Profile.php:520 src/Module/Contact.php:342 msgid "Unfollow" msgstr "" -#: src/Model/Profile.php:448 +#: src/Model/Profile.php:522 msgid "Atom feed" msgstr "" -#: src/Model/Profile.php:456 src/Module/Contact.php:338 +#: src/Model/Profile.php:530 src/Module/Contact.php:338 #: src/Module/Notifications/Introductions.php:186 msgid "Network:" msgstr "" -#: src/Model/Profile.php:486 src/Model/Profile.php:583 +#: src/Model/Profile.php:560 src/Model/Profile.php:657 msgid "g A l F d" msgstr "" -#: src/Model/Profile.php:487 +#: src/Model/Profile.php:561 msgid "F d" msgstr "" -#: src/Model/Profile.php:549 src/Model/Profile.php:634 +#: src/Model/Profile.php:623 src/Model/Profile.php:708 msgid "[today]" msgstr "" -#: src/Model/Profile.php:559 +#: src/Model/Profile.php:633 msgid "Birthday Reminders" msgstr "" -#: src/Model/Profile.php:560 +#: src/Model/Profile.php:634 msgid "Birthdays this week:" msgstr "" -#: src/Model/Profile.php:621 +#: src/Model/Profile.php:695 msgid "[No description]" msgstr "" -#: src/Model/Profile.php:647 +#: src/Model/Profile.php:721 msgid "Event Reminders" msgstr "" -#: src/Model/Profile.php:648 +#: src/Model/Profile.php:722 msgid "Upcoming events the next 7 days:" msgstr "" -#: src/Model/Profile.php:823 +#: src/Model/Profile.php:897 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "" @@ -4959,138 +4958,138 @@ msgstr "" msgid "Enter a valid existing folder" msgstr "" -#: src/Model/User.php:186 src/Model/User.php:931 +#: src/Model/User.php:186 src/Model/User.php:991 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "" -#: src/Model/User.php:549 +#: src/Model/User.php:576 src/Model/User.php:609 msgid "Login failed" msgstr "" -#: src/Model/User.php:581 +#: src/Model/User.php:641 msgid "Not enough information to authenticate" msgstr "" -#: src/Model/User.php:676 +#: src/Model/User.php:736 msgid "Password can't be empty" msgstr "" -#: src/Model/User.php:695 +#: src/Model/User.php:755 msgid "Empty passwords are not allowed." msgstr "" -#: src/Model/User.php:699 +#: src/Model/User.php:759 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "" -#: src/Model/User.php:705 +#: src/Model/User.php:765 msgid "" "The password can't contain accentuated letters, white spaces or colons (:)" msgstr "" -#: src/Model/User.php:811 +#: src/Model/User.php:871 msgid "Passwords do not match. Password unchanged." msgstr "" -#: src/Model/User.php:818 +#: src/Model/User.php:878 msgid "An invitation is required." msgstr "" -#: src/Model/User.php:822 +#: src/Model/User.php:882 msgid "Invitation could not be verified." msgstr "" -#: src/Model/User.php:830 +#: src/Model/User.php:890 msgid "Invalid OpenID url" msgstr "" -#: src/Model/User.php:843 src/Security/Authentication.php:224 +#: src/Model/User.php:903 src/Security/Authentication.php:224 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "" -#: src/Model/User.php:843 src/Security/Authentication.php:224 +#: src/Model/User.php:903 src/Security/Authentication.php:224 msgid "The error message was:" msgstr "" -#: src/Model/User.php:849 +#: src/Model/User.php:909 msgid "Please enter the required information." msgstr "" -#: src/Model/User.php:863 +#: src/Model/User.php:923 #, php-format msgid "" "system.username_min_length (%s) and system.username_max_length (%s) are " "excluding each other, swapping values." msgstr "" -#: src/Model/User.php:870 +#: src/Model/User.php:930 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." msgstr[0] "" msgstr[1] "" -#: src/Model/User.php:874 +#: src/Model/User.php:934 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." msgstr[0] "" msgstr[1] "" -#: src/Model/User.php:882 +#: src/Model/User.php:942 msgid "That doesn't appear to be your full (First Last) name." msgstr "" -#: src/Model/User.php:887 +#: src/Model/User.php:947 msgid "Your email domain is not among those allowed on this site." msgstr "" -#: src/Model/User.php:891 +#: src/Model/User.php:951 msgid "Not a valid email address." msgstr "" -#: src/Model/User.php:894 +#: src/Model/User.php:954 msgid "The nickname was blocked from registration by the nodes admin." msgstr "" -#: src/Model/User.php:898 src/Model/User.php:906 +#: src/Model/User.php:958 src/Model/User.php:966 msgid "Cannot use that email." msgstr "" -#: src/Model/User.php:913 +#: src/Model/User.php:973 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "" -#: src/Model/User.php:921 src/Model/User.php:978 +#: src/Model/User.php:981 src/Model/User.php:1038 msgid "Nickname is already registered. Please choose another." msgstr "" -#: src/Model/User.php:965 src/Model/User.php:969 +#: src/Model/User.php:1025 src/Model/User.php:1029 msgid "An error occurred during registration. Please try again." msgstr "" -#: src/Model/User.php:992 +#: src/Model/User.php:1052 msgid "An error occurred creating your default profile. Please try again." msgstr "" -#: src/Model/User.php:999 +#: src/Model/User.php:1059 msgid "An error occurred creating your self contact. Please try again." msgstr "" -#: src/Model/User.php:1004 +#: src/Model/User.php:1064 msgid "Friends" msgstr "" -#: src/Model/User.php:1008 +#: src/Model/User.php:1068 msgid "" "An error occurred creating your default contact group. Please try again." msgstr "" -#: src/Model/User.php:1199 +#: src/Model/User.php:1297 #, php-format msgid "" "\n" @@ -5098,7 +5097,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:1202 +#: src/Model/User.php:1300 #, php-format msgid "" "\n" @@ -5135,12 +5134,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1235 src/Model/User.php:1342 +#: src/Model/User.php:1333 src/Model/User.php:1440 #, php-format msgid "Registration details for %s" msgstr "" -#: src/Model/User.php:1255 +#: src/Model/User.php:1353 #, php-format msgid "" "\n" @@ -5156,12 +5155,12 @@ msgid "" "\t\t" msgstr "" -#: src/Model/User.php:1274 +#: src/Model/User.php:1372 #, php-format msgid "Registration at %s" msgstr "" -#: src/Model/User.php:1298 +#: src/Model/User.php:1396 #, php-format msgid "" "\n" @@ -5170,7 +5169,7 @@ msgid "" "\t\t\t" msgstr "" -#: src/Model/User.php:1306 +#: src/Model/User.php:1404 #, php-format msgid "" "\n" @@ -5235,10 +5234,10 @@ msgstr "" #: src/Module/Admin/Addons/Details.php:111 src/Module/Admin/Addons/Index.php:67 #: src/Module/Admin/Blocklist/Contact.php:78 -#: src/Module/Admin/Blocklist/Server.php:88 src/Module/Admin/Federation.php:141 +#: src/Module/Admin/Blocklist/Server.php:88 src/Module/Admin/Federation.php:159 #: src/Module/Admin/Item/Delete.php:65 src/Module/Admin/Logs/Settings.php:80 #: src/Module/Admin/Logs/View.php:64 src/Module/Admin/Queue.php:72 -#: src/Module/Admin/Site.php:579 src/Module/Admin/Summary.php:232 +#: src/Module/Admin/Site.php:576 src/Module/Admin/Summary.php:232 #: src/Module/Admin/Themes/Details.php:90 src/Module/Admin/Themes/Index.php:111 #: src/Module/Admin/Tos.php:58 src/Module/Admin/Users/Active.php:136 #: src/Module/Admin/Users/Blocked.php:137 src/Module/Admin/Users/Create.php:61 @@ -5568,26 +5567,26 @@ msgstr "" msgid "Manage Additional Features" msgstr "" -#: src/Module/Admin/Federation.php:54 +#: src/Module/Admin/Federation.php:56 msgid "Other" msgstr "" -#: src/Module/Admin/Federation.php:108 src/Module/Admin/Federation.php:268 +#: src/Module/Admin/Federation.php:118 src/Module/Admin/Federation.php:348 msgid "unknown" msgstr "" -#: src/Module/Admin/Federation.php:136 +#: src/Module/Admin/Federation.php:154 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:142 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:160 src/Module/BaseAdmin.php:87 msgid "Federation Statistics" msgstr "" -#: src/Module/Admin/Federation.php:146 +#: src/Module/Admin/Federation.php:164 #, php-format msgid "" "Currently this node is aware of %d nodes with %d registered users from the " @@ -5784,275 +5783,289 @@ msgstr "" msgid "Priority" msgstr "" -#: src/Module/Admin/Site.php:69 +#: src/Module/Admin/Site.php:70 msgid "Can not parse base url. Must have at least ://" msgstr "" -#: src/Module/Admin/Site.php:123 +#: src/Module/Admin/Site.php:124 msgid "Relocation started. Could take a while to complete." msgstr "" -#: src/Module/Admin/Site.php:249 +#: src/Module/Admin/Site.php:248 msgid "Invalid storage backend setting value." msgstr "" -#: src/Module/Admin/Site.php:449 src/Module/Settings/Display.php:134 +#: src/Module/Admin/Site.php:446 src/Module/Settings/Display.php:134 msgid "No special theme for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:466 src/Module/Settings/Display.php:144 +#: src/Module/Admin/Site.php:463 src/Module/Settings/Display.php:144 #, php-format msgid "%s - (Experimental)" msgstr "" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:475 msgid "No community page for local users" msgstr "" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:476 msgid "No community page" msgstr "" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:477 msgid "Public postings from users of this site" msgstr "" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:478 msgid "Public postings from the federated network" msgstr "" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:479 msgid "Public postings from local users and the federated network" msgstr "" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:485 msgid "Multi user instance" msgstr "" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:513 msgid "Closed" msgstr "" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:514 msgid "Requires approval" msgstr "" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:515 msgid "Open" msgstr "" -#: src/Module/Admin/Site.php:522 src/Module/Install.php:215 +#: src/Module/Admin/Site.php:519 src/Module/Install.php:215 msgid "No SSL policy, links will track page SSL state" msgstr "" -#: src/Module/Admin/Site.php:523 src/Module/Install.php:216 +#: src/Module/Admin/Site.php:520 src/Module/Install.php:216 msgid "Force all links to use SSL" msgstr "" -#: src/Module/Admin/Site.php:524 src/Module/Install.php:217 +#: src/Module/Admin/Site.php:521 src/Module/Install.php:217 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:525 msgid "Don't check" msgstr "" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:526 msgid "check the stable version" msgstr "" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:527 msgid "check the development version" msgstr "" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:531 msgid "none" msgstr "" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:532 msgid "Local contacts" msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:533 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:546 msgid "Database (legacy)" msgstr "" -#: src/Module/Admin/Site.php:580 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:577 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:578 msgid "General Information" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:580 msgid "Republish users to directory" msgstr "" -#: src/Module/Admin/Site.php:584 src/Module/Register.php:139 +#: src/Module/Admin/Site.php:581 src/Module/Register.php:139 msgid "Registration" msgstr "" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:582 msgid "File upload" msgstr "" -#: src/Module/Admin/Site.php:586 +#: src/Module/Admin/Site.php:583 msgid "Policies" msgstr "" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:585 msgid "Auto Discovered Contact Directory" msgstr "" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:586 msgid "Performance" msgstr "" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:587 msgid "Worker" msgstr "" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:588 msgid "Message Relay" msgstr "" -#: src/Module/Admin/Site.php:592 -msgid "Relocate Instance" +#: src/Module/Admin/Site.php:589 +msgid "" +"Use the command \"console relay\" in the command line to add or remove " +"relays." +msgstr "" + +#: src/Module/Admin/Site.php:590 +msgid "The system is not subscribed to any relays at the moment." +msgstr "" + +#: src/Module/Admin/Site.php:591 +msgid "The system is currently subscribed to the following relays:" msgstr "" #: src/Module/Admin/Site.php:593 +msgid "Relocate Instance" +msgstr "" + +#: src/Module/Admin/Site.php:594 msgid "" "Warning! Advanced function. Could make this server " "unreachable." msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:598 msgid "Site name" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:599 msgid "Sender Email" msgstr "" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:599 msgid "" "The email address your server shall use to send notification emails from." msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:600 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:600 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:600 +#: src/Module/Admin/Site.php:601 msgid "Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:602 msgid "Email Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:603 msgid "Shortcut icon" msgstr "" -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:603 msgid "Link to an icon that will be used for browsers." msgstr "" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:604 msgid "Touch icon" msgstr "" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:604 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:605 msgid "Additional Info" msgstr "" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:605 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "" -#: src/Module/Admin/Site.php:605 +#: src/Module/Admin/Site.php:606 msgid "System language" msgstr "" -#: src/Module/Admin/Site.php:606 +#: src/Module/Admin/Site.php:607 msgid "System theme" msgstr "" -#: src/Module/Admin/Site.php:606 +#: src/Module/Admin/Site.php:607 msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "" -#: src/Module/Admin/Site.php:607 +#: src/Module/Admin/Site.php:608 msgid "Mobile system theme" msgstr "" -#: src/Module/Admin/Site.php:607 +#: src/Module/Admin/Site.php:608 msgid "Theme for mobile devices" msgstr "" -#: src/Module/Admin/Site.php:608 src/Module/Install.php:225 +#: src/Module/Admin/Site.php:609 src/Module/Install.php:225 msgid "SSL link policy" msgstr "" -#: src/Module/Admin/Site.php:608 src/Module/Install.php:227 +#: src/Module/Admin/Site.php:609 src/Module/Install.php:227 msgid "Determines whether generated links should be forced to use SSL" msgstr "" -#: src/Module/Admin/Site.php:609 +#: src/Module/Admin/Site.php:610 msgid "Force SSL" msgstr "" -#: src/Module/Admin/Site.php:609 +#: src/Module/Admin/Site.php:610 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead " "to endless loops." msgstr "" -#: src/Module/Admin/Site.php:610 +#: src/Module/Admin/Site.php:611 msgid "Hide help entry from navigation menu" msgstr "" -#: src/Module/Admin/Site.php:610 +#: src/Module/Admin/Site.php:611 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "" -#: src/Module/Admin/Site.php:611 +#: src/Module/Admin/Site.php:612 msgid "Single user instance" msgstr "" -#: src/Module/Admin/Site.php:611 +#: src/Module/Admin/Site.php:612 msgid "Make this instance multi-user or single-user for the named user" msgstr "" -#: src/Module/Admin/Site.php:613 +#: src/Module/Admin/Site.php:614 msgid "File storage backend" msgstr "" -#: src/Module/Admin/Site.php:613 +#: src/Module/Admin/Site.php:614 msgid "" "The backend used to store uploaded data. If you change the storage backend, " "you can manually move the existing files. If you do not do so, the files " @@ -6061,202 +6074,202 @@ msgid "" "for more information about the choices and the moving procedure." msgstr "" -#: src/Module/Admin/Site.php:615 +#: src/Module/Admin/Site.php:616 msgid "Maximum image size" msgstr "" -#: src/Module/Admin/Site.php:615 +#: src/Module/Admin/Site.php:616 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "" -#: src/Module/Admin/Site.php:616 +#: src/Module/Admin/Site.php:617 msgid "Maximum image length" msgstr "" -#: src/Module/Admin/Site.php:616 +#: src/Module/Admin/Site.php:617 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "" -#: src/Module/Admin/Site.php:617 +#: src/Module/Admin/Site.php:618 msgid "JPEG image quality" msgstr "" -#: src/Module/Admin/Site.php:617 +#: src/Module/Admin/Site.php:618 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "" -#: src/Module/Admin/Site.php:619 +#: src/Module/Admin/Site.php:620 msgid "Register policy" msgstr "" -#: src/Module/Admin/Site.php:620 +#: src/Module/Admin/Site.php:621 msgid "Maximum Daily Registrations" msgstr "" -#: src/Module/Admin/Site.php:620 +#: src/Module/Admin/Site.php:621 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 "" -#: src/Module/Admin/Site.php:621 +#: src/Module/Admin/Site.php:622 msgid "Register text" msgstr "" -#: src/Module/Admin/Site.php:621 +#: src/Module/Admin/Site.php:622 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "" -#: src/Module/Admin/Site.php:622 +#: src/Module/Admin/Site.php:623 msgid "Forbidden Nicknames" msgstr "" -#: src/Module/Admin/Site.php:622 +#: src/Module/Admin/Site.php:623 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "" -#: src/Module/Admin/Site.php:623 +#: src/Module/Admin/Site.php:624 msgid "Accounts abandoned after x days" msgstr "" -#: src/Module/Admin/Site.php:623 +#: src/Module/Admin/Site.php:624 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "" -#: src/Module/Admin/Site.php:624 +#: src/Module/Admin/Site.php:625 msgid "Allowed friend domains" msgstr "" -#: src/Module/Admin/Site.php:624 +#: src/Module/Admin/Site.php:625 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -#: src/Module/Admin/Site.php:625 +#: src/Module/Admin/Site.php:626 msgid "Allowed email domains" msgstr "" -#: src/Module/Admin/Site.php:625 +#: src/Module/Admin/Site.php:626 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 "" -#: src/Module/Admin/Site.php:626 +#: src/Module/Admin/Site.php:627 msgid "No OEmbed rich content" msgstr "" -#: src/Module/Admin/Site.php:626 +#: src/Module/Admin/Site.php:627 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "" -#: src/Module/Admin/Site.php:627 +#: src/Module/Admin/Site.php:628 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:627 +#: src/Module/Admin/Site.php:628 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:628 +#: src/Module/Admin/Site.php:629 msgid "Block public" msgstr "" -#: src/Module/Admin/Site.php:628 +#: src/Module/Admin/Site.php:629 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "" -#: src/Module/Admin/Site.php:629 +#: src/Module/Admin/Site.php:630 msgid "Force publish" msgstr "" -#: src/Module/Admin/Site.php:629 +#: src/Module/Admin/Site.php:630 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: src/Module/Admin/Site.php:629 +#: src/Module/Admin/Site.php:630 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "" -#: src/Module/Admin/Site.php:630 +#: src/Module/Admin/Site.php:631 msgid "Global directory URL" msgstr "" -#: src/Module/Admin/Site.php:630 +#: src/Module/Admin/Site.php:631 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "" -#: src/Module/Admin/Site.php:631 +#: src/Module/Admin/Site.php:632 msgid "Private posts by default for new users" msgstr "" -#: src/Module/Admin/Site.php:631 +#: src/Module/Admin/Site.php:632 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "" -#: src/Module/Admin/Site.php:632 +#: src/Module/Admin/Site.php:633 msgid "Don't include post content in email notifications" msgstr "" -#: src/Module/Admin/Site.php:632 +#: src/Module/Admin/Site.php:633 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 "" -#: src/Module/Admin/Site.php:633 +#: src/Module/Admin/Site.php:634 msgid "Disallow public access to addons listed in the apps menu." msgstr "" -#: src/Module/Admin/Site.php:633 +#: src/Module/Admin/Site.php:634 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "" -#: src/Module/Admin/Site.php:634 +#: src/Module/Admin/Site.php:635 msgid "Don't embed private images in posts" msgstr "" -#: src/Module/Admin/Site.php:634 +#: src/Module/Admin/Site.php:635 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 " "photos will have to authenticate and load each image, which may take a while." msgstr "" -#: src/Module/Admin/Site.php:635 +#: src/Module/Admin/Site.php:636 msgid "Explicit Content" msgstr "" -#: src/Module/Admin/Site.php:635 +#: src/Module/Admin/Site.php:636 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 " @@ -6265,234 +6278,234 @@ msgid "" "will be shown at the user registration page." msgstr "" -#: src/Module/Admin/Site.php:636 +#: src/Module/Admin/Site.php:637 msgid "Allow Users to set remote_self" msgstr "" -#: src/Module/Admin/Site.php:636 +#: src/Module/Admin/Site.php:637 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 "" -#: src/Module/Admin/Site.php:637 +#: src/Module/Admin/Site.php:638 msgid "Block multiple registrations" msgstr "" -#: src/Module/Admin/Site.php:637 +#: src/Module/Admin/Site.php:638 msgid "Disallow users to register additional accounts for use as pages." msgstr "" -#: src/Module/Admin/Site.php:638 +#: src/Module/Admin/Site.php:639 msgid "Disable OpenID" msgstr "" -#: src/Module/Admin/Site.php:638 +#: src/Module/Admin/Site.php:639 msgid "Disable OpenID support for registration and logins." msgstr "" -#: src/Module/Admin/Site.php:639 +#: src/Module/Admin/Site.php:640 msgid "No Fullname check" msgstr "" -#: src/Module/Admin/Site.php:639 +#: src/Module/Admin/Site.php:640 msgid "" "Allow users to register without a space between the first name and the last " "name in their full name." msgstr "" -#: src/Module/Admin/Site.php:640 +#: src/Module/Admin/Site.php:641 msgid "Community pages for visitors" msgstr "" -#: src/Module/Admin/Site.php:640 +#: src/Module/Admin/Site.php:641 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "" -#: src/Module/Admin/Site.php:641 +#: src/Module/Admin/Site.php:642 msgid "Posts per user on community page" msgstr "" -#: src/Module/Admin/Site.php:641 +#: src/Module/Admin/Site.php:642 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "\"Global Community\")" msgstr "" -#: src/Module/Admin/Site.php:642 +#: src/Module/Admin/Site.php:643 msgid "Disable OStatus support" msgstr "" -#: src/Module/Admin/Site.php:642 +#: src/Module/Admin/Site.php:643 msgid "" "Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." msgstr "" -#: src/Module/Admin/Site.php:643 +#: src/Module/Admin/Site.php:644 msgid "OStatus support can only be enabled if threading is enabled." msgstr "" -#: src/Module/Admin/Site.php:645 +#: src/Module/Admin/Site.php:646 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub " "directory." msgstr "" -#: src/Module/Admin/Site.php:646 +#: src/Module/Admin/Site.php:647 msgid "Enable Diaspora support" msgstr "" -#: src/Module/Admin/Site.php:646 +#: src/Module/Admin/Site.php:647 msgid "Provide built-in Diaspora network compatibility." msgstr "" -#: src/Module/Admin/Site.php:647 +#: src/Module/Admin/Site.php:648 msgid "Only allow Friendica contacts" msgstr "" -#: src/Module/Admin/Site.php:647 +#: src/Module/Admin/Site.php:648 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "" -#: src/Module/Admin/Site.php:648 +#: src/Module/Admin/Site.php:649 msgid "Verify SSL" msgstr "" -#: src/Module/Admin/Site.php:648 +#: src/Module/Admin/Site.php:649 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 "" -#: src/Module/Admin/Site.php:649 +#: src/Module/Admin/Site.php:650 msgid "Proxy user" msgstr "" -#: src/Module/Admin/Site.php:650 +#: src/Module/Admin/Site.php:651 msgid "Proxy URL" msgstr "" -#: src/Module/Admin/Site.php:651 +#: src/Module/Admin/Site.php:652 msgid "Network timeout" msgstr "" -#: src/Module/Admin/Site.php:651 +#: src/Module/Admin/Site.php:652 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: src/Module/Admin/Site.php:652 +#: src/Module/Admin/Site.php:653 msgid "Maximum Load Average" msgstr "" -#: src/Module/Admin/Site.php:652 +#: src/Module/Admin/Site.php:653 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "" -#: src/Module/Admin/Site.php:653 +#: src/Module/Admin/Site.php:654 msgid "Maximum Load Average (Frontend)" msgstr "" -#: src/Module/Admin/Site.php:653 +#: src/Module/Admin/Site.php:654 msgid "Maximum system load before the frontend quits service - default 50." msgstr "" -#: src/Module/Admin/Site.php:654 +#: src/Module/Admin/Site.php:655 msgid "Minimal Memory" msgstr "" -#: src/Module/Admin/Site.php:654 +#: src/Module/Admin/Site.php:655 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "" -#: src/Module/Admin/Site.php:655 +#: src/Module/Admin/Site.php:656 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:655 +#: src/Module/Admin/Site.php:656 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:657 +#: src/Module/Admin/Site.php:658 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:657 +#: src/Module/Admin/Site.php:658 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:658 +#: src/Module/Admin/Site.php:659 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:659 +#: src/Module/Admin/Site.php:660 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "" -#: src/Module/Admin/Site.php:660 +#: src/Module/Admin/Site.php:661 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:662 +#: src/Module/Admin/Site.php:663 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:662 +#: src/Module/Admin/Site.php:663 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "" -#: src/Module/Admin/Site.php:664 +#: src/Module/Admin/Site.php:665 msgid "Days between requery" msgstr "" -#: src/Module/Admin/Site.php:664 +#: src/Module/Admin/Site.php:665 msgid "Number of days after which a server is requeried for his contacts." msgstr "" -#: src/Module/Admin/Site.php:665 +#: src/Module/Admin/Site.php:666 msgid "Discover contacts from other servers" msgstr "" -#: src/Module/Admin/Site.php:665 +#: src/Module/Admin/Site.php:666 msgid "" "Periodically query other servers for contacts. The system queries Friendica, " "Mastodon and Hubzilla servers." msgstr "" -#: src/Module/Admin/Site.php:666 +#: src/Module/Admin/Site.php:667 msgid "Search the local directory" msgstr "" -#: src/Module/Admin/Site.php:666 +#: src/Module/Admin/Site.php:667 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "" -#: src/Module/Admin/Site.php:668 +#: src/Module/Admin/Site.php:669 msgid "Publish server information" msgstr "" -#: src/Module/Admin/Site.php:668 +#: src/Module/Admin/Site.php:669 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -6500,50 +6513,50 @@ msgid "" "href=\"http://the-federation.info/\">the-federation.info for details." msgstr "" -#: src/Module/Admin/Site.php:670 +#: src/Module/Admin/Site.php:671 msgid "Check upstream version" msgstr "" -#: src/Module/Admin/Site.php:670 +#: src/Module/Admin/Site.php:671 msgid "" "Enables checking for new Friendica versions at github. If there is a new " "version, you will be informed in the admin panel overview." msgstr "" -#: src/Module/Admin/Site.php:671 +#: src/Module/Admin/Site.php:672 msgid "Suppress Tags" msgstr "" -#: src/Module/Admin/Site.php:671 +#: src/Module/Admin/Site.php:672 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "" -#: src/Module/Admin/Site.php:672 +#: src/Module/Admin/Site.php:673 msgid "Clean database" msgstr "" -#: src/Module/Admin/Site.php:672 +#: src/Module/Admin/Site.php:673 msgid "" "Remove old remote items, orphaned database records and old content from some " "other helper tables." msgstr "" -#: src/Module/Admin/Site.php:673 +#: src/Module/Admin/Site.php:674 msgid "Lifespan of remote items" msgstr "" -#: src/Module/Admin/Site.php:673 +#: src/Module/Admin/Site.php:674 msgid "" "When the database cleanup is enabled, this defines the days after which " "remote items will be deleted. Own items, and marked or filed items are " "always kept. 0 disables this behaviour." msgstr "" -#: src/Module/Admin/Site.php:674 +#: src/Module/Admin/Site.php:675 msgid "Lifespan of unclaimed items" msgstr "" -#: src/Module/Admin/Site.php:674 +#: src/Module/Admin/Site.php:675 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -6551,206 +6564,184 @@ msgid "" "items if set to 0." msgstr "" -#: src/Module/Admin/Site.php:675 +#: src/Module/Admin/Site.php:676 msgid "Lifespan of raw conversation data" msgstr "" -#: src/Module/Admin/Site.php:675 +#: src/Module/Admin/Site.php:676 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "" -#: src/Module/Admin/Site.php:676 +#: src/Module/Admin/Site.php:677 msgid "Path to item cache" msgstr "" -#: src/Module/Admin/Site.php:676 +#: src/Module/Admin/Site.php:677 msgid "The item caches buffers generated bbcode and external images." msgstr "" -#: src/Module/Admin/Site.php:677 +#: src/Module/Admin/Site.php:678 msgid "Cache duration in seconds" msgstr "" -#: src/Module/Admin/Site.php:677 +#: src/Module/Admin/Site.php:678 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One " "day). To disable the item cache, set the value to -1." msgstr "" -#: src/Module/Admin/Site.php:678 +#: src/Module/Admin/Site.php:679 msgid "Maximum numbers of comments per post" msgstr "" -#: src/Module/Admin/Site.php:678 +#: src/Module/Admin/Site.php:679 msgid "How much comments should be shown for each post? Default value is 100." msgstr "" -#: src/Module/Admin/Site.php:679 +#: src/Module/Admin/Site.php:680 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:679 +#: src/Module/Admin/Site.php:680 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "" -#: src/Module/Admin/Site.php:680 +#: src/Module/Admin/Site.php:681 msgid "Temp path" msgstr "" -#: src/Module/Admin/Site.php:680 +#: src/Module/Admin/Site.php:681 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "" -#: src/Module/Admin/Site.php:681 +#: src/Module/Admin/Site.php:682 msgid "Disable picture proxy" msgstr "" -#: src/Module/Admin/Site.php:681 +#: src/Module/Admin/Site.php:682 msgid "" "The picture proxy increases performance and privacy. It shouldn't be used on " "systems with very low bandwidth." msgstr "" -#: src/Module/Admin/Site.php:682 +#: src/Module/Admin/Site.php:683 msgid "Only search in tags" msgstr "" -#: src/Module/Admin/Site.php:682 +#: src/Module/Admin/Site.php:683 msgid "On large systems the text search can slow down the system extremely." msgstr "" -#: src/Module/Admin/Site.php:684 +#: src/Module/Admin/Site.php:685 msgid "New base url" msgstr "" -#: src/Module/Admin/Site.php:684 +#: src/Module/Admin/Site.php:685 msgid "" "Change base url for this server. Sends relocate message to all Friendica and " "Diaspora* contacts of all users." msgstr "" -#: src/Module/Admin/Site.php:686 +#: src/Module/Admin/Site.php:687 msgid "RINO Encryption" msgstr "" -#: src/Module/Admin/Site.php:686 +#: src/Module/Admin/Site.php:687 msgid "Encryption layer between nodes." msgstr "" -#: src/Module/Admin/Site.php:686 src/Module/Admin/Site.php:694 +#: src/Module/Admin/Site.php:687 src/Module/Admin/Site.php:693 #: src/Module/Contact.php:562 src/Module/Settings/TwoFactor/Index.php:118 msgid "Disabled" msgstr "" -#: src/Module/Admin/Site.php:686 +#: src/Module/Admin/Site.php:687 msgid "Enabled" msgstr "" -#: src/Module/Admin/Site.php:688 +#: src/Module/Admin/Site.php:689 msgid "Maximum number of parallel workers" msgstr "" -#: src/Module/Admin/Site.php:688 +#: src/Module/Admin/Site.php:689 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great. " "Default value is %d." msgstr "" -#: src/Module/Admin/Site.php:689 +#: src/Module/Admin/Site.php:690 msgid "Enable fastlane" msgstr "" -#: src/Module/Admin/Site.php:689 +#: src/Module/Admin/Site.php:690 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes " "with higher priority are blocked by processes of lower priority." msgstr "" -#: src/Module/Admin/Site.php:691 -msgid "Use relay servers" -msgstr "" - -#: src/Module/Admin/Site.php:691 -msgid "" -"Enables the receiving of public posts from relay servers. They will be " -"included in the search, subscribed tags and on the global community page." -msgstr "" - #: src/Module/Admin/Site.php:692 -msgid "\"Social Relay\" server" -msgstr "" - -#: src/Module/Admin/Site.php:692 -#, php-format -msgid "" -"Address of the \"Social Relay\" server where public posts should be send to. " -"For example %s. ActivityRelay servers are administrated via the \"console " -"relay\" command line command." -msgstr "" - -#: src/Module/Admin/Site.php:693 msgid "Direct relay transfer" msgstr "" -#: src/Module/Admin/Site.php:693 +#: src/Module/Admin/Site.php:692 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "" -#: src/Module/Admin/Site.php:694 +#: src/Module/Admin/Site.php:693 msgid "Relay scope" msgstr "" -#: src/Module/Admin/Site.php:694 +#: src/Module/Admin/Site.php:693 msgid "" "Can be \"all\" or \"tags\". \"all\" means that every public post should be " "received. \"tags\" means that only posts with selected tags should be " "received." msgstr "" -#: src/Module/Admin/Site.php:694 +#: src/Module/Admin/Site.php:693 msgid "all" msgstr "" -#: src/Module/Admin/Site.php:694 +#: src/Module/Admin/Site.php:693 msgid "tags" msgstr "" -#: src/Module/Admin/Site.php:695 +#: src/Module/Admin/Site.php:694 msgid "Server tags" msgstr "" -#: src/Module/Admin/Site.php:695 +#: src/Module/Admin/Site.php:694 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "" -#: src/Module/Admin/Site.php:696 +#: src/Module/Admin/Site.php:695 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:696 +#: src/Module/Admin/Site.php:695 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:697 +#: src/Module/Admin/Site.php:696 msgid "Allow user tags" msgstr "" -#: src/Module/Admin/Site.php:697 +#: src/Module/Admin/Site.php:696 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "" -#: src/Module/Admin/Site.php:700 +#: src/Module/Admin/Site.php:699 msgid "Start Relocation" msgstr "" @@ -7201,7 +7192,7 @@ msgstr "" msgid "Deny" msgstr "" -#: src/Module/Api/Mastodon/Apps.php:47 src/Module/Api/Mastodon/Apps.php:58 +#: src/Module/Api/Mastodon/Apps.php:58 msgid "Missing parameters" msgstr "" @@ -7236,11 +7227,11 @@ msgstr "" msgid "Posts from %s can't be unshared" msgstr "" -#: src/Module/Api/Twitter/ContactEndpoint.php:65 src/Module/Contact.php:400 +#: src/Module/Api/Twitter/ContactEndpoint.php:63 src/Module/Contact.php:400 msgid "Contact not found" msgstr "" -#: src/Module/Api/Twitter/ContactEndpoint.php:135 +#: src/Module/Api/Twitter/ContactEndpoint.php:133 msgid "Profile not found" msgstr "" @@ -7338,12 +7329,12 @@ msgstr "" msgid "User registrations waiting for confirmation" msgstr "" -#: src/Module/BaseApi.php:133 +#: src/Module/BaseApi.php:126 #, php-format msgid "API endpoint %s %s is not implemented" msgstr "" -#: src/Module/BaseApi.php:134 +#: src/Module/BaseApi.php:127 msgid "" "The API endpoint is currently not implemented but might be in the future." msgstr "" @@ -7703,7 +7694,7 @@ msgstr "" msgid "Search your contacts" msgstr "" -#: src/Module/Contact.php:883 src/Module/Search/Index.php:192 +#: src/Module/Contact.php:883 src/Module/Search/Index.php:194 #, php-format msgid "Results for: %s" msgstr "" @@ -7832,7 +7823,7 @@ msgstr "" msgid "New photo from this URL" msgstr "" -#: src/Module/Contact/Contacts.php:31 src/Module/Conversation/Network.php:175 +#: src/Module/Contact/Contacts.php:31 src/Module/Conversation/Network.php:177 msgid "Invalid contact." msgstr "" @@ -7944,7 +7935,7 @@ msgid "Hide" msgstr "" #: src/Module/Conversation/Community.php:149 src/Module/Search/Index.php:139 -#: src/Module/Search/Index.php:179 +#: src/Module/Search/Index.php:181 msgid "No results." msgstr "" @@ -7962,45 +7953,45 @@ msgstr "" msgid "Not available." msgstr "" -#: src/Module/Conversation/Network.php:161 +#: src/Module/Conversation/Network.php:163 msgid "No such group" msgstr "" -#: src/Module/Conversation/Network.php:165 +#: src/Module/Conversation/Network.php:167 #, php-format msgid "Group: %s" msgstr "" -#: src/Module/Conversation/Network.php:241 +#: src/Module/Conversation/Network.php:243 msgid "Latest Activity" msgstr "" -#: src/Module/Conversation/Network.php:244 +#: src/Module/Conversation/Network.php:246 msgid "Sort by latest activity" msgstr "" -#: src/Module/Conversation/Network.php:249 +#: src/Module/Conversation/Network.php:251 msgid "Latest Posts" msgstr "" -#: src/Module/Conversation/Network.php:252 +#: src/Module/Conversation/Network.php:254 msgid "Sort by post received date" msgstr "" -#: src/Module/Conversation/Network.php:257 -#: src/Module/Settings/Profile/Index.php:242 +#: src/Module/Conversation/Network.php:259 +#: src/Module/Settings/Profile/Index.php:226 msgid "Personal" msgstr "" -#: src/Module/Conversation/Network.php:260 +#: src/Module/Conversation/Network.php:262 msgid "Posts that mention or involve you" msgstr "" -#: src/Module/Conversation/Network.php:265 src/Object/Post.php:334 +#: src/Module/Conversation/Network.php:267 src/Object/Post.php:334 msgid "Starred" msgstr "" -#: src/Module/Conversation/Network.php:268 +#: src/Module/Conversation/Network.php:270 msgid "Favourite Posts" msgstr "" @@ -8212,7 +8203,7 @@ msgid "Twitter Source / Tweet URL (requires API key)" msgstr "" #: src/Module/Debug/Feed.php:38 src/Module/Filer/SaveTag.php:40 -#: src/Module/Settings/Profile/Index.php:158 +#: src/Module/Settings/Profile/Index.php:142 msgid "You must be logged in to use this module" msgstr "" @@ -8882,15 +8873,22 @@ msgstr "" msgid "Show all" msgstr "" -#: src/Module/OAuth/Authorize.php:49 +#: src/Module/OAuth/Authorize.php:55 msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:54 src/Module/OAuth/Token.php:55 +#: src/Module/OAuth/Authorize.php:60 src/Module/OAuth/Token.php:65 msgid "Incomplete request data" msgstr "" -#: src/Module/OAuth/Token.php:79 +#: src/Module/OAuth/Authorize.php:107 +#, php-format +msgid "" +"Please copy the following authentication code into your application and " +"close this window: %s" +msgstr "" + +#: src/Module/OAuth/Token.php:89 msgid "Unsupported or missing grant type" msgstr "" @@ -8911,12 +8909,12 @@ msgstr "" msgid "Visible to:" msgstr "" -#: src/Module/Photo.php:93 +#: src/Module/Photo.php:85 #, php-format msgid "The Photo with id %s is not available." msgstr "" -#: src/Module/Photo.php:111 +#: src/Module/Photo.php:104 #, php-format msgid "Invalid photo with id %s." msgstr "" @@ -8948,12 +8946,12 @@ msgstr "" msgid "Birthday:" msgstr "" -#: src/Module/Profile/Profile.php:167 src/Module/Settings/Profile/Index.php:260 +#: src/Module/Profile/Profile.php:167 src/Module/Settings/Profile/Index.php:244 #: src/Util/Temporal.php:165 msgid "Age: " msgstr "" -#: src/Module/Profile/Profile.php:167 src/Module/Settings/Profile/Index.php:260 +#: src/Module/Profile/Profile.php:167 src/Module/Settings/Profile/Index.php:244 #: src/Util/Temporal.php:165 #, php-format msgid "%d year old" @@ -9146,7 +9144,7 @@ msgstr "" msgid "Only one search per minute is permitted for not logged in users." msgstr "" -#: src/Module/Search/Index.php:190 +#: src/Module/Search/Index.php:192 #, php-format msgid "Items tagged with: %s" msgstr "" @@ -9493,122 +9491,122 @@ msgstr "" msgid "Profile Name is required." msgstr "" -#: src/Module/Settings/Profile/Index.php:137 +#: src/Module/Settings/Profile/Index.php:134 msgid "Profile couldn't be updated." msgstr "" -#: src/Module/Settings/Profile/Index.php:187 -#: src/Module/Settings/Profile/Index.php:207 +#: src/Module/Settings/Profile/Index.php:171 +#: src/Module/Settings/Profile/Index.php:191 msgid "Label:" msgstr "" -#: src/Module/Settings/Profile/Index.php:188 -#: src/Module/Settings/Profile/Index.php:208 +#: src/Module/Settings/Profile/Index.php:172 +#: src/Module/Settings/Profile/Index.php:192 msgid "Value:" msgstr "" -#: src/Module/Settings/Profile/Index.php:198 -#: src/Module/Settings/Profile/Index.php:218 +#: src/Module/Settings/Profile/Index.php:182 +#: src/Module/Settings/Profile/Index.php:202 msgid "Field Permissions" msgstr "" -#: src/Module/Settings/Profile/Index.php:199 -#: src/Module/Settings/Profile/Index.php:219 +#: src/Module/Settings/Profile/Index.php:183 +#: src/Module/Settings/Profile/Index.php:203 msgid "(click to open/close)" msgstr "" -#: src/Module/Settings/Profile/Index.php:205 +#: src/Module/Settings/Profile/Index.php:189 msgid "Add a new profile field" msgstr "" -#: src/Module/Settings/Profile/Index.php:235 +#: src/Module/Settings/Profile/Index.php:219 msgid "Profile Actions" msgstr "" -#: src/Module/Settings/Profile/Index.php:236 +#: src/Module/Settings/Profile/Index.php:220 msgid "Edit Profile Details" msgstr "" -#: src/Module/Settings/Profile/Index.php:238 +#: src/Module/Settings/Profile/Index.php:222 msgid "Change Profile Photo" msgstr "" -#: src/Module/Settings/Profile/Index.php:243 +#: src/Module/Settings/Profile/Index.php:227 msgid "Profile picture" msgstr "" -#: src/Module/Settings/Profile/Index.php:244 +#: src/Module/Settings/Profile/Index.php:228 msgid "Location" msgstr "" -#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:93 +#: src/Module/Settings/Profile/Index.php:229 src/Util/Temporal.php:93 #: src/Util/Temporal.php:95 msgid "Miscellaneous" msgstr "" -#: src/Module/Settings/Profile/Index.php:246 +#: src/Module/Settings/Profile/Index.php:230 msgid "Custom Profile Fields" msgstr "" -#: src/Module/Settings/Profile/Index.php:248 src/Module/Welcome.php:58 +#: src/Module/Settings/Profile/Index.php:232 src/Module/Welcome.php:58 msgid "Upload Profile Photo" msgstr "" -#: src/Module/Settings/Profile/Index.php:252 +#: src/Module/Settings/Profile/Index.php:236 msgid "Display name:" msgstr "" -#: src/Module/Settings/Profile/Index.php:255 +#: src/Module/Settings/Profile/Index.php:239 msgid "Street Address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:256 +#: src/Module/Settings/Profile/Index.php:240 msgid "Locality/City:" msgstr "" -#: src/Module/Settings/Profile/Index.php:257 +#: src/Module/Settings/Profile/Index.php:241 msgid "Region/State:" msgstr "" -#: src/Module/Settings/Profile/Index.php:258 +#: src/Module/Settings/Profile/Index.php:242 msgid "Postal/Zip Code:" msgstr "" -#: src/Module/Settings/Profile/Index.php:259 +#: src/Module/Settings/Profile/Index.php:243 msgid "Country:" msgstr "" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:245 msgid "XMPP (Jabber) address:" msgstr "" -#: src/Module/Settings/Profile/Index.php:261 +#: src/Module/Settings/Profile/Index.php:245 msgid "" "The XMPP address will be propagated to your contacts so that they can follow " "you." msgstr "" -#: src/Module/Settings/Profile/Index.php:262 +#: src/Module/Settings/Profile/Index.php:246 msgid "Homepage URL:" msgstr "" -#: src/Module/Settings/Profile/Index.php:263 +#: src/Module/Settings/Profile/Index.php:247 msgid "Public Keywords:" msgstr "" -#: src/Module/Settings/Profile/Index.php:263 +#: src/Module/Settings/Profile/Index.php:247 msgid "(Used for suggesting potential friends, can be seen by others)" msgstr "" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:248 msgid "Private Keywords:" msgstr "" -#: src/Module/Settings/Profile/Index.php:264 +#: src/Module/Settings/Profile/Index.php:248 msgid "(Used for searching profiles, never shown to others)" msgstr "" -#: src/Module/Settings/Profile/Index.php:265 +#: src/Module/Settings/Profile/Index.php:249 #, php-format msgid "" "

Custom fields appear on your profile page.

\n" @@ -9619,42 +9617,42 @@ msgid "" "contacts or the Friendica contacts in the selected groups.

" msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:102 -#: src/Module/Settings/Profile/Photo/Crop.php:118 -#: src/Module/Settings/Profile/Photo/Crop.php:134 +#: src/Module/Settings/Profile/Photo/Crop.php:103 +#: src/Module/Settings/Profile/Photo/Crop.php:119 +#: src/Module/Settings/Profile/Photo/Crop.php:135 #: src/Module/Settings/Profile/Photo/Index.php:103 #, php-format msgid "Image size reduction [%s] failed." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:139 +#: src/Module/Settings/Profile/Photo/Crop.php:140 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:147 +#: src/Module/Settings/Profile/Photo/Crop.php:145 msgid "Unable to process image" msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:166 +#: src/Module/Settings/Profile/Photo/Crop.php:164 msgid "Photo not found." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:190 +#: src/Module/Settings/Profile/Photo/Crop.php:186 msgid "Profile picture successfully updated." msgstr "" +#: src/Module/Settings/Profile/Photo/Crop.php:209 #: src/Module/Settings/Profile/Photo/Crop.php:213 -#: src/Module/Settings/Profile/Photo/Crop.php:217 msgid "Crop Image" msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:214 +#: src/Module/Settings/Profile/Photo/Crop.php:210 msgid "Please adjust the image cropping for optimum viewing." msgstr "" -#: src/Module/Settings/Profile/Photo/Crop.php:216 +#: src/Module/Settings/Profile/Photo/Crop.php:212 msgid "Use Image As Is" msgstr "" @@ -10415,71 +10413,71 @@ msgstr "" msgid "Remote comment" msgstr "" -#: src/Object/Post.php:417 +#: src/Object/Post.php:421 msgid "Pushed" msgstr "" -#: src/Object/Post.php:417 +#: src/Object/Post.php:421 msgid "Pulled" msgstr "" -#: src/Object/Post.php:451 +#: src/Object/Post.php:455 msgid "to" msgstr "" -#: src/Object/Post.php:452 +#: src/Object/Post.php:456 msgid "via" msgstr "" -#: src/Object/Post.php:453 +#: src/Object/Post.php:457 msgid "Wall-to-Wall" msgstr "" -#: src/Object/Post.php:454 +#: src/Object/Post.php:458 msgid "via Wall-To-Wall:" msgstr "" -#: src/Object/Post.php:492 +#: src/Object/Post.php:496 #, php-format msgid "Reply to %s" msgstr "" -#: src/Object/Post.php:495 +#: src/Object/Post.php:499 msgid "More" msgstr "" -#: src/Object/Post.php:513 +#: src/Object/Post.php:517 msgid "Notifier task is pending" msgstr "" -#: src/Object/Post.php:514 +#: src/Object/Post.php:518 msgid "Delivery to remote servers is pending" msgstr "" -#: src/Object/Post.php:515 +#: src/Object/Post.php:519 msgid "Delivery to remote servers is underway" msgstr "" -#: src/Object/Post.php:516 +#: src/Object/Post.php:520 msgid "Delivery to remote servers is mostly done" msgstr "" -#: src/Object/Post.php:517 +#: src/Object/Post.php:521 msgid "Delivery to remote servers is done" msgstr "" -#: src/Object/Post.php:537 +#: src/Object/Post.php:541 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: src/Object/Post.php:538 +#: src/Object/Post.php:542 msgid "Show more" msgstr "" -#: src/Object/Post.php:539 +#: src/Object/Post.php:543 msgid "Show fewer" msgstr "" @@ -10585,20 +10583,20 @@ msgstr "" msgid "Contact information and Social Networks" msgstr "" -#: src/Security/Authentication.php:210 src/Security/Authentication.php:262 +#: src/Security/Authentication.php:210 msgid "Login failed." msgstr "" -#: src/Security/Authentication.php:273 +#: src/Security/Authentication.php:251 msgid "Login failed. Please check your credentials." msgstr "" -#: src/Security/Authentication.php:392 +#: src/Security/Authentication.php:372 #, php-format msgid "Welcome %s" msgstr "" -#: src/Security/Authentication.php:393 +#: src/Security/Authentication.php:373 msgid "Please upload a profile photo." msgstr "" @@ -10691,7 +10689,7 @@ msgstr "" msgid "%1$d %2$s ago" msgstr "" -#: src/Worker/Delivery.php:570 +#: src/Worker/Delivery.php:529 msgid "(no subject)" msgstr "" diff --git a/view/lang/de/messages.po b/view/lang/de/messages.po index 17202b32c..c8d66e8ce 100644 --- a/view/lang/de/messages.po +++ b/view/lang/de/messages.po @@ -49,8 +49,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-16 07:41+0000\n" -"PO-Revision-Date: 2021-05-16 12:57+0000\n" +"POT-Creation-Date: 2021-06-15 17:22+0000\n" +"PO-Revision-Date: 2021-06-27 12:22+0000\n" "Last-Translator: Tobias Diekershoff \n" "Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n" "MIME-Version: 1.0\n" @@ -59,14 +59,14 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: include/api.php:1137 +#: include/api.php:1135 #, 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] "Das tägliche Limit von %d Beitrag wurde erreicht. Die Nachricht wurde verworfen." msgstr[1] "Das tägliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen." -#: include/api.php:1151 +#: include/api.php:1149 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" @@ -74,15 +74,15 @@ msgid_plural "" msgstr[0] "Das wöchentliche Limit von %d Beitrag wurde erreicht. Die Nachricht wurde verworfen." msgstr[1] "Das wöchentliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen." -#: include/api.php:1165 +#: include/api.php:1163 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgstr "Das monatliche Limit von %d Beiträgen wurde erreicht. Der Beitrag wurde verworfen." -#: include/api.php:4528 mod/photos.php:107 mod/photos.php:211 +#: include/api.php:4526 mod/photos.php:107 mod/photos.php:211 #: mod/photos.php:639 mod/photos.php:1043 mod/photos.php:1060 -#: mod/photos.php:1609 src/Model/User.php:1045 src/Model/User.php:1053 -#: src/Model/User.php:1061 src/Module/Settings/Profile/Photo/Crop.php:97 +#: mod/photos.php:1609 src/Model/User.php:1100 src/Model/User.php:1108 +#: src/Model/User.php:1116 src/Module/Settings/Profile/Photo/Crop.php:97 #: src/Module/Settings/Profile/Photo/Crop.php:113 #: src/Module/Settings/Profile/Photo/Crop.php:129 #: src/Module/Settings/Profile/Photo/Crop.php:178 @@ -96,7 +96,7 @@ msgstr "Profilbilder" msgid "%1$s poked %2$s" msgstr "%1$s stupste %2$s" -#: include/conversation.php:227 src/Model/Item.php:2523 +#: include/conversation.php:227 src/Model/Item.php:2605 msgid "event" msgstr "Veranstaltung" @@ -104,7 +104,7 @@ msgstr "Veranstaltung" msgid "status" msgstr "Status" -#: include/conversation.php:235 mod/tagger.php:90 src/Model/Item.php:2525 +#: include/conversation.php:235 mod/tagger.php:90 src/Model/Item.php:2607 msgid "photo" msgstr "Foto" @@ -124,21 +124,21 @@ msgstr "Auswählen" msgid "Delete" msgstr "Löschen" -#: include/conversation.php:600 src/Object/Post.php:449 -#: src/Object/Post.php:450 +#: include/conversation.php:600 src/Object/Post.php:453 +#: src/Object/Post.php:454 #, php-format msgid "View %s's profile @ %s" msgstr "Das Profil von %s auf %s betrachten." -#: include/conversation.php:613 src/Object/Post.php:437 +#: include/conversation.php:613 src/Object/Post.php:441 msgid "Categories:" msgstr "Kategorien:" -#: include/conversation.php:614 src/Object/Post.php:438 +#: include/conversation.php:614 src/Object/Post.php:442 msgid "Filed under:" msgstr "Abgelegt unter:" -#: include/conversation.php:621 src/Object/Post.php:463 +#: include/conversation.php:621 src/Object/Post.php:467 #, php-format msgid "%s from %s" msgstr "%s von %s" @@ -147,10 +147,10 @@ msgstr "%s von %s" msgid "View in context" msgstr "Im Zusammenhang betrachten" -#: include/conversation.php:638 include/conversation.php:1224 +#: include/conversation.php:638 include/conversation.php:1222 #: mod/editpost.php:104 mod/message.php:204 mod/message.php:374 #: mod/photos.php:1536 mod/wallmessage.php:155 src/Module/Item/Compose.php:159 -#: src/Object/Post.php:497 +#: src/Object/Post.php:501 msgid "Please wait" msgstr "Bitte warten" @@ -162,108 +162,108 @@ msgstr "löschen" msgid "Delete Selected Items" msgstr "Lösche die markierten Beiträge" -#: include/conversation.php:744 include/conversation.php:747 -#: include/conversation.php:750 include/conversation.php:753 +#: include/conversation.php:742 include/conversation.php:745 +#: include/conversation.php:748 include/conversation.php:751 #, php-format msgid "You had been addressed (%s)." msgstr "Du wurdest angeschrieben (%s)." -#: include/conversation.php:756 +#: include/conversation.php:754 #, php-format msgid "You are following %s." msgstr "Du folgst %s." -#: include/conversation.php:759 +#: include/conversation.php:757 msgid "Tagged" msgstr "Verschlagwortet" -#: include/conversation.php:772 include/conversation.php:1116 -#: include/conversation.php:1154 +#: include/conversation.php:770 include/conversation.php:1114 +#: include/conversation.php:1152 #, php-format msgid "%s reshared this." msgstr "%s hat dies geteilt" -#: include/conversation.php:774 +#: include/conversation.php:772 msgid "Reshared" msgstr "Geteilt" -#: include/conversation.php:774 +#: include/conversation.php:772 #, php-format -msgid "Reshared by %s" -msgstr "Von %s geteilt" +msgid "Reshared by %s <%s>" +msgstr "Geteilt von %s <%s>" -#: include/conversation.php:777 +#: include/conversation.php:775 #, php-format msgid "%s is participating in this thread." msgstr "%s ist an der Unterhaltung beteiligt." -#: include/conversation.php:780 +#: include/conversation.php:778 msgid "Stored" msgstr "Gespeichert" -#: include/conversation.php:783 +#: include/conversation.php:781 msgid "Global" msgstr "Global" -#: include/conversation.php:786 +#: include/conversation.php:784 msgid "Relayed" msgstr "Übermittelt" -#: include/conversation.php:786 +#: include/conversation.php:784 #, php-format -msgid "Relayed by %s." -msgstr "Von %s übermittelt" +msgid "Relayed by %s <%s>" +msgstr "Weitergeleitet von %s <%s>" -#: include/conversation.php:789 +#: include/conversation.php:787 msgid "Fetched" msgstr "Abgerufen" -#: include/conversation.php:789 +#: include/conversation.php:787 #, php-format -msgid "Fetched because of %s" -msgstr "Wegen %s abgerufen" +msgid "Fetched because of %s <%s>" +msgstr "Wegen %s <%s> abgerufen" -#: include/conversation.php:949 view/theme/frio/theme.php:323 +#: include/conversation.php:947 view/theme/frio/theme.php:323 msgid "Follow Thread" msgstr "Folge der Unterhaltung" -#: include/conversation.php:950 src/Model/Contact.php:986 +#: include/conversation.php:948 src/Model/Contact.php:999 msgid "View Status" msgstr "Status anschauen" -#: include/conversation.php:951 include/conversation.php:973 -#: src/Model/Contact.php:912 src/Model/Contact.php:978 -#: src/Model/Contact.php:987 src/Module/Directory.php:166 +#: include/conversation.php:949 include/conversation.php:971 +#: src/Model/Contact.php:925 src/Model/Contact.php:991 +#: src/Model/Contact.php:1000 src/Module/Directory.php:166 #: src/Module/Settings/Profile/Index.php:240 msgid "View Profile" msgstr "Profil anschauen" -#: include/conversation.php:952 src/Model/Contact.php:988 +#: include/conversation.php:950 src/Model/Contact.php:1001 msgid "View Photos" msgstr "Bilder anschauen" -#: include/conversation.php:953 src/Model/Contact.php:979 -#: src/Model/Contact.php:989 +#: include/conversation.php:951 src/Model/Contact.php:992 +#: src/Model/Contact.php:1002 msgid "Network Posts" msgstr "Netzwerkbeiträge" -#: include/conversation.php:954 src/Model/Contact.php:980 -#: src/Model/Contact.php:990 +#: include/conversation.php:952 src/Model/Contact.php:993 +#: src/Model/Contact.php:1003 msgid "View Contact" msgstr "Kontakt anzeigen" -#: include/conversation.php:955 src/Model/Contact.php:992 +#: include/conversation.php:953 src/Model/Contact.php:1005 msgid "Send PM" msgstr "Private Nachricht senden" -#: include/conversation.php:956 src/Module/Admin/Blocklist/Contact.php:84 +#: include/conversation.php:954 src/Module/Admin/Blocklist/Contact.php:84 #: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:154 #: src/Module/Contact.php:633 src/Module/Contact.php:891 #: src/Module/Contact.php:1173 msgid "Block" msgstr "Sperren" -#: include/conversation.php:957 src/Module/Contact.php:634 +#: include/conversation.php:955 src/Module/Contact.php:634 #: src/Module/Contact.php:892 src/Module/Contact.php:1181 #: src/Module/Notifications/Introductions.php:113 #: src/Module/Notifications/Introductions.php:191 @@ -271,273 +271,273 @@ msgstr "Sperren" msgid "Ignore" msgstr "Ignorieren" -#: include/conversation.php:961 src/Object/Post.php:424 +#: include/conversation.php:959 src/Object/Post.php:428 msgid "Languages" msgstr "Sprachen" -#: include/conversation.php:965 src/Model/Contact.php:993 +#: include/conversation.php:963 src/Model/Contact.php:1006 msgid "Poke" msgstr "Anstupsen" -#: include/conversation.php:970 mod/follow.php:146 src/Content/Widget.php:76 -#: src/Model/Contact.php:981 src/Model/Contact.php:994 +#: include/conversation.php:968 mod/follow.php:146 src/Content/Widget.php:76 +#: src/Model/Contact.php:994 src/Model/Contact.php:1007 #: view/theme/vier/theme.php:172 msgid "Connect/Follow" msgstr "Verbinden/Folgen" -#: include/conversation.php:1101 +#: include/conversation.php:1099 #, php-format msgid "%s likes this." msgstr "%s mag das." -#: include/conversation.php:1104 +#: include/conversation.php:1102 #, php-format msgid "%s doesn't like this." msgstr "%s mag das nicht." -#: include/conversation.php:1107 +#: include/conversation.php:1105 #, php-format msgid "%s attends." msgstr "%s nimmt teil." -#: include/conversation.php:1110 +#: include/conversation.php:1108 #, php-format msgid "%s doesn't attend." msgstr "%s nimmt nicht teil." -#: include/conversation.php:1113 +#: include/conversation.php:1111 #, php-format msgid "%s attends maybe." msgstr "%s nimmt eventuell teil." -#: include/conversation.php:1122 +#: include/conversation.php:1120 msgid "and" msgstr "und" -#: include/conversation.php:1125 +#: include/conversation.php:1123 #, php-format msgid "and %d other people" msgstr "und %dandere" -#: include/conversation.php:1133 +#: include/conversation.php:1131 #, php-format msgid "%2$d people like this" msgstr "%2$d Personen mögen das" -#: include/conversation.php:1134 +#: include/conversation.php:1132 #, php-format msgid "%s like this." msgstr "%s mögen das." -#: include/conversation.php:1137 +#: include/conversation.php:1135 #, php-format msgid "%2$d people don't like this" msgstr "%2$d Personen mögen das nicht" -#: include/conversation.php:1138 +#: include/conversation.php:1136 #, php-format msgid "%s don't like this." msgstr "%s mögen dies nicht." -#: include/conversation.php:1141 +#: include/conversation.php:1139 #, php-format msgid "%2$d people attend" msgstr "%2$d Personen nehmen teil" -#: include/conversation.php:1142 +#: include/conversation.php:1140 #, php-format msgid "%s attend." msgstr "%s nehmen teil." -#: include/conversation.php:1145 +#: include/conversation.php:1143 #, php-format msgid "%2$d people don't attend" msgstr "%2$d Personen nehmen nicht teil" -#: include/conversation.php:1146 +#: include/conversation.php:1144 #, php-format msgid "%s don't attend." msgstr "%s nehmen nicht teil." -#: include/conversation.php:1149 +#: include/conversation.php:1147 #, php-format msgid "%2$d people attend maybe" msgstr "%2$d Personen nehmen eventuell teil" -#: include/conversation.php:1150 +#: include/conversation.php:1148 #, php-format msgid "%s attend maybe." msgstr "%s nimmt eventuell teil." -#: include/conversation.php:1153 +#: include/conversation.php:1151 #, php-format msgid "%2$d people reshared this" msgstr "%2$d Personen haben dies geteilt" -#: include/conversation.php:1183 +#: include/conversation.php:1181 msgid "Visible to everybody" msgstr "Für jedermann sichtbar" -#: include/conversation.php:1184 src/Module/Item/Compose.php:153 -#: src/Object/Post.php:966 +#: include/conversation.php:1182 src/Module/Item/Compose.php:153 +#: src/Object/Post.php:970 msgid "Please enter a image/video/audio/webpage URL:" msgstr "Bitte gib eine Bild/Video/Audio/Webseiten-URL ein:" -#: include/conversation.php:1185 +#: include/conversation.php:1183 msgid "Tag term:" msgstr "Tag:" -#: include/conversation.php:1186 src/Module/Filer/SaveTag.php:69 +#: include/conversation.php:1184 src/Module/Filer/SaveTag.php:69 msgid "Save to Folder:" msgstr "In diesem Ordner speichern:" -#: include/conversation.php:1187 +#: include/conversation.php:1185 msgid "Where are you right now?" msgstr "Wo hältst du dich jetzt gerade auf?" -#: include/conversation.php:1188 +#: include/conversation.php:1186 msgid "Delete item(s)?" msgstr "Einträge löschen?" -#: include/conversation.php:1198 +#: include/conversation.php:1196 msgid "New Post" msgstr "Neuer Beitrag" -#: include/conversation.php:1201 +#: include/conversation.php:1199 msgid "Share" msgstr "Teilen" -#: include/conversation.php:1202 mod/editpost.php:89 mod/photos.php:1382 -#: src/Module/Contact/Poke.php:154 src/Object/Post.php:957 +#: include/conversation.php:1200 mod/editpost.php:89 mod/photos.php:1382 +#: src/Module/Contact/Poke.php:154 src/Object/Post.php:961 msgid "Loading..." msgstr "lädt..." -#: include/conversation.php:1203 mod/editpost.php:90 mod/message.php:202 +#: include/conversation.php:1201 mod/editpost.php:90 mod/message.php:202 #: mod/message.php:371 mod/wallmessage.php:153 msgid "Upload photo" msgstr "Foto hochladen" -#: include/conversation.php:1204 mod/editpost.php:91 +#: include/conversation.php:1202 mod/editpost.php:91 msgid "upload photo" msgstr "Bild hochladen" -#: include/conversation.php:1205 mod/editpost.php:92 +#: include/conversation.php:1203 mod/editpost.php:92 msgid "Attach file" msgstr "Datei anhängen" -#: include/conversation.php:1206 mod/editpost.php:93 +#: include/conversation.php:1204 mod/editpost.php:93 msgid "attach file" msgstr "Datei anhängen" -#: include/conversation.php:1207 src/Module/Item/Compose.php:145 -#: src/Object/Post.php:958 +#: include/conversation.php:1205 src/Module/Item/Compose.php:145 +#: src/Object/Post.php:962 msgid "Bold" msgstr "Fett" -#: include/conversation.php:1208 src/Module/Item/Compose.php:146 -#: src/Object/Post.php:959 +#: include/conversation.php:1206 src/Module/Item/Compose.php:146 +#: src/Object/Post.php:963 msgid "Italic" msgstr "Kursiv" -#: include/conversation.php:1209 src/Module/Item/Compose.php:147 -#: src/Object/Post.php:960 +#: include/conversation.php:1207 src/Module/Item/Compose.php:147 +#: src/Object/Post.php:964 msgid "Underline" msgstr "Unterstrichen" -#: include/conversation.php:1210 src/Module/Item/Compose.php:148 -#: src/Object/Post.php:961 +#: include/conversation.php:1208 src/Module/Item/Compose.php:148 +#: src/Object/Post.php:965 msgid "Quote" msgstr "Zitat" -#: include/conversation.php:1211 src/Module/Item/Compose.php:149 -#: src/Object/Post.php:962 +#: include/conversation.php:1209 src/Module/Item/Compose.php:149 +#: src/Object/Post.php:966 msgid "Code" msgstr "Code" -#: include/conversation.php:1212 src/Module/Item/Compose.php:150 -#: src/Object/Post.php:963 +#: include/conversation.php:1210 src/Module/Item/Compose.php:150 +#: src/Object/Post.php:967 msgid "Image" msgstr "Bild" -#: include/conversation.php:1213 src/Module/Item/Compose.php:151 -#: src/Object/Post.php:964 +#: include/conversation.php:1211 src/Module/Item/Compose.php:151 +#: src/Object/Post.php:968 msgid "Link" msgstr "Link" -#: include/conversation.php:1214 src/Module/Item/Compose.php:152 -#: src/Object/Post.php:965 +#: include/conversation.php:1212 src/Module/Item/Compose.php:152 +#: src/Object/Post.php:969 msgid "Link or Media" msgstr "Link oder Mediendatei" -#: include/conversation.php:1215 +#: include/conversation.php:1213 msgid "Video" msgstr "Video" -#: include/conversation.php:1216 mod/editpost.php:100 +#: include/conversation.php:1214 mod/editpost.php:100 #: src/Module/Item/Compose.php:155 msgid "Set your location" msgstr "Deinen Standort festlegen" -#: include/conversation.php:1217 mod/editpost.php:101 +#: include/conversation.php:1215 mod/editpost.php:101 msgid "set location" msgstr "Ort setzen" -#: include/conversation.php:1218 mod/editpost.php:102 +#: include/conversation.php:1216 mod/editpost.php:102 msgid "Clear browser location" msgstr "Browser-Standort leeren" -#: include/conversation.php:1219 mod/editpost.php:103 +#: include/conversation.php:1217 mod/editpost.php:103 msgid "clear location" msgstr "Ort löschen" -#: include/conversation.php:1221 mod/editpost.php:117 +#: include/conversation.php:1219 mod/editpost.php:117 #: src/Module/Item/Compose.php:160 msgid "Set title" msgstr "Titel setzen" -#: include/conversation.php:1223 mod/editpost.php:119 +#: include/conversation.php:1221 mod/editpost.php:119 #: src/Module/Item/Compose.php:161 msgid "Categories (comma-separated list)" msgstr "Kategorien (kommasepariert)" -#: include/conversation.php:1225 mod/editpost.php:105 +#: include/conversation.php:1223 mod/editpost.php:105 msgid "Permission settings" msgstr "Berechtigungseinstellungen" -#: include/conversation.php:1226 mod/editpost.php:134 mod/events.php:578 +#: include/conversation.php:1224 mod/editpost.php:134 mod/events.php:578 #: mod/photos.php:969 mod/photos.php:1335 msgid "Permissions" msgstr "Berechtigungen" -#: include/conversation.php:1235 mod/editpost.php:114 +#: include/conversation.php:1233 mod/editpost.php:114 msgid "Public post" msgstr "Öffentlicher Beitrag" -#: include/conversation.php:1239 mod/editpost.php:125 mod/events.php:573 +#: include/conversation.php:1237 mod/editpost.php:125 mod/events.php:573 #: mod/photos.php:1381 mod/photos.php:1438 mod/photos.php:1513 -#: src/Module/Item/Compose.php:154 src/Object/Post.php:967 +#: src/Module/Item/Compose.php:154 src/Object/Post.php:971 msgid "Preview" msgstr "Vorschau" -#: include/conversation.php:1243 mod/dfrn_request.php:642 mod/editpost.php:128 +#: include/conversation.php:1241 mod/dfrn_request.php:642 mod/editpost.php:128 #: mod/fbrowser.php:105 mod/fbrowser.php:134 mod/follow.php:152 -#: mod/photos.php:1037 mod/photos.php:1143 mod/tagrm.php:37 mod/tagrm.php:127 +#: mod/photos.php:1037 mod/photos.php:1143 mod/tagrm.php:37 mod/tagrm.php:129 #: mod/unfollow.php:100 src/Module/Contact.php:467 #: src/Module/RemoteFollow.php:110 msgid "Cancel" msgstr "Abbrechen" -#: include/conversation.php:1250 mod/editpost.php:132 -#: src/Model/Profile.php:450 src/Module/Contact.php:344 +#: include/conversation.php:1248 mod/editpost.php:132 +#: src/Model/Profile.php:460 src/Module/Contact.php:344 msgid "Message" msgstr "Nachricht" -#: include/conversation.php:1251 mod/editpost.php:133 +#: include/conversation.php:1249 mod/editpost.php:133 #: src/Module/Settings/TwoFactor/Trusted.php:101 msgid "Browser" msgstr "Browser" -#: include/conversation.php:1253 mod/editpost.php:136 +#: include/conversation.php:1251 mod/editpost.php:136 msgid "Open Compose page" msgstr "Composer Seite öffnen" @@ -868,8 +868,8 @@ msgid "Please visit %s to approve or reject the request." msgstr "Bitte besuche %s, um die Anfrage zu bearbeiten." #: mod/api.php:52 mod/api.php:57 mod/dfrn_confirm.php:78 mod/editpost.php:37 -#: mod/events.php:231 mod/follow.php:55 mod/follow.php:135 mod/item.php:184 -#: mod/item.php:189 mod/item.php:909 mod/message.php:69 mod/message.php:112 +#: mod/events.php:231 mod/follow.php:55 mod/follow.php:135 mod/item.php:185 +#: mod/item.php:190 mod/item.php:910 mod/message.php:69 mod/message.php:112 #: mod/notes.php:44 mod/ostatus_subscribe.php:30 mod/photos.php:176 #: mod/photos.php:922 mod/repair_ostatus.php:31 mod/settings.php:47 #: mod/settings.php:65 mod/settings.php:498 mod/suggest.php:34 @@ -877,11 +877,9 @@ msgstr "Bitte besuche %s, um die Anfrage zu bearbeiten." #: mod/unfollow.php:82 mod/wall_attach.php:78 mod/wall_attach.php:81 #: mod/wall_upload.php:99 mod/wall_upload.php:102 mod/wallmessage.php:35 #: mod/wallmessage.php:59 mod/wallmessage.php:96 mod/wallmessage.php:120 -#: src/Module/Attach.php:56 src/Module/BaseApi.php:74 -#: src/Module/BaseApi.php:80 src/Module/BaseApi.php:87 -#: src/Module/BaseApi.php:93 src/Module/BaseApi.php:100 -#: src/Module/BaseApi.php:106 src/Module/BaseApi.php:113 -#: src/Module/BaseApi.php:119 src/Module/BaseNotifications.php:88 +#: src/Module/Attach.php:56 src/Module/BaseApi.php:69 +#: src/Module/BaseApi.php:80 src/Module/BaseApi.php:91 +#: src/Module/BaseApi.php:102 src/Module/BaseNotifications.php:88 #: src/Module/Contact.php:385 src/Module/Contact/Advanced.php:43 #: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:16 #: src/Module/FriendSuggest.php:44 src/Module/Group.php:45 @@ -948,7 +946,7 @@ msgstr "Zugriff verweigert." msgid "User not found." msgstr "Benutzer nicht gefunden." -#: mod/cal.php:143 mod/display.php:283 src/Module/Profile/Profile.php:94 +#: mod/cal.php:143 mod/display.php:284 src/Module/Profile/Profile.php:94 #: src/Module/Profile/Profile.php:109 src/Module/Profile/Status.php:109 #: src/Module/Update/Profile.php:55 msgid "Access to this profile has been restricted." @@ -996,10 +994,10 @@ msgstr "Tag" msgid "list" msgstr "Liste" -#: mod/cal.php:297 src/Console/User.php:182 src/Model/User.php:607 +#: mod/cal.php:297 src/Console/User.php:182 src/Model/User.php:662 #: src/Module/Admin/Users/Active.php:73 src/Module/Admin/Users/Blocked.php:74 #: src/Module/Admin/Users/Index.php:80 src/Module/Admin/Users/Pending.php:71 -#: src/Module/Api/Twitter/ContactEndpoint.php:73 +#: src/Module/Api/Twitter/ContactEndpoint.php:71 msgid "User not found" msgstr "Nutzer nicht gefunden" @@ -1092,7 +1090,7 @@ msgstr "Deine Kontaktreferenzen konnten nicht in unserem System gespeichert werd msgid "Unable to update your contact profile details on our system" msgstr "Die Updates für dein Profil konnten nicht gespeichert werden" -#: mod/dfrn_poll.php:135 mod/dfrn_poll.php:506 +#: mod/dfrn_poll.php:136 mod/dfrn_poll.php:509 #, php-format msgid "%1$s welcomes %2$s" msgstr "%1$s heißt %2$s herzlich willkommen" @@ -1162,11 +1160,11 @@ msgstr "Es scheint so, als ob du bereits mit %s in Kontakt stehst." msgid "Invalid profile URL." msgstr "Ungültige Profil-URL." -#: mod/dfrn_request.php:355 src/Model/Contact.php:2159 +#: mod/dfrn_request.php:355 src/Model/Contact.php:2177 msgid "Disallowed profile URL." msgstr "Nicht erlaubte Profil-URL." -#: mod/dfrn_request.php:361 src/Model/Contact.php:2164 +#: mod/dfrn_request.php:361 src/Model/Contact.php:2182 #: src/Module/Friendica.php:80 msgid "Blocked domain" msgstr "Blockierte Domain" @@ -1262,11 +1260,11 @@ msgstr "%skennt dich" msgid "Add a personal note:" msgstr "Eine persönliche Notiz beifügen:" -#: mod/display.php:235 mod/display.php:319 +#: mod/display.php:235 mod/display.php:320 msgid "The requested item doesn't exist or has been deleted." msgstr "Der angeforderte Beitrag existiert nicht oder wurde gelöscht." -#: mod/display.php:399 +#: mod/display.php:400 msgid "The feed for this item is unavailable." msgstr "Der Feed für diesen Beitrag ist nicht verfügbar." @@ -1376,7 +1374,7 @@ msgid "Description:" msgstr "Beschreibung" #: mod/events.php:563 src/Model/Event.php:84 src/Model/Event.php:111 -#: src/Model/Event.php:472 src/Model/Event.php:959 src/Model/Profile.php:358 +#: src/Model/Event.php:472 src/Model/Event.php:959 src/Model/Profile.php:368 #: src/Module/Contact.php:654 src/Module/Directory.php:156 #: src/Module/Notifications/Introductions.php:172 #: src/Module/Profile/Profile.php:190 @@ -1403,7 +1401,7 @@ msgstr "Veranstaltung teilen" #: src/Module/Install.php:245 src/Module/Install.php:287 #: src/Module/Install.php:324 src/Module/Invite.php:174 #: src/Module/Item/Compose.php:144 src/Module/Profile/Profile.php:243 -#: src/Module/Settings/Profile/Index.php:237 src/Object/Post.php:956 +#: src/Module/Settings/Profile/Index.php:237 src/Object/Post.php:960 #: view/theme/duepuntozero/config.php:69 view/theme/frio/config.php:160 #: view/theme/quattro/config.php:71 view/theme/vier/config.php:119 msgid "Submit" @@ -1413,7 +1411,7 @@ msgstr "Senden" msgid "Basic" msgstr "Allgemein" -#: mod/events.php:577 src/Module/Admin/Site.php:587 src/Module/Contact.php:961 +#: mod/events.php:577 src/Module/Admin/Site.php:584 src/Module/Contact.php:961 #: src/Module/Profile/Profile.php:245 msgid "Advanced" msgstr "Erweitert" @@ -1478,27 +1476,27 @@ msgstr "Statusnachrichten und Beiträge" msgid "The contact could not be added." msgstr "Der Kontakt konnte nicht hinzugefügt werden." -#: mod/item.php:135 mod/item.php:139 +#: mod/item.php:136 mod/item.php:140 msgid "Unable to locate original post." msgstr "Konnte den Originalbeitrag nicht finden." -#: mod/item.php:340 mod/item.php:345 +#: mod/item.php:341 mod/item.php:346 msgid "Empty post discarded." msgstr "Leerer Beitrag wurde verworfen." -#: mod/item.php:709 +#: mod/item.php:717 msgid "Post updated." msgstr "Beitrag aktualisiert." -#: mod/item.php:726 mod/item.php:731 +#: mod/item.php:727 mod/item.php:732 msgid "Item wasn't stored." msgstr "Eintrag wurde nicht gespeichert" -#: mod/item.php:742 +#: mod/item.php:743 msgid "Item couldn't be fetched." msgstr "Eintrag konnte nicht geholt werden." -#: mod/item.php:888 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:889 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:47 #: src/Module/Debug/ItemBody.php:60 msgid "Item not found." @@ -1642,19 +1640,11 @@ msgstr "Auf %s wurde dein Passwort geändert" msgid "No keywords to match. Please add keywords to your profile." msgstr "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Profil hinzu." -#: mod/match.php:105 src/Content/Pager.php:216 -msgid "first" -msgstr "erste" - -#: mod/match.php:110 src/Content/Pager.php:276 -msgid "next" -msgstr "nächste" - -#: mod/match.php:120 src/Module/BaseSearch.php:117 +#: mod/match.php:93 src/Module/BaseSearch.php:117 msgid "No matches" msgstr "Keine Übereinstimmungen" -#: mod/match.php:125 +#: mod/match.php:98 msgid "Profile Match" msgstr "Profilübereinstimmungen" @@ -2027,12 +2017,12 @@ msgstr "Drehen EUS (links)" #: mod/photos.php:1377 mod/photos.php:1434 mod/photos.php:1509 #: src/Module/Contact.php:1104 src/Module/Item/Compose.php:142 -#: src/Object/Post.php:953 +#: src/Object/Post.php:957 msgid "This is you" msgstr "Das bist du" #: mod/photos.php:1379 mod/photos.php:1436 mod/photos.php:1511 -#: src/Object/Post.php:491 src/Object/Post.php:955 +#: src/Object/Post.php:495 src/Object/Post.php:959 msgid "Comment" msgstr "Kommentar" @@ -2228,7 +2218,7 @@ msgstr "Zusätzliche Features" #: mod/settings.php:564 mod/settings.php:662 mod/settings.php:797 #: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:87 -#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:582 +#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:579 #: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:66 #: src/Module/Settings/Delegation.php:170 src/Module/Settings/Display.php:189 msgid "Save Settings" @@ -2900,15 +2890,15 @@ msgstr "Keine Vorschläge verfügbar. Falls der Server frisch aufgesetzt wurde, msgid "Friend Suggestions" msgstr "Kontaktvorschläge" -#: mod/tagrm.php:113 +#: mod/tagrm.php:115 msgid "Remove Item Tag" msgstr "Gegenstands-Tag entfernen" -#: mod/tagrm.php:115 +#: mod/tagrm.php:117 msgid "Select a tag to remove: " msgstr "Wähle ein Tag zum Entfernen aus: " -#: mod/tagrm.php:126 src/Module/Settings/Delegation.php:179 +#: mod/tagrm.php:128 src/Module/Settings/Delegation.php:179 #: src/Module/Settings/TwoFactor/Trusted.php:104 msgid "Remove" msgstr "Entfernen" @@ -3009,7 +2999,7 @@ msgstr "Die Datei ist größer als das erlaubte Limit von %s" msgid "File upload failed." msgstr "Hochladen der Datei fehlgeschlagen." -#: mod/wall_upload.php:233 +#: mod/wall_upload.php:233 src/Model/Photo.php:953 msgid "Wall Photos" msgstr "Pinnwand-Bilder" @@ -3033,7 +3023,7 @@ msgid "" "your site allow private mail from unknown senders." msgstr "Wenn du möchtest, dass %s dir antworten kann, überprüfe deine Privatsphären-Einstellungen und erlaube private Nachrichten von unbekannten Absendern." -#: src/App.php:311 +#: src/App.php:312 msgid "No system theme config value set." msgstr "Es wurde kein Konfigurationswert für das systemweite Theme gesetzt." @@ -3055,12 +3045,12 @@ msgstr "Soll dieser Autor geblockt werden? Sie werden nicht in der Lage sein, di msgid "toggle mobile" msgstr "mobile Ansicht umschalten" -#: src/App/Router.php:234 +#: src/App/Router.php:236 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "Diese Methode ist in diesem Modul nicht erlaubt. Erlaubte Methoden sind: %s" -#: src/App/Router.php:236 src/Module/HTTPException/PageNotFound.php:32 +#: src/App/Router.php:238 src/Module/HTTPException/PageNotFound.php:32 msgid "Page not found." msgstr "Seite nicht gefunden." @@ -3673,46 +3663,54 @@ msgstr "Einbettungen deaktiviert" msgid "Embedded content" msgstr "Eingebetteter Inhalt" +#: src/Content/Pager.php:216 +msgid "first" +msgstr "erste" + #: src/Content/Pager.php:221 msgid "prev" msgstr "vorige" +#: src/Content/Pager.php:276 +msgid "next" +msgstr "nächste" + #: src/Content/Pager.php:281 msgid "last" msgstr "letzte" -#: src/Content/Text/BBCode.php:942 src/Content/Text/BBCode.php:1605 -#: src/Content/Text/BBCode.php:1606 +#: src/Content/Text/BBCode.php:942 src/Content/Text/BBCode.php:1607 +#: src/Content/Text/BBCode.php:1608 msgid "Image/photo" msgstr "Bild/Foto" -#: src/Content/Text/BBCode.php:1064 +#: src/Content/Text/BBCode.php:1066 #, php-format msgid "%2$s %3$s" msgstr "%2$s%3$s" -#: src/Content/Text/BBCode.php:1089 src/Model/Item.php:3024 -#: src/Model/Item.php:3030 src/Model/Item.php:3031 +#: src/Content/Text/BBCode.php:1091 src/Model/Item.php:3113 +#: src/Model/Item.php:3119 src/Model/Item.php:3120 msgid "Link to source" msgstr "Link zum Originalbeitrag" -#: src/Content/Text/BBCode.php:1523 src/Content/Text/HTML.php:951 +#: src/Content/Text/BBCode.php:1525 src/Content/Text/HTML.php:951 msgid "Click to open/close" msgstr "Zum Öffnen/Schließen klicken" -#: src/Content/Text/BBCode.php:1554 +#: src/Content/Text/BBCode.php:1556 msgid "$1 wrote:" msgstr "$1 hat geschrieben:" -#: src/Content/Text/BBCode.php:1608 src/Content/Text/BBCode.php:1609 +#: src/Content/Text/BBCode.php:1610 src/Content/Text/BBCode.php:1611 msgid "Encrypted content" msgstr "Verschlüsselter Inhalt" -#: src/Content/Text/BBCode.php:1822 +#: src/Content/Text/BBCode.php:1824 msgid "Invalid source protocol" msgstr "Ungültiges Quell-Protokoll" -#: src/Content/Text/BBCode.php:1837 +#: src/Content/Text/BBCode.php:1839 msgid "Invalid link protocol" msgstr "Ungültiges Link-Protokoll" @@ -3724,7 +3722,7 @@ msgstr "lade weitere Einträge..." msgid "The end" msgstr "Das Ende" -#: src/Content/Text/HTML.php:893 src/Model/Profile.php:444 +#: src/Content/Text/HTML.php:893 src/Model/Profile.php:454 #: src/Module/Contact.php:340 msgid "Follow" msgstr "Folge" @@ -3847,7 +3845,7 @@ msgstr "Personen" msgid "Organisations" msgstr "Organisationen" -#: src/Content/Widget.php:532 src/Model/Contact.php:1410 +#: src/Content/Widget.php:532 src/Model/Contact.php:1423 msgid "News" msgstr "Nachrichten" @@ -3855,15 +3853,15 @@ msgstr "Nachrichten" msgid "All" msgstr "Alle" -#: src/Content/Widget/CalendarExport.php:63 +#: src/Content/Widget/CalendarExport.php:54 msgid "Export" msgstr "Exportieren" -#: src/Content/Widget/CalendarExport.php:64 +#: src/Content/Widget/CalendarExport.php:55 msgid "Export calendar as ical" msgstr "Kalender als ical exportieren" -#: src/Content/Widget/CalendarExport.php:65 +#: src/Content/Widget/CalendarExport.php:56 msgid "Export calendar as csv" msgstr "Kalender als csv exportieren" @@ -4116,8 +4114,9 @@ msgid "Program execution functions" msgstr "Funktionen zur Programmausführung" #: src/Core/Installer.php:468 -msgid "Error: Program execution functions required but not enabled." -msgstr "Fehler: Die Funktionen zur Ausführung des Programms müssen aktiviert sein." +msgid "" +"Error: Program execution functions (proc_open) required but not enabled." +msgstr "Fehler: Die Funktionen zur Ausführung von Programmen (proc_open) müssen aktiviert sein." #: src/Core/Installer.php:474 msgid "JSON PHP module" @@ -4534,33 +4533,33 @@ msgstr "Fehler beim Anlegen des Nutzer-Profils" msgid "Done. You can now login with your username and password" msgstr "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden" -#: src/Database/DBStructure.php:64 +#: src/Database/DBStructure.php:65 #, php-format msgid "The database version had been set to %s." msgstr "Die Datenbank Version wurde auf %s gesetzt." -#: src/Database/DBStructure.php:77 +#: src/Database/DBStructure.php:78 #, php-format msgid "" "The post update is at version %d, it has to be at %d to safely drop the " "tables." msgstr "Das post-update ist auf der Version %d. Damit die Tabellen sicher entfernt werden können muss es die Version %d haben." -#: src/Database/DBStructure.php:89 +#: src/Database/DBStructure.php:90 msgid "No unused tables found." msgstr "Keine Tabellen gefunden die nicht verwendet werden." -#: src/Database/DBStructure.php:94 +#: src/Database/DBStructure.php:95 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "Diese Tabellen werden nicht von Friendica verwendet. Sie werden gelöscht, wenn du \"dbstructure drop -e\" ausführst." -#: src/Database/DBStructure.php:132 +#: src/Database/DBStructure.php:133 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "Es gibt keine MyISAM oder InnoDB Tabellem mit dem Antelope Dateiformat." -#: src/Database/DBStructure.php:156 +#: src/Database/DBStructure.php:157 #, php-format msgid "" "\n" @@ -4568,43 +4567,43 @@ msgid "" "%s\n" msgstr "\nFehler %d beim Update der Datenbank aufgetreten\n%s\n" -#: src/Database/DBStructure.php:159 +#: src/Database/DBStructure.php:160 msgid "Errors encountered performing database changes: " msgstr "Fehler beim Ändern der Datenbank aufgetreten" -#: src/Database/DBStructure.php:439 +#: src/Database/DBStructure.php:550 msgid "Another database update is currently running." msgstr "Es läuft bereits ein anderes Datenbank Update" -#: src/Database/DBStructure.php:443 +#: src/Database/DBStructure.php:554 #, php-format msgid "%s: Database update" msgstr "%s: Datenbank Aktualisierung" -#: src/Database/DBStructure.php:743 +#: src/Database/DBStructure.php:854 #, php-format msgid "%s: updating %s table." msgstr "%s: aktualisiere Tabelle %s" -#: src/Factory/Api/Mastodon/Error.php:32 +#: src/Factory/Api/Mastodon/Error.php:38 msgid "Record not found" msgstr "Eintrag nicht gefunden" -#: src/Factory/Api/Mastodon/Error.php:41 +#: src/Factory/Api/Mastodon/Error.php:48 msgid "Unprocessable Entity" msgstr "Entität konnte nicht verarbeitet werden" -#: src/Factory/Api/Mastodon/Error.php:50 +#: src/Factory/Api/Mastodon/Error.php:58 #: src/Module/Special/HTTPException.php:50 msgid "Unauthorized" msgstr "Nicht autorisiert" -#: src/Factory/Api/Mastodon/Error.php:59 +#: src/Factory/Api/Mastodon/Error.php:68 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "Token ist nicht durch einen gültigen Benutzer autorisiert oder es fehlt ein erforderlicher Geltungsbereich" -#: src/Factory/Api/Mastodon/Error.php:68 +#: src/Factory/Api/Mastodon/Error.php:78 #: src/Module/Special/HTTPException.php:53 msgid "Internal Server Error" msgstr "Interner Serverfehler" @@ -4667,82 +4666,82 @@ msgstr "%s ist jetzt mit %s befreundet" msgid "Legacy module file not found: %s" msgstr "Legacy-Moduldatei nicht gefunden: %s" -#: src/Model/Contact.php:982 src/Model/Contact.php:995 +#: src/Model/Contact.php:995 src/Model/Contact.php:1008 msgid "UnFollow" msgstr "Entfolgen" -#: src/Model/Contact.php:991 +#: src/Model/Contact.php:1004 msgid "Drop Contact" msgstr "Kontakt löschen" -#: src/Model/Contact.php:1001 src/Module/Admin/Users/Pending.php:107 +#: src/Model/Contact.php:1014 src/Module/Admin/Users/Pending.php:107 #: src/Module/Notifications/Introductions.php:111 #: src/Module/Notifications/Introductions.php:189 msgid "Approve" msgstr "Genehmigen" -#: src/Model/Contact.php:1406 +#: src/Model/Contact.php:1419 msgid "Organisation" msgstr "Organisation" -#: src/Model/Contact.php:1414 +#: src/Model/Contact.php:1427 msgid "Forum" msgstr "Forum" -#: src/Model/Contact.php:2169 +#: src/Model/Contact.php:2187 msgid "Connect URL missing." msgstr "Connect-URL fehlt" -#: src/Model/Contact.php:2178 +#: src/Model/Contact.php:2196 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "Der Kontakt konnte nicht hinzugefügt werden. Bitte überprüfe die Einstellungen unter Einstellungen -> Soziale Netzwerke" -#: src/Model/Contact.php:2219 +#: src/Model/Contact.php:2237 msgid "" "This site is not configured to allow communications with other networks." msgstr "Diese Seite ist so konfiguriert, dass keine Kommunikation mit anderen Netzwerken erfolgen kann." -#: src/Model/Contact.php:2220 src/Model/Contact.php:2233 +#: src/Model/Contact.php:2238 src/Model/Contact.php:2251 msgid "No compatible communication protocols or feeds were discovered." msgstr "Es wurden keine kompatiblen Kommunikationsprotokolle oder Feeds gefunden." -#: src/Model/Contact.php:2231 +#: src/Model/Contact.php:2249 msgid "The profile address specified does not provide adequate information." msgstr "Die angegebene Profiladresse liefert unzureichende Informationen." -#: src/Model/Contact.php:2236 +#: src/Model/Contact.php:2254 msgid "An author or name was not found." msgstr "Es wurde kein Autor oder Name gefunden." -#: src/Model/Contact.php:2239 +#: src/Model/Contact.php:2257 msgid "No browser URL could be matched to this address." msgstr "Zu dieser Adresse konnte keine passende Browser-URL gefunden werden." -#: src/Model/Contact.php:2242 +#: src/Model/Contact.php:2260 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "Konnte die @-Adresse mit keinem der bekannten Protokolle oder Email-Kontakte abgleichen." -#: src/Model/Contact.php:2243 +#: src/Model/Contact.php:2261 msgid "Use mailto: in front of address to force email check." msgstr "Verwende mailto: vor der E-Mail-Adresse, um eine Überprüfung der E-Mail-Adresse zu erzwingen." -#: src/Model/Contact.php:2249 +#: src/Model/Contact.php:2267 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "Die Adresse dieses Profils gehört zu einem Netzwerk, mit dem die Kommunikation auf dieser Seite ausgeschaltet wurde." -#: src/Model/Contact.php:2254 +#: src/Model/Contact.php:2272 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "Eingeschränktes Profil. Diese Person wird keine direkten/privaten Nachrichten von dir erhalten können." -#: src/Model/Contact.php:2313 +#: src/Model/Contact.php:2331 msgid "Unable to retrieve contact information." msgstr "Konnte die Kontaktinformationen nicht empfangen." @@ -4859,110 +4858,110 @@ msgstr "Gruppenname:" msgid "Edit groups" msgstr "Gruppen bearbeiten" -#: src/Model/Item.php:1582 +#: src/Model/Item.php:1659 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "Erkannte Sprachen in diesem Beitrag:\\n%s" -#: src/Model/Item.php:2527 +#: src/Model/Item.php:2609 msgid "activity" msgstr "Aktivität" -#: src/Model/Item.php:2529 +#: src/Model/Item.php:2611 msgid "comment" msgstr "Kommentar" -#: src/Model/Item.php:2532 +#: src/Model/Item.php:2614 msgid "post" msgstr "Beitrag" -#: src/Model/Item.php:2646 +#: src/Model/Item.php:2728 #, php-format msgid "Content warning: %s" msgstr "Inhaltswarnung: %s" -#: src/Model/Item.php:2989 +#: src/Model/Item.php:3078 msgid "bytes" msgstr "Byte" -#: src/Model/Item.php:3018 src/Model/Item.php:3019 +#: src/Model/Item.php:3107 src/Model/Item.php:3108 msgid "View on separate page" msgstr "Auf separater Seite ansehen" -#: src/Model/Mail.php:120 src/Model/Mail.php:258 +#: src/Model/Mail.php:136 src/Model/Mail.php:268 msgid "[no subject]" msgstr "[kein Betreff]" -#: src/Model/Profile.php:346 src/Module/Profile/Profile.php:252 +#: src/Model/Profile.php:356 src/Module/Profile/Profile.php:252 #: src/Module/Profile/Profile.php:254 msgid "Edit profile" msgstr "Profil bearbeiten" -#: src/Model/Profile.php:348 +#: src/Model/Profile.php:358 msgid "Change profile photo" msgstr "Profilbild ändern" -#: src/Model/Profile.php:361 src/Module/Directory.php:161 +#: src/Model/Profile.php:371 src/Module/Directory.php:161 #: src/Module/Profile/Profile.php:180 msgid "Homepage:" msgstr "Homepage:" -#: src/Model/Profile.php:362 src/Module/Contact.php:658 +#: src/Model/Profile.php:372 src/Module/Contact.php:658 #: src/Module/Notifications/Introductions.php:174 msgid "About:" msgstr "Über:" -#: src/Model/Profile.php:363 src/Module/Contact.php:656 +#: src/Model/Profile.php:373 src/Module/Contact.php:656 #: src/Module/Profile/Profile.php:176 msgid "XMPP:" msgstr "XMPP:" -#: src/Model/Profile.php:446 src/Module/Contact.php:342 +#: src/Model/Profile.php:456 src/Module/Contact.php:342 msgid "Unfollow" msgstr "Entfolgen" -#: src/Model/Profile.php:448 +#: src/Model/Profile.php:458 msgid "Atom feed" msgstr "Atom-Feed" -#: src/Model/Profile.php:456 src/Module/Contact.php:338 +#: src/Model/Profile.php:466 src/Module/Contact.php:338 #: src/Module/Notifications/Introductions.php:186 msgid "Network:" msgstr "Netzwerk:" -#: src/Model/Profile.php:486 src/Model/Profile.php:583 +#: src/Model/Profile.php:496 src/Model/Profile.php:593 msgid "g A l F d" msgstr "l, d. F G \\U\\h\\r" -#: src/Model/Profile.php:487 +#: src/Model/Profile.php:497 msgid "F d" msgstr "d. F" -#: src/Model/Profile.php:549 src/Model/Profile.php:634 +#: src/Model/Profile.php:559 src/Model/Profile.php:644 msgid "[today]" msgstr "[heute]" -#: src/Model/Profile.php:559 +#: src/Model/Profile.php:569 msgid "Birthday Reminders" msgstr "Geburtstagserinnerungen" -#: src/Model/Profile.php:560 +#: src/Model/Profile.php:570 msgid "Birthdays this week:" msgstr "Geburtstage diese Woche:" -#: src/Model/Profile.php:621 +#: src/Model/Profile.php:631 msgid "[No description]" msgstr "[keine Beschreibung]" -#: src/Model/Profile.php:647 +#: src/Model/Profile.php:657 msgid "Event Reminders" msgstr "Veranstaltungserinnerungen" -#: src/Model/Profile.php:648 +#: src/Model/Profile.php:658 msgid "Upcoming events the next 7 days:" msgstr "Veranstaltungen der nächsten 7 Tage:" -#: src/Model/Profile.php:823 +#: src/Model/Profile.php:833 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s heißt %2$s herzlich willkommen" @@ -5002,138 +5001,138 @@ msgstr "Verzeichnis, in das Dateien hochgeladen werden. Für maximale Sicherheit msgid "Enter a valid existing folder" msgstr "Gib einen gültigen, existierenden Ordner ein" -#: src/Model/User.php:186 src/Model/User.php:931 +#: src/Model/User.php:186 src/Model/User.php:986 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "FATALER FEHLER: Sicherheitsschlüssel konnten nicht erzeugt werden." -#: src/Model/User.php:549 +#: src/Model/User.php:571 src/Model/User.php:604 msgid "Login failed" msgstr "Anmeldung fehlgeschlagen" -#: src/Model/User.php:581 +#: src/Model/User.php:636 msgid "Not enough information to authenticate" msgstr "Nicht genügend Informationen für die Authentifizierung" -#: src/Model/User.php:676 +#: src/Model/User.php:731 msgid "Password can't be empty" msgstr "Das Passwort kann nicht leer sein" -#: src/Model/User.php:695 +#: src/Model/User.php:750 msgid "Empty passwords are not allowed." msgstr "Leere Passwörter sind nicht erlaubt." -#: src/Model/User.php:699 +#: src/Model/User.php:754 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "Das neue Passwort wurde in einem öffentlichen Daten-Dump veröffentlicht. Bitte verwende ein anderes Passwort." -#: src/Model/User.php:705 +#: src/Model/User.php:760 msgid "" "The password can't contain accentuated letters, white spaces or colons (:)" msgstr "Das Passwort darf keine akzentuierten Buchstaben, Leerzeichen oder Doppelpunkte (:) beinhalten" -#: src/Model/User.php:811 +#: src/Model/User.php:866 msgid "Passwords do not match. Password unchanged." msgstr "Die Passwörter stimmen nicht überein. Das Passwort bleibt unverändert." -#: src/Model/User.php:818 +#: src/Model/User.php:873 msgid "An invitation is required." msgstr "Du benötigst eine Einladung." -#: src/Model/User.php:822 +#: src/Model/User.php:877 msgid "Invitation could not be verified." msgstr "Die Einladung konnte nicht überprüft werden." -#: src/Model/User.php:830 +#: src/Model/User.php:885 msgid "Invalid OpenID url" msgstr "Ungültige OpenID URL" -#: src/Model/User.php:843 src/Security/Authentication.php:224 +#: src/Model/User.php:898 src/Security/Authentication.php:224 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "Beim Versuch, dich mit der von dir angegebenen OpenID anzumelden, trat ein Problem auf. Bitte überprüfe, dass du die OpenID richtig geschrieben hast." -#: src/Model/User.php:843 src/Security/Authentication.php:224 +#: src/Model/User.php:898 src/Security/Authentication.php:224 msgid "The error message was:" msgstr "Die Fehlermeldung lautete:" -#: src/Model/User.php:849 +#: src/Model/User.php:904 msgid "Please enter the required information." msgstr "Bitte trage die erforderlichen Informationen ein." -#: src/Model/User.php:863 +#: src/Model/User.php:918 #, 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) and system.username_max_length (%s) schließen sich gegenseitig aus, tausche Werte aus." -#: src/Model/User.php:870 +#: src/Model/User.php:925 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." msgstr[0] "Der Benutzername sollte aus mindestens %s Zeichen bestehen." msgstr[1] "Der Benutzername sollte aus mindestens %s Zeichen bestehen." -#: src/Model/User.php:874 +#: src/Model/User.php:929 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." msgstr[0] "Der Benutzername sollte aus maximal %s Zeichen bestehen." msgstr[1] "Der Benutzername sollte aus maximal %s Zeichen bestehen." -#: src/Model/User.php:882 +#: src/Model/User.php:937 msgid "That doesn't appear to be your full (First Last) name." msgstr "Das scheint nicht dein kompletter Name (Vor- und Nachname) zu sein." -#: src/Model/User.php:887 +#: src/Model/User.php:942 msgid "Your email domain is not among those allowed on this site." msgstr "Die Domain Deiner E-Mail-Adresse ist auf dieser Seite nicht erlaubt." -#: src/Model/User.php:891 +#: src/Model/User.php:946 msgid "Not a valid email address." msgstr "Keine gültige E-Mail-Adresse." -#: src/Model/User.php:894 +#: src/Model/User.php:949 msgid "The nickname was blocked from registration by the nodes admin." msgstr "Der Admin des Knotens hat den Spitznamen für die Registrierung gesperrt." -#: src/Model/User.php:898 src/Model/User.php:906 +#: src/Model/User.php:953 src/Model/User.php:961 msgid "Cannot use that email." msgstr "Konnte diese E-Mail-Adresse nicht verwenden." -#: src/Model/User.php:913 +#: src/Model/User.php:968 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "Dein Spitzname darf nur aus Buchstaben und Zahlen (\"a-z\",\"0-9\" und \"_\") bestehen." -#: src/Model/User.php:921 src/Model/User.php:978 +#: src/Model/User.php:976 src/Model/User.php:1033 msgid "Nickname is already registered. Please choose another." msgstr "Dieser Spitzname ist bereits vergeben. Bitte wähle einen anderen." -#: src/Model/User.php:965 src/Model/User.php:969 +#: src/Model/User.php:1020 src/Model/User.php:1024 msgid "An error occurred during registration. Please try again." msgstr "Während der Anmeldung ist ein Fehler aufgetreten. Bitte versuche es noch einmal." -#: src/Model/User.php:992 +#: src/Model/User.php:1047 msgid "An error occurred creating your default profile. Please try again." msgstr "Bei der Erstellung des Standardprofils ist ein Fehler aufgetreten. Bitte versuche es noch einmal." -#: src/Model/User.php:999 +#: src/Model/User.php:1054 msgid "An error occurred creating your self contact. Please try again." msgstr "Bei der Erstellung deines self-Kontakts ist ein Fehler aufgetreten. Bitte versuche es erneut." -#: src/Model/User.php:1004 +#: src/Model/User.php:1059 msgid "Friends" msgstr "Kontakte" -#: src/Model/User.php:1008 +#: src/Model/User.php:1063 msgid "" "An error occurred creating your default contact group. Please try again." msgstr "Bei der Erstellung deiner Standardgruppe für Kontakte ist ein Fehler aufgetreten. Bitte versuche es erneut." -#: src/Model/User.php:1199 +#: src/Model/User.php:1256 #, php-format msgid "" "\n" @@ -5141,7 +5140,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "\nHallo %1$s\nein Admin von %2$s hat dir ein Nutzerkonto angelegt." -#: src/Model/User.php:1202 +#: src/Model/User.php:1259 #, php-format msgid "" "\n" @@ -5173,12 +5172,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "\nNachfolgend die Anmeldedetails:\n\nAdresse der Seite: %1$s\nBenutzername: %2$s\nPasswort: %3$s\n\nDu kannst dein Passwort unter \"Einstellungen\" ändern, sobald du dich angemeldet hast.Bitte nimm dir ein paar Minuten, um die anderen Einstellungen auf dieser Seite zu kontrollieren.Eventuell magst du ja auch einige Informationen über dich in deinem Profil veröffentlichen, damit andere Leute dich einfacher finden können.Bearbeite hierfür einfach dein Standard-Profil (über die Profil-Seite).Wir empfehlen dir, deinen kompletten Namen anzugeben und ein zu dir passendes Profilbild zu wählen, damit dich alte Bekannte wiederfinden.Außerdem ist es nützlich, wenn du auf deinem Profil Schlüsselwörter angibst. Das erleichtert es, Leute zu finden, die deine Interessen teilen.Wir respektieren deine Privatsphäre - keine dieser Angaben ist nötig.Wenn du neu im Netzwerk bist und noch niemanden kennst, dann können sie allerdings dabei helfen, neue und interessante Kontakte zu knüpfen.\n\nDu kannst dein Nutzerkonto jederzeit unter %1$s/removeme wieder löschen.\n\nDanke und willkommen auf %4$s." -#: src/Model/User.php:1235 src/Model/User.php:1342 +#: src/Model/User.php:1292 src/Model/User.php:1399 #, php-format msgid "Registration details for %s" msgstr "Details der Registration von %s" -#: src/Model/User.php:1255 +#: src/Model/User.php:1312 #, php-format msgid "" "\n" @@ -5193,12 +5192,12 @@ msgid "" "\t\t" msgstr "\n\t\t\tHallo %1$s,\n\t\t\t\tdanke für deine Registrierung auf %2$s. Dein Account muss noch vom Admin des Knotens freigeschaltet werden.\n\n\t\t\tDeine Zugangsdaten lauten wie folgt:\n\n\t\t\tSeitenadresse:\t%3$s\n\t\t\tAnmeldename:\t\t%4$s\n\t\t\tPasswort:\t\t%5$s\n\t\t" -#: src/Model/User.php:1274 +#: src/Model/User.php:1331 #, php-format msgid "Registration at %s" msgstr "Registrierung als %s" -#: src/Model/User.php:1298 +#: src/Model/User.php:1355 #, php-format msgid "" "\n" @@ -5207,7 +5206,7 @@ msgid "" "\t\t\t" msgstr "\n\t\t\t\tHallo %1$s,\n\t\t\t\tDanke für die Registrierung auf %2$s. Dein Account wurde angelegt.\n\t\t\t" -#: src/Model/User.php:1306 +#: src/Model/User.php:1363 #, php-format msgid "" "\n" @@ -5267,9 +5266,9 @@ msgstr "Einschalten" #: src/Module/Admin/Addons/Index.php:67 #: src/Module/Admin/Blocklist/Contact.php:78 #: src/Module/Admin/Blocklist/Server.php:88 -#: src/Module/Admin/Federation.php:141 src/Module/Admin/Item/Delete.php:65 +#: src/Module/Admin/Federation.php:159 src/Module/Admin/Item/Delete.php:65 #: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Logs/View.php:64 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:579 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:576 #: src/Module/Admin/Summary.php:232 src/Module/Admin/Themes/Details.php:90 #: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:58 #: src/Module/Admin/Users/Active.php:136 @@ -5601,26 +5600,26 @@ msgstr "Feature festlegen: %s" msgid "Manage Additional Features" msgstr "Zusätzliche Features Verwalten" -#: src/Module/Admin/Federation.php:54 +#: src/Module/Admin/Federation.php:56 msgid "Other" msgstr "Andere" -#: src/Module/Admin/Federation.php:108 src/Module/Admin/Federation.php:268 +#: src/Module/Admin/Federation.php:118 src/Module/Admin/Federation.php:348 msgid "unknown" msgstr "Unbekannt" -#: src/Module/Admin/Federation.php:136 +#: src/Module/Admin/Federation.php:154 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 "Diese Seite präsentiert einige Zahlen zu dem bekannten Teil des föderalen sozialen Netzwerks, von dem deine Friendica Installation ein Teil ist. Diese Zahlen sind nicht absolut und reflektieren nur den Teil des Netzwerks, den dein Knoten kennt." -#: src/Module/Admin/Federation.php:142 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:160 src/Module/BaseAdmin.php:87 msgid "Federation Statistics" msgstr "Föderation Statistik" -#: src/Module/Admin/Federation.php:146 +#: src/Module/Admin/Federation.php:164 #, php-format msgid "" "Currently this node is aware of %d nodes with %d registered users from the " @@ -5817,275 +5816,289 @@ msgstr "Parameter der Aufgabe" msgid "Priority" msgstr "Priorität" -#: src/Module/Admin/Site.php:69 +#: src/Module/Admin/Site.php:70 msgid "Can not parse base url. Must have at least ://" msgstr "Die Basis-URL konnte nicht analysiert werden. Sie muss mindestens aus :// bestehen" -#: src/Module/Admin/Site.php:123 +#: src/Module/Admin/Site.php:124 msgid "Relocation started. Could take a while to complete." msgstr "Verschieben der Daten gestartet. Das kann eine Weile dauern." -#: src/Module/Admin/Site.php:249 +#: src/Module/Admin/Site.php:248 msgid "Invalid storage backend setting value." msgstr "Ungültige Einstellung für das Datenspeicher-Backend" -#: src/Module/Admin/Site.php:449 src/Module/Settings/Display.php:134 +#: src/Module/Admin/Site.php:446 src/Module/Settings/Display.php:134 msgid "No special theme for mobile devices" msgstr "Kein spezielles Theme für mobile Geräte verwenden." -#: src/Module/Admin/Site.php:466 src/Module/Settings/Display.php:144 +#: src/Module/Admin/Site.php:463 src/Module/Settings/Display.php:144 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimentell)" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:475 msgid "No community page for local users" msgstr "Keine Gemeinschaftsseite für lokale Nutzer" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:476 msgid "No community page" msgstr "Keine Gemeinschaftsseite" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:477 msgid "Public postings from users of this site" msgstr "Öffentliche Beiträge von NutzerInnen dieser Seite" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:478 msgid "Public postings from the federated network" msgstr "Öffentliche Beiträge aus dem föderalen Netzwerk" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:479 msgid "Public postings from local users and the federated network" msgstr "Öffentliche Beiträge von lokalen Nutzern und aus dem föderalen Netzwerk" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:485 msgid "Multi user instance" msgstr "Mehrbenutzer-Instanz" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:513 msgid "Closed" msgstr "Geschlossen" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:514 msgid "Requires approval" msgstr "Bedarf der Zustimmung" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:515 msgid "Open" msgstr "Offen" -#: src/Module/Admin/Site.php:522 src/Module/Install.php:215 +#: src/Module/Admin/Site.php:519 src/Module/Install.php:215 msgid "No SSL policy, links will track page SSL state" msgstr "Keine SSL-Richtlinie, Links werden das verwendete Protokoll beibehalten" -#: src/Module/Admin/Site.php:523 src/Module/Install.php:216 +#: src/Module/Admin/Site.php:520 src/Module/Install.php:216 msgid "Force all links to use SSL" msgstr "SSL für alle Links erzwingen" -#: src/Module/Admin/Site.php:524 src/Module/Install.php:217 +#: src/Module/Admin/Site.php:521 src/Module/Install.php:217 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "Selbst-unterzeichnetes Zertifikat, SSL nur für lokale Links verwenden (nicht empfohlen)" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:525 msgid "Don't check" msgstr "Nicht überprüfen" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:526 msgid "check the stable version" msgstr "überprüfe die stabile Version" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:527 msgid "check the development version" msgstr "überprüfe die Entwicklungsversion" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:531 msgid "none" msgstr "keine" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:532 msgid "Local contacts" msgstr "Lokale Kontakte" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:533 msgid "Interactors" msgstr "Interaktionen" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:546 msgid "Database (legacy)" msgstr "Datenbank (legacy)" -#: src/Module/Admin/Site.php:580 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:577 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "Seite" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:578 msgid "General Information" msgstr "Allgemeine Informationen" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:580 msgid "Republish users to directory" msgstr "Nutzer erneut im globalen Verzeichnis veröffentlichen." -#: src/Module/Admin/Site.php:584 src/Module/Register.php:139 +#: src/Module/Admin/Site.php:581 src/Module/Register.php:139 msgid "Registration" msgstr "Registrierung" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:582 msgid "File upload" msgstr "Datei hochladen" -#: src/Module/Admin/Site.php:586 +#: src/Module/Admin/Site.php:583 msgid "Policies" msgstr "Regeln" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:585 msgid "Auto Discovered Contact Directory" msgstr "Automatisch ein Kontaktverzeichnis erstellen" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:586 msgid "Performance" msgstr "Performance" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:587 msgid "Worker" msgstr "Worker" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:588 msgid "Message Relay" msgstr "Nachrichten-Relais" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:589 +msgid "" +"Use the command \"console relay\" in the command line to add or remove " +"relays." +msgstr "Verwende den Befehl \"console relay\" auf der Kommandozeile um weitere Relays hinzu zu fügen oder zu entfernen." + +#: src/Module/Admin/Site.php:590 +msgid "The system is not subscribed to any relays at the moment." +msgstr "Das System hat derzeit keinerlei Relays abonniert." + +#: src/Module/Admin/Site.php:591 +msgid "The system is currently subscribed to the following relays:" +msgstr "Das System hat derzeit Abonnements bei folgenden Releays:" + +#: src/Module/Admin/Site.php:593 msgid "Relocate Instance" msgstr "Instanz Umziehen" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:594 msgid "" "Warning! Advanced function. Could make this server " "unreachable." msgstr "Achtung Funktionen für Fortgeschrittene. Könnte diesen Server unerreichbar machen." -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:598 msgid "Site name" msgstr "Seitenname" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:599 msgid "Sender Email" msgstr "Absender für Emails" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:599 msgid "" "The email address your server shall use to send notification emails from." msgstr "Die E-Mail Adresse, die dein Server zum Versenden von Benachrichtigungen verwenden soll." -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:600 msgid "Name of the system actor" msgstr "Name des System-Actors" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:600 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 "Name des internen System-Accounts der für ActivityPub Anfragen verwendet wird. Der Nutzername darf bisher nicht verwendet werden. Ist der Name einmal gesetzt kann er nicht mehr geändert werden." -#: src/Module/Admin/Site.php:600 +#: src/Module/Admin/Site.php:601 msgid "Banner/Logo" msgstr "Banner/Logo" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:602 msgid "Email Banner/Logo" msgstr "E-Mail Banner / Logo" -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:603 msgid "Shortcut icon" msgstr "Shortcut Icon" -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:603 msgid "Link to an icon that will be used for browsers." msgstr "Link zu einem Icon, das Browser verwenden werden." -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:604 msgid "Touch icon" msgstr "Touch Icon" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:604 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "Link zu einem Icon, das Tablets und Mobiltelefone verwenden sollen." -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:605 msgid "Additional Info" msgstr "Zusätzliche Informationen" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:605 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "Für öffentliche Server kannst du hier zusätzliche Informationen angeben, die dann auf %s/servers angezeigt werden." -#: src/Module/Admin/Site.php:605 +#: src/Module/Admin/Site.php:606 msgid "System language" msgstr "Systemsprache" -#: src/Module/Admin/Site.php:606 +#: src/Module/Admin/Site.php:607 msgid "System theme" msgstr "Systemweites Theme" -#: src/Module/Admin/Site.php:606 +#: src/Module/Admin/Site.php:607 msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "Standard-Theme des Systems - kann von Benutzerprofilen überschrieben werden - Ändere Einstellung des Standard-Themes" -#: src/Module/Admin/Site.php:607 +#: src/Module/Admin/Site.php:608 msgid "Mobile system theme" msgstr "Systemweites mobiles Theme" -#: src/Module/Admin/Site.php:607 +#: src/Module/Admin/Site.php:608 msgid "Theme for mobile devices" msgstr "Theme für mobile Geräte" -#: src/Module/Admin/Site.php:608 src/Module/Install.php:225 +#: src/Module/Admin/Site.php:609 src/Module/Install.php:225 msgid "SSL link policy" msgstr "Regeln für SSL Links" -#: src/Module/Admin/Site.php:608 src/Module/Install.php:227 +#: src/Module/Admin/Site.php:609 src/Module/Install.php:227 msgid "Determines whether generated links should be forced to use SSL" msgstr "Bestimmt, ob generierte Links SSL verwenden müssen" -#: src/Module/Admin/Site.php:609 +#: src/Module/Admin/Site.php:610 msgid "Force SSL" msgstr "Erzwinge SSL" -#: src/Module/Admin/Site.php:609 +#: src/Module/Admin/Site.php:610 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "Erzwinge SSL für alle Nicht-SSL-Anfragen - Achtung: auf manchen Systemen verursacht dies eine Endlosschleife." -#: src/Module/Admin/Site.php:610 +#: src/Module/Admin/Site.php:611 msgid "Hide help entry from navigation menu" msgstr "Verberge den Hilfe-Eintrag im Navigationsmenü" -#: src/Module/Admin/Site.php:610 +#: src/Module/Admin/Site.php:611 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "Verbirgt den Menüeintrag für die Hilfe-Seiten im Navigationsmenü. Die Seiten können weiterhin über /help aufgerufen werden." -#: src/Module/Admin/Site.php:611 +#: src/Module/Admin/Site.php:612 msgid "Single user instance" msgstr "Ein-Nutzer Instanz" -#: src/Module/Admin/Site.php:611 +#: src/Module/Admin/Site.php:612 msgid "Make this instance multi-user or single-user for the named user" msgstr "Bestimmt, ob es sich bei dieser Instanz um eine Installation mit nur einen Nutzer oder mit mehreren Nutzern handelt." -#: src/Module/Admin/Site.php:613 +#: src/Module/Admin/Site.php:614 msgid "File storage backend" msgstr "Datenspeicher-Backend" -#: src/Module/Admin/Site.php:613 +#: src/Module/Admin/Site.php:614 msgid "" "The backend used to store uploaded data. If you change the storage backend, " "you can manually move the existing files. If you do not do so, the files " @@ -6094,191 +6107,191 @@ msgid "" " for more information about the choices and the moving procedure." msgstr "Das zu verwendende Datenspeicher-Backend, wenn Dateien hochgeladen werden. Wenn du das Datenspeicher-Backend änderst, kannst du die bestehenden Dateien zum neuen Backend verschieben. Machst du dies nicht, verbleiben sie im alten Backend und werden weiterhin von dort geladen. Für weitere Informationen zu den verfügbaren Alternativen und der Prozedur zum Verschieben der Daten schaue bitte in die Dokumentation zu den Einstellungen." -#: src/Module/Admin/Site.php:615 +#: src/Module/Admin/Site.php:616 msgid "Maximum image size" msgstr "Maximale Bildgröße" -#: src/Module/Admin/Site.php:615 +#: src/Module/Admin/Site.php:616 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Maximale Uploadgröße von Bildern in Bytes. Standard ist 0, d.h. ohne Limit." -#: src/Module/Admin/Site.php:616 +#: src/Module/Admin/Site.php:617 msgid "Maximum image length" msgstr "Maximale Bildlänge" -#: src/Module/Admin/Site.php:616 +#: src/Module/Admin/Site.php:617 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "Maximale Länge in Pixeln der längsten Seite eines hochgeladenen Bildes. Grundeinstellung ist -1, was keine Einschränkung bedeutet." -#: src/Module/Admin/Site.php:617 +#: src/Module/Admin/Site.php:618 msgid "JPEG image quality" msgstr "Qualität des JPEG Bildes" -#: src/Module/Admin/Site.php:617 +#: src/Module/Admin/Site.php:618 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "Hochgeladene JPEG-Bilder werden mit dieser Qualität [0-100] gespeichert. Grundeinstellung ist 100, kein Qualitätsverlust." -#: src/Module/Admin/Site.php:619 +#: src/Module/Admin/Site.php:620 msgid "Register policy" msgstr "Registrierungsmethode" -#: src/Module/Admin/Site.php:620 +#: src/Module/Admin/Site.php:621 msgid "Maximum Daily Registrations" msgstr "Maximum täglicher Registrierungen" -#: src/Module/Admin/Site.php:620 +#: src/Module/Admin/Site.php:621 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 "Wenn die Registrierung weiter oben erlaubt ist, regelt dies die maximale Anzahl von Neuanmeldungen pro Tag. Wenn die Registrierung geschlossen ist, hat diese Einstellung keinen Effekt." -#: src/Module/Admin/Site.php:621 +#: src/Module/Admin/Site.php:622 msgid "Register text" msgstr "Registrierungstext" -#: src/Module/Admin/Site.php:621 +#: src/Module/Admin/Site.php:622 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "Wird gut sichtbar auf der Registrierungsseite angezeigt. BBCode kann verwendet werden." -#: src/Module/Admin/Site.php:622 +#: src/Module/Admin/Site.php:623 msgid "Forbidden Nicknames" msgstr "Verbotene Spitznamen" -#: src/Module/Admin/Site.php:622 +#: src/Module/Admin/Site.php:623 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "Durch Kommas getrennte Liste von Spitznamen, die von der Registrierung ausgeschlossen sind. Die Vorgabe ist eine Liste von Rollennamen nach RFC 2142." -#: src/Module/Admin/Site.php:623 +#: src/Module/Admin/Site.php:624 msgid "Accounts abandoned after x days" msgstr "Nutzerkonten gelten nach x Tagen als unbenutzt" -#: src/Module/Admin/Site.php:623 +#: src/Module/Admin/Site.php:624 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Verschwende keine System-Ressourcen auf das Pollen externer Seiten, wenn Konten nicht mehr benutzt werden. 0 eingeben für kein Limit." -#: src/Module/Admin/Site.php:624 +#: src/Module/Admin/Site.php:625 msgid "Allowed friend domains" msgstr "Erlaubte Domains für Kontakte" -#: src/Module/Admin/Site.php:624 +#: src/Module/Admin/Site.php:625 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Liste der Domains, die für Kontakte erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: src/Module/Admin/Site.php:625 +#: src/Module/Admin/Site.php:626 msgid "Allowed email domains" msgstr "Erlaubte Domains für E-Mails" -#: src/Module/Admin/Site.php:625 +#: src/Module/Admin/Site.php:626 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 "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: src/Module/Admin/Site.php:626 +#: src/Module/Admin/Site.php:627 msgid "No OEmbed rich content" msgstr "OEmbed nicht verwenden" -#: src/Module/Admin/Site.php:626 +#: src/Module/Admin/Site.php:627 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "Verhindert das Einbetten von reichhaltigen Inhalten (z.B. eingebettete PDF Dateien). Ausgenommen von dieser Regel werden Domänen, die unten aufgeführt werden." -#: src/Module/Admin/Site.php:627 +#: src/Module/Admin/Site.php:628 msgid "Trusted third-party domains" msgstr "Vertrauenswürdige Drittanbieter-Domains" -#: src/Module/Admin/Site.php:627 +#: src/Module/Admin/Site.php:628 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 "Komma separierte Liste von Domains von denen Inhalte in Beiträgen eingebettet werden dürfen. Alle Subdomains werden ebenfalls akzeptiert." -#: src/Module/Admin/Site.php:628 +#: src/Module/Admin/Site.php:629 msgid "Block public" msgstr "Öffentlichen Zugriff blockieren" -#: src/Module/Admin/Site.php:628 +#: src/Module/Admin/Site.php:629 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Klicken, um öffentlichen Zugriff auf sonst öffentliche Profile zu blockieren, wenn man nicht eingeloggt ist." -#: src/Module/Admin/Site.php:629 +#: src/Module/Admin/Site.php:630 msgid "Force publish" msgstr "Erzwinge Veröffentlichung" -#: src/Module/Admin/Site.php:629 +#: src/Module/Admin/Site.php:630 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Klicken, um Anzeige aller Profile dieses Servers im Verzeichnis zu erzwingen." -#: src/Module/Admin/Site.php:629 +#: src/Module/Admin/Site.php:630 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "Wenn du diese Option aktivierst, verstößt das unter Umständen gegen Gesetze wie die EU-DSGVO." -#: src/Module/Admin/Site.php:630 +#: src/Module/Admin/Site.php:631 msgid "Global directory URL" msgstr "URL des weltweiten Verzeichnisses" -#: src/Module/Admin/Site.php:630 +#: src/Module/Admin/Site.php:631 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "URL des weltweiten Verzeichnisses. Wenn diese nicht gesetzt ist, ist das Verzeichnis für die Applikation nicht erreichbar." -#: src/Module/Admin/Site.php:631 +#: src/Module/Admin/Site.php:632 msgid "Private posts by default for new users" msgstr "Private Beiträge als Standard für neue Nutzer" -#: src/Module/Admin/Site.php:631 +#: src/Module/Admin/Site.php:632 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "Die Standard-Zugriffsrechte für neue Nutzer werden so gesetzt, dass als Voreinstellung in die private Gruppe gepostet wird anstelle von öffentlichen Beiträgen." -#: src/Module/Admin/Site.php:632 +#: src/Module/Admin/Site.php:633 msgid "Don't include post content in email notifications" msgstr "Inhalte von Beiträgen nicht in E-Mail-Benachrichtigungen versenden" -#: src/Module/Admin/Site.php:632 +#: src/Module/Admin/Site.php:633 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 "Inhalte von Beiträgen/Kommentaren/privaten Nachrichten/usw. zum Datenschutz nicht in E-Mail-Benachrichtigungen einbinden." -#: src/Module/Admin/Site.php:633 +#: src/Module/Admin/Site.php:634 msgid "Disallow public access to addons listed in the apps menu." msgstr "Öffentlichen Zugriff auf Addons im Apps Menü verbieten." -#: src/Module/Admin/Site.php:633 +#: src/Module/Admin/Site.php:634 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "Wenn ausgewählt, werden die im Apps Menü aufgeführten Addons nur angemeldeten Nutzern der Seite zur Verfügung gestellt." -#: src/Module/Admin/Site.php:634 +#: src/Module/Admin/Site.php:635 msgid "Don't embed private images in posts" msgstr "Private Bilder nicht in Beiträgen einbetten." -#: src/Module/Admin/Site.php:634 +#: src/Module/Admin/Site.php:635 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 " @@ -6286,11 +6299,11 @@ msgid "" "while." msgstr "Ersetze lokal gehostete, private Fotos in Beiträgen nicht mit einer eingebetteten Kopie des Bildes. Dies bedeutet, dass Kontakte, die Beiträge mit privaten Fotos erhalten, sich zunächst auf den jeweiligen Servern authentifizieren müssen, bevor die Bilder geladen und angezeigt werden, was eine gewisse Zeit dauert." -#: src/Module/Admin/Site.php:635 +#: src/Module/Admin/Site.php:636 msgid "Explicit Content" msgstr "Sensibler Inhalt" -#: src/Module/Admin/Site.php:635 +#: src/Module/Admin/Site.php:636 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 " @@ -6299,234 +6312,234 @@ msgid "" "will be shown at the user registration page." msgstr "Wähle dies, um anzuzeigen, dass dein Knoten hauptsächlich für explizite Inhalte verwendet wird, die möglicherweise nicht für Minderjährige geeignet sind. Diese Info wird in der Knoteninformation veröffentlicht und kann durch das Globale Verzeichnis genutzt werden, um deinen Knoten von den Auflistungen auszuschließen. Zusätzlich wird auf der Registrierungsseite ein Hinweis darüber angezeigt." -#: src/Module/Admin/Site.php:636 +#: src/Module/Admin/Site.php:637 msgid "Allow Users to set remote_self" msgstr "Nutzern erlauben, das remote_self Flag zu setzen" -#: src/Module/Admin/Site.php:636 +#: src/Module/Admin/Site.php:637 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 "Ist dies ausgewählt, kann jeder Nutzer jeden seiner Kontakte als remote_self (entferntes Konto) im \"Erweitert\"-Reiter der Kontaktansicht markieren. Nach dem Setzen dieses Flags werden alle Top-Level-Beiträge dieser Kontakte automatisch in den Stream dieses Nutzers gepostet (gespiegelt)." -#: src/Module/Admin/Site.php:637 +#: src/Module/Admin/Site.php:638 msgid "Block multiple registrations" msgstr "Unterbinde Mehrfachregistrierung" -#: src/Module/Admin/Site.php:637 +#: src/Module/Admin/Site.php:638 msgid "Disallow users to register additional accounts for use as pages." msgstr "Benutzern nicht erlauben, weitere Konten für Organisationsseiten o. ä. mit der gleichen E-Mail-Adresse anzulegen." -#: src/Module/Admin/Site.php:638 +#: src/Module/Admin/Site.php:639 msgid "Disable OpenID" msgstr "OpenID deaktivieren" -#: src/Module/Admin/Site.php:638 +#: src/Module/Admin/Site.php:639 msgid "Disable OpenID support for registration and logins." msgstr "OpenID-Unterstützung für Registrierung und Login." -#: src/Module/Admin/Site.php:639 +#: src/Module/Admin/Site.php:640 msgid "No Fullname check" msgstr "Namen nicht auf Vollständigkeit überprüfen" -#: src/Module/Admin/Site.php:639 +#: src/Module/Admin/Site.php:640 msgid "" "Allow users to register without a space between the first name and the last " "name in their full name." msgstr "Erlaubt Nutzern, Konten zu registrieren, bei denen im Namensfeld kein Leerzeichen zur Trennung von Vor- und Nachnamen verwendet wird." -#: src/Module/Admin/Site.php:640 +#: src/Module/Admin/Site.php:641 msgid "Community pages for visitors" msgstr "Für Besucher verfügbare Gemeinschaftsseite" -#: src/Module/Admin/Site.php:640 +#: src/Module/Admin/Site.php:641 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "Welche Gemeinschaftsseiten sollen für Besucher dieses Knotens verfügbar sein? Lokale Nutzer können grundsätzlich beide Seiten verwenden." -#: src/Module/Admin/Site.php:641 +#: src/Module/Admin/Site.php:642 msgid "Posts per user on community page" msgstr "Anzahl der Beiträge pro Benutzer auf der Gemeinschaftsseite" -#: src/Module/Admin/Site.php:641 +#: src/Module/Admin/Site.php:642 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "\"Global Community\")" msgstr "Maximale Anzahl der Beiträge, die von jedem Nutzer auf der Gemeinschaftsseite angezeigt werden. (Gilt nicht für die 'Globale Gemeinschaftsseite')" -#: src/Module/Admin/Site.php:642 +#: src/Module/Admin/Site.php:643 msgid "Disable OStatus support" msgstr "OStatus-Unterstützung deaktivieren" -#: src/Module/Admin/Site.php:642 +#: src/Module/Admin/Site.php:643 msgid "" "Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." msgstr "Die eingebaute OStatus-Unterstützung (StatusNet, GNU Social, etc.) deaktivieren. Jede Kommunikation in OStatus ist öffentlich, Privatsphäre-Warnungen werden nur bei Bedarf angezeigt." -#: src/Module/Admin/Site.php:643 +#: src/Module/Admin/Site.php:644 msgid "OStatus support can only be enabled if threading is enabled." msgstr "OStatus Unterstützung kann nur aktiviert werden, wenn \"Threading\" aktiviert ist. " -#: src/Module/Admin/Site.php:645 +#: src/Module/Admin/Site.php:646 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "Diaspora Unterstützung kann nicht aktiviert werden, da Friendica in ein Unterverzeichnis installiert ist." -#: src/Module/Admin/Site.php:646 +#: src/Module/Admin/Site.php:647 msgid "Enable Diaspora support" msgstr "Diaspora-Unterstützung aktivieren" -#: src/Module/Admin/Site.php:646 +#: src/Module/Admin/Site.php:647 msgid "Provide built-in Diaspora network compatibility." msgstr "Verwende die eingebaute Diaspora-Verknüpfung." -#: src/Module/Admin/Site.php:647 +#: src/Module/Admin/Site.php:648 msgid "Only allow Friendica contacts" msgstr "Nur Friendica-Kontakte erlauben" -#: src/Module/Admin/Site.php:647 +#: src/Module/Admin/Site.php:648 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "Alle Kontakte müssen das Friendica-Protokoll nutzen. Alle anderen Kommunikationsprotokolle werden deaktiviert." -#: src/Module/Admin/Site.php:648 +#: src/Module/Admin/Site.php:649 msgid "Verify SSL" msgstr "SSL Überprüfen" -#: src/Module/Admin/Site.php:648 +#: src/Module/Admin/Site.php:649 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 "Wenn gewollt, kann man hier eine strenge Zertifikatskontrolle einstellen. Das bedeutet, dass man zu keinen Seiten mit selbst unterzeichnetem SSL-Zertifikat eine Verbindung herstellen kann." -#: src/Module/Admin/Site.php:649 +#: src/Module/Admin/Site.php:650 msgid "Proxy user" msgstr "Proxy-Nutzer" -#: src/Module/Admin/Site.php:650 +#: src/Module/Admin/Site.php:651 msgid "Proxy URL" msgstr "Proxy-URL" -#: src/Module/Admin/Site.php:651 +#: src/Module/Admin/Site.php:652 msgid "Network timeout" msgstr "Netzwerk-Wartezeit" -#: src/Module/Admin/Site.php:651 +#: src/Module/Admin/Site.php:652 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Der Wert ist in Sekunden. Setze 0 für unbegrenzt (nicht empfohlen)." -#: src/Module/Admin/Site.php:652 +#: src/Module/Admin/Site.php:653 msgid "Maximum Load Average" msgstr "Maximum Load Average" -#: src/Module/Admin/Site.php:652 +#: src/Module/Admin/Site.php:653 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "Maximale System-LOAD bevor Verteil- und Empfangsprozesse verschoben werden - Standard %d" -#: src/Module/Admin/Site.php:653 +#: src/Module/Admin/Site.php:654 msgid "Maximum Load Average (Frontend)" msgstr "Maximum Load Average (Frontend)" -#: src/Module/Admin/Site.php:653 +#: src/Module/Admin/Site.php:654 msgid "Maximum system load before the frontend quits service - default 50." msgstr "Maximale Systemlast, bevor Vordergrundprozesse pausiert werden - Standard 50." -#: src/Module/Admin/Site.php:654 +#: src/Module/Admin/Site.php:655 msgid "Minimal Memory" msgstr "Minimaler Speicher" -#: src/Module/Admin/Site.php:654 +#: src/Module/Admin/Site.php:655 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "Minimal freier Speicher in MB für den Worker Prozess. Benötigt Zugriff auf /proc/meminfo - Standardwert ist 0 (deaktiviert)" -#: src/Module/Admin/Site.php:655 +#: src/Module/Admin/Site.php:656 msgid "Periodically optimize tables" msgstr "Optimiere die Tabellen regelmäßig" -#: src/Module/Admin/Site.php:655 +#: src/Module/Admin/Site.php:656 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "Optimiert Tabellen wie den Cache oder die Worker-Warteschlage regelmäßig." -#: src/Module/Admin/Site.php:657 +#: src/Module/Admin/Site.php:658 msgid "Discover followers/followings from contacts" msgstr "Endecke folgende und gefolgte Kontakte von Kontakten" -#: src/Module/Admin/Site.php:657 +#: src/Module/Admin/Site.php:658 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "Ist dies aktiv, werden die Kontakte auf deren folgenden und gefolgten Kontakte überprüft." -#: src/Module/Admin/Site.php:658 +#: src/Module/Admin/Site.php:659 msgid "None - deactivated" msgstr "Keine - deaktiviert" -#: src/Module/Admin/Site.php:659 +#: src/Module/Admin/Site.php:660 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "Lokale Kontakte - Die Beziehungen der lokalen Kontakte werden analysiert." -#: src/Module/Admin/Site.php:660 +#: src/Module/Admin/Site.php:661 msgid "" "Interactors - contacts of our local contacts and contacts who interacted on " "locally visible postings are discovered for their followers/followings." msgstr "Interaktionen - Kontakte der lokalen Kontakte sowie die Profile die mit öffentlichen lokalen Beiträgen interagiert haben, werden bzgl. ihrer Beziehungen analysiert." -#: src/Module/Admin/Site.php:662 +#: src/Module/Admin/Site.php:663 msgid "Synchronize the contacts with the directory server" msgstr "Gleiche die Kontakte mit dem Directory-Server ab" -#: src/Module/Admin/Site.php:662 +#: src/Module/Admin/Site.php:663 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "Ist dies aktiv, wird das System regelmäßig auf dem Verzeichnis-Server nach neuen potentiellen Kontakten nachsehen." -#: src/Module/Admin/Site.php:664 +#: src/Module/Admin/Site.php:665 msgid "Days between requery" msgstr "Tage zwischen erneuten Abfragen" -#: src/Module/Admin/Site.php:664 +#: src/Module/Admin/Site.php:665 msgid "Number of days after which a server is requeried for his contacts." msgstr "Legt das Abfrageintervall fest, nach dem ein Server erneut nach Kontakten abgefragt werden soll." -#: src/Module/Admin/Site.php:665 +#: src/Module/Admin/Site.php:666 msgid "Discover contacts from other servers" msgstr "Neue Kontakte auf anderen Servern entdecken" -#: src/Module/Admin/Site.php:665 +#: src/Module/Admin/Site.php:666 msgid "" "Periodically query other servers for contacts. The system queries Friendica," " Mastodon and Hubzilla servers." msgstr "Frage regelmäßig bei anderen Servern nach neuen potentiellen Kontakten an. Diese Anfragen werden an Friendica, Mastodon und Hubzilla Server gesandt." -#: src/Module/Admin/Site.php:666 +#: src/Module/Admin/Site.php:667 msgid "Search the local directory" msgstr "Lokales Verzeichnis durchsuchen" -#: src/Module/Admin/Site.php:666 +#: src/Module/Admin/Site.php:667 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "Suche im lokalen Verzeichnis anstelle des globalen Verzeichnisses durchführen. Jede Suche wird im Hintergrund auch im globalen Verzeichnis durchgeführt, um die Suchresultate zu verbessern, wenn die Suche wiederholt wird." -#: src/Module/Admin/Site.php:668 +#: src/Module/Admin/Site.php:669 msgid "Publish server information" msgstr "Server-Informationen veröffentlichen" -#: src/Module/Admin/Site.php:668 +#: src/Module/Admin/Site.php:669 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -6534,50 +6547,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "Wenn aktiviert, werden allgemeine Informationen über den Server und Nutzungsdaten veröffentlicht. Die Daten beinhalten den Namen sowie die Version des Servers, die Anzahl der Personen mit öffentlichen Profilen, die Anzahl der Beiträge sowie aktivierte Protokolle und Konnektoren. Für Details bitte the-federation.info aufrufen." -#: src/Module/Admin/Site.php:670 +#: src/Module/Admin/Site.php:671 msgid "Check upstream version" msgstr "Suche nach Updates" -#: src/Module/Admin/Site.php:670 +#: src/Module/Admin/Site.php:671 msgid "" "Enables checking for new Friendica versions at github. If there is a new " "version, you will be informed in the admin panel overview." msgstr "Wenn diese Option aktiviert ist, wird regelmäßig nach neuen Friendica-Versionen auf github gesucht. Wenn es eine neue Version gibt, wird dies auf der Übersichtsseite im Admin-Panel angezeigt." -#: src/Module/Admin/Site.php:671 +#: src/Module/Admin/Site.php:672 msgid "Suppress Tags" msgstr "Tags unterdrücken" -#: src/Module/Admin/Site.php:671 +#: src/Module/Admin/Site.php:672 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "Unterdrückt die Anzeige von Tags am Ende eines Beitrags." -#: src/Module/Admin/Site.php:672 +#: src/Module/Admin/Site.php:673 msgid "Clean database" msgstr "Datenbank aufräumen" -#: src/Module/Admin/Site.php:672 +#: src/Module/Admin/Site.php:673 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "Entferne alte Beiträge von anderen Knoten, verwaiste Einträge und alten Inhalt einiger Hilfstabellen." -#: src/Module/Admin/Site.php:673 +#: src/Module/Admin/Site.php:674 msgid "Lifespan of remote items" msgstr "Lebensdauer von Beiträgen anderer Knoten" -#: src/Module/Admin/Site.php:673 +#: src/Module/Admin/Site.php:674 msgid "" "When the database cleanup is enabled, this defines the days after which " "remote items will be deleted. Own items, and marked or filed items are " "always kept. 0 disables this behaviour." msgstr "Wenn das Aufräumen der Datenbank aktiviert ist, definiert dies die Anzahl in Tagen, nach der Beiträge, die auf anderen Knoten des Netzwerks verfasst wurden, gelöscht werden sollen. Eigene Beiträge sowie markierte oder abgespeicherte Beiträge werden nicht gelöscht. Ein Wert von 0 deaktiviert das automatische Löschen von Beiträgen." -#: src/Module/Admin/Site.php:674 +#: src/Module/Admin/Site.php:675 msgid "Lifespan of unclaimed items" msgstr "Lebensdauer nicht angeforderter Beiträge" -#: src/Module/Admin/Site.php:674 +#: src/Module/Admin/Site.php:675 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -6585,206 +6598,184 @@ msgid "" "items if set to 0." msgstr "Wenn das Aufräumen der Datenbank aktiviert ist, definiert dies die Anzahl von Tagen, nach denen nicht angeforderte Beiträge (hauptsächlich solche, die über das Relais eintreffen) gelöscht werden. Der Standardwert beträgt 90 Tage. Wird dieser Wert auf 0 gesetzt, wird die Lebensdauer von Beiträgen anderer Knoten verwendet." -#: src/Module/Admin/Site.php:675 +#: src/Module/Admin/Site.php:676 msgid "Lifespan of raw conversation data" msgstr "Lebensdauer der Beiträge" -#: src/Module/Admin/Site.php:675 +#: src/Module/Admin/Site.php:676 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "Die Konversationsdaten werden für ActivityPub und OStatus sowie für Debug-Zwecke verwendet. Sie sollten gefahrlos nach 14 Tagen entfernt werden können, der Standardwert beträgt 90 Tage." -#: src/Module/Admin/Site.php:676 +#: src/Module/Admin/Site.php:677 msgid "Path to item cache" msgstr "Pfad zum Item-Cache" -#: src/Module/Admin/Site.php:676 +#: src/Module/Admin/Site.php:677 msgid "The item caches buffers generated bbcode and external images." msgstr "Im Item-Cache werden externe Bilder und geparster BBCode zwischen gespeichert." -#: src/Module/Admin/Site.php:677 +#: src/Module/Admin/Site.php:678 msgid "Cache duration in seconds" msgstr "Cache-Dauer in Sekunden" -#: src/Module/Admin/Site.php:677 +#: src/Module/Admin/Site.php:678 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One" " day). To disable the item cache, set the value to -1." msgstr "Wie lange sollen die zwischengespeicherten Dateien vorgehalten werden? Grundeinstellung sind 86400 Sekunden (ein Tag). Um den Item-Cache zu deaktivieren, setze diesen Wert auf -1." -#: src/Module/Admin/Site.php:678 +#: src/Module/Admin/Site.php:679 msgid "Maximum numbers of comments per post" msgstr "Maximale Anzahl von Kommentaren pro Beitrag" -#: src/Module/Admin/Site.php:678 +#: src/Module/Admin/Site.php:679 msgid "How much comments should be shown for each post? Default value is 100." msgstr "Wie viele Kommentare sollen pro Beitrag angezeigt werden? Standardwert sind 100." -#: src/Module/Admin/Site.php:679 +#: src/Module/Admin/Site.php:680 msgid "Maximum numbers of comments per post on the display page" msgstr "Maximale Anzahl von Kommentaren in der Einzelansicht" -#: src/Module/Admin/Site.php:679 +#: src/Module/Admin/Site.php:680 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "Wie viele Kommentare sollen auf der Einzelansicht eines Beitrags angezeigt werden? Grundeinstellung sind 1000." -#: src/Module/Admin/Site.php:680 +#: src/Module/Admin/Site.php:681 msgid "Temp path" msgstr "Temp-Pfad" -#: src/Module/Admin/Site.php:680 +#: src/Module/Admin/Site.php:681 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "Solltest du ein eingeschränktes System haben, auf dem der Webserver nicht auf das temp-Verzeichnis des Systems zugreifen kann, setze hier einen anderen Pfad." -#: src/Module/Admin/Site.php:681 +#: src/Module/Admin/Site.php:682 msgid "Disable picture proxy" msgstr "Bilder-Proxy deaktivieren" -#: src/Module/Admin/Site.php:681 +#: src/Module/Admin/Site.php:682 msgid "" "The picture proxy increases performance and privacy. It shouldn't be used on" " systems with very low bandwidth." msgstr "Der Proxy für Bilder verbessert die Leistung und Privatsphäre der Nutzer. Er sollte nicht auf Systemen verwendet werden, die nur über begrenzte Bandbreite verfügen." -#: src/Module/Admin/Site.php:682 +#: src/Module/Admin/Site.php:683 msgid "Only search in tags" msgstr "Nur in Tags suchen" -#: src/Module/Admin/Site.php:682 +#: src/Module/Admin/Site.php:683 msgid "On large systems the text search can slow down the system extremely." msgstr "Auf großen Knoten kann die Volltext-Suche das System ausbremsen." -#: src/Module/Admin/Site.php:684 +#: src/Module/Admin/Site.php:685 msgid "New base url" msgstr "Neue Basis-URL" -#: src/Module/Admin/Site.php:684 +#: src/Module/Admin/Site.php:685 msgid "" "Change base url for this server. Sends relocate message to all Friendica and" " Diaspora* contacts of all users." msgstr "Ändert die Basis-URL dieses Servers und sendet eine Umzugsmitteilung an alle Friendica- und Diaspora*-Kontakte deiner NutzerInnen." -#: src/Module/Admin/Site.php:686 +#: src/Module/Admin/Site.php:687 msgid "RINO Encryption" msgstr "RINO-Verschlüsselung" -#: src/Module/Admin/Site.php:686 +#: src/Module/Admin/Site.php:687 msgid "Encryption layer between nodes." msgstr "Verschlüsselung zwischen Friendica-Instanzen" -#: src/Module/Admin/Site.php:686 src/Module/Admin/Site.php:694 +#: src/Module/Admin/Site.php:687 src/Module/Admin/Site.php:693 #: src/Module/Contact.php:562 src/Module/Settings/TwoFactor/Index.php:118 msgid "Disabled" msgstr "Deaktiviert" -#: src/Module/Admin/Site.php:686 +#: src/Module/Admin/Site.php:687 msgid "Enabled" msgstr "Aktiv" -#: src/Module/Admin/Site.php:688 +#: src/Module/Admin/Site.php:689 msgid "Maximum number of parallel workers" msgstr "Maximale Anzahl parallel laufender Worker" -#: src/Module/Admin/Site.php:688 +#: src/Module/Admin/Site.php:689 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "Wenn dein Knoten bei einem Shared Hoster ist, setze diesen Wert auf %d. Auf größeren Systemen funktioniert ein Wert von %d recht gut. Standardeinstellung sind %d." -#: src/Module/Admin/Site.php:689 +#: src/Module/Admin/Site.php:690 msgid "Enable fastlane" msgstr "Aktiviere Fastlane" -#: src/Module/Admin/Site.php:689 +#: src/Module/Admin/Site.php:690 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "Wenn aktiviert, wird der Fastlane-Mechanismus einen weiteren Worker-Prozeß starten, wenn Prozesse mit höherer Priorität von Prozessen mit niedrigerer Priorität blockiert werden." -#: src/Module/Admin/Site.php:691 -msgid "Use relay servers" -msgstr "Verwende Relais-Server" - -#: src/Module/Admin/Site.php:691 -msgid "" -"Enables the receiving of public posts from relay servers. They will be " -"included in the search, subscribed tags and on the global community page." -msgstr "Aktiviert den Empfang von öffentlichen Beiträgen vom Relais-Server. Diese Beiträge werden in der Suche, den abonnierten Hashtags sowie der globalen Gemeinschaftsseite verfügbar sein." - #: src/Module/Admin/Site.php:692 -msgid "\"Social Relay\" server" -msgstr "\"Social Relais\" Server" - -#: src/Module/Admin/Site.php:692 -#, php-format -msgid "" -"Address of the \"Social Relay\" server where public posts should be send to." -" For example %s. ActivityRelay servers are administrated via the \"console " -"relay\" command line command." -msgstr "Adresse des \"Social Relais\" Servers, an den die öffentlichen Beiträge gesendet werden sollen.- Zum Beispiel %s. ActivityRelais Server werden mit dem Kommandozeilen Befehl \"console relay\" administriert." - -#: src/Module/Admin/Site.php:693 msgid "Direct relay transfer" msgstr "Direkte Relais-Übertragung" -#: src/Module/Admin/Site.php:693 +#: src/Module/Admin/Site.php:692 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "Aktiviert das direkte Verteilen an andere Server, ohne dass ein Relais-Server verwendet wird." -#: src/Module/Admin/Site.php:694 +#: src/Module/Admin/Site.php:693 msgid "Relay scope" msgstr "Geltungsbereich des Relais" -#: src/Module/Admin/Site.php:694 +#: src/Module/Admin/Site.php:693 msgid "" "Can be \"all\" or \"tags\". \"all\" means that every public post should be " "received. \"tags\" means that only posts with selected tags should be " "received." 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:694 +#: src/Module/Admin/Site.php:693 msgid "all" msgstr "Alle" -#: src/Module/Admin/Site.php:694 +#: src/Module/Admin/Site.php:693 msgid "tags" msgstr "Schlagwörter" -#: src/Module/Admin/Site.php:695 +#: src/Module/Admin/Site.php:694 msgid "Server tags" msgstr "Server-Schlagworte" -#: src/Module/Admin/Site.php:695 +#: src/Module/Admin/Site.php:694 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "Liste von Schlagworten, die abonniert werden sollen, mit Komma getrennt." -#: src/Module/Admin/Site.php:696 +#: src/Module/Admin/Site.php:695 msgid "Deny Server tags" msgstr "Server Tags ablehnen" -#: src/Module/Admin/Site.php:696 +#: src/Module/Admin/Site.php:695 msgid "Comma separated list of tags that are rejected." msgstr "Durch Kommas getrennte Liste der Tags, die abgelehnt werden" -#: src/Module/Admin/Site.php:697 +#: src/Module/Admin/Site.php:696 msgid "Allow user tags" msgstr "Verwende Schlagworte der Nutzer" -#: src/Module/Admin/Site.php:697 +#: src/Module/Admin/Site.php:696 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "Ist dies aktiviert, werden die Schlagwörter der gespeicherten Suchen zusätzlich zu den oben definierten Server-Schlagworten abonniert." -#: src/Module/Admin/Site.php:700 +#: src/Module/Admin/Site.php:699 msgid "Start Relocation" msgstr "Umsiedlung starten" @@ -7239,7 +7230,7 @@ msgstr "Hinweis vom Nutzer" msgid "Deny" msgstr "Verwehren" -#: src/Module/Api/Mastodon/Apps.php:47 src/Module/Api/Mastodon/Apps.php:58 +#: src/Module/Api/Mastodon/Apps.php:58 msgid "Missing parameters" msgstr "Fehlende Parameter" @@ -7274,11 +7265,11 @@ msgstr "Nur die ersten Beiträge einer Unterhaltung können wieder auf laut gest msgid "Posts from %s can't be unshared" msgstr "Beiträge von %s können nicht ungeteilt werden" -#: src/Module/Api/Twitter/ContactEndpoint.php:65 src/Module/Contact.php:400 +#: src/Module/Api/Twitter/ContactEndpoint.php:63 src/Module/Contact.php:400 msgid "Contact not found" msgstr "Kontakt nicht gefunden" -#: src/Module/Api/Twitter/ContactEndpoint.php:135 +#: src/Module/Api/Twitter/ContactEndpoint.php:133 msgid "Profile not found" msgstr "Profil wurde nicht gefunden" @@ -7376,12 +7367,12 @@ msgstr "Addon Features" msgid "User registrations waiting for confirmation" msgstr "Nutzeranmeldungen, die auf Bestätigung warten" -#: src/Module/BaseApi.php:133 +#: src/Module/BaseApi.php:116 #, php-format msgid "API endpoint %s %s is not implemented" msgstr "API Endpunkt %s %s ist nicht implementiert" -#: src/Module/BaseApi.php:134 +#: src/Module/BaseApi.php:117 msgid "" "The API endpoint is currently not implemented but might be in the future." msgstr "The API endpoint is currently not implemented but might be in the future." @@ -7741,7 +7732,7 @@ msgstr "Verwalte deine Kontaktgruppen" msgid "Search your contacts" msgstr "Suche in deinen Kontakten" -#: src/Module/Contact.php:883 src/Module/Search/Index.php:192 +#: src/Module/Contact.php:883 src/Module/Search/Index.php:194 #, php-format msgid "Results for: %s" msgstr "Ergebnisse für: %s" @@ -7870,7 +7861,7 @@ msgstr "Pull/Feed-URL" msgid "New photo from this URL" msgstr "Neues Foto von dieser URL" -#: src/Module/Contact/Contacts.php:31 src/Module/Conversation/Network.php:175 +#: src/Module/Contact/Contacts.php:31 src/Module/Conversation/Network.php:177 msgid "Invalid contact." msgstr "Ungültiger Kontakt." @@ -7982,7 +7973,7 @@ msgid "Hide" msgstr "Verbergen" #: src/Module/Conversation/Community.php:149 src/Module/Search/Index.php:139 -#: src/Module/Search/Index.php:179 +#: src/Module/Search/Index.php:181 msgid "No results." msgstr "Keine Ergebnisse." @@ -8000,45 +7991,45 @@ msgstr "Optionen für die Gemeinschaftsseite nicht verfügbar." msgid "Not available." msgstr "Nicht verfügbar." -#: src/Module/Conversation/Network.php:161 +#: src/Module/Conversation/Network.php:163 msgid "No such group" msgstr "Es gibt keine solche Gruppe" -#: src/Module/Conversation/Network.php:165 +#: src/Module/Conversation/Network.php:167 #, php-format msgid "Group: %s" msgstr "Gruppe: %s" -#: src/Module/Conversation/Network.php:241 +#: src/Module/Conversation/Network.php:243 msgid "Latest Activity" msgstr "Neueste Aktivität" -#: src/Module/Conversation/Network.php:244 +#: src/Module/Conversation/Network.php:246 msgid "Sort by latest activity" msgstr "Sortiere nach neueste Aktivität" -#: src/Module/Conversation/Network.php:249 +#: src/Module/Conversation/Network.php:251 msgid "Latest Posts" msgstr "Neueste Beiträge" -#: src/Module/Conversation/Network.php:252 +#: src/Module/Conversation/Network.php:254 msgid "Sort by post received date" msgstr "Nach Empfangsdatum der Beiträge sortiert" -#: src/Module/Conversation/Network.php:257 +#: src/Module/Conversation/Network.php:259 #: src/Module/Settings/Profile/Index.php:242 msgid "Personal" msgstr "Persönlich" -#: src/Module/Conversation/Network.php:260 +#: src/Module/Conversation/Network.php:262 msgid "Posts that mention or involve you" msgstr "Beiträge, in denen es um dich geht" -#: src/Module/Conversation/Network.php:265 src/Object/Post.php:334 +#: src/Module/Conversation/Network.php:267 src/Object/Post.php:334 msgid "Starred" msgstr "Markierte" -#: src/Module/Conversation/Network.php:268 +#: src/Module/Conversation/Network.php:270 msgid "Favourite Posts" msgstr "Favorisierte Beiträge" @@ -8920,15 +8911,22 @@ msgstr "Ungelesene anzeigen" msgid "Show all" msgstr "Alle anzeigen" -#: src/Module/OAuth/Authorize.php:49 +#: src/Module/OAuth/Authorize.php:54 msgid "Unsupported or missing response type" msgstr "Der Typ der Antwort fehlt oder wird nicht unterstützt" -#: src/Module/OAuth/Authorize.php:54 src/Module/OAuth/Token.php:55 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:58 msgid "Incomplete request data" msgstr "Daten der Anfrage sind nicht vollständig" -#: src/Module/OAuth/Token.php:79 +#: src/Module/OAuth/Authorize.php:106 +#, php-format +msgid "" +"Please copy the following authentication code into your application and " +"close this window: %s" +msgstr "Bitte kopiere den folgenden Authentifizierungscode in deine App und schließe dieses Fenster: %s" + +#: src/Module/OAuth/Token.php:82 msgid "Unsupported or missing grant type" msgstr "Der Grant-Typ fehlt oder wird nicht unterstützt" @@ -9184,7 +9182,7 @@ msgstr "Nur eingeloggten Benutzern ist das Suchen gestattet." msgid "Only one search per minute is permitted for not logged in users." msgstr "Es ist nur eine Suchanfrage pro Minute für nicht eingeloggte Benutzer gestattet." -#: src/Module/Search/Index.php:190 +#: src/Module/Search/Index.php:192 #, php-format msgid "Items tagged with: %s" msgstr "Beiträge, die mit %s getaggt sind" @@ -10457,71 +10455,71 @@ msgstr "Kommentiere diesen Beitrag von deinem System aus" msgid "Remote comment" msgstr "Entfernter Kommentar" -#: src/Object/Post.php:417 +#: src/Object/Post.php:421 msgid "Pushed" msgstr "Pushed" -#: src/Object/Post.php:417 +#: src/Object/Post.php:421 msgid "Pulled" msgstr "Pulled" -#: src/Object/Post.php:451 +#: src/Object/Post.php:455 msgid "to" msgstr "zu" -#: src/Object/Post.php:452 +#: src/Object/Post.php:456 msgid "via" msgstr "via" -#: src/Object/Post.php:453 +#: src/Object/Post.php:457 msgid "Wall-to-Wall" msgstr "Wall-to-Wall" -#: src/Object/Post.php:454 +#: src/Object/Post.php:458 msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" -#: src/Object/Post.php:492 +#: src/Object/Post.php:496 #, php-format msgid "Reply to %s" msgstr "Antworte %s" -#: src/Object/Post.php:495 +#: src/Object/Post.php:499 msgid "More" msgstr "Mehr" -#: src/Object/Post.php:513 +#: src/Object/Post.php:517 msgid "Notifier task is pending" msgstr "Die Benachrichtigungsaufgabe ist ausstehend" -#: src/Object/Post.php:514 +#: src/Object/Post.php:518 msgid "Delivery to remote servers is pending" msgstr "Die Auslieferung an Remote-Server steht noch aus" -#: src/Object/Post.php:515 +#: src/Object/Post.php:519 msgid "Delivery to remote servers is underway" msgstr "Die Auslieferung an Remote-Server ist unterwegs" -#: src/Object/Post.php:516 +#: src/Object/Post.php:520 msgid "Delivery to remote servers is mostly done" msgstr "Die Zustellung an Remote-Server ist fast erledigt" -#: src/Object/Post.php:517 +#: src/Object/Post.php:521 msgid "Delivery to remote servers is done" msgstr "Die Zustellung an die Remote-Server ist erledigt" -#: src/Object/Post.php:537 +#: src/Object/Post.php:541 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d Kommentar" msgstr[1] "%d Kommentare" -#: src/Object/Post.php:538 +#: src/Object/Post.php:542 msgid "Show more" msgstr "Zeige mehr" -#: src/Object/Post.php:539 +#: src/Object/Post.php:543 msgid "Show fewer" msgstr "Zeige weniger" @@ -10627,20 +10625,20 @@ msgstr "Schule/Ausbildung" msgid "Contact information and Social Networks" msgstr "Kontaktinformationen und Soziale Netzwerke" -#: src/Security/Authentication.php:210 src/Security/Authentication.php:262 +#: src/Security/Authentication.php:210 msgid "Login failed." msgstr "Anmeldung fehlgeschlagen." -#: src/Security/Authentication.php:273 +#: src/Security/Authentication.php:251 msgid "Login failed. Please check your credentials." msgstr "Anmeldung fehlgeschlagen. Bitte überprüfe deine Angaben." -#: src/Security/Authentication.php:392 +#: src/Security/Authentication.php:370 #, php-format msgid "Welcome %s" msgstr "Willkommen %s" -#: src/Security/Authentication.php:393 +#: src/Security/Authentication.php:371 msgid "Please upload a profile photo." msgstr "Bitte lade ein Profilbild hoch." @@ -10733,7 +10731,7 @@ msgstr "in %1$d %2$s" msgid "%1$d %2$s ago" msgstr "%1$d %2$s her" -#: src/Worker/Delivery.php:570 +#: src/Worker/Delivery.php:529 msgid "(no subject)" msgstr "(kein Betreff)" diff --git a/view/lang/de/strings.php b/view/lang/de/strings.php index 5c16f1242..69cf1c86d 100644 --- a/view/lang/de/strings.php +++ b/view/lang/de/strings.php @@ -36,14 +36,14 @@ $a->strings["You are following %s."] = "Du folgst %s."; $a->strings["Tagged"] = "Verschlagwortet"; $a->strings["%s reshared this."] = "%s hat dies geteilt"; $a->strings["Reshared"] = "Geteilt"; -$a->strings["Reshared by %s"] = "Von %s geteilt"; +$a->strings["Reshared by %s <%s>"] = "Geteilt von %s <%s>"; $a->strings["%s is participating in this thread."] = "%s ist an der Unterhaltung beteiligt."; $a->strings["Stored"] = "Gespeichert"; $a->strings["Global"] = "Global"; $a->strings["Relayed"] = "Übermittelt"; -$a->strings["Relayed by %s."] = "Von %s übermittelt"; +$a->strings["Relayed by %s <%s>"] = "Weitergeleitet von %s <%s>"; $a->strings["Fetched"] = "Abgerufen"; -$a->strings["Fetched because of %s"] = "Wegen %s abgerufen"; +$a->strings["Fetched because of %s <%s>"] = "Wegen %s <%s> abgerufen"; $a->strings["Follow Thread"] = "Folge der Unterhaltung"; $a->strings["View Status"] = "Status anschauen"; $a->strings["View Profile"] = "Profil anschauen"; @@ -324,8 +324,6 @@ $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requ $a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\nDie Anmeldedaten sind die folgenden:\n\nAdresse der Seite: %1\$s\nLogin Name: %2\$s\nPasswort: %3\$s\n\nDas Passwort kann und sollte in den Kontoeinstellungen nach der Anmeldung geändert werden."; $a->strings["Your password has been changed at %s"] = "Auf %s wurde dein Passwort geändert"; $a->strings["No keywords to match. Please add keywords to your profile."] = "Keine Schlüsselwörter zum Abgleichen gefunden. Bitte füge einige Schlüsselwörter zu deinem Profil hinzu."; -$a->strings["first"] = "erste"; -$a->strings["next"] = "nächste"; $a->strings["No matches"] = "Keine Übereinstimmungen"; $a->strings["Profile Match"] = "Profilübereinstimmungen"; $a->strings["New Message"] = "Neue Nachricht"; @@ -790,7 +788,9 @@ $a->strings["Navigation"] = "Navigation"; $a->strings["Site map"] = "Sitemap"; $a->strings["Embedding disabled"] = "Einbettungen deaktiviert"; $a->strings["Embedded content"] = "Eingebetteter Inhalt"; +$a->strings["first"] = "erste"; $a->strings["prev"] = "vorige"; +$a->strings["next"] = "nächste"; $a->strings["last"] = "letzte"; $a->strings["Image/photo"] = "Bild/Foto"; $a->strings["%2\$s %3\$s"] = "%2\$s%3\$s"; @@ -901,7 +901,7 @@ $a->strings["Error: iconv PHP module required but not installed."] = "Fehler: Da $a->strings["POSIX PHP module"] = "PHP POSIX Modul"; $a->strings["Error: POSIX PHP module required but not installed."] = "Fehler POSIX PHP Modul erforderlich, aber nicht installiert."; $a->strings["Program execution functions"] = "Funktionen zur Programmausführung"; -$a->strings["Error: Program execution functions required but not enabled."] = "Fehler: Die Funktionen zur Ausführung des Programms müssen aktiviert sein."; +$a->strings["Error: Program execution functions (proc_open) required but not enabled."] = "Fehler: Die Funktionen zur Ausführung von Programmen (proc_open) müssen aktiviert sein."; $a->strings["JSON PHP module"] = "PHP JASON Modul"; $a->strings["Error: JSON PHP module required but not installed."] = "Fehler: Das JSON PHP Modul wird benötigt, ist aber nicht installiert."; $a->strings["File Information PHP module"] = "PHP Datei Informations-Modul"; @@ -1300,6 +1300,9 @@ $a->strings["Auto Discovered Contact Directory"] = "Automatisch ein Kontaktverze $a->strings["Performance"] = "Performance"; $a->strings["Worker"] = "Worker"; $a->strings["Message Relay"] = "Nachrichten-Relais"; +$a->strings["Use the command \"console relay\" in the command line to add or remove relays."] = "Verwende den Befehl \"console relay\" auf der Kommandozeile um weitere Relays hinzu zu fügen oder zu entfernen."; +$a->strings["The system is not subscribed to any relays at the moment."] = "Das System hat derzeit keinerlei Relays abonniert."; +$a->strings["The system is currently subscribed to the following relays:"] = "Das System hat derzeit Abonnements bei folgenden Releays:"; $a->strings["Relocate Instance"] = "Instanz Umziehen"; $a->strings["Warning! Advanced function. Could make this server unreachable."] = "Achtung Funktionen für Fortgeschrittene. Könnte diesen Server unerreichbar machen."; $a->strings["Site name"] = "Seitenname"; @@ -1455,10 +1458,6 @@ $a->strings["Maximum number of parallel workers"] = "Maximale Anzahl parallel la $a->strings["On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d."] = "Wenn dein Knoten bei einem Shared Hoster ist, setze diesen Wert auf %d. Auf größeren Systemen funktioniert ein Wert von %d recht gut. Standardeinstellung sind %d."; $a->strings["Enable fastlane"] = "Aktiviere Fastlane"; $a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "Wenn aktiviert, wird der Fastlane-Mechanismus einen weiteren Worker-Prozeß starten, wenn Prozesse mit höherer Priorität von Prozessen mit niedrigerer Priorität blockiert werden."; -$a->strings["Use relay servers"] = "Verwende Relais-Server"; -$a->strings["Enables the receiving of public posts from relay servers. They will be included in the search, subscribed tags and on the global community page."] = "Aktiviert den Empfang von öffentlichen Beiträgen vom Relais-Server. Diese Beiträge werden in der Suche, den abonnierten Hashtags sowie der globalen Gemeinschaftsseite verfügbar sein."; -$a->strings["\"Social Relay\" server"] = "\"Social Relais\" Server"; -$a->strings["Address of the \"Social Relay\" server where public posts should be send to. For example %s. ActivityRelay servers are administrated via the \"console relay\" command line command."] = "Adresse des \"Social Relais\" Servers, an den die öffentlichen Beiträge gesendet werden sollen.- Zum Beispiel %s. ActivityRelais Server werden mit dem Kommandozeilen Befehl \"console relay\" administriert."; $a->strings["Direct relay transfer"] = "Direkte Relais-Übertragung"; $a->strings["Enables the direct transfer to other servers without using the relay servers"] = "Aktiviert das direkte Verteilen an andere Server, ohne dass ein Relais-Server verwendet wird."; $a->strings["Relay scope"] = "Geltungsbereich des Relais"; @@ -1979,6 +1978,7 @@ $a->strings["Show unread"] = "Ungelesene anzeigen"; $a->strings["Show all"] = "Alle anzeigen"; $a->strings["Unsupported or missing response type"] = "Der Typ der Antwort fehlt oder wird nicht unterstützt"; $a->strings["Incomplete request data"] = "Daten der Anfrage sind nicht vollständig"; +$a->strings["Please copy the following authentication code into your application and close this window: %s"] = "Bitte kopiere den folgenden Authentifizierungscode in deine App und schließe dieses Fenster: %s"; $a->strings["Unsupported or missing grant type"] = "Der Grant-Typ fehlt oder wird nicht unterstützt"; $a->strings["Wrong type \"%s\", expected one of: %s"] = "Falscher Typ \"%s\", hatte einen der Folgenden erwartet: %s"; $a->strings["Model not found"] = "Model nicht gefunden"; diff --git a/view/lang/hu/messages.po b/view/lang/hu/messages.po index 2b4223f5c..dbfa1a2d5 100644 --- a/view/lang/hu/messages.po +++ b/view/lang/hu/messages.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-03-27 21:46+0000\n" -"PO-Revision-Date: 2021-03-29 17:52+0000\n" +"POT-Creation-Date: 2021-06-15 17:22+0000\n" +"PO-Revision-Date: 2021-06-16 05:48+0000\n" "Last-Translator: Balázs Úr\n" "Language-Team: Hungarian (http://www.transifex.com/Friendica/friendica/language/hu/)\n" "MIME-Version: 1.0\n" @@ -22,8599 +22,487 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: src/Util/Temporal.php:93 src/Util/Temporal.php:95 -#: src/Module/Settings/Profile/Index.php:245 -msgid "Miscellaneous" -msgstr "Egyebek" - -#: src/Util/Temporal.php:163 src/Module/Profile/Profile.php:164 -msgid "Birthday:" -msgstr "Születésnap:" - -#: src/Util/Temporal.php:165 src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:260 -msgid "Age: " -msgstr "Életkor: " - -#: src/Util/Temporal.php:165 src/Module/Profile/Profile.php:167 -#: src/Module/Settings/Profile/Index.php:260 -#, php-format -msgid "%d year old" -msgid_plural "%d years old" -msgstr[0] "%d éves" -msgstr[1] "%d éves" - -#: src/Util/Temporal.php:167 -msgid "YYYY-MM-DD or MM-DD" -msgstr "YYYY-MM-DD vagy MM-DD" - -#: src/Util/Temporal.php:314 -msgid "never" -msgstr "soha" - -#: src/Util/Temporal.php:321 -msgid "less than a second ago" -msgstr "kevesebb mint egy másodperce" - -#: src/Util/Temporal.php:329 -msgid "year" -msgstr "év" - -#: src/Util/Temporal.php:329 -msgid "years" -msgstr "év" - -#: src/Util/Temporal.php:330 src/Model/Event.php:464 mod/cal.php:281 -#: mod/events.php:427 -msgid "month" -msgstr "hónap" - -#: src/Util/Temporal.php:330 -msgid "months" -msgstr "hónap" - -#: src/Util/Temporal.php:331 src/Model/Event.php:465 mod/cal.php:282 -#: mod/events.php:428 -msgid "week" -msgstr "hét" - -#: src/Util/Temporal.php:331 -msgid "weeks" -msgstr "hét" - -#: src/Util/Temporal.php:332 src/Model/Event.php:466 mod/cal.php:283 -#: mod/events.php:429 -msgid "day" -msgstr "nap" - -#: src/Util/Temporal.php:332 -msgid "days" -msgstr "nap" - -#: src/Util/Temporal.php:333 -msgid "hour" -msgstr "óra" - -#: src/Util/Temporal.php:333 -msgid "hours" -msgstr "óra" - -#: src/Util/Temporal.php:334 -msgid "minute" -msgstr "perc" - -#: src/Util/Temporal.php:334 -msgid "minutes" -msgstr "perc" - -#: src/Util/Temporal.php:335 -msgid "second" -msgstr "másodperc" - -#: src/Util/Temporal.php:335 -msgid "seconds" -msgstr "másodperc" - -#: src/Util/Temporal.php:345 -#, php-format -msgid "in %1$d %2$s" -msgstr "%1$d %2$s múlva" - -#: src/Util/Temporal.php:348 -#, php-format -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s óta" - -#: src/Util/EMailer/NotifyMailBuilder.php:78 -#: src/Util/EMailer/SystemMailBuilder.php:54 -#, php-format -msgid "%1$s, %2$s Administrator" -msgstr "%1$s, a(z) %2$s adminisztrátora" - -#: src/Util/EMailer/NotifyMailBuilder.php:80 -#: src/Util/EMailer/SystemMailBuilder.php:56 -#, php-format -msgid "%s Administrator" -msgstr "A(z) %s adminisztrátora" - -#: src/Util/EMailer/NotifyMailBuilder.php:193 -#: src/Util/EMailer/NotifyMailBuilder.php:217 -#: src/Util/EMailer/SystemMailBuilder.php:101 -#: src/Util/EMailer/SystemMailBuilder.php:118 -msgid "thanks" -msgstr "köszönet" - -#: src/Util/EMailer/MailBuilder.php:259 -msgid "Friendica Notification" -msgstr "Friendica értesítés" - -#: src/App/Module.php:241 -msgid "You must be logged in to use addons. " -msgstr "Bejelentkezve kell lennie a bővítmények használatához." - -#: src/App/Router.php:234 -#, php-format -msgid "Method not allowed for this module. Allowed method(s): %s" -msgstr "A módszer nem engedélyezett ennél a modulnál. Az engedélyezett módszerek: %s" - -#: src/App/Router.php:236 src/Module/HTTPException/PageNotFound.php:32 -msgid "Page not found." -msgstr "Az oldal nem található." - -#: src/App/Page.php:250 -msgid "Delete this item?" -msgstr "Törli ezt az elemet?" - -#: src/App/Page.php:251 -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:299 -msgid "toggle mobile" -msgstr "váltás mobilra" - -#: src/Worker/Delivery.php:570 -msgid "(no subject)" -msgstr "(nincs tárgy)" - -#: src/Factory/Api/Mastodon/Error.php:32 -msgid "Record not found" -msgstr "A rekord nem található" - -#: src/Factory/Notification/Introduction.php:135 -msgid "Friend Suggestion" -msgstr "Ismerősajánlás" - -#: src/Factory/Notification/Introduction.php:161 -msgid "Friend/Connect Request" -msgstr "Ismerős vagy kapcsolódási kérés" - -#: src/Factory/Notification/Introduction.php:161 -msgid "New Follower" -msgstr "Új követő" - -#: src/Factory/Notification/Notification.php:103 -#, php-format -msgid "%s created a new post" -msgstr "%s létrehozott egy új bejegyzést" - -#: src/Factory/Notification/Notification.php:104 -#: src/Factory/Notification/Notification.php:362 -#, php-format -msgid "%s commented on %s's post" -msgstr "%s hozzászólt %s bejegyzéséhez" - -#: src/Factory/Notification/Notification.php:130 -#, php-format -msgid "%s liked %s's post" -msgstr "%s kedvelte %s bejegyzését" - -#: src/Factory/Notification/Notification.php:141 -#, php-format -msgid "%s disliked %s's post" -msgstr "%s nem kedvelte %s bejegyzését" - -#: src/Factory/Notification/Notification.php:152 -#, php-format -msgid "%s is attending %s's event" -msgstr "%s részt vesz %s eseményén" - -#: src/Factory/Notification/Notification.php:163 -#, php-format -msgid "%s is not attending %s's event" -msgstr "%s nem vesz részt %s eseményén" - -#: src/Factory/Notification/Notification.php:174 -#, php-format -msgid "%s may attending %s's event" -msgstr "%s talán részt vesz %s eseményén" - -#: src/Factory/Notification/Notification.php:201 -#, php-format -msgid "%s is now friends with %s" -msgstr "%s és %s mostantól ismerősök" - -#: src/Database/DBStructure.php:64 -#, php-format -msgid "The database version had been set to %s." -msgstr "Az adatbázis verziója %s értékre lett állítva." - -#: src/Database/DBStructure.php:77 -#, php-format -msgid "" -"The post update is at version %d, it has to be at %d to safely drop the " -"tables." -msgstr "A bejegyzésfrissítés %d. verziónál van. %d. verziónál kell lennie a táblák biztonságos eldobásához." - -#: src/Database/DBStructure.php:89 -msgid "No unused tables found." -msgstr "Nem találhatók nem használt táblák." - -#: src/Database/DBStructure.php:94 -msgid "" -"These tables are not used for friendica and will be deleted when you execute" -" \"dbstructure drop -e\":" -msgstr "Ezek a táblák nincsenek használatban a Friendica programnál, és törölve lesznek, ha lefuttatja a „dbstructure drop -e” parancsot:" - -#: src/Database/DBStructure.php:132 -msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." -msgstr "Nincsenek Antelope fájlformátummal rendelkező táblák MyISAM vagy InnoDB motorokon." - -#: src/Database/DBStructure.php:156 -#, php-format -msgid "" -"\n" -"Error %d occurred during database update:\n" -"%s\n" -msgstr "\nHiba (%d) történt az adatbázis frissítése során:\n%s\n" - -#: src/Database/DBStructure.php:159 -msgid "Errors encountered performing database changes: " -msgstr "Hibák történtek az adatbázis változtatásainak végrehajtásakor: " - -#: src/Database/DBStructure.php:436 -msgid "Another database update is currently running." -msgstr "Egy másik adatbázis-frissítés is fut jelenleg." - -#: src/Database/DBStructure.php:440 -#, php-format -msgid "%s: Database update" -msgstr "%s: adatbázis-frissítés" - -#: src/Database/DBStructure.php:740 -#, php-format -msgid "%s: updating %s table." -msgstr "%s: a(z) %s tábla frissítése." - -#: src/Core/Renderer.php:90 src/Core/Renderer.php:119 -#: src/Core/Renderer.php:146 src/Core/Renderer.php:180 -#: src/Render/FriendicaSmartyEngine.php:56 -msgid "" -"Friendica can't display this page at the moment, please contact the " -"administrator." -msgstr "A Friendica jelenleg nem tudja megjeleníteni ezt az oldalt. Vegye fel a kapcsolatot a rendszergazdával." - -#: src/Core/Renderer.php:142 -msgid "template engine cannot be registered without a name." -msgstr "a sablonmotort nem lehet regisztrálni név nélkül." - -#: src/Core/Renderer.php:176 -msgid "template engine is not registered!" -msgstr "a sablonmotor nincs regisztrálva!" - -#: src/Core/ACL.php:154 src/Module/Profile/Profile.php:238 -msgid "Yourself" -msgstr "Önmaga" - -#: src/Core/ACL.php:183 src/Module/PermissionTooltip.php:77 -#: src/Module/PermissionTooltip.php:99 src/Module/Contact.php:852 -#: src/Content/Widget.php:238 src/BaseModule.php:184 -msgid "Followers" -msgstr "Követők" - -#: src/Core/ACL.php:190 src/Module/PermissionTooltip.php:83 -#: src/Module/PermissionTooltip.php:105 -msgid "Mutuals" -msgstr "Kölcsönösen ismerősök" - -#: src/Core/ACL.php:280 -msgid "Post to Email" -msgstr "Beküldés e-mailbe" - -#: src/Core/ACL.php:307 -msgid "Public" -msgstr "Nyilvános" - -#: src/Core/ACL.php:308 -msgid "" -"This content will be shown to all your followers and can be seen in the " -"community pages and by anyone with its link." -msgstr "Ez a tartalom meg fog jelenni az összes követőjének, és látható lesz a közösségi oldalakon, valamint bárki számára a hivatkozásával." - -#: src/Core/ACL.php:309 -msgid "Limited/Private" -msgstr "Korlátozott vagy személyes" - -#: src/Core/ACL.php:310 -msgid "" -"This content will be shown only to the people in the first box, to the " -"exception of the people mentioned in the second box. It won't appear " -"anywhere public." -msgstr "Ez a tartalom csak az első mezőben lévő embereknek fog megjelenni, kivéve a második mezőben említett embereknek. Nem jelenik meg sehol sem nyilvánosan." - -#: src/Core/ACL.php:311 -msgid "Show to:" -msgstr "Megjelenítés nekik:" - -#: src/Core/ACL.php:312 -msgid "Except to:" -msgstr "Kivéve nekik:" - -#: src/Core/ACL.php:313 mod/editpost.php:113 -msgid "CC: email addresses" -msgstr "Másolat: e-mail-címek" - -#: src/Core/ACL.php:314 mod/editpost.php:120 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Példa: bob@example.com, mary@example.com" - -#: src/Core/ACL.php:315 -msgid "Connectors" -msgstr "Összekötők" - -#: src/Core/Update.php:67 -#, php-format -msgid "" -"Updates from version %s are not supported. Please update at least to version" -" 2021.01 and wait until the postupdate finished version 1383." -msgstr "A korábbi %s verzióról való frissítések nem támogatottak. Frissítsen legalább a 2021.01-es verzióra, és várja meg, amíg a bejegyzésfrissítés befejezi az 1383-as verziót." - -#: src/Core/Update.php:78 -#, php-format -msgid "" -"Updates from postupdate version %s are not supported. Please update at least" -" to version 2021.01 and wait until the postupdate finished version 1383." -msgstr "A korábbi %s bejegyzésfrissítési verzióról való frissítések nem támogatottak. Frissítsen legalább a 2021.01-es verzióra, és várja meg, amíg a bejegyzésfrissítés befejezi az 1383-as verziót." - -#: src/Core/Update.php:152 -#, php-format -msgid "%s: executing pre update %d" -msgstr "%s: %d előfrissítés végrehajtása" - -#: src/Core/Update.php:190 -#, php-format -msgid "%s: executing post update %d" -msgstr "%s: %d bejegyzésfrissítés végrehajtása" - -#: src/Core/Update.php:259 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "A(z) %s frissítés sikertelen. Nézze meg a hibanaplókat." - -#: src/Core/Update.php:312 -#, php-format -msgid "" -"\n" -"\t\t\t\tThe friendica developers released update %s recently,\n" -"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n" -"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" -"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." -msgstr "\n\t\t\t\tA Friendica fejlesztői nemrég kiadták a(z) %s frissítést, de amikor\n\t\t\t\tmegpróbáltam telepíteni, valami nagyon elromlott.\n\t\t\t\tEzt hamarosan javítani kell, és én nem tudom egyedül elvégezni.\n\t\t\t\tVegye fel a kapcsolatot egy Friendica fejlesztővel, ha egyedül nem\n\t\t\t\ttud nekem segíteni. Az adatbázisunk érvénytelen lehet." - -#: src/Core/Update.php:318 -#, php-format -msgid "The error message is\\n[pre]%s[/pre]" -msgstr "A hibaüzenet a következő:\\n[pre]%s[/pre]" - -#: src/Core/Update.php:322 src/Core/Update.php:364 -msgid "[Friendica Notify] Database update" -msgstr "[Friendica értesítés] Adatbázis-frissítés" - -#: src/Core/Update.php:358 -#, php-format -msgid "" -"\n" -"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." -msgstr "\n\t\t\t\t\tA Friendica adatbázisa sikeresen frissítve lett: %s → %s." - -#: src/Core/L10n.php:371 src/Module/Settings/Display.php:178 -#: src/Model/Event.php:431 -msgid "Monday" -msgstr "Hétfő" - -#: src/Core/L10n.php:371 src/Model/Event.php:432 -msgid "Tuesday" -msgstr "Kedd" - -#: src/Core/L10n.php:371 src/Model/Event.php:433 -msgid "Wednesday" -msgstr "Szerda" - -#: src/Core/L10n.php:371 src/Model/Event.php:434 -msgid "Thursday" -msgstr "Csütörtök" - -#: src/Core/L10n.php:371 src/Model/Event.php:435 -msgid "Friday" -msgstr "Péntek" - -#: src/Core/L10n.php:371 src/Model/Event.php:436 -msgid "Saturday" -msgstr "Szombat" - -#: src/Core/L10n.php:371 src/Module/Settings/Display.php:178 -#: src/Model/Event.php:430 -msgid "Sunday" -msgstr "Vasárnap" - -#: src/Core/L10n.php:375 src/Model/Event.php:451 -msgid "January" -msgstr "Január" - -#: src/Core/L10n.php:375 src/Model/Event.php:452 -msgid "February" -msgstr "Február" - -#: src/Core/L10n.php:375 src/Model/Event.php:453 -msgid "March" -msgstr "Március" - -#: src/Core/L10n.php:375 src/Model/Event.php:454 -msgid "April" -msgstr "Április" - -#: src/Core/L10n.php:375 src/Core/L10n.php:395 src/Model/Event.php:442 -msgid "May" -msgstr "Május" - -#: src/Core/L10n.php:375 src/Model/Event.php:455 -msgid "June" -msgstr "Június" - -#: src/Core/L10n.php:375 src/Model/Event.php:456 -msgid "July" -msgstr "Július" - -#: src/Core/L10n.php:375 src/Model/Event.php:457 -msgid "August" -msgstr "Augusztus" - -#: src/Core/L10n.php:375 src/Model/Event.php:458 -msgid "September" -msgstr "Szeptember" - -#: src/Core/L10n.php:375 src/Model/Event.php:459 -msgid "October" -msgstr "Október" - -#: src/Core/L10n.php:375 src/Model/Event.php:460 -msgid "November" -msgstr "November" - -#: src/Core/L10n.php:375 src/Model/Event.php:461 -msgid "December" -msgstr "December" - -#: src/Core/L10n.php:391 src/Model/Event.php:423 -msgid "Mon" -msgstr "Hét" - -#: src/Core/L10n.php:391 src/Model/Event.php:424 -msgid "Tue" -msgstr "Ked" - -#: src/Core/L10n.php:391 src/Model/Event.php:425 -msgid "Wed" -msgstr "Sze" - -#: src/Core/L10n.php:391 src/Model/Event.php:426 -msgid "Thu" -msgstr "Csü" - -#: src/Core/L10n.php:391 src/Model/Event.php:427 -msgid "Fri" -msgstr "Pén" - -#: src/Core/L10n.php:391 src/Model/Event.php:428 -msgid "Sat" -msgstr "Szo" - -#: src/Core/L10n.php:391 src/Model/Event.php:422 -msgid "Sun" -msgstr "Vas" - -#: src/Core/L10n.php:395 src/Model/Event.php:438 -msgid "Jan" -msgstr "Jan" - -#: src/Core/L10n.php:395 src/Model/Event.php:439 -msgid "Feb" -msgstr "Feb" - -#: src/Core/L10n.php:395 src/Model/Event.php:440 -msgid "Mar" -msgstr "Már" - -#: src/Core/L10n.php:395 src/Model/Event.php:441 -msgid "Apr" -msgstr "Ápr" - -#: src/Core/L10n.php:395 src/Model/Event.php:443 -msgid "Jun" -msgstr "Jún" - -#: src/Core/L10n.php:395 src/Model/Event.php:444 -msgid "Jul" -msgstr "Júl" - -#: src/Core/L10n.php:395 src/Model/Event.php:445 -msgid "Aug" -msgstr "Aug" - -#: src/Core/L10n.php:395 -msgid "Sep" -msgstr "Sze" - -#: src/Core/L10n.php:395 src/Model/Event.php:447 -msgid "Oct" -msgstr "Okt" - -#: src/Core/L10n.php:395 src/Model/Event.php:448 -msgid "Nov" -msgstr "Nov" - -#: src/Core/L10n.php:395 src/Model/Event.php:449 -msgid "Dec" -msgstr "Dec" - -#: src/Core/L10n.php:414 -msgid "poke" -msgstr "megbökés" - -#: src/Core/L10n.php:414 -msgid "poked" -msgstr "megbökve" - -#: src/Core/L10n.php:415 -msgid "ping" -msgstr "pingelés" - -#: src/Core/L10n.php:415 -msgid "pinged" -msgstr "pingelve" - -#: src/Core/L10n.php:416 -msgid "prod" -msgstr "döfés" - -#: src/Core/L10n.php:416 -msgid "prodded" -msgstr "megdöfve" - -#: src/Core/L10n.php:417 -msgid "slap" -msgstr "ütés" - -#: src/Core/L10n.php:417 -msgid "slapped" -msgstr "megütve" - -#: src/Core/L10n.php:418 -msgid "finger" -msgstr "fogdosás" - -#: src/Core/L10n.php:418 -msgid "fingered" -msgstr "megfogdosva" - -#: src/Core/L10n.php:419 -msgid "rebuff" -msgstr "elutasítás" - -#: src/Core/L10n.php:419 -msgid "rebuffed" -msgstr "elutasítva" - -#: src/Core/Installer.php:179 -msgid "" -"The database configuration file \"config/local.config.php\" could not be " -"written. Please use the enclosed text to create a configuration file in your" -" web server root." -msgstr "A „config/local.config.php” adatbázis-beállítófájlt nem sikerült írni. Használja a mellékelt szöveget egy beállítófájl létrehozásához a webkiszolgáló gyökerében." - -#: src/Core/Installer.php:198 -msgid "" -"You may need to import the file \"database.sql\" manually using phpmyadmin " -"or mysql." -msgstr "Lehet, hogy kézzel kell importálnia a „database.sql” fájlt phpMyAdmin vagy MySQL használatával." - -#: src/Core/Installer.php:199 src/Module/Install.php:206 -#: src/Module/Install.php:365 -msgid "Please see the file \"doc/INSTALL.md\"." -msgstr "Nézze meg a „doc/INSTALL.md” fájlt." - -#: src/Core/Installer.php:260 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Nem sikerült megtalálni a PHP parancssori verzióját a webkiszolgáló PATH környezeti változójában." - -#: src/Core/Installer.php:261 -msgid "" -"If you don't have a command line version of PHP installed on your server, " -"you will not be able to run the background processing. See 'Setup the worker'" -msgstr "Ha nincs telepítve a PHP parancssori verziója a kiszolgálóján, akkor nem lesz képes futtatni a háttérfeldolgozást. Nézze meg a Setup the worker szakaszt a dokumentációban (angol nyelven)." - -#: src/Core/Installer.php:266 -msgid "PHP executable path" -msgstr "PHP végrehajtható útvonala" - -#: src/Core/Installer.php:266 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "A teljes útvonal megadása a PHP végrehajthatóhoz. Ezt üresen hagyhatja a telepítés folytatásához." - -#: src/Core/Installer.php:271 -msgid "Command line PHP" -msgstr "Parancssori PHP" - -#: src/Core/Installer.php:280 -msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" -msgstr "A PHP végrehajtható nem a PHP parancssori bináris (lehet cgi-fgci verzió)" - -#: src/Core/Installer.php:281 -msgid "Found PHP version: " -msgstr "Megtalált PHP-verzió: " - -#: src/Core/Installer.php:283 -msgid "PHP cli binary" -msgstr "PHP parancssori bináris" - -#: src/Core/Installer.php:296 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "A rendszerén lévő PHP parancssori verziójában a „register_argc_argv” nincs engedélyezve." - -#: src/Core/Installer.php:297 -msgid "This is required for message delivery to work." -msgstr "Ez ahhoz szükséges, hogy az üzenetkézbesítés működjön." - -#: src/Core/Installer.php:302 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" - -#: src/Core/Installer.php:334 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Hiba: az „openssl_pkey_new” függvény ezen a rendszeren nem képes titkosítási kulcsokat előállítani" - -#: src/Core/Installer.php:335 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Ha Windows alatt fut, akkor nézze meg a „http://www.php.net/manual/en/openssl.installation.php” dokumentációt." - -#: src/Core/Installer.php:338 -msgid "Generate encryption keys" -msgstr "Titkosítási kulcsok előállítása" - -#: src/Core/Installer.php:390 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Hiba: az Apache webkiszolgáló mod-rewrite modulja szükséges, de nincs telepítve." - -#: src/Core/Installer.php:395 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite modul" - -#: src/Core/Installer.php:401 -msgid "Error: PDO or MySQLi PHP module required but not installed." -msgstr "Hiba: a PDO vagy a MySQLi PHP-modul szükséges, de nincs telepítve." - -#: src/Core/Installer.php:406 -msgid "Error: The MySQL driver for PDO is not installed." -msgstr "Hiba: a PDO-hoz szükséges MySQL illesztőprogram nincs telepítve." - -#: src/Core/Installer.php:410 -msgid "PDO or MySQLi PHP module" -msgstr "PDO vagy MySQLi PHP-modul" - -#: src/Core/Installer.php:418 -msgid "Error, XML PHP module required but not installed." -msgstr "Hiba: az XML PHP-modul szükséges, de nincs telepítve." - -#: src/Core/Installer.php:422 -msgid "XML PHP module" -msgstr "XML PHP-modul" - -#: src/Core/Installer.php:425 -msgid "libCurl PHP module" -msgstr "libCurl PHP-modul" - -#: src/Core/Installer.php:426 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Hiba: az libCURL PHP-modul szükséges, de nincs telepítve." - -#: src/Core/Installer.php:432 -msgid "GD graphics PHP module" -msgstr "GD grafikai PHP-modul" - -#: src/Core/Installer.php:433 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Hiba: a JPEG támogatással rendelkező GD grafikai PHP-modul szükséges, de nincs telepítve." - -#: src/Core/Installer.php:439 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP-modul" - -#: src/Core/Installer.php:440 -msgid "Error: openssl PHP module required but not installed." -msgstr "Hiba: az OpenSSL PHP-modul szükséges, de nincs telepítve." - -#: src/Core/Installer.php:446 -msgid "mb_string PHP module" -msgstr "mb_string PHP-modul" - -#: src/Core/Installer.php:447 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Hiba: az mb_string PHP-modul szükséges, de nincs telepítve." - -#: src/Core/Installer.php:453 -msgid "iconv PHP module" -msgstr "iconv PHP-modul" - -#: src/Core/Installer.php:454 -msgid "Error: iconv PHP module required but not installed." -msgstr "Hiba: az iconv PHP-modul szükséges, de nincs telepítve." - -#: src/Core/Installer.php:460 -msgid "POSIX PHP module" -msgstr "POSIX PHP-modul" - -#: src/Core/Installer.php:461 -msgid "Error: POSIX PHP module required but not installed." -msgstr "Hiba: a POSIX PHP-modul szükséges, de nincs telepítve." - -#: src/Core/Installer.php:467 -msgid "Program execution functions" -msgstr "Programvégrehajtási funkciók" - -#: src/Core/Installer.php:468 -msgid "Error: Program execution functions required but not enabled." -msgstr "Hiba: a programvégrehajtási funkciók szükségesek, de nincsenek engedélyezve." - -#: src/Core/Installer.php:474 -msgid "JSON PHP module" -msgstr "JSON PHP-modul" - -#: src/Core/Installer.php:475 -msgid "Error: JSON PHP module required but not installed." -msgstr "Hiba: a JSON PHP-modul szükséges, de nincs telepítve." - -#: src/Core/Installer.php:481 -msgid "File Information PHP module" -msgstr "Fájlinformációk PHP-modul" - -#: src/Core/Installer.php:482 -msgid "Error: File Information PHP module required but not installed." -msgstr "Hiba: a fájlinformációk PHP-modul szükséges, de nincs telepítve." - -#: src/Core/Installer.php:505 -msgid "" -"The web installer needs to be able to create a file called " -"\"local.config.php\" in the \"config\" folder of your web server and it is " -"unable to do so." -msgstr "A webes telepítőnek képesnek kell lennie létrehozni egy „local.config.php” nevű fájlt a webkiszolgáló „config” mappájában, és ezt nem lehet megtenni." - -#: src/Core/Installer.php:506 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Ez leggyakrabban jogosultsági beállítás, mivel előfordulhat, hogy a webkiszolgáló nem képes fájlokat írni a mappájába, annak ellenére, hogy Ön tud." - -#: src/Core/Installer.php:507 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named local.config.php in your Friendica \"config\" folder." -msgstr "Ezen eljárás végén adni fogunk Önnek egy szöveget, hogy elmentse egy „local.config.php” nevű fájlba a Friendica „config” mappájában." - -#: src/Core/Installer.php:508 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"doc/INSTALL.md\" for instructions." -msgstr "Alternatívaként kihagyhatja ezt az eljárást, és végezhet kézi telepítést. Az utasításokért nézze meg a „doc/INSTALL.txt” fájlt." - -#: src/Core/Installer.php:511 -msgid "config/local.config.php is writable" -msgstr "a config/local.config.php írható" - -#: src/Core/Installer.php:531 -msgid "" -"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "A Friendica a Smarty3 sablonmotort használja a webes nézetei megjelenítéséhez. A Smarty3 lefordítja a sablonokat PHP-ra a megjelenítés felgyorsításához." - -#: src/Core/Installer.php:532 -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory view/smarty3/ under the Friendica top level " -"folder." -msgstr "A lefordított sablonok tárolása érdekében a webkiszolgálónak írási hozzáférésre van szüksége a Friendica felső szintű mappája alatti „view/smarty3/” könyvtárhoz." - -#: src/Core/Installer.php:533 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Biztosítsa, hogy a webkiszolgálót futtató felhasználónak (például www-data) legyen írási hozzáférése ehhez a mappához." - -#: src/Core/Installer.php:534 -msgid "" -"Note: as a security measure, you should give the web server write access to " -"view/smarty3/ only--not the template files (.tpl) that it contains." -msgstr "Megjegyzés: biztonsági intézkedésként csak a „view/smarty3/” mappához kell írási hozzáférést adnia a webkiszolgálónak, nem azokhoz a sablonfájlokhoz (.tpl), amelyeket tartalmaz." - -#: src/Core/Installer.php:537 -msgid "view/smarty3 is writable" -msgstr "A „view/smarty3” írható" - -#: src/Core/Installer.php:565 -msgid "" -"Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" -"dist to .htaccess." -msgstr "Úgy tűnik, hogy a .htaccess fájlban lévő URL átírás nem működik. Győződjön meg arról, hogy lemásolta-e a .htaccess-dist fájlt .htaccess néven." - -#: src/Core/Installer.php:566 -msgid "" -"In some circumstances (like running inside containers), you can skip this " -"error." -msgstr "Bizonyos körülmények között (például konténereken belül való futtatáskor) átugorhatja ezt a hibát." - -#: src/Core/Installer.php:568 -msgid "Error message from Curl when fetching" -msgstr "Hibaüzenet a cURL-től a lekéréskor" - -#: src/Core/Installer.php:574 -msgid "Url rewrite is working" -msgstr "Az URL átírás működik" - -#: src/Core/Installer.php:603 -msgid "ImageMagick PHP extension is not installed" -msgstr "Az ImageMagick PHP-kiterjesztés nincs telepítve" - -#: src/Core/Installer.php:605 -msgid "ImageMagick PHP extension is installed" -msgstr "Az ImageMagick PHP-kiterjesztés telepítve van" - -#: src/Core/Installer.php:607 -msgid "ImageMagick supports GIF" -msgstr "Az ImageMagick támogatja a GIF-et" - -#: src/Core/Installer.php:629 -msgid "Database already in use." -msgstr "Az adatbázis már használatban van." - -#: src/Core/Installer.php:634 -msgid "Could not connect to database." -msgstr "Nem sikerült kapcsolódni az adatbázishoz." - -#: src/Core/UserImport.php:126 -msgid "Error decoding account file" -msgstr "Hiba a fiókfájl dekódolásakor" - -#: src/Core/UserImport.php:132 -msgid "Error! No version data in file! This is not a Friendica account file?" -msgstr "Hiba! Nincsenek verzióadatok a fájlban! Ez nem Friendica fiókfájl?" - -#: src/Core/UserImport.php:140 -#, php-format -msgid "User '%s' already exists on this server!" -msgstr "„%s” felhasználó már létezik ezen a kiszolgálón!" - -#: src/Core/UserImport.php:176 -msgid "User creation error" -msgstr "Felhasználó-létrehozási hiba" - -#: src/Core/UserImport.php:221 -#, php-format -msgid "%d contact not imported" -msgid_plural "%d contacts not imported" -msgstr[0] "%d partner nincs importálva" -msgstr[1] "%d partner nincs importálva" - -#: src/Core/UserImport.php:274 -msgid "User profile creation error" -msgstr "Felhasználóiprofil-létrehozási hiba" - -#: src/Core/UserImport.php:330 -msgid "Done. You can now login with your username and password" -msgstr "Kész. Most már bejelentkezhet a felhasználónevével és a jelszavával." - -#: src/Module/Diaspora/Receive.php:51 src/Module/Debug/ItemBody.php:38 -#: src/Module/Item/Pin.php:42 src/Module/Item/Pin.php:57 -#: src/Module/Item/Star.php:42 src/Module/Item/Follow.php:42 -#: src/Module/Item/Ignore.php:41 src/Module/Conversation/Community.php:194 -#: mod/follow.php:38 mod/cal.php:46 mod/cal.php:50 mod/redir.php:34 -#: mod/redir.php:203 -msgid "Access denied." -msgstr "Hozzáférés megtagadva." - -#: src/Module/FriendSuggest.php:44 src/Module/Contact/Advanced.php:43 -#: src/Module/Group.php:45 src/Module/Group.php:90 -#: src/Module/BaseNotifications.php:88 -#: src/Module/Notifications/Notification.php:47 -#: src/Module/Notifications/Notification.php:76 src/Module/BaseApi.php:59 -#: src/Module/BaseApi.php:65 src/Module/Profile/Common.php:57 -#: src/Module/Profile/Contacts.php:57 src/Module/Register.php:62 -#: src/Module/Register.php:75 src/Module/Register.php:193 -#: src/Module/Register.php:232 src/Module/Contact.php:385 -#: src/Module/FollowConfirm.php:16 src/Module/Delegation.php:118 -#: src/Module/Search/Directory.php:38 src/Module/Invite.php:40 -#: src/Module/Invite.php:128 src/Module/Settings/Display.php:42 -#: src/Module/Settings/Display.php:118 -#: src/Module/Settings/Profile/Photo/Crop.php:157 -#: src/Module/Settings/Profile/Photo/Index.php:113 -#: src/Module/Settings/Delegation.php:42 src/Module/Settings/Delegation.php:70 -#: src/Module/Attach.php:56 mod/wall_upload.php:99 mod/wall_upload.php:102 -#: mod/ostatus_subscribe.php:30 mod/photos.php:176 mod/photos.php:922 -#: mod/dfrn_confirm.php:78 mod/settings.php:47 mod/settings.php:65 -#: mod/settings.php:498 mod/editpost.php:37 mod/suggest.php:34 mod/api.php:52 -#: mod/api.php:57 mod/wall_attach.php:78 mod/wall_attach.php:81 -#: mod/follow.php:55 mod/follow.php:135 mod/item.php:183 mod/item.php:188 -#: mod/item.php:905 mod/uimport.php:32 mod/events.php:231 -#: mod/wallmessage.php:35 mod/wallmessage.php:59 mod/wallmessage.php:96 -#: mod/wallmessage.php:120 mod/message.php:69 mod/message.php:112 -#: mod/repair_ostatus.php:31 mod/unfollow.php:35 mod/unfollow.php:50 -#: mod/unfollow.php:82 mod/notes.php:44 -msgid "Permission denied." -msgstr "Hozzáférés megtagadva." - -#: src/Module/FriendSuggest.php:54 src/Module/FriendSuggest.php:93 -#: src/Module/Contact/Advanced.php:53 src/Module/Contact/Advanced.php:104 -#: src/Module/Contact/Contacts.php:36 src/Module/Group.php:105 -#: mod/dfrn_confirm.php:139 mod/redir.php:56 mod/redir.php:157 -msgid "Contact not found." -msgstr "A partner nem található." - -#: src/Module/FriendSuggest.php:65 -msgid "Suggested contact not found." -msgstr "Az ajánlott partner nem található." - -#: src/Module/FriendSuggest.php:84 -msgid "Friend suggestion sent." -msgstr "Az ismerősajánlás elküldve." - -#: src/Module/FriendSuggest.php:121 -msgid "Suggest Friends" -msgstr "Ismerősök ajánlása" - -#: src/Module/FriendSuggest.php:124 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Ismerős ajánlása %s számára" - -#: src/Module/FriendSuggest.php:129 src/Module/Contact/Poke.php:155 -#: src/Module/Contact/Advanced.php:132 src/Module/Profile/Profile.php:243 -#: src/Module/Contact.php:604 src/Module/Debug/Babel.php:313 -#: src/Module/Debug/WebFinger.php:53 src/Module/Debug/Localtime.php:64 -#: src/Module/Debug/ActivityPubConversion.php:141 -#: src/Module/Debug/Probe.php:55 src/Module/Item/Compose.php:144 -#: src/Module/Delegation.php:152 src/Module/Install.php:245 -#: src/Module/Install.php:287 src/Module/Install.php:324 -#: src/Module/Invite.php:175 src/Module/Settings/Profile/Index.php:237 -#: src/Module/Admin/Item/Source.php:65 src/Object/Post.php:949 -#: view/theme/duepuntozero/config.php:69 view/theme/frio/config.php:160 -#: view/theme/quattro/config.php:71 view/theme/vier/config.php:119 -#: mod/photos.php:951 mod/photos.php:1054 mod/photos.php:1339 -#: mod/photos.php:1380 mod/photos.php:1437 mod/photos.php:1512 -#: mod/events.php:575 mod/message.php:205 mod/message.php:373 -msgid "Submit" -msgstr "Elküldés" - -#: src/Module/Special/HTTPException.php:49 -msgid "Bad Request" -msgstr "Hibás kérés" - -#: src/Module/Special/HTTPException.php:50 -msgid "Unauthorized" -msgstr "Nem engedélyezett" - -#: src/Module/Special/HTTPException.php:51 -msgid "Forbidden" -msgstr "Tiltott" - -#: src/Module/Special/HTTPException.php:52 -msgid "Not Found" -msgstr "Nem található" - -#: src/Module/Special/HTTPException.php:53 -msgid "Internal Server Error" -msgstr "Belső kiszolgálóhiba" - -#: src/Module/Special/HTTPException.php:54 -msgid "Service Unavailable" -msgstr "A szolgáltatás nem érhető el" - -#: src/Module/Special/HTTPException.php:61 -msgid "" -"The server cannot or will not process the request due to an apparent client " -"error." -msgstr "A kiszolgáló nem tudja vagy nem fogja feldolgozni a kérést egy nyilvánvaló klienshiba miatt." - -#: src/Module/Special/HTTPException.php:62 -msgid "" -"Authentication is required and has failed or has not yet been provided." -msgstr "Hitelesítés szükséges, és sikertelen volt vagy még nem lett megadva." - -#: src/Module/Special/HTTPException.php:63 -msgid "" -"The request was valid, but the server is refusing action. The user might not" -" have the necessary permissions for a resource, or may need an account." -msgstr "A kérés érvényes volt, de a kiszolgáló visszautasította a műveletet. A felhasználónak talán nincsenek meg a szükséges jogosultságai egy erőforráshoz, vagy fiókra lehet szüksége." - -#: src/Module/Special/HTTPException.php:64 -msgid "" -"The requested resource could not be found but may be available in the " -"future." -msgstr "A kért erőforrás nem található, de elérhető lehet a jövőben." - -#: src/Module/Special/HTTPException.php:65 -msgid "" -"An unexpected condition was encountered and no more specific message is " -"suitable." -msgstr "Váratlan feltétel történt, és nincs konkrétabb megfelelő üzenet." - -#: src/Module/Special/HTTPException.php:66 -msgid "" -"The server is currently unavailable (because it is overloaded or down for " -"maintenance). Please try again later." -msgstr "A kiszolgáló jelenleg nem érhető el (mert túlterhelt vagy le van kapcsolva a karbantartáshoz). Próbálja újra később." - -#: src/Module/Special/HTTPException.php:75 src/Content/Nav.php:94 -msgid "Go back" -msgstr "Vissza" - -#: src/Module/Special/HTTPException.php:76 -msgid "Stack trace:" -msgstr "Veremkiíratás:" - -#: src/Module/Special/HTTPException.php:80 -#, php-format -msgid "Exception thrown in %s:%d" -msgstr "Kivétel történt itt: %s:%d" - -#: src/Module/Filer/RemoveTag.php:69 -msgid "Item was not removed" -msgstr "Az elem nem lett eltávolítva" - -#: src/Module/Filer/RemoveTag.php:72 -msgid "Item was not deleted" -msgstr "Az elem nem lett törölve" - -#: src/Module/Filer/SaveTag.php:40 src/Module/Debug/Feed.php:38 -#: src/Module/Settings/Profile/Index.php:158 -msgid "You must be logged in to use this module" -msgstr "Bejelentkezve kell lennie a modul használatához" - -#: src/Module/Filer/SaveTag.php:69 include/conversation.php:1185 -msgid "Save to Folder:" -msgstr "Mentés mappába:" - -#: src/Module/Filer/SaveTag.php:69 -msgid "- select -" -msgstr "– válasszon –" - -#: src/Module/Filer/SaveTag.php:70 src/Content/Text/HTML.php:889 -#: mod/editpost.php:88 mod/notes.php:63 -msgid "Save" -msgstr "Mentés" - -#: src/Module/Api/Mastodon/Unimplemented.php:42 -#, php-format -msgid "API endpoint \"%s\" is not implemented" -msgstr "A(z) „%s” API-végpont nincs megvalósítva" - -#: src/Module/Api/Mastodon/Unimplemented.php:43 -msgid "" -"The API endpoint is currently not implemented but might be in the future." -msgstr "Az API-végpont jelenleg nincs megvalósítva, de ez változhat a jövőben." - -#: src/Module/Api/Twitter/ContactEndpoint.php:65 src/Module/Contact.php:400 -msgid "Contact not found" -msgstr "A partner nem található" - -#: src/Module/Api/Twitter/ContactEndpoint.php:73 -#: src/Module/Admin/Users/Active.php:73 src/Module/Admin/Users/Index.php:80 -#: src/Module/Admin/Users/Blocked.php:74 src/Module/Admin/Users/Pending.php:71 -#: src/Model/User.php:607 src/Console/User.php:152 src/Console/User.php:250 -#: src/Console/User.php:283 src/Console/User.php:309 mod/cal.php:297 -msgid "User not found" -msgstr "A felhasználó nem található" - -#: src/Module/Api/Twitter/ContactEndpoint.php:135 -msgid "Profile not found" -msgstr "A profil nem található" - -#: src/Module/Contact/Poke.php:113 -msgid "Error while sending poke, please retry." -msgstr "Hiba a bökés küldése során. Próbálja újra." - -#: src/Module/Contact/Poke.php:126 src/Module/Search/Acl.php:55 -msgid "You must be logged in to use this module." -msgstr "Bejelentkezve kell lennie a modul használatához." - -#: src/Module/Contact/Poke.php:149 -msgid "Poke/Prod" -msgstr "Bökés vagy döfés" - -#: src/Module/Contact/Poke.php:150 -msgid "poke, prod or do other things to somebody" -msgstr "bökés, döfés vagy egyéb dolgok művelése valakivel" - -#: src/Module/Contact/Poke.php:152 -msgid "Choose what you wish to do to recipient" -msgstr "Válassza ki, hogy mit szeretne tenni a címzettel" - -#: src/Module/Contact/Poke.php:153 -msgid "Make this post private" -msgstr "A bejegyzés személyessé tétele" - -#: src/Module/Contact/Poke.php:154 src/Object/Post.php:950 -#: include/conversation.php:1201 mod/photos.php:1382 mod/editpost.php:89 -msgid "Loading..." -msgstr "Betöltés…" - -#: src/Module/Contact/Advanced.php:92 -msgid "Contact update failed." -msgstr "A partner frissítése sikertelen." - -#: src/Module/Contact/Advanced.php:109 -msgid "" -"WARNING: This is highly advanced and if you enter incorrect" -" information your communications with this contact may stop working." -msgstr "FIGYELMEZTETÉS: ez erősen speciális, és ha hibás információkat ad meg, akkor a partnerrel való kommunikációi esetleg nem működnek többé." - -#: src/Module/Contact/Advanced.php:110 -msgid "" -"Please use your browser 'Back' button now if you are " -"uncertain what to do on this page." -msgstr "Használja a böngésző „Vissza” gombját most, ha nem biztos abban, hogy mit kell tenni ezen az oldalon." - -#: src/Module/Contact/Advanced.php:130 -msgid "Return to contact editor" -msgstr "Visszatérés a partnerszerkesztőhöz" - -#: src/Module/Contact/Advanced.php:134 -#: src/Module/Admin/Blocklist/Contact.php:90 -#: src/Module/Admin/Users/Create.php:71 src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Index.php:142 src/Module/Admin/Users/Index.php:162 -#: src/Module/Admin/Users/Blocked.php:130 -#: src/Module/Admin/Users/Deleted.php:88 -#: src/Module/Admin/Users/Pending.php:104 mod/settings.php:510 -#: mod/settings.php:536 -msgid "Name" -msgstr "Név" - -#: src/Module/Contact/Advanced.php:135 -msgid "Account Nickname" -msgstr "Fiók beceneve" - -#: src/Module/Contact/Advanced.php:136 -msgid "@Tagname - overrides Name/Nickname" -msgstr "@Címkenév – felülbírálja a nevet vagy a becenevet" - -#: src/Module/Contact/Advanced.php:137 -msgid "Account URL" -msgstr "Fiók URL" - -#: src/Module/Contact/Advanced.php:138 -msgid "Account URL Alias" -msgstr "Fiók URL álneve" - -#: src/Module/Contact/Advanced.php:139 -msgid "Friend Request URL" -msgstr "Ismerőskérési URL" - -#: src/Module/Contact/Advanced.php:140 -msgid "Friend Confirm URL" -msgstr "Ismerősmegerősítési URL" - -#: src/Module/Contact/Advanced.php:141 -msgid "Notification Endpoint URL" -msgstr "Értesítésvégpont URL" - -#: src/Module/Contact/Advanced.php:142 -msgid "Poll/Feed URL" -msgstr "Lekérés vagy hírforrás URL" - -#: src/Module/Contact/Advanced.php:143 -msgid "New photo from this URL" -msgstr "Új fénykép erről az URL-ről" - -#: src/Module/Contact/Contacts.php:31 src/Module/Conversation/Network.php:175 -msgid "Invalid contact." -msgstr "Érvénytelen partner." - -#: src/Module/Contact/Contacts.php:54 -msgid "No known contacts." -msgstr "Nincsenek ismert partnerek." - -#: src/Module/Contact/Contacts.php:68 src/Module/Profile/Common.php:99 -msgid "No common contacts." -msgstr "Nincsenek közös partnerek." - -#: src/Module/Contact/Contacts.php:80 src/Module/Profile/Contacts.php:97 -#, php-format -msgid "Follower (%s)" -msgid_plural "Followers (%s)" -msgstr[0] "Követő (%s)" -msgstr[1] "Követők (%s)" - -#: src/Module/Contact/Contacts.php:84 src/Module/Profile/Contacts.php:100 -#, php-format -msgid "Following (%s)" -msgid_plural "Following (%s)" -msgstr[0] "Követés (%s)" -msgstr[1] "Követés (%s)" - -#: src/Module/Contact/Contacts.php:88 src/Module/Profile/Contacts.php:103 -#, php-format -msgid "Mutual friend (%s)" -msgid_plural "Mutual friends (%s)" -msgstr[0] "Kölcsönösen ismerősök (%s)" -msgstr[1] "Kölcsönösen ismerősök (%s)" - -#: src/Module/Contact/Contacts.php:90 src/Module/Profile/Contacts.php:105 -#, php-format -msgid "These contacts both follow and are followed by %s." -msgstr "Ezeket a partnereket %s követi és ők is követik őt." - -#: src/Module/Contact/Contacts.php:96 src/Module/Profile/Common.php:87 -#, php-format -msgid "Common contact (%s)" -msgid_plural "Common contacts (%s)" -msgstr[0] "Közös partner (%s)" -msgstr[1] "Közös partnerek (%s)" - -#: src/Module/Contact/Contacts.php:98 src/Module/Profile/Common.php:89 -#, php-format -msgid "" -"Both %s and yourself have publicly interacted with these " -"contacts (follow, comment or likes on public posts)." -msgstr "%s és Ön is nyilvánosan kapcsolatba léptek ezekkel a partnerekkel (követés, hozzászólás vagy kedvelések a nyilvános bejegyzéseknél)." - -#: src/Module/Contact/Contacts.php:104 src/Module/Profile/Contacts.php:111 -#, php-format -msgid "Contact (%s)" -msgid_plural "Contacts (%s)" -msgstr[0] "Partner (%s)" -msgstr[1] "Partnerek (%s)" - -#: src/Module/Friendica.php:61 -msgid "Installed addons/apps:" -msgstr "Telepített bővítmények vagy alkalmazások:" - -#: src/Module/Friendica.php:66 -msgid "No installed addons/apps" -msgstr "Nincsenek telepített bővítmények vagy alkalmazások" - -#: src/Module/Friendica.php:71 -#, php-format -msgid "Read about the Terms of Service of this node." -msgstr "Olvassa el ennek a csomópontnak a használati feltételeit." - -#: src/Module/Friendica.php:78 -msgid "On this server the following remote servers are blocked." -msgstr "Ezen a kiszolgálón a következő távoli kiszolgálók vannak tiltva." - -#: src/Module/Friendica.php:80 src/Model/Contact.php:2164 -#: mod/dfrn_request.php:361 -msgid "Blocked domain" -msgstr "Tiltott tartomány" - -#: src/Module/Friendica.php:81 src/Module/Admin/Blocklist/Server.php:80 -#: src/Module/Admin/Blocklist/Server.php:105 -msgid "Reason for the block" -msgstr "A tiltás oka" - -#: src/Module/Friendica.php:96 -#, 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 "Ez egy %s verziójú Friendica, amely a %s helyen fut a weben. Az adatbázis verziója %s, a bejegyzésfrissítés verziója %s." - -#: src/Module/Friendica.php:101 -msgid "" -"Please visit Friendi.ca to learn more " -"about the Friendica project." -msgstr "Látogassa meg a Friendi.ca oldalt, hogy többet tudjon meg a Friendica projektről." - -#: src/Module/Friendica.php:102 -msgid "Bug reports and issues: please visit" -msgstr "Hibák és problémák jelentéséhez látogassa meg" - -#: src/Module/Friendica.php:102 -msgid "the bugtracker at github" -msgstr "a GitHubon lévő hibakövetőt" - -#: src/Module/Friendica.php:103 -msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" -msgstr "Javaslatokat, dicséretet és egyebeket az „info” kukac friendi pont ca címre küldhet." - -#: src/Module/Group.php:61 -msgid "Could not create group." -msgstr "Nem sikerült létrehozni a csoportot." - -#: src/Module/Group.php:72 src/Module/Group.php:214 src/Module/Group.php:238 -msgid "Group not found." -msgstr "A csoport nem található." - -#: src/Module/Group.php:78 -msgid "Group name was not changed." -msgstr "A csoport neve nem változott meg." - -#: src/Module/Group.php:100 -msgid "Unknown group." -msgstr "Ismeretlen csoport." - -#: src/Module/Group.php:109 -msgid "Contact is deleted." -msgstr "A partner törölve." - -#: src/Module/Group.php:115 -msgid "Unable to add the contact to the group." -msgstr "Nem lehet hozzáadni a partnert a csoporthoz." - -#: src/Module/Group.php:118 -msgid "Contact successfully added to group." -msgstr "A partner sikeresen hozzáadva a csoporthoz." - -#: src/Module/Group.php:122 -msgid "Unable to remove the contact from the group." -msgstr "Nem lehet eltávolítani a partnert a csoportból." - -#: src/Module/Group.php:125 -msgid "Contact successfully removed from group." -msgstr "A partner sikeresen eltávolítva a csoportból." - -#: src/Module/Group.php:128 -msgid "Unknown group command." -msgstr "Ismeretlen csoportparancs." - -#: src/Module/Group.php:131 -msgid "Bad request." -msgstr "Hibás kérés." - -#: src/Module/Group.php:170 -msgid "Save Group" -msgstr "Csoport mentése" - -#: src/Module/Group.php:171 -msgid "Filter" -msgstr "Szűrő" - -#: src/Module/Group.php:177 -msgid "Create a group of contacts/friends." -msgstr "Partnerek vagy ismerősök csoportjának létrehozása." - -#: src/Module/Group.php:178 src/Module/Group.php:201 src/Module/Group.php:276 -#: src/Model/Group.php:543 -msgid "Group Name: " -msgstr "Csoport neve: " - -#: src/Module/Group.php:193 src/Model/Group.php:540 -msgid "Contacts not in any group" -msgstr "Egyetlen csoportban sem lévő partnerek" - -#: src/Module/Group.php:219 -msgid "Unable to remove group." -msgstr "Nem lehet eltávolítani a csoportot." - -#: src/Module/Group.php:270 -msgid "Delete Group" -msgstr "Csoport törlése" - -#: src/Module/Group.php:280 -msgid "Edit Group Name" -msgstr "Csoport nevének szerkesztése" - -#: src/Module/Group.php:290 -msgid "Members" -msgstr "Tagok" - -#: src/Module/Group.php:292 src/Module/Contact.php:791 -#: src/Content/Widget.php:247 -msgid "All Contacts" -msgstr "Összes partner" - -#: src/Module/Group.php:293 -msgid "Group is empty" -msgstr "A csoport üres" - -#: src/Module/Group.php:306 -msgid "Remove contact from group" -msgstr "Partner eltávolítása a csoportból" - -#: src/Module/Group.php:327 -msgid "Click on a contact to add or remove." -msgstr "Kattintson egy partnerre a hozzáadáshoz vagy eltávolításhoz." - -#: src/Module/Group.php:341 -msgid "Add contact to group" -msgstr "Partner hozzáadása a csoporthoz" - -#: src/Module/BaseNotifications.php:139 -#: src/Module/Notifications/Introductions.php:54 src/Content/Nav.php:268 -msgid "Notifications" -msgstr "Értesítések" - -#: src/Module/HTTPException/MethodNotAllowed.php:32 -msgid "Method Not Allowed." -msgstr "A módszer nem engedélyezett." - -#: src/Module/Home.php:54 -#, php-format -msgid "Welcome to %s" -msgstr "Üdvözli a(z) %s!" - -#: src/Module/BaseSearch.php:69 -#, php-format -msgid "People Search - %s" -msgstr "Emberek keresése – %s" - -#: src/Module/BaseSearch.php:79 -#, php-format -msgid "Forum Search - %s" -msgstr "Fórum keresése – %s" - -#: src/Module/BaseSearch.php:117 mod/match.php:120 -msgid "No matches" -msgstr "Nincs találat" - -#: src/Module/Notifications/Introductions.php:78 -msgid "Show Ignored Requests" -msgstr "Mellőzött kérések megjelenítése" - -#: src/Module/Notifications/Introductions.php:78 -msgid "Hide Ignored Requests" -msgstr "Mellőzött kérések elrejtése" - -#: src/Module/Notifications/Introductions.php:94 -#: src/Module/Notifications/Introductions.php:163 -msgid "Notification type:" -msgstr "Értesítés típusa:" - -#: src/Module/Notifications/Introductions.php:97 -msgid "Suggested by:" -msgstr "Ajánlotta:" - -#: src/Module/Notifications/Introductions.php:108 -#: src/Module/Notifications/Introductions.php:183 src/Module/Contact.php:642 -#: src/Module/Admin/Blocklist/Contact.php:100 mod/follow.php:149 -#: mod/unfollow.php:103 -msgid "Profile URL" -msgstr "Profil URL" - -#: src/Module/Notifications/Introductions.php:111 -#: src/Module/Notifications/Introductions.php:189 -#: src/Module/Admin/Users/Pending.php:107 src/Model/Contact.php:1001 -msgid "Approve" -msgstr "Jóváhagyás" - -#: src/Module/Notifications/Introductions.php:113 -#: src/Module/Notifications/Introductions.php:191 -#: src/Module/Notifications/Notification.php:59 src/Module/Contact.php:626 -#: src/Module/Contact.php:884 src/Module/Contact.php:1173 -#: include/conversation.php:956 -msgid "Ignore" -msgstr "Mellőzés" - -#: src/Module/Notifications/Introductions.php:114 -#: src/Module/Notifications/Introductions.php:155 -#: src/Module/Notifications/Notification.php:56 mod/message.php:121 -msgid "Discard" -msgstr "Elvetés" - -#: src/Module/Notifications/Introductions.php:122 -msgid "Claims to be known to you: " -msgstr "Azt állítja, hogy Ön ismeri: " - -#: src/Module/Notifications/Introductions.php:123 src/Module/Register.php:115 -#: src/Module/Contact.php:456 mod/api.php:127 -msgid "Yes" -msgstr "Igen" - -#: src/Module/Notifications/Introductions.php:123 src/Module/Register.php:116 -#: mod/api.php:128 -msgid "No" -msgstr "Nem" - -#: src/Module/Notifications/Introductions.php:131 -msgid "Shall your connection be bidirectional or not?" -msgstr "Legyen a kapcsolata kétirányú vagy sem?" - -#: src/Module/Notifications/Introductions.php:132 -#, php-format -msgid "" -"Accepting %s as a friend allows %s to subscribe to your posts, and you will " -"also receive updates from them in your news feed." -msgstr "%s ismerősként való elfogadása lehetővé teszi %s számára, hogy feliratkozzon a bejegyzéseire, és Ön is frissítéseket fog kapni tőle a hírforrásában." - -#: src/Module/Notifications/Introductions.php:133 -#, php-format -msgid "" -"Accepting %s as a subscriber allows them to subscribe to your posts, but you" -" will not receive updates from them in your news feed." -msgstr "%s feliratkozóként való elfogadása lehetővé teszi számára, hogy feliratkozzon a bejegyzéseire, de Ön nem fog frissítéseket kapni tőle a hírforrásában." - -#: src/Module/Notifications/Introductions.php:135 -msgid "Friend" -msgstr "Ismerős" - -#: src/Module/Notifications/Introductions.php:136 -msgid "Subscriber" -msgstr "Feliratkozó" - -#: src/Module/Notifications/Introductions.php:172 -#: src/Module/Profile/Profile.php:190 src/Module/Contact.php:646 -#: src/Module/Directory.php:156 src/Model/Event.php:84 src/Model/Event.php:111 -#: src/Model/Event.php:472 src/Model/Event.php:959 src/Model/Profile.php:358 -#: mod/events.php:563 -msgid "Location:" -msgstr "Hely:" - -#: src/Module/Notifications/Introductions.php:174 src/Module/Contact.php:650 -#: src/Model/Profile.php:362 -msgid "About:" -msgstr "Névjegy:" - -#: src/Module/Notifications/Introductions.php:176 -#: src/Module/Profile/Profile.php:203 src/Module/Contact.php:652 -#: mod/follow.php:150 -msgid "Tags:" -msgstr "Címkék:" - -#: src/Module/Notifications/Introductions.php:177 src/Module/Contact.php:634 -msgid "Hide this contact from others" -msgstr "A partner elrejtése mások elől" - -#: src/Module/Notifications/Introductions.php:186 src/Module/Contact.php:338 -#: src/Model/Profile.php:451 -msgid "Network:" -msgstr "Hálózat:" - -#: src/Module/Notifications/Introductions.php:201 -msgid "No introductions." -msgstr "Nincsenek bemutatkozások." - -#: src/Module/Notifications/Introductions.php:202 -#: src/Module/Notifications/Notifications.php:133 -#, php-format -msgid "No more %s notifications." -msgstr "Nincs több %s értesítés." - -#: src/Module/Notifications/Notifications.php:50 -msgid "Network Notifications" -msgstr "Hálózati értesítések" - -#: src/Module/Notifications/Notifications.php:58 -msgid "System Notifications" -msgstr "Rendszerértesítések" - -#: src/Module/Notifications/Notifications.php:66 -msgid "Personal Notifications" -msgstr "Személyes értesítések" - -#: src/Module/Notifications/Notifications.php:74 -msgid "Home Notifications" -msgstr "Saját értesítések" - -#: src/Module/Notifications/Notifications.php:138 -msgid "Show unread" -msgstr "Olvasatlanok megjelenítése" - -#: src/Module/Notifications/Notifications.php:138 -msgid "Show all" -msgstr "Összes megjelenítése" - -#: src/Module/Notifications/Notification.php:103 -msgid "You must be logged in to show this page." -msgstr "Bejelentkezve kell lennie az oldal megtekintéséhez." - -#: src/Module/PermissionTooltip.php:25 -#, php-format -msgid "Wrong type \"%s\", expected one of: %s" -msgstr "Hibás típus: „%s”, a következők egyike várt: %s" - -#: src/Module/PermissionTooltip.php:38 -msgid "Model not found" -msgstr "A modell nem található" - -#: src/Module/PermissionTooltip.php:60 -msgid "Remote privacy information not available." -msgstr "A távoli adatvédelmi információk nem érhetők el." - -#: src/Module/PermissionTooltip.php:71 -msgid "Visible to:" -msgstr "Látható nekik:" - -#: src/Module/Manifest.php:42 -msgid "A Decentralized Social Network" -msgstr "Egy decentralizált közösségi hálózat" - -#: src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 mod/api.php:112 -msgid "Please login to continue." -msgstr "Jelentkezzen be a folytatáshoz." - -#: src/Module/BaseAdmin.php:63 -msgid "You don't have access to administration pages." -msgstr "Nincs hozzáférése az adminisztrációs oldalakhoz." - -#: src/Module/BaseAdmin.php:67 -msgid "" -"Submanaged account can't access the administration pages. Please log back in" -" as the main account." -msgstr "Az alkezelt fiókok nem férhetnek hozzá az adminisztrációs oldalakhoz. Jelentkezzen vissza a fő fiókkal." - -#: src/Module/BaseAdmin.php:85 src/Content/Nav.php:253 -msgid "Information" -msgstr "Információk" - -#: src/Module/BaseAdmin.php:86 -msgid "Overview" -msgstr "Áttekintő" - -#: src/Module/BaseAdmin.php:87 src/Module/Admin/Federation.php:142 -msgid "Federation Statistics" -msgstr "Föderációs statisztikák" - -#: src/Module/BaseAdmin.php:89 -msgid "Configuration" -msgstr "Beállítás" - -#: src/Module/BaseAdmin.php:90 src/Module/Admin/Site.php:580 -msgid "Site" -msgstr "Oldal" - -#: src/Module/BaseAdmin.php:91 src/Module/Admin/Users/Index.php:150 -#: src/Module/Admin/Users/Index.php:160 -msgid "Users" -msgstr "Felhasználók" - -#: src/Module/BaseAdmin.php:92 src/Module/Admin/Addons/Details.php:112 -#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseSettings.php:87 -msgid "Addons" -msgstr "Bővítmények" - -#: src/Module/BaseAdmin.php:93 src/Module/Admin/Themes/Details.php:91 -#: src/Module/Admin/Themes/Index.php:112 -msgid "Themes" -msgstr "Témák" - -#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:65 -msgid "Additional features" -msgstr "További funkciók" - -#: src/Module/BaseAdmin.php:95 src/Module/Register.php:163 -#: src/Module/Tos.php:84 src/Module/Admin/Tos.php:59 src/Content/Nav.php:256 -msgid "Terms of Service" -msgstr "Használati feltételek" - -#: src/Module/BaseAdmin.php:97 -msgid "Database" -msgstr "Adatbázis" - -#: src/Module/BaseAdmin.php:98 -msgid "DB updates" -msgstr "Adatbázis-frissítések" - -#: src/Module/BaseAdmin.php:99 -msgid "Inspect Deferred Workers" -msgstr "Elhalasztott feldolgozók vizsgálata" - -#: src/Module/BaseAdmin.php:100 -msgid "Inspect worker Queue" -msgstr "Feldolgozó várakozási sorának vizsgálata" - -#: src/Module/BaseAdmin.php:102 -msgid "Tools" -msgstr "Eszközök" - -#: src/Module/BaseAdmin.php:103 -msgid "Contact Blocklist" -msgstr "Partnertiltólista" - -#: src/Module/BaseAdmin.php:104 -msgid "Server Blocklist" -msgstr "Kiszolgáló-tiltólista" - -#: src/Module/BaseAdmin.php:105 src/Module/Admin/Item/Delete.php:66 -msgid "Delete Item" -msgstr "Elem törlése" - -#: src/Module/BaseAdmin.php:107 src/Module/BaseAdmin.php:108 -#: src/Module/Admin/Logs/Settings.php:81 -msgid "Logs" -msgstr "Naplók" - -#: src/Module/BaseAdmin.php:109 src/Module/Admin/Logs/View.php:65 -msgid "View Logs" -msgstr "Naplók megtekintése" - -#: src/Module/BaseAdmin.php:111 -msgid "Diagnostics" -msgstr "Diagnosztika" - -#: src/Module/BaseAdmin.php:112 -msgid "PHP Info" -msgstr "PHP-információk" - -#: src/Module/BaseAdmin.php:113 -msgid "probe address" -msgstr "Cím szondázása" - -#: src/Module/BaseAdmin.php:114 -msgid "check webfinger" -msgstr "WebFinger ellenőrzése" - -#: src/Module/BaseAdmin.php:115 src/Module/Admin/Item/Source.php:57 -msgid "Item Source" -msgstr "Elem forrása" - -#: src/Module/BaseAdmin.php:116 -msgid "Babel" -msgstr "Babel" - -#: src/Module/BaseAdmin.php:117 src/Module/Debug/ActivityPubConversion.php:138 -msgid "ActivityPub Conversion" -msgstr "ActivityPub beszélgetés" - -#: src/Module/BaseAdmin.php:125 src/Content/Nav.php:289 -msgid "Admin" -msgstr "Adminisztráció" - -#: src/Module/BaseAdmin.php:126 -msgid "Addon Features" -msgstr "Bővítményszolgáltatások" - -#: src/Module/BaseAdmin.php:127 -msgid "User registrations waiting for confirmation" -msgstr "Megerősítésre váró felhasználói regisztrációk" - -#: src/Module/Profile/Status.php:58 src/Module/Profile/Common.php:41 -#: src/Module/Profile/Common.php:53 src/Module/Profile/Contacts.php:40 -#: src/Module/Profile/Contacts.php:51 src/Module/Register.php:258 -#: src/Module/HoverCard.php:53 mod/cal.php:72 mod/cal.php:133 -msgid "User not found." -msgstr "A felhasználó nem található." - -#: src/Module/Profile/Status.php:65 src/Module/Profile/Status.php:68 -#: src/Module/Profile/Profile.php:322 src/Module/Profile/Profile.php:325 -#: src/Protocol/Feed.php:940 src/Protocol/OStatus.php:1258 -#, php-format -msgid "%s's timeline" -msgstr "%s idővonala" - -#: src/Module/Profile/Status.php:66 src/Module/Profile/Profile.php:323 -#: src/Protocol/Feed.php:944 src/Protocol/OStatus.php:1262 -#, php-format -msgid "%s's posts" -msgstr "%s bejegyzései" - -#: src/Module/Profile/Status.php:67 src/Module/Profile/Profile.php:324 -#: src/Protocol/Feed.php:947 src/Protocol/OStatus.php:1265 -#, php-format -msgid "%s's comments" -msgstr "%s hozzászólásai" - -#: src/Module/Profile/Status.php:109 src/Module/Profile/Profile.php:94 -#: src/Module/Profile/Profile.php:109 src/Module/Update/Profile.php:55 -#: mod/display.php:281 mod/cal.php:143 -msgid "Access to this profile has been restricted." -msgstr "A profilhoz való hozzáférés korlátozva lett." - -#: src/Module/Profile/Contacts.php:121 -msgid "No contacts." -msgstr "Nincsenek partnerek." - -#: src/Module/Profile/Profile.php:82 mod/dfrn_confirm.php:84 -msgid "Profile not found." -msgstr "A profil nem található." - -#: src/Module/Profile/Profile.php:135 -#, php-format -msgid "" -"You're currently viewing your profile as %s Cancel" -msgstr "A profilját jelenleg %s nevében nézi Mégse" - -#: src/Module/Profile/Profile.php:144 mod/settings.php:864 -msgid "Full Name:" -msgstr "Teljes név:" - -#: src/Module/Profile/Profile.php:149 -msgid "Member since:" -msgstr "Ekkortól tag:" - -#: src/Module/Profile/Profile.php:155 -msgid "j F, Y" -msgstr "Y. F j." - -#: src/Module/Profile/Profile.php:156 -msgid "j F" -msgstr "F j." - -#: src/Module/Profile/Profile.php:172 -#: src/Module/Settings/Profile/Index.php:253 mod/events.php:561 -msgid "Description:" -msgstr "Leírás:" - -#: src/Module/Profile/Profile.php:176 src/Module/Contact.php:648 -#: src/Model/Profile.php:363 -msgid "XMPP:" -msgstr "XMPP:" - -#: src/Module/Profile/Profile.php:180 src/Module/Directory.php:161 -#: src/Model/Profile.php:361 -msgid "Homepage:" -msgstr "Honlap:" - -#: src/Module/Profile/Profile.php:230 -msgid "Forums:" -msgstr "Fórumok:" - -#: src/Module/Profile/Profile.php:237 src/Module/Contact.php:657 -#: src/Module/Contact.php:936 src/Module/Welcome.php:57 -#: src/Module/BaseProfile.php:52 src/Module/BaseSettings.php:57 -#: src/Content/Nav.php:178 view/theme/frio/theme.php:226 -msgid "Profile" -msgstr "Profil" - -#: src/Module/Profile/Profile.php:242 -msgid "View profile as:" -msgstr "Profil megtekintése másként:" - -#: src/Module/Profile/Profile.php:244 mod/events.php:576 -msgid "Basic" -msgstr "Alap" - -#: src/Module/Profile/Profile.php:245 src/Module/Contact.php:953 -#: src/Module/Admin/Site.php:587 mod/events.php:577 -msgid "Advanced" -msgstr "Speciális" - -#: src/Module/Profile/Profile.php:252 src/Module/Profile/Profile.php:254 -#: src/Model/Profile.php:346 -msgid "Edit profile" -msgstr "Profil szerkesztése" - -#: src/Module/Profile/Profile.php:259 -msgid "View as" -msgstr "Megtekintés másként" - -#: src/Module/Register.php:69 -msgid "Only parent users can create additional accounts." -msgstr "Csak fölérendelt felhasználók hozhatnak létre további fiókokat." - -#: src/Module/Register.php:84 mod/uimport.php:54 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Ez az oldal túllépte a fiókregisztrációk naponta megengedett számát. Próbálja újra holnap." - -#: src/Module/Register.php:101 -msgid "" -"You may (optionally) fill in this form via OpenID by supplying your OpenID " -"and clicking \"Register\"." -msgstr "Kitöltheti ezt az űrlapot OpenID használatán keresztül is az OpenID azonosítója megadásával és „Regisztráció” gombra kattintva (nem kötelező)." - -#: src/Module/Register.php:102 -msgid "" -"If you are not familiar with OpenID, please leave that field blank and fill " -"in the rest of the items." -msgstr "Ha nem ismeri az OpenID-t, akkor hagyja a mezőt üresen, és töltse ki a többi elemet." - -#: src/Module/Register.php:103 -msgid "Your OpenID (optional): " -msgstr "Az Ön OpenID-ja (opcionális): " - -#: src/Module/Register.php:112 -msgid "Include your profile in member directory?" -msgstr "Felveszi a profilját a tagkönyvtárba?" - -#: src/Module/Register.php:135 -msgid "Note for the admin" -msgstr "Jegyzet az adminisztrátornak" - -#: src/Module/Register.php:135 -msgid "Leave a message for the admin, why you want to join this node" -msgstr "Hagyjon üzenetet az adminisztrátornak, hogy miért szeretne ehhez a csomóponthoz csatlakozni" - -#: src/Module/Register.php:135 src/Module/Debug/Probe.php:60 -#: src/Module/Install.php:200 src/Module/Install.php:233 -#: src/Module/Install.php:238 src/Module/Install.php:257 -#: src/Module/Install.php:268 src/Module/Install.php:273 -#: src/Module/Install.php:279 src/Module/Install.php:284 -#: src/Module/Install.php:298 src/Module/Install.php:313 -#: src/Module/Install.php:340 src/Module/Settings/TwoFactor/Verify.php:141 -#: src/Module/Settings/TwoFactor/Index.php:133 -#: src/Module/Admin/Item/Delete.php:70 -#: src/Module/Admin/Blocklist/Server.php:79 -#: src/Module/Admin/Blocklist/Server.php:80 -#: src/Module/Admin/Blocklist/Server.php:99 -#: src/Module/Admin/Blocklist/Server.php:100 -#: src/Module/Security/TwoFactor/Verify.php:99 mod/events.php:533 -#: mod/events.php:565 -msgid "Required" -msgstr "Kötelező" - -#: src/Module/Register.php:136 -msgid "Membership on this site is by invitation only." -msgstr "Ezen az oldalon a tagság csak meghívás alapján van." - -#: src/Module/Register.php:137 -msgid "Your invitation code: " -msgstr "A meghívási kódja: " - -#: src/Module/Register.php:139 src/Module/Admin/Site.php:584 -msgid "Registration" -msgstr "Regisztráció" - -#: src/Module/Register.php:145 -msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "A teljes neve (például Kovács János, valódi vagy valódinak látszó): " - -#: src/Module/Register.php:146 -msgid "" -"Your Email Address: (Initial information will be send there, so this has to " -"be an existing address.)" -msgstr "Az e-mail-címe (a kezdeti információk ide lesznek elküldve, szóval ennek létező címnek kell lennie):" - -#: src/Module/Register.php:147 -msgid "Please repeat your e-mail address:" -msgstr "Ismételje meg az e-mail-címét:" - -#: src/Module/Register.php:149 mod/settings.php:855 -msgid "New Password:" -msgstr "Új jelszó:" - -#: src/Module/Register.php:149 -msgid "Leave empty for an auto generated password." -msgstr "Hagyja üresen egy automatikusan előállított jelszóhoz." - -#: src/Module/Register.php:150 mod/settings.php:856 -msgid "Confirm:" -msgstr "Megerősítés:" - -#: src/Module/Register.php:151 -#, php-format -msgid "" -"Choose a profile nickname. This must begin with a text character. Your " -"profile address on this site will then be \"nickname@%s\"." -msgstr "Válasszon profilbecenevet. Ennek betűvel kell kezdődnie. Ezután a profilcíme ezen az oldalon „becenév@%s” lesz." - -#: src/Module/Register.php:152 -msgid "Choose a nickname: " -msgstr "Becenév választása: " - -#: src/Module/Register.php:155 src/Module/Security/Login.php:102 -#: src/Content/Nav.php:206 -msgid "Register" -msgstr "Regisztráció" - -#: src/Module/Register.php:160 mod/uimport.php:61 -msgid "Import" -msgstr "Importálás" - -#: src/Module/Register.php:161 -msgid "Import your profile to this friendica instance" -msgstr "A profilja importálása erre a Friendica példányra" - -#: src/Module/Register.php:168 -msgid "Note: This node explicitly contains adult content" -msgstr "Megjegyzés: ez a csomópont kifejezetten tartalmaz felnőtt tartalmat" - -#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155 -msgid "Parent Password:" -msgstr "Fölérendelt jelszó:" - -#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155 -msgid "" -"Please enter the password of the parent account to legitimize your request." -msgstr "Adja meg a fölérendelt fiók jelszavát a kérése törvényesítéséhez." - -#: src/Module/Register.php:199 -msgid "Password doesn't match." -msgstr "A jelszó nem egyezik." - -#: src/Module/Register.php:205 -msgid "Please enter your password." -msgstr "Adja meg a jelszavát." - -#: src/Module/Register.php:247 -msgid "You have entered too much information." -msgstr "Túl sok információt adott meg." - -#: src/Module/Register.php:271 -msgid "Please enter the identical mail address in the second field." -msgstr "Adja meg a megegyező e-mail-címet a második mezőben." - -#: src/Module/Register.php:298 -msgid "The additional account was created." -msgstr "A további fiók létre lett hozva." - -#: src/Module/Register.php:323 -msgid "" -"Registration successful. Please check your email for further instructions." -msgstr "A regisztráció sikerült. Nézze meg a postafiókját a további utasításokért." - -#: src/Module/Register.php:327 -#, php-format -msgid "" -"Failed to send email message. Here your accout details:
login: %s
" -"password: %s

You can change your password after login." -msgstr "Nem sikerült elküldeni az e-mail üzenetet. Itt vannak a fiók részletei:
Bejelentkezés: %s
Jelszó: %s

A jelszavát bejelentkezés után változtathatja meg." - -#: src/Module/Register.php:333 -msgid "Registration successful." -msgstr "A regisztráció sikerült." - -#: src/Module/Register.php:338 src/Module/Register.php:345 -msgid "Your registration can not be processed." -msgstr "A regisztrációját nem lehet feldolgozni." - -#: src/Module/Register.php:344 -msgid "You have to leave a request note for the admin." -msgstr "Hagynia kell egy kérelmi jegyzetet az adminisztrátornak." - -#: src/Module/Register.php:390 -msgid "Your registration is pending approval by the site owner." -msgstr "A regisztrációja jóváhagyásra vár az oldal tulajdonosától." - -#: src/Module/Contact.php:94 -#, php-format -msgid "%d contact edited." -msgid_plural "%d contacts edited." -msgstr[0] "%d partner szerkesztve." -msgstr[1] "%d partner szerkesztve." - -#: src/Module/Contact.php:121 -msgid "Could not access contact record." -msgstr "Nem sikerült hozzáférni a partner rekordjához." - -#: src/Module/Contact.php:157 mod/dfrn_request.php:428 -msgid "Failed to update contact record." -msgstr "Nem sikerült frissíteni a partner rekordját." - -#: src/Module/Contact.php:340 src/Model/Profile.php:439 -#: src/Content/Text/HTML.php:889 -msgid "Follow" -msgstr "Követés" - -#: src/Module/Contact.php:342 src/Model/Profile.php:441 -msgid "Unfollow" -msgstr "Követés megszüntetése" - -#: src/Module/Contact.php:344 src/Model/Profile.php:445 -#: include/conversation.php:1248 mod/editpost.php:132 -msgid "Message" -msgstr "Üzenet" - -#: src/Module/Contact.php:419 -msgid "Contact has been blocked" -msgstr "A partner tiltva lett" - -#: src/Module/Contact.php:419 -msgid "Contact has been unblocked" -msgstr "A partner tiltása fel lett oldva" - -#: src/Module/Contact.php:429 -msgid "Contact has been ignored" -msgstr "A partner figyelmen kívül lett hagyva" - -#: src/Module/Contact.php:429 -msgid "Contact has been unignored" -msgstr "A partner figyelmen kívül hagyása fel lett oldva" - -#: src/Module/Contact.php:439 -msgid "Contact has been archived" -msgstr "A partner archiválva lett" - -#: src/Module/Contact.php:439 -msgid "Contact has been unarchived" -msgstr "A partner archiválása meg lett szüntetve" - -#: src/Module/Contact.php:452 -msgid "Drop contact" -msgstr "Partner eldobása" - -#: src/Module/Contact.php:455 src/Module/Contact.php:879 -msgid "Do you really want to delete this contact?" -msgstr "Valóban törölni szeretné ezt a partnert?" - -#: src/Module/Contact.php:459 src/Module/RemoteFollow.php:110 -#: include/conversation.php:1241 mod/photos.php:1037 mod/photos.php:1143 -#: mod/settings.php:509 mod/settings.php:535 mod/editpost.php:128 -#: mod/fbrowser.php:105 mod/fbrowser.php:134 mod/follow.php:152 -#: mod/dfrn_request.php:642 mod/tagrm.php:37 mod/tagrm.php:127 -#: mod/unfollow.php:100 -msgid "Cancel" -msgstr "Mégse" - -#: src/Module/Contact.php:468 -msgid "Contact has been removed." -msgstr "A partner el lett távolítva." - -#: src/Module/Contact.php:496 -#, php-format -msgid "You are mutual friends with %s" -msgstr "Ön kölcsönösen ismerős %s partnerrel" - -#: src/Module/Contact.php:500 -#, php-format -msgid "You are sharing with %s" -msgstr "Ön megoszt %s partnerrel" - -#: src/Module/Contact.php:504 -#, php-format -msgid "%s is sharing with you" -msgstr "%s megoszt Önnel" - -#: src/Module/Contact.php:528 -msgid "Private communications are not available for this contact." -msgstr "A személyes kommunikációk nem érhetők el ennél a partnernél." - -#: src/Module/Contact.php:530 -msgid "Never" -msgstr "Soha" - -#: src/Module/Contact.php:533 -msgid "(Update was not successful)" -msgstr "(a frissítés nem volt sikeres)" - -#: src/Module/Contact.php:533 -msgid "(Update was successful)" -msgstr "(a frissítés sikeres volt)" - -#: src/Module/Contact.php:535 src/Module/Contact.php:1136 -msgid "Suggest friends" -msgstr "Ismerősök ajánlása" - -#: src/Module/Contact.php:539 -#, php-format -msgid "Network type: %s" -msgstr "Hálózat típusa: %s" - -#: src/Module/Contact.php:544 -msgid "Communications lost with this contact!" -msgstr "A kommunikációk megszakadtak ezzel a partnerrel!" - -#: src/Module/Contact.php:550 -msgid "Fetch further information for feeds" -msgstr "További információk lekérése a hírforrásokhoz" - -#: src/Module/Contact.php:552 -msgid "" -"Fetch information like preview pictures, title and teaser from the feed " -"item. You can activate this if the feed doesn't contain much text. Keywords " -"are taken from the meta header in the feed item and are posted as hash tags." -msgstr "Információk lekérése a hírforrás eleméből, mint például előnézeti képek, cím és előzetes. Akkor kapcsolhatja be ezt, ha a hírforrás nem tartalmaz sok szöveget. A kulcsszavak a hírforrás elemében lévő metafejlécéből lesznek kiszedve, és kettős keresztes címkékként lesznek beküldve." - -#: src/Module/Contact.php:554 src/Module/Settings/TwoFactor/Index.php:118 -#: src/Module/Admin/Site.php:686 src/Module/Admin/Site.php:694 -msgid "Disabled" -msgstr "Letiltva" - -#: src/Module/Contact.php:555 -msgid "Fetch information" -msgstr "Információk lekérése" - -#: src/Module/Contact.php:556 -msgid "Fetch keywords" -msgstr "Kulcsszavak lekérése" - -#: src/Module/Contact.php:557 -msgid "Fetch information and keywords" -msgstr "Információk és kulcsszavak lekérése" - -#: src/Module/Contact.php:569 src/Module/Contact.php:573 -#: src/Module/Contact.php:576 src/Module/Contact.php:580 -msgid "No mirroring" -msgstr "Nincs tükrözés" - -#: src/Module/Contact.php:570 -msgid "Mirror as forwarded posting" -msgstr "Tükrözés továbbított beküldésként" - -#: src/Module/Contact.php:571 src/Module/Contact.php:577 -#: src/Module/Contact.php:581 -msgid "Mirror as my own posting" -msgstr "Tükrözés saját beküldésként" - -#: src/Module/Contact.php:574 src/Module/Contact.php:578 -msgid "Native reshare" -msgstr "Natív újra megosztás" - -#: src/Module/Contact.php:593 -msgid "Contact Information / Notes" -msgstr "Partner információ vagy jegyzetek" - -#: src/Module/Contact.php:594 -msgid "Contact Settings" -msgstr "Partnerbeállítások" - -#: src/Module/Contact.php:602 -msgid "Contact" -msgstr "Partner" - -#: src/Module/Contact.php:606 -msgid "Their personal note" -msgstr "A személyes jegyzeteik" - -#: src/Module/Contact.php:608 -msgid "Edit contact notes" -msgstr "Partner jegyzeteinek szerkesztése" - -#: src/Module/Contact.php:611 src/Module/Contact.php:1104 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "%s profiljának megtekintése [%s]" - -#: src/Module/Contact.php:612 -msgid "Block/Unblock contact" -msgstr "Partner tiltása vagy tiltásának feloldása" - -#: src/Module/Contact.php:613 -msgid "Ignore contact" -msgstr "Partner mellőzése" - -#: src/Module/Contact.php:614 -msgid "View conversations" -msgstr "Beszélgetések megtekintése" - -#: src/Module/Contact.php:619 -msgid "Last update:" -msgstr "Utolsó frissítés:" - -#: src/Module/Contact.php:621 -msgid "Update public posts" -msgstr "Nyilvános bejegyzések frissítése" - -#: src/Module/Contact.php:623 src/Module/Contact.php:1146 -msgid "Update now" -msgstr "Frissítés most" - -#: src/Module/Contact.php:625 src/Module/Contact.php:883 -#: src/Module/Contact.php:1165 src/Module/Admin/Blocklist/Contact.php:85 -#: src/Module/Admin/Users/Index.php:156 src/Module/Admin/Users/Blocked.php:142 -msgid "Unblock" -msgstr "Tiltás feloldása" - -#: src/Module/Contact.php:625 src/Module/Contact.php:883 -#: src/Module/Contact.php:1165 src/Module/Admin/Blocklist/Contact.php:84 -#: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:154 -#: include/conversation.php:955 -msgid "Block" -msgstr "Tiltás" - -#: src/Module/Contact.php:626 src/Module/Contact.php:884 -#: src/Module/Contact.php:1173 -msgid "Unignore" -msgstr "Mellőzés feloldása" - -#: src/Module/Contact.php:630 -msgid "Currently blocked" -msgstr "Jelenleg tiltva" - -#: src/Module/Contact.php:631 -msgid "Currently ignored" -msgstr "Jelenleg mellőzve" - -#: src/Module/Contact.php:632 -msgid "Currently archived" -msgstr "Jelenleg archiválva" - -#: src/Module/Contact.php:633 -msgid "Awaiting connection acknowledge" -msgstr "Várakozás a kapcsolat nyugtázására" - -#: src/Module/Contact.php:634 -msgid "" -"Replies/likes to your public posts may still be visible" -msgstr "A nyilvános bejegyzéseire adott válaszok vagy kedvelések továbbra is láthatóak lehetnek." - -#: src/Module/Contact.php:635 -msgid "Notification for new posts" -msgstr "Értesítés új bejegyzéseknél" - -#: src/Module/Contact.php:635 -msgid "Send a notification of every new post of this contact" -msgstr "Értesítés küldése a partner minden új bejegyzéséről." - -#: src/Module/Contact.php:637 -msgid "Keyword Deny List" -msgstr "Kulcsszavas tiltólista" - -#: src/Module/Contact.php:637 -msgid "" -"Comma separated list of keywords that should not be converted to hashtags, " -"when \"Fetch information and keywords\" is selected" -msgstr "Kulcsszavak vesszővel elválasztott listája, amelyeket nem szabad kettős keresztes címkékké átalakítani, ha az „Információk és kulcsszavak lekérése” ki van jelölve." - -#: src/Module/Contact.php:653 src/Module/Settings/TwoFactor/Index.php:132 -msgid "Actions" -msgstr "Műveletek" - -#: src/Module/Contact.php:655 src/Module/Contact.php:920 -#: src/Module/Settings/TwoFactor/Index.php:112 src/Module/BaseProfile.php:60 -#: src/Content/Nav.php:177 view/theme/frio/theme.php:225 -msgid "Status" -msgstr "Állapot" - -#: src/Module/Contact.php:660 -msgid "Mirror postings from this contact" -msgstr "Beküldés tükrözése ettől a partnertől" - -#: src/Module/Contact.php:662 -msgid "" -"Mark this contact as remote_self, this will cause friendica to repost new " -"entries from this contact." -msgstr "A partner megjelölése távoli önmagaként. Ezt azt fogja okozni, hogy a Friendica újraküldi az ettől a partnertől származó új bejegyzéseket." - -#: src/Module/Contact.php:794 -msgid "Show all contacts" -msgstr "Összes partner megjelenítése" - -#: src/Module/Contact.php:799 src/Module/Contact.php:859 -#: src/Module/Admin/BaseUsers.php:66 -msgid "Pending" -msgstr "Függőben" - -#: src/Module/Contact.php:802 -msgid "Only show pending contacts" -msgstr "Csak a függőben lévő partnerek megjelenítése" - -#: src/Module/Contact.php:807 src/Module/Contact.php:860 -#: src/Module/Admin/BaseUsers.php:74 -msgid "Blocked" -msgstr "Tiltva" - -#: src/Module/Contact.php:810 -msgid "Only show blocked contacts" -msgstr "Csak a tiltott partnerek megjelenítése" - -#: src/Module/Contact.php:815 src/Module/Contact.php:862 -msgid "Ignored" -msgstr "Mellőzve" - -#: src/Module/Contact.php:818 -msgid "Only show ignored contacts" -msgstr "Csak a mellőzött partnerek megjelenítése" - -#: src/Module/Contact.php:823 src/Module/Contact.php:863 -msgid "Archived" -msgstr "Archiválva" - -#: src/Module/Contact.php:826 -msgid "Only show archived contacts" -msgstr "Csak az archivált partnerek megjelenítése" - -#: src/Module/Contact.php:831 src/Module/Contact.php:861 -msgid "Hidden" -msgstr "Rejtett" - -#: src/Module/Contact.php:834 -msgid "Only show hidden contacts" -msgstr "Csak a rejtett partnerek megjelenítése" - -#: src/Module/Contact.php:839 src/Module/Welcome.php:76 -#: src/Model/Group.php:535 src/Content/Widget.php:214 -msgid "Groups" -msgstr "Csoportok" - -#: src/Module/Contact.php:842 -msgid "Organize your contact groups" -msgstr "Partnercsoportok szervezése" - -#: src/Module/Contact.php:853 src/Content/Widget.php:239 -#: src/BaseModule.php:189 -msgid "Following" -msgstr "Követés" - -#: src/Module/Contact.php:854 src/Content/Widget.php:240 -#: src/BaseModule.php:194 -msgid "Mutual friends" -msgstr "Kölcsönösen ismerősök" - -#: src/Module/Contact.php:855 src/Module/Contact.php:943 -#: src/Module/BaseProfile.php:121 src/Module/BaseProfile.php:124 -#: src/Content/Nav.php:225 src/Content/Nav.php:284 -#: src/Content/Text/HTML.php:906 view/theme/frio/theme.php:236 -msgid "Contacts" -msgstr "Partnerek" - -#: src/Module/Contact.php:874 -msgid "Search your contacts" -msgstr "Partnerek keresése" - -#: src/Module/Contact.php:875 src/Module/Search/Index.php:193 -#, php-format -msgid "Results for: %s" -msgstr "Találatok erre: %s" - -#: src/Module/Contact.php:876 src/Module/Directory.php:105 -#: src/Content/Widget.php:78 view/theme/vier/theme.php:174 -msgid "Find" -msgstr "Keresés" - -#: src/Module/Contact.php:882 mod/settings.php:92 mod/settings.php:534 -msgid "Update" -msgstr "Frissítés" - -#: src/Module/Contact.php:885 src/Module/Contact.php:1182 -msgid "Archive" -msgstr "Archiválás" - -#: src/Module/Contact.php:885 src/Module/Contact.php:1182 -msgid "Unarchive" -msgstr "Archiválás megszüntetése" - -#: src/Module/Contact.php:886 src/Module/Contact.php:1190 -#: src/Module/Admin/Users/Active.php:139 src/Module/Admin/Users/Index.php:153 -#: src/Module/Admin/Users/Blocked.php:140 include/conversation.php:565 -#: mod/photos.php:1471 mod/settings.php:569 mod/settings.php:711 -msgid "Delete" -msgstr "Törlés" - -#: src/Module/Contact.php:888 -msgid "Batch Actions" -msgstr "Tömeges műveletek" - -#: src/Module/Contact.php:923 -msgid "Conversations started by this contact" -msgstr "A partner által elkezdett beszélgetések" - -#: src/Module/Contact.php:928 -msgid "Posts and Comments" -msgstr "Bejegyzések és hozzászólások" - -#: src/Module/Contact.php:931 src/Module/BaseProfile.php:63 mod/follow.php:171 -#: mod/unfollow.php:113 -msgid "Status Messages and Posts" -msgstr "Állapotüzenetek és bejegyzések" - -#: src/Module/Contact.php:939 src/Module/BaseProfile.php:55 -msgid "Profile Details" -msgstr "Profil részletei" - -#: src/Module/Contact.php:946 -msgid "View all known contacts" -msgstr "Összes ismert partner megtekintése" - -#: src/Module/Contact.php:956 -msgid "Advanced Contact Settings" -msgstr "Speciális partnerbeállítások" - -#: src/Module/Contact.php:1063 -msgid "Mutual Friendship" -msgstr "Kölcsönös ismeretség" - -#: src/Module/Contact.php:1067 -msgid "is a fan of yours" -msgstr "az Ön rajongója" - -#: src/Module/Contact.php:1071 -msgid "you are a fan of" -msgstr "Ön rajong érte:" - -#: src/Module/Contact.php:1089 -msgid "Pending outgoing contact request" -msgstr "Függőben lévő kimenő partnerkérés" - -#: src/Module/Contact.php:1091 -msgid "Pending incoming contact request" -msgstr "Függőben lévő bejövő partnerkérés" - -#: src/Module/Contact.php:1096 src/Module/Item/Compose.php:142 -#: src/Object/Post.php:946 mod/photos.php:1377 mod/photos.php:1434 -#: mod/photos.php:1509 -msgid "This is you" -msgstr "Ez Ön" - -#: src/Module/Contact.php:1156 -msgid "Refetch contact data" -msgstr "Partneradatok ismételt lekérése" - -#: src/Module/Contact.php:1167 -msgid "Toggle Blocked status" -msgstr "Tiltott állapot átváltása" - -#: src/Module/Contact.php:1175 -msgid "Toggle Ignored status" -msgstr "Mellőzött állapot átváltása" - -#: src/Module/Contact.php:1184 -msgid "Toggle Archive status" -msgstr "Archiválási állapot átváltása" - -#: src/Module/Contact.php:1192 -msgid "Delete contact" -msgstr "Partner törlése" - -#: src/Module/Debug/Feed.php:63 -msgid "Source URL" -msgstr "Forrás URL" - -#: src/Module/Debug/ItemBody.php:47 src/Module/Debug/ItemBody.php:60 -#: src/Module/Admin/Themes/Details.php:39 src/Module/Admin/Themes/Index.php:59 -#: mod/item.php:884 -msgid "Item not found." -msgstr "Az elem nem található." - -#: src/Module/Debug/Babel.php:51 -msgid "Source input" -msgstr "Forrás bevitele" - -#: src/Module/Debug/Babel.php:57 -msgid "BBCode::toPlaintext" -msgstr "BBCode::toPlaintext" - -#: src/Module/Debug/Babel.php:63 -msgid "BBCode::convert (raw HTML)" -msgstr "BBCode::convert (nyers HTML)" - -#: src/Module/Debug/Babel.php:68 -msgid "BBCode::convert (hex)" -msgstr "BBCode::convert (hexa)" - -#: src/Module/Debug/Babel.php:73 -msgid "BBCode::convert" -msgstr "BBCode::convert" - -#: src/Module/Debug/Babel.php:79 -msgid "BBCode::convert => HTML::toBBCode" -msgstr "BBCode::convert => HTML::toBBCode" - -#: src/Module/Debug/Babel.php:85 -msgid "BBCode::toMarkdown" -msgstr "BBCode::toMarkdown" - -#: src/Module/Debug/Babel.php:91 -msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" -msgstr "BBCode::toMarkdown => Markdown::convert (nyers HTML)" - -#: src/Module/Debug/Babel.php:95 -msgid "BBCode::toMarkdown => Markdown::convert" -msgstr "BBCode::toMarkdown => Markdown::convert" - -#: src/Module/Debug/Babel.php:101 -msgid "BBCode::toMarkdown => Markdown::toBBCode" -msgstr "BBCode::toMarkdown => Markdown::toBBCode" - -#: src/Module/Debug/Babel.php:107 -msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" -msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" - -#: src/Module/Debug/Babel.php:115 -msgid "Item Body" -msgstr "Elem törzse" - -#: src/Module/Debug/Babel.php:119 -msgid "Item Tags" -msgstr "Elem címkéi" - -#: src/Module/Debug/Babel.php:125 -msgid "PageInfo::appendToBody" -msgstr "PageInfo::appendToBody" - -#: src/Module/Debug/Babel.php:130 -msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" -msgstr "PageInfo::appendToBody => BBCode::convert (nyers HTML)" - -#: src/Module/Debug/Babel.php:134 -msgid "PageInfo::appendToBody => BBCode::convert" -msgstr "PageInfo::appendToBody => BBCode::convert" - -#: src/Module/Debug/Babel.php:141 -msgid "Source input (Diaspora format)" -msgstr "Forrás bevitele (Diaspora formátum)" - -#: src/Module/Debug/Babel.php:150 -msgid "Source input (Markdown)" -msgstr "Forrás bevitele (Markdown)" - -#: src/Module/Debug/Babel.php:156 -msgid "Markdown::convert (raw HTML)" -msgstr "Markdown::convert (nyers HTML)" - -#: src/Module/Debug/Babel.php:161 -msgid "Markdown::convert" -msgstr "Markdown::convert" - -#: src/Module/Debug/Babel.php:167 -msgid "Markdown::toBBCode" -msgstr "Markdown::toBBCode" - -#: src/Module/Debug/Babel.php:174 -msgid "Raw HTML input" -msgstr "Nyers HTML bevitel" - -#: src/Module/Debug/Babel.php:179 -msgid "HTML Input" -msgstr "HTML bevitel" - -#: src/Module/Debug/Babel.php:186 -msgid "HTML Purified (raw)" -msgstr "HTML megtisztítva (nyers)" - -#: src/Module/Debug/Babel.php:191 -msgid "HTML Purified (hex)" -msgstr "HTML megtisztítva (hexa)" - -#: src/Module/Debug/Babel.php:196 -msgid "HTML Purified" -msgstr "HTML megtisztítva" - -#: src/Module/Debug/Babel.php:202 -msgid "HTML::toBBCode" -msgstr "HTML::toBBCode" - -#: src/Module/Debug/Babel.php:208 -msgid "HTML::toBBCode => BBCode::convert" -msgstr "HTML::toBBCode => BBCode::convert" - -#: src/Module/Debug/Babel.php:213 -msgid "HTML::toBBCode => BBCode::convert (raw HTML)" -msgstr "HTML::toBBCode => BBCode::convert (nyers HTML)" - -#: src/Module/Debug/Babel.php:219 -msgid "HTML::toBBCode => BBCode::toPlaintext" -msgstr "HTML::toBBCode => BBCode::toPlaintext" - -#: src/Module/Debug/Babel.php:225 -msgid "HTML::toMarkdown" -msgstr "HTML::toMarkdown" - -#: src/Module/Debug/Babel.php:231 -msgid "HTML::toPlaintext" -msgstr "HTML::toPlaintext" - -#: src/Module/Debug/Babel.php:237 -msgid "HTML::toPlaintext (compact)" -msgstr "HTML::toPlaintext (tömör)" - -#: src/Module/Debug/Babel.php:255 -msgid "Decoded post" -msgstr "Dekódolt bejegyzés" - -#: src/Module/Debug/Babel.php:276 -msgid "Post array before expand entities" -msgstr "A bejegyzéstömb az entitások kiterjesztése előtt" - -#: src/Module/Debug/Babel.php:283 -msgid "Post converted" -msgstr "Bejegyzés átalakítva" - -#: src/Module/Debug/Babel.php:288 -msgid "Converted body" -msgstr "Átalakított törzs" - -#: src/Module/Debug/Babel.php:293 -#: src/Module/Debug/ActivityPubConversion.php:130 -#: src/Module/Security/TwoFactor/Verify.php:96 mod/repair_ostatus.php:50 -msgid "Error" -msgid_plural "Errors" -msgstr[0] "Hiba" -msgstr[1] "Hibák" - -#: src/Module/Debug/Babel.php:294 -msgid "Twitter addon is absent from the addon/ folder." -msgstr "A Twitter bővítmény hiányzik az „addon/” mappából." - -#: src/Module/Debug/Babel.php:304 -msgid "Babel Diagnostic" -msgstr "Babel diagnosztika" - -#: src/Module/Debug/Babel.php:305 -msgid "Source text" -msgstr "Forrásszöveg" - -#: src/Module/Debug/Babel.php:306 -msgid "BBCode" -msgstr "BBCode" - -#: src/Module/Debug/Babel.php:307 src/Content/ContactSelector.php:127 -msgid "Diaspora" -msgstr "Diaspora" - -#: src/Module/Debug/Babel.php:308 -msgid "Markdown" -msgstr "Markdown" - -#: src/Module/Debug/Babel.php:309 -msgid "HTML" -msgstr "HTML" - -#: src/Module/Debug/Babel.php:311 -msgid "Twitter Source / Tweet URL (requires API key)" -msgstr "Twitter forrás vagy Tweet URL (API-kulcsot igényel)" - -#: src/Module/Debug/WebFinger.php:37 src/Module/Debug/Probe.php:38 -msgid "Only logged in users are permitted to perform a probing." -msgstr "Csak bejelentkezett felhasználóknak engedélyezett a szondázás végrehajtása." - -#: src/Module/Debug/WebFinger.php:38 src/Module/Debug/Probe.php:39 -#: src/Module/Conversation/Community.php:188 src/Module/Search/Index.php:51 -#: src/Module/Search/Index.php:56 src/Module/Directory.php:49 -#: mod/photos.php:836 mod/display.php:179 mod/dfrn_request.php:600 -#: mod/videos.php:129 -msgid "Public access denied." -msgstr "Nyilvános hozzáférés megtagadva." - -#: src/Module/Debug/WebFinger.php:52 -msgid "Webfinger Diagnostic" -msgstr "WebFinger diagnosztika" - -#: src/Module/Debug/WebFinger.php:54 -msgid "Lookup address:" -msgstr "Keresési cím:" - -#: src/Module/Debug/Localtime.php:36 src/Model/Event.php:50 -#: src/Model/Event.php:871 -msgid "l F d, Y \\@ g:i A" -msgstr "Y. F j., l, H:i" - -#: src/Module/Debug/Localtime.php:49 -msgid "Time Conversion" -msgstr "Időátalakítás" - -#: src/Module/Debug/Localtime.php:50 -msgid "" -"Friendica provides this service for sharing events with other networks and " -"friends in unknown timezones." -msgstr "A Friendica ezt a szolgáltatást az ismeretlen időzónákban lévő más hálózatokkal és ismerősökkel történő események megosztásához biztosítja." - -#: src/Module/Debug/Localtime.php:51 -#, php-format -msgid "UTC time: %s" -msgstr "UTC idő: %s" - -#: src/Module/Debug/Localtime.php:54 -#, php-format -msgid "Current timezone: %s" -msgstr "Jelenlegi időzóna: %s" - -#: src/Module/Debug/Localtime.php:58 -#, php-format -msgid "Converted localtime: %s" -msgstr "Átalakított helyi idő: %s" - -#: src/Module/Debug/Localtime.php:62 -msgid "Please select your timezone:" -msgstr "Válassza ki az időzónáját:" - -#: src/Module/Debug/ActivityPubConversion.php:58 -msgid "Formatted" -msgstr "Formázott" - -#: src/Module/Debug/ActivityPubConversion.php:62 -#: src/Module/Admin/Item/Source.php:73 -msgid "Source" -msgstr "Forrás" - -#: src/Module/Debug/ActivityPubConversion.php:70 -msgid "Activity" -msgstr "Tevékenység" - -#: src/Module/Debug/ActivityPubConversion.php:118 -msgid "Object data" -msgstr "Objektum adatai" - -#: src/Module/Debug/ActivityPubConversion.php:125 -msgid "Result Item" -msgstr "Eredményelem" - -#: src/Module/Debug/ActivityPubConversion.php:139 -msgid "Source activity" -msgstr "Forrástevékenység" - -#: src/Module/Debug/Probe.php:53 -msgid "Probe Diagnostic" -msgstr "Szondázási diagnosztika" - -#: src/Module/Debug/Probe.php:54 -msgid "Output" -msgstr "Kimenet" - -#: src/Module/Debug/Probe.php:57 -msgid "Lookup address" -msgstr "Keresési cím" - -#: src/Module/Item/Compose.php:46 -msgid "Please enter a post body." -msgstr "Adjon meg egy bejegyzéstörzset." - -#: src/Module/Item/Compose.php:59 -msgid "This feature is only available with the frio theme." -msgstr "Ez a funkció csak a frio témával érhető el." - -#: src/Module/Item/Compose.php:86 -msgid "Compose new personal note" -msgstr "Új személyes jegyzet írása" - -#: src/Module/Item/Compose.php:95 -msgid "Compose new post" -msgstr "Új bejegyzés írása" - -#: src/Module/Item/Compose.php:135 -msgid "Visibility" -msgstr "Láthatóság" - -#: src/Module/Item/Compose.php:145 src/Object/Post.php:951 -#: include/conversation.php:1206 -msgid "Bold" -msgstr "Félkövér" - -#: src/Module/Item/Compose.php:146 src/Object/Post.php:952 -#: include/conversation.php:1207 -msgid "Italic" -msgstr "Dőlt" - -#: src/Module/Item/Compose.php:147 src/Object/Post.php:953 -#: include/conversation.php:1208 -msgid "Underline" -msgstr "Aláhúzott" - -#: src/Module/Item/Compose.php:148 src/Object/Post.php:954 -#: include/conversation.php:1209 -msgid "Quote" -msgstr "Idézet" - -#: src/Module/Item/Compose.php:149 src/Object/Post.php:955 -#: include/conversation.php:1210 -msgid "Code" -msgstr "Kód" - -#: src/Module/Item/Compose.php:150 src/Object/Post.php:956 -#: include/conversation.php:1211 -msgid "Image" -msgstr "Kép" - -#: src/Module/Item/Compose.php:151 src/Object/Post.php:957 -#: include/conversation.php:1212 -msgid "Link" -msgstr "Hivatkozás" - -#: src/Module/Item/Compose.php:152 src/Object/Post.php:958 -#: include/conversation.php:1213 -msgid "Link or Media" -msgstr "Hivatkozás vagy média" - -#: src/Module/Item/Compose.php:153 src/Object/Post.php:959 -#: include/conversation.php:1183 -msgid "Please enter a image/video/audio/webpage URL:" -msgstr "Írjon be egy kép, videó, hang vagy weboldal URL-t:" - -#: src/Module/Item/Compose.php:154 src/Object/Post.php:960 -#: include/conversation.php:1237 mod/photos.php:1381 mod/photos.php:1438 -#: mod/photos.php:1513 mod/editpost.php:125 mod/events.php:573 -msgid "Preview" -msgstr "Előnézet" - -#: src/Module/Item/Compose.php:155 include/conversation.php:1214 -#: mod/editpost.php:100 -msgid "Set your location" -msgstr "Az Ön helyének beállítása" - -#: src/Module/Item/Compose.php:156 -msgid "Clear the location" -msgstr "A hely törlése" - -#: src/Module/Item/Compose.php:157 -msgid "Location services are unavailable on your device" -msgstr "A helymeghatározó szolgáltatások nem érhetők el az Ön eszközén" - -#: src/Module/Item/Compose.php:158 -msgid "" -"Location services are disabled. Please check the website's permissions on " -"your device" -msgstr "A helymeghatározó szolgáltatások le vannak tiltva. Ellenőrizze a weboldal jogosultságait az Ön eszközén" - -#: src/Module/Item/Compose.php:159 src/Object/Post.php:492 -#: include/conversation.php:638 include/conversation.php:1222 -#: mod/photos.php:1536 mod/editpost.php:104 mod/wallmessage.php:155 -#: mod/message.php:204 mod/message.php:374 -msgid "Please wait" -msgstr "Kis türelmet" - -#: src/Module/Item/Compose.php:160 include/conversation.php:1219 -#: mod/editpost.php:117 -msgid "Set title" -msgstr "Cím beállítása" - -#: src/Module/Item/Compose.php:161 include/conversation.php:1221 -#: mod/editpost.php:119 -msgid "Categories (comma-separated list)" -msgstr "Kategóriák (vesszővel elválasztott lista)" - -#: src/Module/Item/Follow.php:52 -msgid "Unable to follow this item." -msgstr "Nem lehet követni ezt az elemet." - -#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 -msgid "System down for maintenance" -msgstr "A rendszer le van kapcsolva a karbantartáshoz" - -#: src/Module/Maintenance.php:54 -msgid "" -"This Friendica node is currently in maintenance mode, either automatically " -"because it is self-updating or manually by the node administrator. This " -"condition should be temporary, please come back in a few minutes." -msgstr "Ez a Friendica csomópont jelenleg karbantartási módban van, vagy automatikusan, mert épp önmagát frissíti, vagy kézileg a csomópont adminisztrátora által. Ennek az állapotnak átmenetinek kell lennie, jöjjön vissza néhány perc múlva." - -#: src/Module/Delegation.php:147 -msgid "Switch between your accounts" -msgstr "Váltás a fiókjai között" - -#: src/Module/Delegation.php:148 -msgid "Manage your accounts" -msgstr "Fiókok kezelése" - -#: src/Module/Delegation.php:149 -msgid "" -"Toggle between different identities or community/group pages which share " -"your account details or which you have been granted \"manage\" permissions" -msgstr "Váltás a különböző személyazonosságok vagy közösségi és csoportoldalak között, amelyek megosztják a fiókja részleteit, vagy amelyeket „kezelés” jogosultságokkal ruházott fel" - -#: src/Module/Delegation.php:150 -msgid "Select an identity to manage: " -msgstr "A kezelendő személyazonosság kiválasztása: " - -#: src/Module/Bookmarklet.php:46 src/Module/Security/Login.php:142 -#: src/Content/Nav.php:171 -msgid "Login" -msgstr "Bejelentkezés" - -#: src/Module/Bookmarklet.php:56 -msgid "This page is missing a url parameter." -msgstr "Erről az oldalról hiányzik egy URL paraméter." - -#: src/Module/Bookmarklet.php:78 -msgid "The post was created" -msgstr "A bejegyzés létrejött" - -#: src/Module/Conversation/Community.php:69 -msgid "Local Community" -msgstr "Helyi közösség" - -#: src/Module/Conversation/Community.php:72 -msgid "Posts from local users on this server" -msgstr "Bejegyzések a kiszolgálón lévő helyi felhasználóktól" - -#: src/Module/Conversation/Community.php:80 -msgid "Global Community" -msgstr "Globális közösség" - -#: src/Module/Conversation/Community.php:83 -msgid "Posts from users of the whole federated network" -msgstr "Bejegyzések a teljes föderált hálózat felhasználóitól" - -#: src/Module/Conversation/Community.php:116 -msgid "Own Contacts" -msgstr "Saját partnerek" - -#: src/Module/Conversation/Community.php:120 -msgid "Include" -msgstr "Tartalmazás" - -#: src/Module/Conversation/Community.php:121 -msgid "Hide" -msgstr "Elrejtés" - -#: src/Module/Conversation/Community.php:149 src/Module/Search/Index.php:140 -#: src/Module/Search/Index.php:180 -msgid "No results." -msgstr "Nincs találat." - -#: src/Module/Conversation/Community.php:174 -msgid "" -"This community stream shows all public posts received by this node. They may" -" not reflect the opinions of this node’s users." -msgstr "Ez a közösségi folyam megjeleníti az összes nyilvános bejegyzést, amelyet ez a csomópont megkapott. Előfordulhat, hogy azok nem tükrözik ezen csomópont felhasználóinak véleményét." - -#: src/Module/Conversation/Community.php:212 -msgid "Community option not available." -msgstr "A közösségi beállítás nem érhető el." - -#: src/Module/Conversation/Community.php:228 -msgid "Not available." -msgstr "Nem érhető el." - -#: src/Module/Conversation/Network.php:161 -msgid "No such group" -msgstr "Nincs ilyen csoport" - -#: src/Module/Conversation/Network.php:165 -#, php-format -msgid "Group: %s" -msgstr "Csoport: %s" - -#: src/Module/Conversation/Network.php:241 -msgid "Latest Activity" -msgstr "Legutóbbi tevékenység" - -#: src/Module/Conversation/Network.php:244 -msgid "Sort by latest activity" -msgstr "Rendezés a legutóbbi tevékenység szerint" - -#: src/Module/Conversation/Network.php:249 -msgid "Latest Posts" -msgstr "Legutóbbi bejegyzések" - -#: src/Module/Conversation/Network.php:252 -msgid "Sort by post received date" -msgstr "Rendezés a bejegyzés érkezési dátuma szerint" - -#: src/Module/Conversation/Network.php:257 -#: src/Module/Settings/Profile/Index.php:242 -msgid "Personal" -msgstr "Személyes" - -#: src/Module/Conversation/Network.php:260 -msgid "Posts that mention or involve you" -msgstr "Bejegyzések, amelyek említik vagy tartalmazzák Önt" - -#: src/Module/Conversation/Network.php:265 -msgid "Starred" -msgstr "Csillagozott" - -#: src/Module/Conversation/Network.php:268 -msgid "Favourite Posts" -msgstr "Kedvenc bejegyzések" - -#: src/Module/Install.php:188 -msgid "Friendica Communications Server - Setup" -msgstr "Friendica kommunikációs kiszolgáló – Beállítás" - -#: src/Module/Install.php:199 -msgid "System check" -msgstr "Rendszerellenőrzés" - -#: src/Module/Install.php:201 src/Module/Install.php:258 -#: src/Module/Install.php:341 -msgid "Requirement not satisfied" -msgstr "A követelmény nincs kielégítve" - -#: src/Module/Install.php:202 -msgid "Optional requirement not satisfied" -msgstr "A választható követelmény nincs kielégítve" - -#: src/Module/Install.php:203 -msgid "OK" -msgstr "Rendben" - -#: src/Module/Install.php:207 mod/cal.php:277 mod/events.php:421 -msgid "Next" -msgstr "Következő" - -#: src/Module/Install.php:208 -msgid "Check again" -msgstr "Ellenőrzés újra" - -#: src/Module/Install.php:215 src/Module/Admin/Site.php:522 -msgid "No SSL policy, links will track page SSL state" -msgstr "Nincs SSL irányelv, a hivatkozások követik az oldal SSL állapotát" - -#: src/Module/Install.php:216 src/Module/Admin/Site.php:523 -msgid "Force all links to use SSL" -msgstr "Az összes hivatkozás kényszerítése SSL használatára" - -#: src/Module/Install.php:217 src/Module/Admin/Site.php:524 -msgid "Self-signed certificate, use SSL for local links only (discouraged)" -msgstr "Önaláírt tanúsítvány, SSL használata csak helyi hivatkozásoknál (nem ajánlott)" - -#: src/Module/Install.php:223 -msgid "Base settings" -msgstr "Alapvető beállítások" - -#: src/Module/Install.php:225 src/Module/Admin/Site.php:608 -msgid "SSL link policy" -msgstr "SSL-hivatkozás irányelve" - -#: src/Module/Install.php:227 src/Module/Admin/Site.php:608 -msgid "Determines whether generated links should be forced to use SSL" -msgstr "Meghatározza, hogy az előállított hivatkozásokat kényszeríteni kell-e SSL használatára." - -#: src/Module/Install.php:230 -msgid "Host name" -msgstr "Gépnév" - -#: src/Module/Install.php:232 -msgid "" -"Overwrite this field in case the determinated hostname isn't right, " -"otherweise leave it as is." -msgstr "Írja felül ezt a mezőt abban az esetben, ha a felismert gépnév nem helyes, egyébként hagyja úgy, ahogy van." - -#: src/Module/Install.php:235 -msgid "Base path to installation" -msgstr "Alap útvonal a telepítéshez" - -#: src/Module/Install.php:237 -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 "Ha a rendszer nem tudja felismerni a helyes útvonalat a telepítéshez, akkor itt adja meg a helyes útvonalat. Ezt a beállítást csak akkor kell megadni, ha korlátozott rendszert és a webgyökérre mutató szimbolikus hivatkozásokat használ." - -#: src/Module/Install.php:240 -msgid "Sub path of the URL" -msgstr "Az URL alútvonala" - -#: src/Module/Install.php:242 -msgid "" -"Overwrite this field in case the sub path determination isn't right, " -"otherwise leave it as is. Leaving this field blank means the installation is" -" at the base URL without sub path." -msgstr "Írja felül ezt a mezőt abban az esetben, ha az alútvonal felismerése nem helyes, egyébként hagyja úgy, ahogy van. A mező üresen hagyása azt jelenti, hogy a telepítés az alap útvonalon van alútvonal nélkül." - -#: src/Module/Install.php:253 -msgid "Database connection" -msgstr "Adatbázis-kapcsolat" - -#: src/Module/Install.php:254 -msgid "" -"In order to install Friendica we need to know how to connect to your " -"database." -msgstr "A Friendica telepítése érdekében tudnunk kell, hogy hogyan kell kapcsolódni az adatbázisához." - -#: src/Module/Install.php:255 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Vegye fel a kapcsolatot a tárhelyszolgáltatóval vagy az oldal adminisztrátorával, ha kérdései vannak ezekkel a beállításokkal kapcsolatban." - -#: src/Module/Install.php:256 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "A lent megadott adatbázisnak már léteznie kell. Ha még nem létezik, akkor hozza létre a folytatás előtt." - -#: src/Module/Install.php:265 -msgid "Database Server Name" -msgstr "Adatbázis-kiszolgáló neve" - -#: src/Module/Install.php:270 -msgid "Database Login Name" -msgstr "Adatbázis bejelentkezési neve" - -#: src/Module/Install.php:276 -msgid "Database Login Password" -msgstr "Adatbázis bejelentkezési jelszava" - -#: src/Module/Install.php:278 -msgid "For security reasons the password must not be empty" -msgstr "Biztonsági okokból a jelszó nem lehet üres" - -#: src/Module/Install.php:281 -msgid "Database Name" -msgstr "Adatbázis neve" - -#: src/Module/Install.php:285 src/Module/Install.php:315 -msgid "Please select a default timezone for your website" -msgstr "Válasszon egy alapértelmezett időzónát a weboldalához" - -#: src/Module/Install.php:300 -msgid "Site settings" -msgstr "Oldalbeállítások" - -#: src/Module/Install.php:310 -msgid "Site administrator email address" -msgstr "Oldal adminisztrátorának e-mail-címe" - -#: src/Module/Install.php:312 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "A fiókja e-mail-címének egyeznie kell ezzel a webes adminisztrátori panel használata érdekében." - -#: src/Module/Install.php:319 -msgid "System Language:" -msgstr "Rendszer nyelve:" - -#: src/Module/Install.php:321 -msgid "" -"Set the default language for your Friendica installation interface and to " -"send emails." -msgstr "Az alapértelmezett nyelv beállítása a Friendica telepítésnek felületéhez és az e-mailek küldéséhez." - -#: src/Module/Install.php:333 -msgid "Your Friendica site database has been installed." -msgstr "A Friendica oldalának adatbázisa telepítve lett." - -#: src/Module/Install.php:343 -msgid "Installation finished" -msgstr "A telepítés befejeződött" - -#: src/Module/Install.php:363 -msgid "

What next

" -msgstr "

Mi következik?

" - -#: src/Module/Install.php:364 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"worker." -msgstr "FONTOS: be kell állítania [kézzel] egy ütemezett feladatot a feldolgozóhoz." - -#: src/Module/Install.php:367 -#, php-format -msgid "" -"Go to your new Friendica node registration page " -"and register as new user. Remember to use the same email you have entered as" -" administrator email. This will allow you to enter the site admin panel." -msgstr "Menjen az új Friendica csomópont regisztrációs oldalára, és regisztráljon új felhasználóként. Ne felejtse el ugyanazt az e-mail-címet használni, mint amelyet adminisztrátori e-mail-címként adott meg. Ez lehetővé fogja tenni az oldal adminisztrátori paneljére történő belépést." - -#: src/Module/HoverCard.php:47 -msgid "No profile" -msgstr "Nincs profil" - -#: src/Module/Credits.php:44 -msgid "Credits" -msgstr "Köszönetnyilvánítás" - -#: src/Module/Credits.php:45 -msgid "" -"Friendica is a community project, that would not be possible without the " -"help of many people. Here is a list of those who have contributed to the " -"code or the translation of Friendica. Thank you all!" -msgstr "A Friendica egy közösségi projekt, amely nem lehetne lehetséges a sok ember segítsége nélkül. Itt van azok listája, akik közreműködtek a kódban vagy a Friendica fordításában. Köszönet mindannyiuknak!" - -#: src/Module/Search/Saved.php:45 -msgid "Search term was not saved." -msgstr "A keresési kifejezés nem lett elmentve." - -#: src/Module/Search/Saved.php:48 -msgid "Search term already saved." -msgstr "A keresési kifejezés már el van mentve." - -#: src/Module/Search/Saved.php:54 -msgid "Search term was not removed." -msgstr "A keresési kifejezés nem lett eltávolítva." - -#: src/Module/Search/Index.php:55 -msgid "Only logged in users are permitted to perform a search." -msgstr "Csak bejelentkezett felhasználóknak engedélyezett a keresés végrehajtása." - -#: src/Module/Search/Index.php:77 -msgid "Only one search per minute is permitted for not logged in users." -msgstr "Percenként csak egy keresés engedélyezett a nem bejelentkezett felhasználóknak." - -#: src/Module/Search/Index.php:100 src/Content/Nav.php:220 -#: src/Content/Text/HTML.php:895 -msgid "Search" -msgstr "Keresés" - -#: src/Module/Search/Index.php:191 -#, php-format -msgid "Items tagged with: %s" -msgstr "Ezzel címkézett elemek: %s" - -#: src/Module/RemoteFollow.php:54 mod/dfrn_request.php:243 -msgid "Profile unavailable." -msgstr "A profil nem érhető el." - -#: src/Module/RemoteFollow.php:60 mod/dfrn_request.php:290 -msgid "Invalid locator" -msgstr "Érvénytelen kereső" - -#: src/Module/RemoteFollow.php:67 -msgid "The provided profile link doesn't seem to be valid" -msgstr "A megadott profilhivatkozás nem tűnik érvényesnek" - -#: src/Module/RemoteFollow.php:72 mod/dfrn_request.php:480 -msgid "" -"Remote subscription can't be done for your network. Please subscribe " -"directly on your system." -msgstr "A távoli feliratkozást nem lehet elvégezni az Ön hálózatánál. Iratkozzon fel közvetlenül a saját rendszerén." - -#: src/Module/RemoteFollow.php:104 mod/dfrn_request.php:636 -msgid "Friend/Connection Request" -msgstr "Ismerős- vagy kapcsolódási kérés" - -#: src/Module/RemoteFollow.php:105 -#, php-format -msgid "" -"Enter your Webfinger address (user@domain.tld) or profile URL here. If this " -"isn't supported by your system, you have to subscribe to %s" -" or %s directly on your system." -msgstr "Adja meg itt a WebFinger-címét (felhasználó@tartomány.tld) vagy a profil URL-jét. Ha ezt nem támogatja a rendszere, akkor fel kell iratkoznia a(z) %s vagy a(z) %s címre közvetlenül a rendszerén." - -#: src/Module/RemoteFollow.php:106 mod/dfrn_request.php:638 -#, php-format -msgid "" -"If you are not yet a member of the free social web, follow " -"this link to find a public Friendica node and join us today." -msgstr "Ha még nem tagja a szabad közösségi hálónak, akkor kövesse ezt a hivatkozást egy nyilvános Friendica csomópont kereséséhez, és csatlakozzon hozzánk még ma." - -#: src/Module/RemoteFollow.php:107 mod/dfrn_request.php:639 -msgid "Your Webfinger address or profile URL:" -msgstr "A WebFinger-címe vagy profil URL-je:" - -#: src/Module/RemoteFollow.php:108 mod/follow.php:147 mod/dfrn_request.php:640 -msgid "Please answer the following:" -msgstr "Válaszoljon a következőre:" - -#: src/Module/RemoteFollow.php:109 mod/follow.php:74 mod/dfrn_request.php:641 -#: mod/unfollow.php:99 -msgid "Submit Request" -msgstr "Kérés elküldése" - -#: src/Module/Invite.php:55 -msgid "Total invitation limit exceeded." -msgstr "Az összes meghívás korlátja túllépve." - -#: src/Module/Invite.php:78 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: nem érvényes e-mail-cím." - -#: src/Module/Invite.php:105 -msgid "Please join us on Friendica" -msgstr "Csatlakozzon hozzánk a Friendica hálózatán" - -#: src/Module/Invite.php:114 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "A meghíváskorlát túllépve. Vegye fel a kapcsolatot az oldal adminisztrátorával." - -#: src/Module/Invite.php:118 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: az üzenetkézbesítés sikertelen." - -#: src/Module/Invite.php:122 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d üzenet elküldve." -msgstr[1] "%d üzenet elküldve." - -#: src/Module/Invite.php:140 -msgid "You have no more invitations available" -msgstr "Nincs több elérhető meghívása" - -#: src/Module/Invite.php:147 -#, php-format -msgid "" -"Visit %s for a list of public sites that you can join. Friendica members on " -"other sites can all connect with each other, as well as with members of many" -" other social networks." -msgstr "Látogassa meg a %s oldalt azon nyilvános oldalak listájáért, amelyekhez csatlakozhat. A egyéb oldalakon lévő Friendica-tagok mindegyike tud egymással kapcsolódni, valamint számos más közösségi hálózat tagjaival is." - -#: src/Module/Invite.php:149 -#, php-format -msgid "" -"To accept this invitation, please visit and register at %s or any other " -"public Friendica website." -msgstr "A meghívás elfogadásához látogasson el és regisztráljon a(z) %s címen vagy bármely más nyilvános Friendica weboldalon." - -#: src/Module/Invite.php:150 -#, php-format -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks. See %s for a list of alternate Friendica " -"sites you can join." -msgstr "A Friendica oldalak mindegyike össze van kapcsolva, hogy egy hatalmas, fokozott magánszféra-védelemmel ellátott közösségi hálót hozzanak létre, amelyet a tagjai birtokolnak és vezérelnek. A tagok képesek sok hagyományos közösségi hálózathoz is kapcsolódni. Nézze meg a(z) %s oldalt azon alternatív Friendica oldalak listájáért, amelyekhez csatlakozhat." - -#: src/Module/Invite.php:154 -msgid "" -"Our apologies. This system is not currently configured to connect with other" -" public sites or invite members." -msgstr "Elnézést kérünk. Ez a rendszer jelenleg nem úgy van beállítva, hogy más nyilvános oldalakhoz kapcsolódjon vagy tagokat hívjon meg." - -#: src/Module/Invite.php:157 -msgid "" -"Friendica sites all inter-connect to create a huge privacy-enhanced social " -"web that is owned and controlled by its members. They can also connect with " -"many traditional social networks." -msgstr "A Friendica oldalak mindegyike össze van kapcsolva, hogy egy hatalmas, fokozott magánszféra-védelemmel ellátott közösségi hálót hozzanak létre, amelyet a tagjai birtokolnak és vezérelnek. A tagok képesek sok hagyományos közösségi hálózathoz is kapcsolódni." - -#: src/Module/Invite.php:156 -#, php-format -msgid "To accept this invitation, please visit and register at %s." -msgstr "A meghívás elfogadásához látogasson el és regisztráljon a(z) %s címen." - -#: src/Module/Invite.php:164 -msgid "Send invitations" -msgstr "Meghívások küldése" - -#: src/Module/Invite.php:165 -msgid "Enter email addresses, one per line:" -msgstr "Adja meg az e-mail-címeket, soronként egyet:" - -#: src/Module/Invite.php:168 mod/wallmessage.php:151 mod/message.php:199 -#: mod/message.php:367 -msgid "Your message:" -msgstr "Az üzenete:" - -#: src/Module/Invite.php:169 -msgid "" -"You are cordially invited to join me and other close friends on Friendica - " -"and help us to create a better social web." -msgstr "Szeretettel meghívom Önt, hogy csatlakozzon hozzám és más közeli ismerősökhöz a Friendica hálózatán – és segítsen nekünk egy jobb közösségi hálót létrehozni." - -#: src/Module/Invite.php:171 -msgid "You will need to supply this invitation code: $invite_code" -msgstr "Meg kell majd adnia ezt a meghívási kódot: $invite_code" - -#: src/Module/Invite.php:171 -msgid "" -"Once you have registered, please connect with me via my profile page at:" -msgstr "Miután regisztrált, lépjen velem kapcsolatba a profiloldalamon keresztül itt:" - -#: src/Module/Invite.php:173 -msgid "" -"For more information about the Friendica project and why we feel it is " -"important, please visit http://friendi.ca" -msgstr "A Friendica projekttel kapcsolatos további információkért, valamint hogy miért tartjuk ezt fontosnak, látogasson el a https://friendi.ca/ oldalra." - -#: src/Module/Directory.php:77 -msgid "No entries (some entries may be hidden)." -msgstr "Nincsenek bejegyzések (néhány bejegyzés rejtve lehet)." - -#: src/Module/Directory.php:97 src/Content/Widget.php:83 -#: view/theme/vier/theme.php:179 -msgid "Global Directory" -msgstr "Globális könyvtár" - -#: src/Module/Directory.php:99 -msgid "Find on this site" -msgstr "Keresés ezen az oldalon" - -#: src/Module/Directory.php:101 -msgid "Results for:" -msgstr "Találat erre:" - -#: src/Module/Directory.php:103 -msgid "Site Directory" -msgstr "Oldal könyvtára" - -#: src/Module/Directory.php:166 src/Module/Settings/Profile/Index.php:240 -#: src/Model/Contact.php:912 src/Model/Contact.php:978 -#: src/Model/Contact.php:987 include/conversation.php:950 -#: include/conversation.php:972 -msgid "View Profile" -msgstr "Profil megtekintése" - -#: src/Module/Tos.php:46 src/Module/Tos.php:88 -msgid "" -"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." -msgstr "A regisztrációkor, valamint a felhasználói fiók és a partnerei között történő kommunikáció biztosításához a felhasználónak biztosítania kell egy megjelenített nevet (álnevet), egy felhasználónevet (becenevet) és egy működő e-mail-címet. A nevek hozzáférhetőek lesznek a fiók profiloldalán az oldal bármely látogatója számára, még akkor is, ha más profilrészletek nem jelennek meg. Az e-mail-cím csak az interakciókkal kapcsolatos felhasználói értesítések küldéséhez lesz használva, de nem lesz láthatóan megjelenítve. A fiók felsorolása a csomópont felhasználói könyvtárában vagy a globális felhasználói könyvtárban választható, és a felhasználói beállításokban szabályozható. Ez nem szükséges a kommunikációhoz." - -#: src/Module/Tos.php:47 src/Module/Tos.php:89 -msgid "" -"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." -msgstr "Ezek az adatok a kommunikációhoz szükségesek, és átadásra kerül a kommunikációs partnerek csomópontjainak, valamint el is lesznek tárolva ott. A felhasználók megadhatnak további személyes adatokat, amelyek szintén átvitelre kerülhetnek a kommunikációs partnerek fiókjaiba." - -#: src/Module/Tos.php:48 src/Module/Tos.php:90 -#, php-format -msgid "" -"At any point in time a logged in user can export their account data from the" -" account settings. If the user " -"wants to delete their account they can do so at %1$s/removeme. The deletion of the account will " -"be permanent. Deletion of the data will also be requested from the nodes of " -"the communication partners." -msgstr "Egy bejelentkezett felhasználó bármely időpontban exportálhatja a fiókja adatait a fiók beállításaiból. Ha a felhasználó törölni szeretné a fiókját, akkor azt megteheti a %1$s/removeme oldalon. A fiók törlése végleges lesz. Az adatok törlése kérve lesz a kommunikációs partnerek csomópontjairól is." - -#: src/Module/Tos.php:51 src/Module/Tos.php:87 -msgid "Privacy Statement" -msgstr "Adatvédelmi nyilatkozat" - -#: src/Module/Welcome.php:44 -msgid "Welcome to Friendica" -msgstr "Üdvözli a Friendica!" - -#: src/Module/Welcome.php:45 -msgid "New Member Checklist" -msgstr "Új tag ellenőrzőlistája" - -#: src/Module/Welcome.php:46 -msgid "" -"We would like to offer some tips and links to help make your experience " -"enjoyable. Click any item to visit the relevant page. A link to this page " -"will be visible from your home page for two weeks after your initial " -"registration and then will quietly disappear." -msgstr "Tippeket és hivatkozásokat szeretnénk ajánlani, hogy élvezhetővé tegyük az alkalmazás használatát. Kattintson bármelyik elemre a kapcsolódó oldal megtekintéséhez. Az erre az oldalra mutató hivatkozás a kezdőlapjáról érhető el a kezdeti regisztrációt követő két héten belül, azután csendben eltűnik." - -#: src/Module/Welcome.php:48 -msgid "Getting Started" -msgstr "Kezdeti lépések" - -#: src/Module/Welcome.php:49 -msgid "Friendica Walk-Through" -msgstr "Friendica útmutató" - -#: src/Module/Welcome.php:50 -msgid "" -"On your Quick Start page - find a brief introduction to your " -"profile and network tabs, make some new connections, and find some groups to" -" join." -msgstr "A Gyors kezdés oldalon találhat egy rövid bemutatót a profil és hálózati lapokról, új kapcsolatok létesítésről, valamint találhat néhány csoportot, amelyekhez csatlakozhat." - -#: src/Module/Welcome.php:52 src/Module/Admin/Addons/Details.php:114 -#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:124 -#: src/Content/Nav.php:282 view/theme/frio/theme.php:235 -msgid "Settings" -msgstr "Beállítások" - -#: src/Module/Welcome.php:53 -msgid "Go to Your Settings" -msgstr "Ugrás a beállításaihoz" - -#: src/Module/Welcome.php:54 -msgid "" -"On your Settings page - change your initial password. Also make a " -"note of your Identity Address. This looks just like an email address - and " -"will be useful in making friends on the free social web." -msgstr "A Beállítások oldalon változtathatja meg a kezdeti jelszavát. Szintén itt talál egy megjegyzést a személyazonosság-címével kapcsolatban. Ez úgy néz ki mint egy e-mail-cím, és hasznos lesz a szabad közösségi hálón az ismerősök kereséséhez." - -#: src/Module/Welcome.php:55 -msgid "" -"Review the other settings, particularly the privacy settings. An unpublished" -" directory listing is like having an unlisted phone number. In general, you " -"should probably publish your listing - unless all of your friends and " -"potential friends know exactly how to find you." -msgstr "Vizsgálja felül az egyéb beállításokat is, különösen az adatvédelmi beállításokat. Egy nem közzétett könyvtárlistázás olyan, mint ha egy nyilvánosságra nem hozott telefonszáma lenne. Általában valószínűleg közzé kell tennie a listázását, hacsak az ismerősei és a lehetséges ismerősei nem tudják pontosan, hogy hogyan találják meg Önt." - -#: src/Module/Welcome.php:58 src/Module/Settings/Profile/Index.php:248 -msgid "Upload Profile Photo" -msgstr "Profilfénykép feltöltése" - -#: src/Module/Welcome.php:59 -msgid "" -"Upload a profile photo if you have not done so already. Studies have shown " -"that people with real photos of themselves are ten times more likely to make" -" friends than people who do not." -msgstr "Töltsön fel profilfényképet, ha ezt még nem tette meg. A tanulmányok kimutatták, hogy a saját magukról valódi fényképpel rendelkező emberek tízszer valószínűbben találnak ismerősöket mint azok az emberek, akiknek nincs profilfényképük." - -#: src/Module/Welcome.php:60 -msgid "Edit Your Profile" -msgstr "A profil szerkesztése" - -#: src/Module/Welcome.php:61 -msgid "" -"Edit your default profile to your liking. Review the " -"settings for hiding your list of friends and hiding the profile from unknown" -" visitors." -msgstr "Szerkessze az alapértelmezett profilját a kedve szerint. Vizsgálja felül a beállításokat az ismerősök listájának elrejtéséhez és a profiljának az ismeretlen látogatók elől történő elrejtéséhez." - -#: src/Module/Welcome.php:62 -msgid "Profile Keywords" -msgstr "Profil kulcsszavai" - -#: src/Module/Welcome.php:63 -msgid "" -"Set some public keywords for your profile which describe your interests. We " -"may be able to find other people with similar interests and suggest " -"friendships." -msgstr "Állítson be néhány nyilvános kulcsszót a profiljához, amely bemutatja az érdeklődési köreit. Képesek lehetünk megtalálni a hasonló érdeklődéssel rendelkező más embereket, és ajánlhatunk ismeretségeket." - -#: src/Module/Welcome.php:65 -msgid "Connecting" -msgstr "Kapcsolatépítés" - -#: src/Module/Welcome.php:67 -msgid "Importing Emails" -msgstr "E-mailek importálása" - -#: src/Module/Welcome.php:68 -msgid "" -"Enter your email access information on your Connector Settings page if you " -"wish to import and interact with friends or mailing lists from your email " -"INBOX" -msgstr "Adja meg az e-mail-címéhez való hozzáférés információt az összekötő beállításainak oldalán, ha a postafiókja beérkező üzeneteiből szeretne ismerősöket vagy levelezési listákat importálni, valamint velük kapcsolatba lépni." - -#: src/Module/Welcome.php:69 -msgid "Go to Your Contacts Page" -msgstr "Ugrás a partnerek oldalára" - -#: src/Module/Welcome.php:70 -msgid "" -"Your Contacts page is your gateway to managing friendships and connecting " -"with friends on other networks. Typically you enter their address or site " -"URL in the Add New Contact dialog." -msgstr "A partnerek oldal az átjáró az ismeretségek kezeléséhez és a más hálózatokon lévő ismerősökkel történő kapcsolatfelvételhez. Jellemzően csak be kell írnia a címüket vagy az oldal URL-jét az Új partner hozzáadása párbeszédablakba." - -#: src/Module/Welcome.php:71 -msgid "Go to Your Site's Directory" -msgstr "Ugrás az oldal könyvtárához" - -#: src/Module/Welcome.php:72 -msgid "" -"The Directory page lets you find other people in this network or other " -"federated sites. Look for a Connect or Follow link on " -"their profile page. Provide your own Identity Address if requested." -msgstr "A könyvtárak oldal lehetővé teszi más emberek keresését ezen a hálózaton vagy más föderált oldalakon. Keresse meg a Kapcsolódás vagy a Követés hivatkozást a profiloldalukon. Adja meg a saját személyazonosság-címét, ha kérik." - -#: src/Module/Welcome.php:73 -msgid "Finding New People" -msgstr "Új emberek keresése" - -#: src/Module/Welcome.php:74 -msgid "" -"On the side panel of the Contacts page are several tools to find new " -"friends. We can match people by interest, look up people by name or " -"interest, and provide suggestions based on network relationships. On a brand" -" new site, friend suggestions will usually begin to be populated within 24 " -"hours." -msgstr "A partnerek oldal oldalsávjában számos eszköz található új ismerősök kereséséhez. Találhatunk embereket az érdeklődésük szerint, kereshetünk embereket név vagy érdeklődés szerint, valamint ajánlásokat adhatunk a hálózati kapcsolatok alapján. Egy teljesen új oldalon az ismerősök ajánlásai általában 24 órán belül kezdenek megjelenni." - -#: src/Module/Welcome.php:77 -msgid "Group Your Contacts" -msgstr "Partnerek csoportosítása" - -#: src/Module/Welcome.php:78 -msgid "" -"Once you have made some friends, organize them into private conversation " -"groups from the sidebar of your Contacts page and then you can interact with" -" each group privately on your Network page." -msgstr "Miután szerezett néhány ismerőst, szervezze őket személyes beszélgetési csoportokba a partnerek oldal oldalsávján keresztül, és ezután személyes módon léphet kapcsolatba minden egyes csoporttal a hálózatok oldalon." - -#: src/Module/Welcome.php:80 -msgid "Why Aren't My Posts Public?" -msgstr "Miért nem nyilvánosak a bejegyzéseim?" - -#: src/Module/Welcome.php:81 -msgid "" -"Friendica respects your privacy. By default, your posts will only show up to" -" people you've added as friends. For more information, see the help section " -"from the link above." -msgstr "A Friendica tiszteletben tartja a magánszférát. Alapértelmezetten a bejegyzései csak azoknak az embereknek jelennek meg, akiket ismerősként felvett. További információkért nézze meg a súgószakaszt a fenti hivatkozáson keresztül." - -#: src/Module/Welcome.php:83 -msgid "Getting Help" -msgstr "Segítség kérése" - -#: src/Module/Welcome.php:84 -msgid "Go to the Help Section" -msgstr "Ugrás a súgószakaszhoz" - -#: src/Module/Welcome.php:85 -msgid "" -"Our help pages may be consulted for detail on other program" -" features and resources." -msgstr "A súgó oldalaink további részleteket közölhetnek a program egyéb funkcióiról és erőforrásairól." - -#: src/Module/Settings/Display.php:105 -msgid "The theme you chose isn't available." -msgstr "A választott téma nem érhető el." - -#: src/Module/Settings/Display.php:134 src/Module/Admin/Site.php:449 -msgid "No special theme for mobile devices" -msgstr "Nincs különleges téma a mobil eszközökhöz" - -#: src/Module/Settings/Display.php:142 -#, php-format -msgid "%s - (Unsupported)" -msgstr "%s – (nem támogatott)" - -#: src/Module/Settings/Display.php:144 src/Module/Admin/Site.php:466 +#: include/api.php:1135 #, php-format -msgid "%s - (Experimental)" -msgstr "%s – (kísérleti)" - -#: src/Module/Settings/Display.php:188 -msgid "Display Settings" -msgstr "Megjelenítési beállítások" - -#: src/Module/Settings/Display.php:189 src/Module/Settings/Delegation.php:170 -#: src/Module/Admin/Features.php:87 src/Module/Admin/Addons/Index.php:69 -#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:582 -#: src/Module/Admin/Tos.php:66 src/Module/Admin/Themes/Index.php:113 -#: mod/settings.php:508 mod/settings.php:615 mod/settings.php:713 -#: mod/settings.php:848 -msgid "Save Settings" -msgstr "Beállítások mentése" - -#: src/Module/Settings/Display.php:190 -msgid "General Theme Settings" -msgstr "Általános témabeállítások" - -#: src/Module/Settings/Display.php:191 -msgid "Custom Theme Settings" -msgstr "Egyéni témabeállítások" - -#: src/Module/Settings/Display.php:192 -msgid "Content Settings" -msgstr "Tartalombeállítások" - -#: src/Module/Settings/Display.php:193 view/theme/duepuntozero/config.php:70 -#: view/theme/frio/config.php:161 view/theme/quattro/config.php:72 -#: view/theme/vier/config.php:120 -msgid "Theme settings" -msgstr "Témabeállítások" - -#: src/Module/Settings/Display.php:194 -msgid "Calendar" -msgstr "Naptár" - -#: src/Module/Settings/Display.php:200 -msgid "Display Theme:" -msgstr "Megjelenítés témája:" - -#: src/Module/Settings/Display.php:201 -msgid "Mobile Theme:" -msgstr "Mobil téma:" - -#: src/Module/Settings/Display.php:204 -msgid "Number of items to display per page:" -msgstr "Oldalanként megjelenítendő elemek száma:" - -#: src/Module/Settings/Display.php:204 src/Module/Settings/Display.php:205 -msgid "Maximum of 100 items" -msgstr "Legfeljebb 100 elem" - -#: src/Module/Settings/Display.php:205 -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:206 -msgid "Update browser every xx seconds" -msgstr "Böngésző frissítése N másodpercenként" - -#: src/Module/Settings/Display.php:206 -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:207 -msgid "Automatic updates only at the top of the post stream pages" -msgstr "Automatikus frissítések csak a bejegyzésfolyam oldalainak tetejénél" - -#: src/Module/Settings/Display.php:207 -msgid "" -"Auto update may add new posts at the top of the post stream pages, which can" -" affect the scroll position and perturb normal reading if it happens " -"anywhere else the top of the page." -msgstr "Az automatikus frissítés új bejegyzéseket adhat a bejegyzésfolyam oldalainak tetejéhez, amely hatással lehet a görgetési pozícióra és megzavarhatja a normál olvasást, ha az oldal tetejének bármely részén történik." - -#: src/Module/Settings/Display.php:208 -msgid "Don't show emoticons" -msgstr "Ne jelenítsen meg hangulatjeleket" - -#: src/Module/Settings/Display.php:208 -msgid "" -"Normally emoticons are replaced with matching symbols. This setting disables" -" this behaviour." -msgstr "Általában a hangulatjelek ki lesznek cserélve a megfelelő szimbólumokkal. Ez a beállítás letiltja ezt a viselkedést." - -#: src/Module/Settings/Display.php:209 -msgid "Infinite scroll" -msgstr "Végtelen görgetés" - -#: src/Module/Settings/Display.php:209 -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:210 -msgid "Disable Smart Threading" -msgstr "Intelligens szálkezelés letiltása" - -#: src/Module/Settings/Display.php:210 -msgid "Disable the automatic suppression of extraneous thread indentation." -msgstr "A nem odatartozó szálbehúzások automatikus elnyomásának letiltása." - -#: src/Module/Settings/Display.php:211 -msgid "Hide the Dislike feature" -msgstr "A nem tetszik funkció elrejtése" - -#: src/Module/Settings/Display.php:211 -msgid "Hides the Dislike button and dislike reactions on posts and comments." -msgstr "Elrejti a nem tetszik gombot és a nem tetszik reakciókat a bejegyzéseknél és a hozzászólásoknál." - -#: src/Module/Settings/Display.php:212 -msgid "Display the resharer" -msgstr "Az újramegosztó megjelenítése" - -#: src/Module/Settings/Display.php:212 -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:213 -msgid "Stay local" -msgstr "Maradjon helyi" - -#: src/Module/Settings/Display.php:213 -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:215 -msgid "Beginning of week:" -msgstr "A hét kezdete:" +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] "A napi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva." +msgstr[1] "A napi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva." -#: src/Module/Settings/TwoFactor/Verify.php:56 -#: src/Module/Settings/TwoFactor/AppSpecific.php:52 -#: src/Module/Settings/TwoFactor/Recovery.php:50 -#: src/Module/Settings/TwoFactor/Trusted.php:30 -msgid "Please enter your password to access this page." -msgstr "Adja meg a jelszavát az oldal eléréséhez." - -#: src/Module/Settings/TwoFactor/Verify.php:78 -msgid "Two-factor authentication successfully activated." -msgstr "A kétlépcsős hitelesítés sikeresen bekapcsolva." - -#: src/Module/Settings/TwoFactor/Verify.php:82 -#: src/Module/Security/TwoFactor/Verify.php:75 -#: src/Module/Security/TwoFactor/Recovery.php:64 -msgid "Invalid code, please retry." -msgstr "Érvénytelen kód, próbálja újra." - -#: src/Module/Settings/TwoFactor/Verify.php:111 +#: include/api.php:1149 #, php-format -msgid "" -"

Or you can submit the authentication settings manually:

\n" -"
\n" -"\t
Issuer
\n" -"\t
%s
\n" -"\t
Account Name
\n" -"\t
%s
\n" -"\t
Secret Key
\n" -"\t
%s
\n" -"\t
Type
\n" -"\t
Time-based
\n" -"\t
Number of digits
\n" -"\t
6
\n" -"\t
Hashing algorithm
\n" -"\t
SHA-1
\n" -"
" -msgstr "

Vagy elküldheti a hitelesítési beállításokat kézzel:

\n
\n\t
Kibocsájtó
\n\t
%s
\n\t
Fiók neve
\n\t
%s
\n\t
Titkos kulcs
\n\t
%s
\n\t
Típus
\n\t
Időalapú
\n\t
Számjegyek száma
\n\t
6
\n\t
Kivonatoló algoritmus
\n\t
SHA-1
\n
" - -#: src/Module/Settings/TwoFactor/Verify.php:131 -msgid "Two-factor code verification" -msgstr "Kétlépcsős kód ellenőrzése" +msgid "Weekly posting limit of %d post reached. The post was rejected." +msgid_plural "" +"Weekly posting limit of %d posts reached. The post was rejected." +msgstr[0] "A heti %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva." +msgstr[1] "A heti %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva." -#: src/Module/Settings/TwoFactor/Verify.php:132 -#: src/Module/Settings/TwoFactor/Index.php:111 -#: src/Module/Settings/TwoFactor/AppSpecific.php:115 -#: src/Module/Settings/TwoFactor/Recovery.php:93 src/Module/Help.php:69 -#: src/Content/Nav.php:212 view/theme/vier/theme.php:217 -msgid "Help" -msgstr "Súgó" - -#: src/Module/Settings/TwoFactor/Verify.php:133 -msgid "" -"

Please scan this QR Code with your authenticator app and submit the " -"provided code.

" -msgstr "

Olvassa be ezt a QR-kódot a hitelesítő alkalmazásával, és küldje el a megkapott kódot.

" - -#: src/Module/Settings/TwoFactor/Verify.php:135 +#: include/api.php:1163 #, php-format -msgid "" -"

Or you can open the following URL in your mobile device:

%s

" -msgstr "

Vagy megnyithatja a következő URL-t a mobil eszközén:

%s

" - -#: src/Module/Settings/TwoFactor/Verify.php:141 -#: src/Module/Security/TwoFactor/Verify.php:99 -msgid "Please enter a code from your authentication app" -msgstr "Adjon meg egy kódot a hitelesítő alkalmazásából" - -#: src/Module/Settings/TwoFactor/Verify.php:142 -msgid "Verify code and enable two-factor authentication" -msgstr "Kód ellenőrzése és a kétlépcsős hitelesítés engedélyezése" - -#: src/Module/Settings/TwoFactor/Index.php:67 -msgid "Two-factor authentication successfully disabled." -msgstr "A kétlépcsős hitelesítés sikeresen letiltva." - -#: src/Module/Settings/TwoFactor/Index.php:93 -msgid "Wrong Password" -msgstr "Hibás jelszó" - -#: src/Module/Settings/TwoFactor/Index.php:110 src/Module/BaseSettings.php:50 -#: src/Module/Security/TwoFactor/Verify.php:94 -msgid "Two-factor authentication" -msgstr "Kétlépcsős hitelesítés" - -#: src/Module/Settings/TwoFactor/Index.php:113 -msgid "" -"

Use an application on a mobile device to get two-factor authentication " -"codes when prompted on login.

" -msgstr "

Egy alkalmazás használata egy mobil eszközön, hogy megkapja a kétlépcsős hitelesítés kódjait, ha a bejelentkezéskor kérik.

" - -#: src/Module/Settings/TwoFactor/Index.php:117 -msgid "Authenticator app" -msgstr "Hitelesítő alkalmazás" - -#: src/Module/Settings/TwoFactor/Index.php:118 -msgid "Configured" -msgstr "Beállítva" - -#: src/Module/Settings/TwoFactor/Index.php:118 -msgid "Not Configured" -msgstr "Nincs beállítva" - -#: src/Module/Settings/TwoFactor/Index.php:119 -msgid "

You haven't finished configuring your authenticator app.

" -msgstr "

Nem fejezte be a hitelesítő alkalmazása beállítását.

" - -#: src/Module/Settings/TwoFactor/Index.php:120 -msgid "

Your authenticator app is correctly configured.

" -msgstr "

A hitelesítő alkalmazása megfelelően be van állítva.

" - -#: src/Module/Settings/TwoFactor/Index.php:122 -msgid "Recovery codes" -msgstr "Visszaszerzési kódok" - -#: src/Module/Settings/TwoFactor/Index.php:123 -msgid "Remaining valid codes" -msgstr "Hátralévő érvényes kódok" - -#: src/Module/Settings/TwoFactor/Index.php:125 -msgid "" -"

These one-use codes can replace an authenticator app code in case you " -"have lost access to it.

" -msgstr "

Ezek az egyszer használható kódok helyettesíthetnek egy hitelesítő alkalmazás kódot abban az esetben, ha elveszíti a hozzáférést ahhoz.

" - -#: src/Module/Settings/TwoFactor/Index.php:127 -msgid "App-specific passwords" -msgstr "Alkalmazásfüggő jelszavak" - -#: src/Module/Settings/TwoFactor/Index.php:128 -msgid "Generated app-specific passwords" -msgstr "Előállított alkalmazásfüggő jelszavak" - -#: src/Module/Settings/TwoFactor/Index.php:130 -msgid "" -"

These randomly generated passwords allow you to authenticate on apps not " -"supporting two-factor authentication.

" -msgstr "

Ezek a véletlenszerűen előállított jelszavak lehetővé teszik, hogy olyan alkalmazásoknál hitelesítsen, amelyek nem támogatják a kétlépcsős hitelesítést.

" - -#: src/Module/Settings/TwoFactor/Index.php:133 -msgid "Current password:" -msgstr "Jelenlegi jelszó:" - -#: src/Module/Settings/TwoFactor/Index.php:133 -msgid "" -"You need to provide your current password to change two-factor " -"authentication settings." -msgstr "Meg kell adnia a jelenlegi jelszavát a kétlépcsős hitelesítési beállítások megváltoztatásához." - -#: src/Module/Settings/TwoFactor/Index.php:134 -msgid "Enable two-factor authentication" -msgstr "Kétlépcsős hitelesítés engedélyezése" - -#: src/Module/Settings/TwoFactor/Index.php:135 -msgid "Disable two-factor authentication" -msgstr "Kétlépcsős hitelesítés letiltása" - -#: src/Module/Settings/TwoFactor/Index.php:136 -msgid "Show recovery codes" -msgstr "Visszaszerzési kódok megjelenítése" - -#: src/Module/Settings/TwoFactor/Index.php:137 -msgid "Manage app-specific passwords" -msgstr "Alkalmazásfüggő jelszavak kezelése" - -#: src/Module/Settings/TwoFactor/Index.php:138 -msgid "Manage trusted browsers" -msgstr "Megbízható böngészők kezelése" - -#: src/Module/Settings/TwoFactor/Index.php:139 -msgid "Finish app configuration" -msgstr "Alkalmazás beállításának befejezése" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:70 -msgid "App-specific password generation failed: The description is empty." -msgstr "Az alkalmazásfüggő jelszó előállítása sikertelen: a leírás üres." - -#: src/Module/Settings/TwoFactor/AppSpecific.php:73 -msgid "" -"App-specific password generation failed: This description already exists." -msgstr "Az alkalmazásfüggő jelszó előállítása sikertelen: a leírás már létezik." - -#: src/Module/Settings/TwoFactor/AppSpecific.php:77 -msgid "New app-specific password generated." -msgstr "Az új alkalmazásfüggő jelszó előállítva." - -#: src/Module/Settings/TwoFactor/AppSpecific.php:83 -msgid "App-specific passwords successfully revoked." -msgstr "Az alkalmazásfüggő jelszavak sikeresen visszavonva." - -#: src/Module/Settings/TwoFactor/AppSpecific.php:93 -msgid "App-specific password successfully revoked." -msgstr "Az alkalmazásfüggő jelszó sikeresen visszavonva." - -#: src/Module/Settings/TwoFactor/AppSpecific.php:114 -msgid "Two-factor app-specific passwords" -msgstr "Kétlépcsős alkalmazásfüggő jelszavak" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:116 -msgid "" -"

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.

" -msgstr "

Az alkalmazásfüggő jelszavak az Ön szokásos jelszava helyett használt véletlenszerűen előállított jelszavak, hogy hitelesítsék a fiókját az olyan harmadik féltől származó alkalmazásoknál, amelyek nem támogatják a kétlépcsős hitelesítést.

" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:117 -msgid "" -"Make sure to copy your new app-specific password now. You won’t be able to " -"see it again!" -msgstr "Győződjön meg arról, hogy lemásolta-e most az új alkalmazásfüggő jelszavát. Nem fogja tudni újra megnézni a jelszót!" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:120 -msgid "Description" -msgstr "Leírás" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:121 -msgid "Last Used" -msgstr "Legutóbb használt" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:122 -msgid "Revoke" -msgstr "Visszavonás" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:123 -msgid "Revoke All" -msgstr "Összes visszavonása" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:126 -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 "Ha új alkalmazásfüggő jelszót állít elő, akkor azonnal fel kell használnia. Akkor lesz megjelenítve Önnek, miután előállította azt." - -#: src/Module/Settings/TwoFactor/AppSpecific.php:127 -msgid "Generate new app-specific password" -msgstr "Új alkalmazásfüggő jelszó előállítása" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:128 -msgid "Friendiqa on my Fairphone 2..." -msgstr "Friendiqa a Fairphone 2 készülékemen…" - -#: src/Module/Settings/TwoFactor/AppSpecific.php:129 -msgid "Generate" -msgstr "Előállítás" - -#: src/Module/Settings/TwoFactor/Recovery.php:66 -msgid "New recovery codes successfully generated." -msgstr "Az új visszaszerzési kódok sikeresen előállítva." - -#: src/Module/Settings/TwoFactor/Recovery.php:92 -msgid "Two-factor recovery codes" -msgstr "Kétlépcsős visszaszerzési kódok" - -#: src/Module/Settings/TwoFactor/Recovery.php:94 -msgid "" -"

Recovery codes can be used to access your account in the event you lose " -"access to your device and cannot receive two-factor authentication " -"codes.

Put these in a safe spot! If you lose your " -"device and don’t have the recovery codes you will lose access to your " -"account.

" -msgstr "

A visszaszerzési kódok használhatók a fiókjához való hozzáféréséhez abban az esetben, ha elveszti a hozzáférést az eszközéhez, és nem tud kétlépcsős hitelesítési kódokat fogadni.

Tegye ezeket biztonságos helyre! Ha elveszti az eszközét és nincsenek meg a visszaszerzési kódjai, akkor el fogja veszíteni a fiókjához való hozzáférést.

" - -#: src/Module/Settings/TwoFactor/Recovery.php:96 -msgid "" -"When you generate new recovery codes, you must copy the new codes. Your old " -"codes won’t work anymore." -msgstr "Ha új visszaszerzési kódokat állít elő, akkor le kell másolnia az új kódokat. A régi kódjai többé nem fognak működni." - -#: src/Module/Settings/TwoFactor/Recovery.php:97 -msgid "Generate new recovery codes" -msgstr "Új visszaszerzési kódok előállítása" - -#: src/Module/Settings/TwoFactor/Recovery.php:99 -msgid "Next: Verification" -msgstr "Következő: ellenőrzés" - -#: src/Module/Settings/TwoFactor/Trusted.php:49 -msgid "Trusted browsers successfully removed." -msgstr "A megbízható böngészők sikeresen eltávolítva." - -#: src/Module/Settings/TwoFactor/Trusted.php:59 -msgid "Trusted browser successfully removed." -msgstr "A megbízható böngésző sikeresen eltávolítva." - -#: src/Module/Settings/TwoFactor/Trusted.php:97 -msgid "Two-factor Trusted Browsers" -msgstr "Kétlépcsős megbízható böngészők" - -#: src/Module/Settings/TwoFactor/Trusted.php:98 -msgid "" -"Trusted browsers are individual browsers you chose to skip two-factor " -"authentication to access Friendica. Please use this feature sparingly, as it" -" can negate the benefit of two-factor authentication." -msgstr "A megbízható böngészők azok az egyéni böngészők, amelyeknél a kétlépcsős hitelesítés kihagyását választotta a Friendica alkalmazáshoz való hozzáféréshez. Lehetőleg mellőzze ennek a funkciónak a használatát, mivel ez megszüntetheti a kétlépcsős hitelesítés előnyeit." - -#: src/Module/Settings/TwoFactor/Trusted.php:99 -msgid "Device" -msgstr "Eszköz" - -#: src/Module/Settings/TwoFactor/Trusted.php:100 -msgid "OS" -msgstr "Operációs rendszer" - -#: src/Module/Settings/TwoFactor/Trusted.php:101 include/conversation.php:1249 -#: mod/editpost.php:133 -msgid "Browser" -msgstr "Böngésző" - -#: src/Module/Settings/TwoFactor/Trusted.php:102 -msgid "Trusted" -msgstr "Megbízható" - -#: src/Module/Settings/TwoFactor/Trusted.php:103 -msgid "Last Use" -msgstr "Utolsó használat" - -#: src/Module/Settings/TwoFactor/Trusted.php:104 -#: src/Module/Settings/Delegation.php:179 mod/tagrm.php:126 -msgid "Remove" -msgstr "Eltávolítás" - -#: src/Module/Settings/TwoFactor/Trusted.php:105 -msgid "Remove All" -msgstr "Összes eltávolítása" +msgid "Monthly posting limit of %d post reached. The post was rejected." +msgstr "A havi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva." -#: src/Module/Settings/Profile/Photo/Crop.php:97 +#: include/api.php:4526 mod/photos.php:107 mod/photos.php:211 +#: mod/photos.php:639 mod/photos.php:1043 mod/photos.php:1060 +#: mod/photos.php:1609 src/Model/User.php:1100 src/Model/User.php:1108 +#: src/Model/User.php:1116 src/Module/Settings/Profile/Photo/Crop.php:97 #: src/Module/Settings/Profile/Photo/Crop.php:113 #: src/Module/Settings/Profile/Photo/Crop.php:129 #: src/Module/Settings/Profile/Photo/Crop.php:178 #: src/Module/Settings/Profile/Photo/Index.php:96 -#: src/Module/Settings/Profile/Photo/Index.php:102 src/Model/User.php:1045 -#: src/Model/User.php:1053 src/Model/User.php:1061 include/api.php:4452 -#: mod/photos.php:107 mod/photos.php:211 mod/photos.php:639 -#: mod/photos.php:1043 mod/photos.php:1060 mod/photos.php:1609 +#: src/Module/Settings/Profile/Photo/Index.php:102 msgid "Profile Photos" msgstr "Profilfényképek" -#: src/Module/Settings/Profile/Photo/Crop.php:102 -#: src/Module/Settings/Profile/Photo/Crop.php:118 -#: src/Module/Settings/Profile/Photo/Crop.php:134 -#: src/Module/Settings/Profile/Photo/Index.php:103 +#: include/conversation.php:195 #, php-format -msgid "Image size reduction [%s] failed." -msgstr "A kép méretének csökkentése [%s] sikertelen." +msgid "%1$s poked %2$s" +msgstr "%1$s megbökte őt: %2$s" -#: src/Module/Settings/Profile/Photo/Crop.php:139 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Töltse újra az oldalt a Shift billentyű lenyomása közben, vagy törölje a böngésző gyorsítótárát, ha az új fénykép nem jelenik meg azonnal." - -#: src/Module/Settings/Profile/Photo/Crop.php:147 -msgid "Unable to process image" -msgstr "Nem lehet feldolgozni a képet" - -#: src/Module/Settings/Profile/Photo/Crop.php:166 -msgid "Photo not found." -msgstr "A fénykép nem található." - -#: src/Module/Settings/Profile/Photo/Crop.php:190 -msgid "Profile picture successfully updated." -msgstr "A profilfénykép sikeresen frissítve." - -#: src/Module/Settings/Profile/Photo/Crop.php:213 -#: src/Module/Settings/Profile/Photo/Crop.php:217 -msgid "Crop Image" -msgstr "Kép levágása" - -#: src/Module/Settings/Profile/Photo/Crop.php:214 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Igazítsa a kép levágását az optimális megtekintéshez." - -#: src/Module/Settings/Profile/Photo/Crop.php:216 -msgid "Use Image As Is" -msgstr "Kép használata, ahogy van" - -#: src/Module/Settings/Profile/Photo/Index.php:47 -msgid "Missing uploaded image." -msgstr "Hiányzó feltöltött kép." - -#: src/Module/Settings/Profile/Photo/Index.php:61 mod/wall_upload.php:216 -#: mod/photos.php:672 mod/photos.php:675 mod/photos.php:702 -#, php-format -msgid "Image exceeds size limit of %s" -msgstr "A kép meghaladja a beállított %s méretkorlátot" - -#: src/Module/Settings/Profile/Photo/Index.php:70 mod/wall_upload.php:175 -#: mod/photos.php:725 -msgid "Unable to process image." -msgstr "Nem lehet feldolgozni a képet." - -#: src/Module/Settings/Profile/Photo/Index.php:97 mod/wall_upload.php:241 -#: mod/photos.php:754 -msgid "Image upload failed." -msgstr "A kép feltöltése sikertelen." - -#: src/Module/Settings/Profile/Photo/Index.php:126 -msgid "Profile Picture Settings" -msgstr "Profilfénykép beállításai" - -#: src/Module/Settings/Profile/Photo/Index.php:127 -msgid "Current Profile Picture" -msgstr "Jelenlegi profilfénykép" - -#: src/Module/Settings/Profile/Photo/Index.php:128 -msgid "Upload Profile Picture" -msgstr "Profilfénykép feltöltése" - -#: src/Module/Settings/Profile/Photo/Index.php:129 -msgid "Upload Picture:" -msgstr "Fénykép feltöltése:" - -#: src/Module/Settings/Profile/Photo/Index.php:130 mod/fbrowser.php:107 -#: mod/fbrowser.php:136 -msgid "Upload" -msgstr "Feltöltés" - -#: src/Module/Settings/Profile/Photo/Index.php:134 -msgid "or" -msgstr "vagy" - -#: src/Module/Settings/Profile/Photo/Index.php:136 -msgid "skip this step" -msgstr "ezen lépés kihagyása" - -#: src/Module/Settings/Profile/Photo/Index.php:138 -msgid "select a photo from your photo albums" -msgstr "fénykép kiválasztása a fényképalbumából" - -#: src/Module/Settings/Profile/Index.php:85 -msgid "Profile Name is required." -msgstr "A profil neve kötelező." - -#: src/Module/Settings/Profile/Index.php:137 -msgid "Profile couldn't be updated." -msgstr "A profilt nem sikerült frissíteni." - -#: src/Module/Settings/Profile/Index.php:187 -#: src/Module/Settings/Profile/Index.php:207 -msgid "Label:" -msgstr "Címke:" - -#: src/Module/Settings/Profile/Index.php:188 -#: src/Module/Settings/Profile/Index.php:208 -msgid "Value:" -msgstr "Érték:" - -#: src/Module/Settings/Profile/Index.php:198 -#: src/Module/Settings/Profile/Index.php:218 -msgid "Field Permissions" -msgstr "Mező jogosultságai" - -#: src/Module/Settings/Profile/Index.php:199 -#: src/Module/Settings/Profile/Index.php:219 -msgid "(click to open/close)" -msgstr "(kattintson a megnyitáshoz vagy bezáráshoz)" - -#: src/Module/Settings/Profile/Index.php:205 -msgid "Add a new profile field" -msgstr "Új profilmező hozzáadása" - -#: src/Module/Settings/Profile/Index.php:235 -msgid "Profile Actions" -msgstr "Profilműveletek" - -#: src/Module/Settings/Profile/Index.php:236 -msgid "Edit Profile Details" -msgstr "Profil részleteinek szerkesztése" - -#: src/Module/Settings/Profile/Index.php:238 -msgid "Change Profile Photo" -msgstr "Profilfénykép megváltoztatása" - -#: src/Module/Settings/Profile/Index.php:243 -msgid "Profile picture" -msgstr "Profilfénykép" - -#: src/Module/Settings/Profile/Index.php:244 -msgid "Location" -msgstr "Hely" - -#: src/Module/Settings/Profile/Index.php:246 -msgid "Custom Profile Fields" -msgstr "Egyéni profilmezők" - -#: src/Module/Settings/Profile/Index.php:252 -msgid "Display name:" -msgstr "Megjelenített név:" - -#: src/Module/Settings/Profile/Index.php:255 -msgid "Street Address:" -msgstr "Utca, házszám:" - -#: src/Module/Settings/Profile/Index.php:256 -msgid "Locality/City:" -msgstr "Helység vagy város:" - -#: src/Module/Settings/Profile/Index.php:257 -msgid "Region/State:" -msgstr "Régió vagy állam:" - -#: src/Module/Settings/Profile/Index.php:258 -msgid "Postal/Zip Code:" -msgstr "Irányítószám:" - -#: src/Module/Settings/Profile/Index.php:259 -msgid "Country:" -msgstr "Ország:" - -#: src/Module/Settings/Profile/Index.php:261 -msgid "XMPP (Jabber) address:" -msgstr "XMPP (Jabber) cím:" - -#: src/Module/Settings/Profile/Index.php:261 -msgid "" -"The XMPP address will be propagated to your contacts so that they can follow" -" you." -msgstr "Az XMPP-cím továbbításra kerül a partnereinek, hogy követni tudják Önt." - -#: src/Module/Settings/Profile/Index.php:262 -msgid "Homepage URL:" -msgstr "Honlap URL:" - -#: src/Module/Settings/Profile/Index.php:263 -msgid "Public Keywords:" -msgstr "Nyilvános kulcsszavak:" - -#: src/Module/Settings/Profile/Index.php:263 -msgid "(Used for suggesting potential friends, can be seen by others)" -msgstr "(Lehetséges ismerősök ajánlásához lesz használva, mások is láthatják)" - -#: src/Module/Settings/Profile/Index.php:264 -msgid "Private Keywords:" -msgstr "Személyes kulcsszavak:" - -#: src/Module/Settings/Profile/Index.php:264 -msgid "(Used for searching profiles, never shown to others)" -msgstr "(Profilok kereséséhez lesz használva, sosem látható másoknak)" - -#: src/Module/Settings/Profile/Index.php:265 -#, php-format -msgid "" -"

Custom fields appear on your profile page.

\n" -"\t\t\t\t

You can use BBCodes in the field values.

\n" -"\t\t\t\t

Reorder by dragging the field title.

\n" -"\t\t\t\t

Empty the label field to remove a custom field.

\n" -"\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.

" -msgstr "

Az egyéni mezők a profiloldalán jelennek meg.

\n\t\t\t\t

Használhat BBCode formázásokat a mező értékeiben.

\n\t\t\t\t

Átrendezheti a mező címének húzásával.

\n\t\t\t\t

Törölje ki a címkemezőt egy egyéni mező eltávolításához.

\n\t\t\t\t

A nem nyilvános mezőket csak a kijelölt Friendica partnerek vagy a kijelölt csoportban lévő Friendica partnerek láthatják.

" - -#: src/Module/Settings/Delegation.php:53 -msgid "Delegation successfully granted." -msgstr "A meghatalmazás sikeresen megadva." - -#: src/Module/Settings/Delegation.php:55 -msgid "Parent user not found, unavailable or password doesn't match." -msgstr "A fölérendelt felhasználó nem található, nem érhető el vagy a jelszó nem egyezik." - -#: src/Module/Settings/Delegation.php:59 -msgid "Delegation successfully revoked." -msgstr "A meghatalmazás sikeresen visszavonva." - -#: src/Module/Settings/Delegation.php:81 -#: src/Module/Settings/Delegation.php:103 -msgid "" -"Delegated administrators can view but not change delegation permissions." -msgstr "A meghatalmazott adminisztrátorok megtekinthetik, de nem változtathatják meg a meghatalmazás jogosultságait." - -#: src/Module/Settings/Delegation.php:95 -msgid "Delegate user not found." -msgstr "A meghatalmazott felhasználó nem található." - -#: src/Module/Settings/Delegation.php:143 -msgid "No parent user" -msgstr "Nincs fölérendelt felhasználó" - -#: src/Module/Settings/Delegation.php:154 -#: src/Module/Settings/Delegation.php:165 -msgid "Parent User" -msgstr "Fölérendelt felhasználó" - -#: src/Module/Settings/Delegation.php:162 -msgid "Additional Accounts" -msgstr "További fiókok" - -#: src/Module/Settings/Delegation.php:163 -msgid "" -"Register additional accounts that are automatically connected to your " -"existing account so you can manage them from this account." -msgstr "További fiókok regisztrálása, amelyek automatikusan hozzá vannak kapcsolva a meglévő fiókjához, így ebből a fiókból kezelheti azokat." - -#: src/Module/Settings/Delegation.php:164 -msgid "Register an additional account" -msgstr "További fiók regisztrálása" - -#: src/Module/Settings/Delegation.php:168 -msgid "" -"Parent users have total control about this account, including the account " -"settings. Please double check whom you give this access." -msgstr "A fölérendelt felhasználóknak teljes ellenőrzése van ezen fiók fölött, beleértve a fiók beállításait is. Ellenőrizze még egyszer, hogy kinek ad hozzáférést." - -#: src/Module/Settings/Delegation.php:171 src/Module/BaseSettings.php:94 -msgid "Manage Accounts" -msgstr "Fiókok kezelése" - -#: src/Module/Settings/Delegation.php:172 -msgid "Delegates" -msgstr "Meghatalmazottak" - -#: src/Module/Settings/Delegation.php:174 -msgid "" -"Delegates are able to manage all aspects of this account/page except for " -"basic account settings. Please do not delegate your personal account to " -"anybody that you do not trust completely." -msgstr "A meghatalmazottak képesek ezen fiókot vagy oldalt minden szempontból kezelni, kivéve az alapvető fiókbeállításokat. Ne hatalmazzon meg senki mást a személyes fiókja kezeléséhez, akiben nem bízik meg teljes mértékben." - -#: src/Module/Settings/Delegation.php:175 -msgid "Existing Page Delegates" -msgstr "Meglévő oldalmeghatalmazottak" - -#: src/Module/Settings/Delegation.php:177 -msgid "Potential Delegates" -msgstr "Lehetséges meghatalmazottak" - -#: src/Module/Settings/Delegation.php:180 -msgid "Add" -msgstr "Hozzáadás" - -#: src/Module/Settings/Delegation.php:181 -msgid "No entries." -msgstr "Nincsenek bejegyzések." - -#: src/Module/Settings/UserExport.php:59 -msgid "Export account" -msgstr "Fiók exportálása" - -#: src/Module/Settings/UserExport.php:59 -msgid "" -"Export your account info and contacts. Use this to make a backup of your " -"account and/or to move it to another server." -msgstr "Fiókinformációk és partnerek exportálása. A fiókjáról történő biztonsági mentés készítéséhez és/vagy egy másik kiszolgálóra való áthelyezéséhez használja ezt." - -#: src/Module/Settings/UserExport.php:60 -msgid "Export all" -msgstr "Összes exportálása" - -#: src/Module/Settings/UserExport.php:60 -msgid "" -"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)" -msgstr "Fiókinformációk, partnerek és az összes elem exportálása JSON-formátumban. nagyon nagy fájl is lehet, és sokáig eltarthat. A fiókja teljes biztonsági mentésének elkészítéséhez használja ezt (a fényképek nem lesznek exportálva)." - -#: src/Module/Settings/UserExport.php:61 -msgid "Export Contacts to CSV" -msgstr "Partnerek exportálása CSV-fájlba" - -#: src/Module/Settings/UserExport.php:61 -msgid "" -"Export the list of the accounts you are following as CSV file. Compatible to" -" e.g. Mastodon." -msgstr "A követett fiókok listájának exportálása CSV-fájlként. Kompatibilis például a Mastodonnal." - -#: src/Module/Settings/UserExport.php:67 src/Module/BaseSettings.php:108 -msgid "Export personal data" -msgstr "Személyes adatok exportálása" - -#: src/Module/Admin/Features.php:76 -#, php-format -msgid "Lock feature %s" -msgstr "%s funkció zárolása" - -#: src/Module/Admin/Features.php:85 -msgid "Manage Additional Features" -msgstr "További funkciók kezelése" - -#: src/Module/Admin/DBSync.php:51 -msgid "Update has been marked successful" -msgstr "A frissítés sikeresen meg lett jelölve" - -#: src/Module/Admin/DBSync.php:59 -#, php-format -msgid "Database structure update %s was successfully applied." -msgstr "A(z) %s adatbázisszerkezet-frissítés sikeresen alkalmazva." - -#: src/Module/Admin/DBSync.php:61 -#, php-format -msgid "Executing of database structure update %s failed with error: %s" -msgstr "A(z) %s adatbázisszerkezet-frissítés végrehajtása meghiúsult ezzel a hibával: %s" - -#: src/Module/Admin/DBSync.php:76 -#, php-format -msgid "Executing %s failed with error: %s" -msgstr "A(z) %s végrehajtása meghiúsult ezzel a hibával: %s" - -#: src/Module/Admin/DBSync.php:78 -#, php-format -msgid "Update %s was successfully applied." -msgstr "A(z) %s frissítés sikeresen alkalmazva." - -#: src/Module/Admin/DBSync.php:81 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "A(z) %s frissítés nem adott vissza állapotot. Nem tudni, hogy sikerült-e." - -#: src/Module/Admin/DBSync.php:84 -#, php-format -msgid "There was no additional update function %s that needed to be called." -msgstr "Nem volt további frissítési funkció, %s amelyet meg kellett hívni." - -#: src/Module/Admin/DBSync.php:106 -msgid "No failed updates." -msgstr "Nincsenek sikertelen frissítések." - -#: src/Module/Admin/DBSync.php:107 -msgid "Check database structure" -msgstr "Adatbázis-szerkezet ellenőrzése" - -#: src/Module/Admin/DBSync.php:112 -msgid "Failed Updates" -msgstr "Sikertelen frissítések" - -#: src/Module/Admin/DBSync.php:113 -msgid "" -"This does not include updates prior to 1139, which did not return a status." -msgstr "Ez nem tartalmazza az 1139 előtti frissítéseket, amelyek nem adtak vissza állapotot." - -#: src/Module/Admin/DBSync.php:114 -msgid "Mark success (if update was manually applied)" -msgstr "Megjelölés sikeresként (ha a frissítés kézzel lett alkalmazva)" - -#: src/Module/Admin/DBSync.php:115 -msgid "Attempt to execute this update step automatically" -msgstr "Próbálja meg automatikusan végrehajtani ezt a frissítési lépést" - -#: src/Module/Admin/Addons/Details.php:65 -msgid "Addon not found." -msgstr "A bővítmény nem található." - -#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49 -#, php-format -msgid "Addon %s disabled." -msgstr "A(z) „%s” bővítmény letiltva." - -#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51 -#, php-format -msgid "Addon %s enabled." -msgstr "A(z) „%s” bővítmény engedélyezve." - -#: src/Module/Admin/Addons/Details.php:88 -#: src/Module/Admin/Themes/Details.php:46 -msgid "Disable" -msgstr "Letiltás" - -#: src/Module/Admin/Addons/Details.php:91 -#: src/Module/Admin/Themes/Details.php:49 -msgid "Enable" -msgstr "Engedélyezés" - -#: src/Module/Admin/Addons/Details.php:111 -#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Logs/View.php:64 -#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Queue.php:72 -#: src/Module/Admin/Summary.php:232 src/Module/Admin/Item/Delete.php:65 -#: src/Module/Admin/Site.php:579 src/Module/Admin/Blocklist/Server.php:88 -#: src/Module/Admin/Blocklist/Contact.php:78 src/Module/Admin/Tos.php:58 -#: src/Module/Admin/Federation.php:141 src/Module/Admin/Users/Create.php:61 -#: src/Module/Admin/Users/Active.php:136 src/Module/Admin/Users/Index.php:149 -#: src/Module/Admin/Users/Blocked.php:137 -#: src/Module/Admin/Users/Deleted.php:85 -#: src/Module/Admin/Users/Pending.php:101 -#: src/Module/Admin/Themes/Details.php:90 -#: src/Module/Admin/Themes/Index.php:111 -msgid "Administration" -msgstr "Adminisztráció" - -#: src/Module/Admin/Addons/Details.php:113 -#: src/Module/Admin/Themes/Details.php:92 -msgid "Toggle" -msgstr "Átváltás" - -#: src/Module/Admin/Addons/Details.php:121 -#: src/Module/Admin/Themes/Details.php:101 -msgid "Author: " -msgstr "Szerző: " - -#: src/Module/Admin/Addons/Details.php:122 -#: src/Module/Admin/Themes/Details.php:102 -msgid "Maintainer: " -msgstr "Karbantartó: " - -#: src/Module/Admin/Addons/Index.php:42 -msgid "Addons reloaded" -msgstr "Bővítmények újratöltve" - -#: src/Module/Admin/Addons/Index.php:53 -#, php-format -msgid "Addon %s failed to install." -msgstr "A(z) „%s” bővítmény telepítése sikertelen." - -#: src/Module/Admin/Addons/Index.php:70 -msgid "Reload active addons" -msgstr "Bekapcsolt bővítmények újratöltése" - -#: src/Module/Admin/Addons/Index.php:75 -#, php-format -msgid "" -"There are currently no addons available on your node. You can find the " -"official addon repository at %1$s and might find other interesting addons in" -" the open addon registry at %2$s" -msgstr "Jelenleg nem érhetők el bővítmények az Ön csomópontján. A hivatalos bővítménytároló megtalálható a %1$s oldalon, és esetleg egyéb érdekes bővítményeket is találhat a %2$s címen elérhető nyílt bővítményjegyzékben." - -#: src/Module/Admin/Logs/View.php:40 -#, php-format -msgid "" -"Error trying to open %1$s log file.\\r\\n
Check to see " -"if file %1$s exist and is readable." -msgstr "Hiba a(z) %1$s naplófájl megnyitási kísérlete során.\\r\\n
Ellenőrizze, hogy a(z) „%1$s” fájl létezik-e és olvasható-e." - -#: src/Module/Admin/Logs/View.php:44 -#, php-format -msgid "" -"Couldn't open %1$s log file.\\r\\n
Check to see if file" -" %1$s is readable." -msgstr "Nem sikerült megnyitni a(z) %1$s naplófájlt.\\r\\n
Ellenőrizze, hogy a(z) „%1$s” fájl olvasható-e." - -#: src/Module/Admin/Logs/Settings.php:48 -#, php-format -msgid "The logfile '%s' is not writable. No logging possible" -msgstr "A(z) „%s” naplófájl nem írható. A naplózás nem lehetséges." - -#: src/Module/Admin/Logs/Settings.php:72 -msgid "PHP log currently enabled." -msgstr "A PHP-naplózás jelenleg engedélyezve van." - -#: src/Module/Admin/Logs/Settings.php:74 -msgid "PHP log currently disabled." -msgstr "A PHP-naplózás jelenleg le van tiltva." - -#: src/Module/Admin/Logs/Settings.php:83 -msgid "Clear" -msgstr "Törlés" - -#: src/Module/Admin/Logs/Settings.php:87 -msgid "Enable Debugging" -msgstr "Hibakeresés engedélyezése" - -#: src/Module/Admin/Logs/Settings.php:88 -msgid "Log file" -msgstr "Naplófájl" - -#: src/Module/Admin/Logs/Settings.php:88 -msgid "" -"Must be writable by web server. Relative to your Friendica top-level " -"directory." -msgstr "Írhatónak kell lennie a webkiszolgáló által. Relatívan kell megadni a Friendica felső szintű könyvtárához képest." - -#: src/Module/Admin/Logs/Settings.php:89 -msgid "Log level" -msgstr "Naplózási szint" - -#: src/Module/Admin/Logs/Settings.php:91 -msgid "PHP logging" -msgstr "PHP-naplózás" - -#: src/Module/Admin/Logs/Settings.php:92 -msgid "" -"To temporarily enable logging of PHP errors and warnings you can prepend the" -" following to the index.php file of your installation. The filename set in " -"the 'error_log' line is relative to the friendica top-level directory and " -"must be writeable by the web server. The option '1' for 'log_errors' and " -"'display_errors' is to enable these options, set to '0' to disable them." -msgstr "A PHP hibák és figyelmeztetések naplózásának átmeneti engedélyezéséhez beszúrhatja a következőket a telepítése index.php fájljának elejére. Az „error_log” sorban beállított fájlnév relatív a Friendica felső szintű könyvtárához képest, és írhatónak kell lennie a webkiszolgáló által. A „log_errors” és a „display_errors” beállítások „1” értéke a beállítások engedélyezéséhez kell. Állítsa „0” értékre a letiltásukhoz." - -#: src/Module/Admin/Queue.php:50 -msgid "Inspect Deferred Worker Queue" -msgstr "Elhalasztott feldolgozó várakozási sorának vizsgálata" - -#: src/Module/Admin/Queue.php:51 -msgid "" -"This page lists the deferred worker jobs. This are jobs that couldn't be " -"executed at the first time." -msgstr "Ez az oldal az elhalasztott feldolgozó feladatokat sorolja fel. Ezek azok a feladatok, amelyeket nem sikerült végrehajtani első alkalommal." - -#: src/Module/Admin/Queue.php:54 -msgid "Inspect Worker Queue" -msgstr "Feldolgozó várakozási sorának vizsgálata" - -#: src/Module/Admin/Queue.php:55 -msgid "" -"This page lists the currently queued worker jobs. These jobs are handled by " -"the worker cronjob you've set up during install." -msgstr "Ez az oldal a jelenleg sorba állított feldolgozó feladatokat sorolja fel. Ezeket a feladatokat a feldolgozó cron-feladata kezeli, amelyet a telepítés során állított be." - -#: src/Module/Admin/Queue.php:75 -msgid "ID" -msgstr "Azonosító" - -#: src/Module/Admin/Queue.php:76 -msgid "Job Parameters" -msgstr "Feladat paraméterei" - -#: src/Module/Admin/Queue.php:77 -msgid "Created" -msgstr "Létrehozva" - -#: src/Module/Admin/Queue.php:78 -msgid "Priority" -msgstr "Prioritás" - -#: src/Module/Admin/Summary.php:53 -#, php-format -msgid "Template engine (%s) error: %s" -msgstr "Sablonmotor (%s) hiba: %s" - -#: src/Module/Admin/Summary.php:57 -#, php-format -msgid "" -"Your DB still runs with MyISAM tables. You should change the engine type to " -"InnoDB. As Friendica will use InnoDB only features in the future, you should" -" change this! See here for a guide that may be helpful " -"converting the table engines. You may also use the command php " -"bin/console.php dbstructure toinnodb of your Friendica installation for" -" an automatic conversion.
" -msgstr "Az adatbázisa még mindig MyISAM táblákkal fut. Meg kell változtatnia a motor típusát InnoDB-re. Mivel a Friendica a jövőben olyan funkciókat fog használni, amely csak InnoDB használatával érhető el, ezért meg kell változtatnia! Nézze meg ezt az útmutatót, amely hasznos lehet a táblamotorok átalakításához. Használhatja a Friendica telepítésének php bin/console.php dbstructure toinnodb parancsát is az automatikus átalakításhoz.
" - -#: src/Module/Admin/Summary.php:62 -#, php-format -msgid "" -"Your DB still runs with InnoDB tables in the Antelope file format. You " -"should change the file format to Barracuda. Friendica is using features that" -" are not provided by the Antelope format. See here for a " -"guide that may be helpful converting the table engines. You may also use the" -" command php bin/console.php dbstructure toinnodb of your Friendica" -" installation for an automatic conversion.
" -msgstr "Az adatbázisa még mindig Antelope fájlformátumban lévő InnoDB táblákkal fut. Meg kell változtatnia a fájlformátumot Barracudára. A Friendica olyan funkciókat használ, amelyeket az Antelope fájlformátum nem biztosít. Nézze meg ezt az útmutatót, amely hasznos lehet a táblamotorok átalakításához. Használhatja a Friendica telepítésének php bin/console.php dbstructure toinnodb parancsát is az automatikus átalakításhoz.
" - -#: src/Module/Admin/Summary.php:72 -#, php-format -msgid "" -"Your table_definition_cache is too low (%d). This can lead to the database " -"error \"Prepared statement needs to be re-prepared\". Please set it at least" -" to %d. See here for more information.
" -msgstr "A table_definition_cache értéke túl alacsony (%d). Ez a „Prepared statement needs to be re-prepared” adatbázishibához vezethet. Állítsa legalább %d értékre. További információkért nézze meg ezt.
" - -#: src/Module/Admin/Summary.php:82 -#, php-format -msgid "" -"There is a new version of Friendica available for download. Your current " -"version is %1$s, upstream version is %2$s" -msgstr "Elérhető a Friendica új verziója a letöltéshez. A jelenlegi verziója %1$s, a távoli verzió %2$s." - -#: src/Module/Admin/Summary.php:91 -msgid "" -"The database update failed. Please run \"php bin/console.php dbstructure " -"update\" from the command line and have a look at the errors that might " -"appear." -msgstr "Az adatbázis frissítése sikertelen. Futtassa a „php bin/console.php dbstructure update” parancsot a parancssorból, és nézze meg a hibákat, amelyek esetleg megjelennek." - -#: src/Module/Admin/Summary.php:95 -msgid "" -"The last update failed. Please run \"php bin/console.php dbstructure " -"update\" from the command line and have a look at the errors that might " -"appear. (Some of the errors are possibly inside the logfile.)" -msgstr "A legutóbbi frissítés sikertelen. Futtassa a „php bin/console.php dbstructure update” parancsot a parancssorból, és nézze meg a hibákat, amelyek esetleg megjelennek (néhány hiba valószínűleg a naplófájlban lesz)." - -#: src/Module/Admin/Summary.php:100 -msgid "The worker was never executed. Please check your database structure!" -msgstr "A feldolgozó sosem lett végrehajtva. Ellenőrizze az adatbázis szerkezetét!" - -#: src/Module/Admin/Summary.php:102 -#, php-format -msgid "" -"The last worker execution was on %s UTC. This is older than one hour. Please" -" check your crontab settings." -msgstr "Az utolsó feldolgozó-végrehajtás ideje %s volt (UTC szerint). Ez régebbi mint egy óra. Ellenőrizze a cron-feladat beállításait." - -#: src/Module/Admin/Summary.php:107 -#, php-format -msgid "" -"Friendica's configuration now is stored in config/local.config.php, please " -"copy config/local-sample.config.php and move your config from " -".htconfig.php. See the Config help page for " -"help with the transition." -msgstr "A Friendica beállításai most a „config/local.config.php” fájlban vannak eltárolva. Másolja le a „config/local-sample.config.php” fájlt, és helyezze át a beállításokat a .htconfig.php fájlból. Az átvitelhez való segítségért nézze meg a beállítások súgóoldalát." - -#: src/Module/Admin/Summary.php:111 -#, php-format -msgid "" -"Friendica's configuration now is stored in config/local.config.php, please " -"copy config/local-sample.config.php and move your config from " -"config/local.ini.php. See the Config help " -"page for help with the transition." -msgstr "A Friendica beállításai most a „config/local.config.php” fájlban vannak eltárolva. Másolja le a „config/local-sample.config.php” fájlt, és helyezze át a beállításokat a config/local.ini.php fájlból. Az átvitelhez való segítségért nézze meg a beállítások súgóoldalát." - -#: src/Module/Admin/Summary.php:117 -#, php-format -msgid "" -"%s is not reachable on your system. This is a severe " -"configuration issue that prevents server to server communication. See the installation page for help." -msgstr "A %s nem érhető el a rendszeréről. Ez súlyos beállítási probléma, amely megakadályozza a kiszolgálók közti kommunikációt. Nézze meg a telepítési oldalt a segítségért." - -#: src/Module/Admin/Summary.php:135 -#, php-format -msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "A(z) „%s” naplófájl nem használható. Nem lehetséges a naplózás (hiba: „%s”)." - -#: src/Module/Admin/Summary.php:149 -#, php-format -msgid "" -"The debug logfile '%s' is not usable. No logging possible (error: '%s')" -msgstr "A(z) „%s” hibakeresési naplófájl nem használható. Nem lehetséges a naplózás (hiba: „%s”)." - -#: src/Module/Admin/Summary.php:165 -#, php-format -msgid "" -"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" -" system.basepath from your db to avoid differences." -msgstr "A Friendica „system.basepath” beállítása frissítve lett „%s” értékről „%s” értékre. Távolítsa el a „system.basepath” beállítást az adatbázisából az eltérések elkerüléséhez." - -#: src/Module/Admin/Summary.php:173 -#, php-format -msgid "" -"Friendica's current system.basepath '%s' is wrong and the config file '%s' " -"isn't used." -msgstr "A Friendica jelenlegi „system.basepath” értéke („%s”) hibás, és a(z) „%s” beállítófájl nincs használva." - -#: src/Module/Admin/Summary.php:181 -#, php-format -msgid "" -"Friendica's current system.basepath '%s' is not equal to the config file " -"'%s'. Please fix your configuration." -msgstr "A Friendica jelenlegi „system.basepath” értéke („%s”) nem azonos a(z) „%s” beállítófájlban lévővel. Javítsa a beállításokat." - -#: src/Module/Admin/Summary.php:188 -msgid "Normal Account" -msgstr "Normál fiók" - -#: src/Module/Admin/Summary.php:189 -msgid "Automatic Follower Account" -msgstr "Automatikusan követő fiók" - -#: src/Module/Admin/Summary.php:190 -msgid "Public Forum Account" -msgstr "Nyilvános fórum fiók" - -#: src/Module/Admin/Summary.php:191 -msgid "Automatic Friend Account" -msgstr "Automatikus ismerős fiók" - -#: src/Module/Admin/Summary.php:192 -msgid "Blog Account" -msgstr "Blog fiók" - -#: src/Module/Admin/Summary.php:193 -msgid "Private Forum Account" -msgstr "Személyes fórumfiók" - -#: src/Module/Admin/Summary.php:213 -msgid "Message queues" -msgstr "Üzenet várakozási sorai" - -#: src/Module/Admin/Summary.php:219 -msgid "Server Settings" -msgstr "Kiszolgálóbeállítások" - -#: src/Module/Admin/Summary.php:233 src/Repository/ProfileField.php:285 -msgid "Summary" -msgstr "Összefoglaló" - -#: src/Module/Admin/Summary.php:235 -msgid "Registered users" -msgstr "Regisztrált felhasználók" - -#: src/Module/Admin/Summary.php:237 -msgid "Pending registrations" -msgstr "Függőben lévő regisztrációk" - -#: src/Module/Admin/Summary.php:238 -msgid "Version" -msgstr "Verzió" - -#: src/Module/Admin/Summary.php:242 -msgid "Active addons" -msgstr "Bekapcsolt bővítmények" - -#: src/Module/Admin/Item/Source.php:58 -msgid "Item Guid" -msgstr "Elem GUID értéke" - -#: src/Module/Admin/Item/Source.php:63 -msgid "Item Id" -msgstr "Elemazonosító" - -#: src/Module/Admin/Item/Source.php:64 -msgid "Item URI" -msgstr "Elem URI" - -#: src/Module/Admin/Item/Source.php:66 -msgid "Terms" -msgstr "Kifejezések" - -#: src/Module/Admin/Item/Source.php:67 -msgid "Tag" -msgstr "Címke" - -#: src/Module/Admin/Item/Source.php:68 src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Index.php:142 src/Module/Admin/Users/Blocked.php:130 -msgid "Type" -msgstr "Típus" - -#: src/Module/Admin/Item/Source.php:69 -msgid "Term" -msgstr "Kifejezés" - -#: src/Module/Admin/Item/Source.php:70 -msgid "URL" -msgstr "URL" - -#: src/Module/Admin/Item/Source.php:71 -msgid "Mention" -msgstr "Említés" - -#: src/Module/Admin/Item/Source.php:72 -msgid "Implicit Mention" -msgstr "Implicit említés" - -#: src/Module/Admin/Item/Delete.php:54 -msgid "Item marked for deletion." -msgstr "Az elem megjelölve törlésre." - -#: src/Module/Admin/Item/Delete.php:67 -msgid "Delete this Item" -msgstr "Az elem törlése" - -#: src/Module/Admin/Item/Delete.php:68 -msgid "" -"On this page you can delete an item from your node. If the item is a top " -"level posting, the entire thread will be deleted." -msgstr "Ezen az oldalon törölhet egy elemet a csomópontjáról. Ha az elem egy felső szintű beküldés, akkor a teljes szál törlésre fog kerülni." - -#: src/Module/Admin/Item/Delete.php:69 -msgid "" -"You need to know the GUID of the item. You can find it e.g. by looking at " -"the display URL. The last part of http://example.com/display/123456 is the " -"GUID, here 123456." -msgstr "Tudnia kell az elem GUID értékét. Ezt megtalálhatja például a megjelenített URL-re tekintve. A http://example.com/display/123456 utolsó része a GUID, itt az 123456." - -#: src/Module/Admin/Item/Delete.php:70 -msgid "GUID" -msgstr "GUID" - -#: src/Module/Admin/Item/Delete.php:70 -msgid "The GUID of the item you want to delete." -msgstr "Annak az elemnek GUID értéke, amelyet törölni szeretne." - -#: src/Module/Admin/Site.php:69 -msgid "Can not parse base url. Must have at least ://" -msgstr "Nem lehet feldolgozni az alap URL-t. Legalább :// értékkel kell rendelkeznie." - -#: src/Module/Admin/Site.php:123 -msgid "Relocation started. Could take a while to complete." -msgstr "Az áthelyezés elkezdődött. Eltarthat egy ideig, mire befejeződik." - -#: src/Module/Admin/Site.php:249 -msgid "Invalid storage backend setting value." -msgstr "Érvénytelen tároló-háttérprogram beállítási érték." - -#: src/Module/Admin/Site.php:478 -msgid "No community page for local users" -msgstr "Nincs közösségi oldal a helyi felhasználókhoz" - -#: src/Module/Admin/Site.php:479 -msgid "No community page" -msgstr "Nincs közösségi oldal" - -#: src/Module/Admin/Site.php:480 -msgid "Public postings from users of this site" -msgstr "Nyilvános beküldések ezen oldal felhasználóitól" - -#: src/Module/Admin/Site.php:481 -msgid "Public postings from the federated network" -msgstr "Nyilvános beküldések a föderált hálózatból" - -#: src/Module/Admin/Site.php:482 -msgid "Public postings from local users and the federated network" -msgstr "Nyilvános beküldések a helyi felhasználóktól és a föderált hálózatból" - -#: src/Module/Admin/Site.php:488 -msgid "Multi user instance" -msgstr "Többfelhasználós példány" - -#: src/Module/Admin/Site.php:516 -msgid "Closed" -msgstr "Lezárva" - -#: src/Module/Admin/Site.php:517 -msgid "Requires approval" -msgstr "Jóváhagyást igényel" - -#: src/Module/Admin/Site.php:518 -msgid "Open" -msgstr "Nyitott" - -#: src/Module/Admin/Site.php:528 -msgid "Don't check" -msgstr "Ne ellenőrizze" - -#: src/Module/Admin/Site.php:529 -msgid "check the stable version" -msgstr "a stabil verzió ellenőrzése" - -#: src/Module/Admin/Site.php:530 -msgid "check the development version" -msgstr "a fejlesztői verzió ellenőrzése" - -#: src/Module/Admin/Site.php:534 -msgid "none" -msgstr "nincs" - -#: src/Module/Admin/Site.php:535 -msgid "Local contacts" -msgstr "Helyi partnerek" - -#: src/Module/Admin/Site.php:536 -msgid "Interactors" -msgstr "Interaktorok" - -#: src/Module/Admin/Site.php:549 -msgid "Database (legacy)" -msgstr "Adatbázis (örökölt)" - -#: src/Module/Admin/Site.php:581 -msgid "General Information" -msgstr "Általános információk" - -#: src/Module/Admin/Site.php:583 -msgid "Republish users to directory" -msgstr "Felhasználók újra közzé tétele a könyvtárba" - -#: src/Module/Admin/Site.php:585 -msgid "File upload" -msgstr "Fájlfeltöltés" - -#: src/Module/Admin/Site.php:586 -msgid "Policies" -msgstr "Irányelvek" - -#: src/Module/Admin/Site.php:588 -msgid "Auto Discovered Contact Directory" -msgstr "Automatikusan felfedezett partnerkönyvtár" - -#: src/Module/Admin/Site.php:589 -msgid "Performance" -msgstr "Teljesítmény" - -#: src/Module/Admin/Site.php:590 -msgid "Worker" -msgstr "Feldolgozó" - -#: src/Module/Admin/Site.php:591 -msgid "Message Relay" -msgstr "Üzenettovábbítás" - -#: src/Module/Admin/Site.php:592 -msgid "Relocate Instance" -msgstr "Példány áthelyezése" - -#: src/Module/Admin/Site.php:593 -msgid "" -"Warning! Advanced function. Could make this server " -"unreachable." -msgstr "Figyelmeztetés! Speciális funkció. Elérhetetlenné teheti a kiszolgálót." - -#: src/Module/Admin/Site.php:597 -msgid "Site name" -msgstr "Oldal neve" - -#: src/Module/Admin/Site.php:598 -msgid "Sender Email" -msgstr "Küldő e-mail-címe" - -#: src/Module/Admin/Site.php:598 -msgid "" -"The email address your server shall use to send notification emails from." -msgstr "Az az e-mail-cím, amelyet a kiszolgáló használhat az értesítési e-mailek kiküldéséhez." - -#: src/Module/Admin/Site.php:599 -msgid "Name of the system actor" -msgstr "A rendszer szereplőjének neve" - -#: src/Module/Admin/Site.php:599 -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 "A belső rendszerfiók neve, amely az ActivityPub kérések végrehajtásához lesz használva. Ennek egy nem használt felhasználónévnek kell lennie. Ha be van állítva, akkor ez nem változtatható meg újra." - -#: src/Module/Admin/Site.php:600 -msgid "Banner/Logo" -msgstr "Reklámcsík vagy logó" - -#: src/Module/Admin/Site.php:601 -msgid "Email Banner/Logo" -msgstr "E-mail reklámcsík vagy logó" - -#: src/Module/Admin/Site.php:602 -msgid "Shortcut icon" -msgstr "Böngészőikon" - -#: src/Module/Admin/Site.php:602 -msgid "Link to an icon that will be used for browsers." -msgstr "Hivatkozás egy ikonra, amely a böngészőknél lesz használva." - -#: src/Module/Admin/Site.php:603 -msgid "Touch icon" -msgstr "Érintő ikon" - -#: src/Module/Admin/Site.php:603 -msgid "Link to an icon that will be used for tablets and mobiles." -msgstr "Hivatkozás egy ikonra, amely táblagépeknél és mobiltelefonoknál lesz használva." - -#: src/Module/Admin/Site.php:604 -msgid "Additional Info" -msgstr "További információk" - -#: src/Module/Admin/Site.php:604 -#, php-format -msgid "" -"For public servers: you can add additional information here that will be " -"listed at %s/servers." -msgstr "Nyilvános kiszolgálóknál: itt adhat meg további információkat, amelyek a %s/servers oldalon lesznek felsorolva." - -#: src/Module/Admin/Site.php:605 -msgid "System language" -msgstr "Rendszer nyelve" - -#: src/Module/Admin/Site.php:606 -msgid "System theme" -msgstr "Rendszer témája" - -#: src/Module/Admin/Site.php:606 -msgid "" -"Default system theme - may be over-ridden by user profiles - Change default theme settings" -msgstr "Alapértelmezett rendszertéma – a felhasználói profilok felülbírálhatják – alapértelmezett témabeállítások megváltoztatása." - -#: src/Module/Admin/Site.php:607 -msgid "Mobile system theme" -msgstr "Mobilrendszer témája" - -#: src/Module/Admin/Site.php:607 -msgid "Theme for mobile devices" -msgstr "Téma a mobil eszközökhöz." - -#: src/Module/Admin/Site.php:609 -msgid "Force SSL" -msgstr "SSL kényszerítése" - -#: src/Module/Admin/Site.php:609 -msgid "" -"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" -" to endless loops." -msgstr "Az összes nem SSL kérés SSL-re kényszerítése – Figyelem: néhány rendszeren végtelen hurkokat eredményezhet." - -#: src/Module/Admin/Site.php:610 -msgid "Hide help entry from navigation menu" -msgstr "Súgó bejegyzés elrejtése a navigációs menüből" - -#: src/Module/Admin/Site.php:610 -msgid "" -"Hides the menu entry for the Help pages from the navigation menu. You can " -"still access it calling /help directly." -msgstr "Elrejti a súgóoldalak menübejegyzését a navigációs menüből. Továbbra is elérheti a „/help” közvetlen meghívásával." - -#: src/Module/Admin/Site.php:611 -msgid "Single user instance" -msgstr "Egyfelhasználós példány" - -#: src/Module/Admin/Site.php:611 -msgid "Make this instance multi-user or single-user for the named user" -msgstr "Többfelhasználóssá vagy a megnevezett felhasználó számára egyfelhasználóssá teszi ezt a rendszert." - -#: src/Module/Admin/Site.php:613 -msgid "File storage backend" -msgstr "Fájltároló háttérprogram" - -#: src/Module/Admin/Site.php:613 -msgid "" -"The backend used to store uploaded data. If you change the storage backend, " -"you can manually move the existing files. If you do not do so, the files " -"uploaded before the change will still be available at the old backend. " -"Please see the settings documentation" -" for more information about the choices and the moving procedure." -msgstr "A feltöltött adatok tárolásához használt háttérprogram. Ha megváltoztatja a tároló háttérprogramot, akkor a meglévő fájlokat kézzel tudja áthelyezni. Ha nem tesz így, akkor a változtatás előtt feltöltött fájlok továbbra is elérhetőek lesznek a régi háttérprogramnál. A lehetőségekkel és az áthelyezési eljárással kapcsolatos további információkért nézze meg a beállítások dokumentációját." - -#: src/Module/Admin/Site.php:615 -msgid "Maximum image size" -msgstr "Legnagyobb képméret" - -#: src/Module/Admin/Site.php:615 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "A feltöltött képek legnagyobb mérete bájtban. Alapértelmezetten 0, ami azt jelenti, hogy nincs korlát." - -#: src/Module/Admin/Site.php:616 -msgid "Maximum image length" -msgstr "Legnagyobb képhossz" - -#: src/Module/Admin/Site.php:616 -msgid "" -"Maximum length in pixels of the longest side of uploaded images. Default is " -"-1, which means no limits." -msgstr "A feltöltött képek leghosszabb oldalának legnagyobb hossza képpontban. Alapértelmezetten -1, ami azt jelenti, hogy nincs korlát." - -#: src/Module/Admin/Site.php:617 -msgid "JPEG image quality" -msgstr "JPEG-képek minősége" - -#: src/Module/Admin/Site.php:617 -msgid "" -"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " -"100, which is full quality." -msgstr "A feltöltött JPEG-képek ezzel a minőségbeállítással lesznek elmentve [0-100]. Alapértelmezetten 100, ami teljes minőséget jelent." - -#: src/Module/Admin/Site.php:619 -msgid "Register policy" -msgstr "Regisztrációs irányelv" - -#: src/Module/Admin/Site.php:620 -msgid "Maximum Daily Registrations" -msgstr "Legtöbb napi regisztráció" - -#: src/Module/Admin/Site.php:620 -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 "Ha a regisztrációk megengedettek fent, akkor ez állítja be a naponta elfogadandó új felhasználói regisztrációk legnagyobb számát. Ha a regisztráció lezártra van állítva, akkor ennek a beállításnak nincs hatása." - -#: src/Module/Admin/Site.php:621 -msgid "Register text" -msgstr "Regisztrációs szöveg" - -#: src/Module/Admin/Site.php:621 -msgid "" -"Will be displayed prominently on the registration page. You can use BBCode " -"here." -msgstr "Szembetűnően lesz megjelenítve a regisztrációs oldalon. BBCode formázást is használhat itt." - -#: src/Module/Admin/Site.php:622 -msgid "Forbidden Nicknames" -msgstr "Tiltott becenevek" - -#: src/Module/Admin/Site.php:622 -msgid "" -"Comma separated list of nicknames that are forbidden from registration. " -"Preset is a list of role names according RFC 2142." -msgstr "A becenevek vesszővel elválasztott listája, amelyek tiltottak a regisztrációnál. Az előbeállítás az RFC 2142 szerinti szerepnevek listája." - -#: src/Module/Admin/Site.php:623 -msgid "Accounts abandoned after x days" -msgstr "Fiókok elhagyottak X nap után" - -#: src/Module/Admin/Site.php:623 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Nem fogja pazarolni a rendszer erőforrásait a külső oldalak lekérdezésével az elhagyott fiókoknál. Adjon meg 0 értéket, hogy ne legyen időkorlát." - -#: src/Module/Admin/Site.php:624 -msgid "Allowed friend domains" -msgstr "Engedélyezett ismerőstartományok" - -#: src/Module/Admin/Site.php:624 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Azon tartományok vesszővel elválasztott listája, amelyeknek engedélyezett ismeretséget létesíteni ezzel az oldallal. A helyettesítő karakterek is elfogadottak. Ha üresen marad, akkor bármely tartomány megengedett." - -#: src/Module/Admin/Site.php:625 -msgid "Allowed email domains" -msgstr "Engedélyezett e-mail-tartományok" - -#: src/Module/Admin/Site.php:625 -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 "Azon tartományok vesszővel elválasztott listája, amelyek engedélyezettek az e-mail-címekben az oldalra történő regisztrációkhoz. A helyettesítő karakterek is elfogadottak. Ha üresen marad, akkor bármely tartomány megengedett." - -#: src/Module/Admin/Site.php:626 -msgid "No OEmbed rich content" -msgstr "Nincs OEmbed gazdag tartalom" - -#: src/Module/Admin/Site.php:626 -msgid "" -"Don't show the rich content (e.g. embedded PDF), except from the domains " -"listed below." -msgstr "Ne jelenítse meg a gazdag tartalmat (például beágyazott PDF), kivéve az alább felsorolt tartományokról." - -#: src/Module/Admin/Site.php:627 -msgid "Trusted third-party domains" -msgstr "Megbízható harmadik fél tartományok" - -#: src/Module/Admin/Site.php:627 -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 "Tartományok vesszővel elválasztott listája, amelyekről engedélyezett a tartalom bejegyzésekben való beágyazása, mint például az OEmbed használatával. A felsorolt tartományok összes altartománya is engedélyezve van." - -#: src/Module/Admin/Site.php:628 -msgid "Block public" -msgstr "Nyilvános tiltása" - -#: src/Module/Admin/Site.php:628 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently logged in." -msgstr "Jelölje be az ezen az oldalon lévő összes, egyébként nyilvános személyes oldal nyilvános hozzáférésének tiltásához, hacsak jelenleg nincs bejelentkezve." - -#: src/Module/Admin/Site.php:629 -msgid "Force publish" -msgstr "Közzététel kényszerítése" - -#: src/Module/Admin/Site.php:629 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Jelölje be, hogy ezen az oldalon az összes profil kényszerítetten fel legyen sorolva az oldal könyvtárában." - -#: src/Module/Admin/Site.php:629 -msgid "Enabling this may violate privacy laws like the GDPR" -msgstr "Ennek engedélyezése megsértheti az adatvédelmi rendeleteket, mint például a GDPR-t." - -#: src/Module/Admin/Site.php:630 -msgid "Global directory URL" -msgstr "Globális könyvtár URL" - -#: src/Module/Admin/Site.php:630 -msgid "" -"URL to the global directory. If this is not set, the global directory is " -"completely unavailable to the application." -msgstr "Az URL a globális könyvtárhoz. Ha ez nincs beállítva, akkor a globális könyvtár teljesen elérhetetlen lesz az alkalmazásoknak." - -#: src/Module/Admin/Site.php:631 -msgid "Private posts by default for new users" -msgstr "Alapértelmezetten személyes bejegyzések az új felhasználóknál" - -#: src/Module/Admin/Site.php:631 -msgid "" -"Set default post permissions for all new members to the default privacy " -"group rather than public." -msgstr "Az összes új tag alapértelmezett bejegyzés-jogosultságainak beállítása az alapértelmezett adatvédelmi csoportra a nyilvános helyett." - -#: src/Module/Admin/Site.php:632 -msgid "Don't include post content in email notifications" -msgstr "Ne ágyazza be a bejegyzés tartalmát az e-mailes értesítésekbe" - -#: src/Module/Admin/Site.php:632 -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 "Adatvédelmi intézkedésként ne ágyazza be egy bejegyzés, hozzászólás, személyes üzenet stb. tartalmát azokba az e-mailes értesítésekbe, amelyek erről az oldalról kerülnek kiküldésre." - -#: src/Module/Admin/Site.php:633 -msgid "Disallow public access to addons listed in the apps menu." -msgstr "Nyilvános hozzáférés letiltása az alkalmazások menüben felsorolt bővítményekhez" - -#: src/Module/Admin/Site.php:633 -msgid "" -"Checking this box will restrict addons listed in the apps menu to members " -"only." -msgstr "A jelölőnégyzet bejelölésével csak a tagok számára fogja korlátozni az alkalmazások menüben felsorolt bővítményeket." - -#: src/Module/Admin/Site.php:634 -msgid "Don't embed private images in posts" -msgstr "Ne ágyazzon be személyes képeket a bejegyzésekbe" - -#: src/Module/Admin/Site.php:634 -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 " -"photos will have to authenticate and load each image, which may take a " -"while." -msgstr "Ne cserélje ki a bejegyzésekben lévő helyileg kiszolgált személyes fényképeket a kép beágyazott másolatával. Ez azt jelenti, hogy a személyes fényképeket tartalmazó bejegyzéseket fogadó partnereknek hitelesíteniük kell magukat és be kell tölteniük minden egyes képet, ami eltarthat egy ideig." - -#: src/Module/Admin/Site.php:635 -msgid "Explicit Content" -msgstr "Felnőtteknek szánt tartalom" - -#: src/Module/Admin/Site.php:635 -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 " -"node information and might be used, e.g. by the global directory, to filter " -"your node from listings of nodes to join. Additionally a note about this " -"will be shown at the user registration page." -msgstr "Állítsa be ezt annak közléséhez, hogy a csomópontját főként felnőtteknek szóló tartalomhoz használják, ami lehet, hogy nem alkalmas kiskorúak számára. Ez az információ közzé lesz téve a csomópont információiban, és használhatja például a globális könyvtár is, hogy kiszűrje a csomópontját a csatlakozáshoz felajánlott csomópontok listájából. Ezenkívül egy megjegyzés is meg lesz jelenítve ezzel kapcsolatban a felhasználó regisztrációs oldalán." - -#: src/Module/Admin/Site.php:636 -msgid "Allow Users to set remote_self" -msgstr "Távoli önmaguk beállításának engedélyezése a felhasználóknak" - -#: src/Module/Admin/Site.php:636 -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 "Ennek bejelölésével minden egyes felhasználó számára engedélyezett, hogy az egyes partnereket távoli önmagukként jelöljék meg a partner javítása párbeszédablakban. Ezen jelző beállítása egy partnernél a tartalom minden egyes beküldésének tükrözését okozza a felhasználók adatfolyamában." - -#: src/Module/Admin/Site.php:637 -msgid "Block multiple registrations" -msgstr "Többszörös regisztrációk tiltása" - -#: src/Module/Admin/Site.php:637 -msgid "Disallow users to register additional accounts for use as pages." -msgstr "Nem teszi lehetővé a felhasználóknak, hogy további fiókokat regisztráljanak oldalakként történő használathoz." - -#: src/Module/Admin/Site.php:638 -msgid "Disable OpenID" -msgstr "OpenID letiltása" - -#: src/Module/Admin/Site.php:638 -msgid "Disable OpenID support for registration and logins." -msgstr "Az OpenID támogatás letiltása a regisztrációnál és a bejelentkezéseknél." - -#: src/Module/Admin/Site.php:639 -msgid "No Fullname check" -msgstr "Nincs teljes név ellenőrzés" - -#: src/Module/Admin/Site.php:639 -msgid "" -"Allow users to register without a space between the first name and the last " -"name in their full name." -msgstr "Lehetővé teszi a felhasználóknak, hogy a teljes nevükben lévő vezetéknév és a keresztnév közti szóköz nélkül regisztráljanak." - -#: src/Module/Admin/Site.php:640 -msgid "Community pages for visitors" -msgstr "Közösségi oldalak a látogatók számára" - -#: src/Module/Admin/Site.php:640 -msgid "" -"Which community pages should be available for visitors. Local users always " -"see both pages." -msgstr "Mely közösségi oldalaknak kell elérhetőnek lenniük a látogatók számára. A helyi felhasználók mindig mindkét oldalt látják." - -#: src/Module/Admin/Site.php:641 -msgid "Posts per user on community page" -msgstr "Felhasználónkénti bejegyzések a közösségi oldalon" - -#: src/Module/Admin/Site.php:641 -msgid "" -"The maximum number of posts per user on the community page. (Not valid for " -"\"Global Community\")" -msgstr "A felhasználónkénti bejegyzések legnagyobb száma a közösségi oldalon (nem érvényes a „globális közösségnél”)." - -#: src/Module/Admin/Site.php:642 -msgid "Disable OStatus support" -msgstr "OStatus támogatás letiltása" - -#: src/Module/Admin/Site.php:642 -msgid "" -"Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " -"communications in OStatus are public, so privacy warnings will be " -"occasionally displayed." -msgstr "A beépített OStatus (StatusNet, GNU Social stb.) kompatibilitás letiltása. Az OStatus hálózaton lévő összes kommunikáció nyilvános, ezért adatvédelmi figyelmeztetések lesznek időnként megjelenítve." - -#: src/Module/Admin/Site.php:643 -msgid "OStatus support can only be enabled if threading is enabled." -msgstr "Az OStatus támogatást csak akkor lehet engedélyezni, ha a szálkezelés engedélyezve van." - -#: src/Module/Admin/Site.php:645 -msgid "" -"Diaspora support can't be enabled because Friendica was installed into a sub" -" directory." -msgstr "A Diaspora támogatást nem lehet engedélyezni, mert a Friendica egy alkönyvtárba lett telepítve." - -#: src/Module/Admin/Site.php:646 -msgid "Enable Diaspora support" -msgstr "Diaspora támogatás engedélyezése" - -#: src/Module/Admin/Site.php:646 -msgid "Provide built-in Diaspora network compatibility." -msgstr "Beépített Diaspora hálózati kompatibilitás biztosítása." - -#: src/Module/Admin/Site.php:647 -msgid "Only allow Friendica contacts" -msgstr "Csak Friendica partnerek engedélyezése" - -#: src/Module/Admin/Site.php:647 -msgid "" -"All contacts must use Friendica protocols. All other built-in communication " -"protocols disabled." -msgstr "Az összes partnernek Friendica protokollokat kell használnia. Az összes egyéb beépített kommunikációs protokoll le lesz tiltva." - -#: src/Module/Admin/Site.php:648 -msgid "Verify SSL" -msgstr "SSL ellenőrzése" - -#: src/Module/Admin/Site.php:648 -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 "Ha szeretné, bekapcsolhatja a szigorú tanúsítvány-ellenőrzést. Ezt azt jelenti, hogy nem tud kapcsolódni (egyáltalán) az önaláírt SSL-t használó oldalakhoz." - -#: src/Module/Admin/Site.php:649 -msgid "Proxy user" -msgstr "Proxy felhasználó" - -#: src/Module/Admin/Site.php:650 -msgid "Proxy URL" -msgstr "Proxy URL" - -#: src/Module/Admin/Site.php:651 -msgid "Network timeout" -msgstr "Hálózati időkorlát" - -#: src/Module/Admin/Site.php:651 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Az érték másodpercben van. Állítsa 0-ra a korlátlan időhöz (nem ajánlott)." - -#: src/Module/Admin/Site.php:652 -msgid "Maximum Load Average" -msgstr "Legnagyobb terhelésátlag" - -#: src/Module/Admin/Site.php:652 -#, php-format -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default %d." -msgstr "A legnagyobb rendszerterhelés, mielőtt a kézbesítési és lekérdezési folyamatok elhalasztásra kerülnek. Alapértelmezetten %d." - -#: src/Module/Admin/Site.php:653 -msgid "Maximum Load Average (Frontend)" -msgstr "Legnagyobb terhelésátlag (előtétprogram)" - -#: src/Module/Admin/Site.php:653 -msgid "Maximum system load before the frontend quits service - default 50." -msgstr "A legnagyobb rendszerterhelés, mielőtt az előtétprogram kilép a szolgáltatásból. Alapértelmezetten 50." - -#: src/Module/Admin/Site.php:654 -msgid "Minimal Memory" -msgstr "Legkevesebb memória" - -#: src/Module/Admin/Site.php:654 -msgid "" -"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " -"default 0 (deactivated)." -msgstr "A legkevesebb szabad memória MB-ban a feldolgozónál. Hozzáférést igényel a /proc/meminfo fájlhoz. Alapértelmezetten 0 (kikapcsolva)." - -#: src/Module/Admin/Site.php:655 -msgid "Periodically optimize tables" -msgstr "Táblák időszakos optimalizálása" - -#: src/Module/Admin/Site.php:655 -msgid "Periodically optimize tables like the cache and the workerqueue" -msgstr "A táblák időszakos optimalizálása, mint például a gyorsítótár és a feldolgozó várakozási sorának táblái." - -#: src/Module/Admin/Site.php:657 -msgid "Discover followers/followings from contacts" -msgstr "Követők vagy követések felfedezése a partnerekből" - -#: src/Module/Admin/Site.php:657 -msgid "" -"If enabled, contacts are checked for their followers and following contacts." -msgstr "Ha engedélyezve van, akkor a partnerek ellenőrizve lesznek a követő és követett partnereik számára." - -#: src/Module/Admin/Site.php:658 -msgid "None - deactivated" -msgstr "Nincs: ki van kapcsolva." - -#: src/Module/Admin/Site.php:659 -msgid "" -"Local contacts - contacts of our local contacts are discovered for their " -"followers/followings." -msgstr "Helyi partnerek: a helyi partnereink partnerei lesznek felfedezve a követőik vagy követésiek számára." - -#: src/Module/Admin/Site.php:660 -msgid "" -"Interactors - contacts of our local contacts and contacts who interacted on " -"locally visible postings are discovered for their followers/followings." -msgstr "Interaktorok: a helyi partnereink partnerei és a helyileg látható beküldésekkel kapcsolatba került partnerek lesznek felfedezve a követőik vagy követésiek számára." - -#: src/Module/Admin/Site.php:662 -msgid "Synchronize the contacts with the directory server" -msgstr "A partnerek szinkronizálása a könyvtárkiszolgálóval" - -#: src/Module/Admin/Site.php:662 -msgid "" -"if enabled, the system will check periodically for new contacts on the " -"defined directory server." -msgstr "Ha engedélyezve van, akkor a rendszer időszakosan ellenőrizni fogja az új partnereket a meghatározott könyvtárkiszolgálón." - -#: src/Module/Admin/Site.php:664 -msgid "Days between requery" -msgstr "Ismételt lekérdezések közti napok" - -#: src/Module/Admin/Site.php:664 -msgid "Number of days after which a server is requeried for his contacts." -msgstr "A napok száma, amely után egy kiszolgáló ismét lekérdezésre kerül a partnereiért." - -#: src/Module/Admin/Site.php:665 -msgid "Discover contacts from other servers" -msgstr "Partnerek felfedezése más kiszolgálókról" - -#: src/Module/Admin/Site.php:665 -msgid "" -"Periodically query other servers for contacts. The system queries Friendica," -" Mastodon and Hubzilla servers." -msgstr "Más kiszolgálók időszakos lekérdezése partnerek után. A rendszer Friendica, Mastodon és Hubzilla kiszolgálókat kérdez le." - -#: src/Module/Admin/Site.php:666 -msgid "Search the local directory" -msgstr "A helyi könyvtár keresése" - -#: src/Module/Admin/Site.php:666 -msgid "" -"Search the local directory instead of the global directory. When searching " -"locally, every search will be executed on the global directory in the " -"background. This improves the search results when the search is repeated." -msgstr "A helyi könyvtár keresése a globális könyvtár helyett. Helyi kereséskor minden egyes keresés a globális könyvtárban lesz végrehajtva a háttérben. Ez javítja a keresési eredményeket, ha a keresést megismétlik." - -#: src/Module/Admin/Site.php:668 -msgid "Publish server information" -msgstr "Kiszolgálóinformációk közzététele" - -#: src/Module/Admin/Site.php:668 -msgid "" -"If enabled, general server and usage data will be published. The data " -"contains the name and version of the server, number of users with public " -"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." -msgstr "Ha engedélyezve van, akkor az általános kiszolgáló és használati adatok közzé lesznek téve. Az adatok tartalmazzák a kiszolgáló nevét és verzióját, a nyilvános profillal rendelkező felhasználók számát, a bejegyzések számát, valamint a engedélyezett protokollokat és összekötőket. A részletekért nézze meg a the-federation.info weboldalt." - -#: src/Module/Admin/Site.php:670 -msgid "Check upstream version" -msgstr "Távoli verzió ellenőrzése" - -#: src/Module/Admin/Site.php:670 -msgid "" -"Enables checking for new Friendica versions at github. If there is a new " -"version, you will be informed in the admin panel overview." -msgstr "Engedélyezi az új Friendica verziójának keresését a GitHubon. Ha új verzió érhető el, akkor tájékoztatva lesz az adminisztrátori panel áttekintőjében." - -#: src/Module/Admin/Site.php:671 -msgid "Suppress Tags" -msgstr "Címkék letiltása" - -#: src/Module/Admin/Site.php:671 -msgid "Suppress showing a list of hashtags at the end of the posting." -msgstr "A kettős keresztes címkék listája megjelenítésének letiltása a beküldések végénél." - -#: src/Module/Admin/Site.php:672 -msgid "Clean database" -msgstr "Adatbázis tisztítása" - -#: src/Module/Admin/Site.php:672 -msgid "" -"Remove old remote items, orphaned database records and old content from some" -" other helper tables." -msgstr "Régi távoli elemek, árva adatbázisrekordok és néhány egyéb segédtáblából származó régi tartalom eltávolítása." - -#: src/Module/Admin/Site.php:673 -msgid "Lifespan of remote items" -msgstr "Távoli elemek élettartama" - -#: src/Module/Admin/Site.php:673 -msgid "" -"When the database cleanup is enabled, this defines the days after which " -"remote items will be deleted. Own items, and marked or filed items are " -"always kept. 0 disables this behaviour." -msgstr "Ha az adatbázis-tisztítás engedélyezve van, akkor ez határozza meg azon napok számát, amely után a távoli elemek törölve lesznek. A saját elemek, valamint a megjelölt és iktatott elemek mindig meg lesznek tartva. A 0 érték letiltja ezt a viselkedést." - -#: src/Module/Admin/Site.php:674 -msgid "Lifespan of unclaimed items" -msgstr "Nem igényelt elemek élettartama" - -#: src/Module/Admin/Site.php:674 -msgid "" -"When the database cleanup is enabled, this defines the days after which " -"unclaimed remote items (mostly content from the relay) will be deleted. " -"Default value is 90 days. Defaults to the general lifespan value of remote " -"items if set to 0." -msgstr "Ha az adatbázis-tisztítás engedélyezve van, akkor ez határozza meg azon napok számát, amely után a nem igényelt távoli elemek (főleg a továbbításból származó tartalmak) törölve lesznek. Az alapértelmezett érték 90 nap. A távoli elemek általános élettartamértékének alapértelmezettje lesz, ha 0 értékre van állítva." - -#: src/Module/Admin/Site.php:675 -msgid "Lifespan of raw conversation data" -msgstr "Nyers beszélgetési adatok élettartama" - -#: src/Module/Admin/Site.php:675 -msgid "" -"The conversation data is used for ActivityPub and OStatus, as well as for " -"debug purposes. It should be safe to remove it after 14 days, default is 90 " -"days." -msgstr "A beszélgetési adatok az ActivityPub és az OStatus hálózatoknál, valamint hibakeresési célokhoz vannak használva. Biztonságosan el lehet távolítani azokat 14 nap után. Alapértelmezetten 90 nap." - -#: src/Module/Admin/Site.php:676 -msgid "Path to item cache" -msgstr "Elemgyorsítótár útvonala" - -#: src/Module/Admin/Site.php:676 -msgid "The item caches buffers generated bbcode and external images." -msgstr "Az elemgyorsítótárak pufferelik az előállított BBCode-ot és a külső képeket." - -#: src/Module/Admin/Site.php:677 -msgid "Cache duration in seconds" -msgstr "Gyorsítótár-időtartam másodpercben" - -#: src/Module/Admin/Site.php:677 -msgid "" -"How long should the cache files be hold? Default value is 86400 seconds (One" -" day). To disable the item cache, set the value to -1." -msgstr "Mennyi ideig kell a gyorsítótár fájljait megtartani? Az alapértelmezett érték 86400 másodperc (egy nap). Az elemgyorsítótár letiltásához állítson be -1 értéket." - -#: src/Module/Admin/Site.php:678 -msgid "Maximum numbers of comments per post" -msgstr "Bejegyzésenkénti hozzászólások legnagyobb száma" - -#: src/Module/Admin/Site.php:678 -msgid "How much comments should be shown for each post? Default value is 100." -msgstr "Mennyi hozzászólást kell megjeleníteni az egyes bejegyzéseknél? Az alapértelmezett érték 100." - -#: src/Module/Admin/Site.php:679 -msgid "Maximum numbers of comments per post on the display page" -msgstr "Bejegyzésenkénti hozzászólások legnagyobb száma a megjelenítési oldalon" - -#: src/Module/Admin/Site.php:679 -msgid "" -"How many comments should be shown on the single view for each post? Default " -"value is 1000." -msgstr "Mennyi hozzászólást kell megjeleníteni egy önálló nézeten az egyes bejegyzéseknél? Az alapértelmezett érték 1000." - -#: src/Module/Admin/Site.php:680 -msgid "Temp path" -msgstr "Ideiglenes mappa útvonala" - -#: src/Module/Admin/Site.php:680 -msgid "" -"If you have a restricted system where the webserver can't access the system " -"temp path, enter another path here." -msgstr "Ha korlátozott rendszere van, ahol a webkiszolgáló nem tudja elérni a rendszer ideiglenes mappájának útvonalát, akkor adjon meg egy másik útvonalat itt." - -#: src/Module/Admin/Site.php:681 -msgid "Disable picture proxy" -msgstr "Képproxy letiltása" - -#: src/Module/Admin/Site.php:681 -msgid "" -"The picture proxy increases performance and privacy. It shouldn't be used on" -" systems with very low bandwidth." -msgstr "A képproxy növeli a teljesítményt és az adatvédelmet. Nem szabad használni nagyon alacsony sávszélességgel rendelkező rendszereknél." - -#: src/Module/Admin/Site.php:682 -msgid "Only search in tags" -msgstr "Keresés csak címkékben" - -#: src/Module/Admin/Site.php:682 -msgid "On large systems the text search can slow down the system extremely." -msgstr "Nagy rendszereknél a szöveges keresés rendkívüli módon lelassíthatja a rendszert." - -#: src/Module/Admin/Site.php:684 -msgid "New base url" -msgstr "Új alap URL" - -#: src/Module/Admin/Site.php:684 -msgid "" -"Change base url for this server. Sends relocate message to all Friendica and" -" Diaspora* contacts of all users." -msgstr "A kiszolgáló alap URL-ének megváltoztatása. Áthelyezési üzenetet küld az összes felhasználó minden Friendica és Diaspora* partnerének." - -#: src/Module/Admin/Site.php:686 -msgid "RINO Encryption" -msgstr "RINO titkosítás" - -#: src/Module/Admin/Site.php:686 -msgid "Encryption layer between nodes." -msgstr "Titkosítási réteg a csomópontok között." - -#: src/Module/Admin/Site.php:686 -msgid "Enabled" -msgstr "Engedélyezve" - -#: src/Module/Admin/Site.php:688 -msgid "Maximum number of parallel workers" -msgstr "Párhuzamos feldolgozók legnagyobb száma" - -#: src/Module/Admin/Site.php:688 -#, php-format -msgid "" -"On shared hosters set this to %d. On larger systems, values of %d are great." -" Default value is %d." -msgstr "Osztott tárhelyszolgáltatóknál állítsa ezt %d értékre. Nagyobb rendszereknél érdemes a számot %d értékre állítani. Az alapértelmezett érték %d." - -#: src/Module/Admin/Site.php:689 -msgid "Enable fastlane" -msgstr "Prioritásos sor engedélyezése" - -#: src/Module/Admin/Site.php:689 -msgid "" -"When enabed, the fastlane mechanism starts an additional worker if processes" -" with higher priority are blocked by processes of lower priority." -msgstr "Ha engedélyezve van, akkor a prioritásos sor mechanizmus további feldolgozót indít, ha a magasabb prioritással rendelkező folyamatokat blokkolják az alacsonyabb prioritású folyamatok." - -#: src/Module/Admin/Site.php:691 -msgid "Use relay servers" -msgstr "Továbbító kiszolgálók használata" - -#: src/Module/Admin/Site.php:691 -msgid "" -"Enables the receiving of public posts from relay servers. They will be " -"included in the search, subscribed tags and on the global community page." -msgstr "Engedélyezi a továbbító kiszolgálókról érkező nyilvános bejegyzések fogadását. Ezek fel lesznek véve a keresésbe, a feliratkozott címkékbe és a globális közösségi oldalra." - -#: src/Module/Admin/Site.php:692 -msgid "\"Social Relay\" server" -msgstr "„Közösségi továbbító” kiszolgáló" - -#: src/Module/Admin/Site.php:692 -#, php-format -msgid "" -"Address of the \"Social Relay\" server where public posts should be send to." -" For example %s. ActivityRelay servers are administrated via the \"console " -"relay\" command line command." -msgstr "Annak a „közösségi továbbító” kiszolgálónak a címe, ahová a nyilvános bejegyzéseket küldeni kell. Például %s. A tevékenység-továbbító kiszolgálók a „console relay” parancssori parancson keresztül vannak adminisztrálva." - -#: src/Module/Admin/Site.php:693 -msgid "Direct relay transfer" -msgstr "Közvetlen továbbító-átvitel" - -#: src/Module/Admin/Site.php:693 -msgid "" -"Enables the direct transfer to other servers without using the relay servers" -msgstr "Engedélyezi a más kiszolgálókra való közvetlen átvitelt a továbbító kiszolgálók használata nélkül." - -#: src/Module/Admin/Site.php:694 -msgid "Relay scope" -msgstr "Továbbítás hatóköre" - -#: src/Module/Admin/Site.php:694 -msgid "" -"Can be \"all\" or \"tags\". \"all\" means that every public post should be " -"received. \"tags\" means that only posts with selected tags should be " -"received." -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:694 -msgid "all" -msgstr "összes" - -#: src/Module/Admin/Site.php:694 -msgid "tags" -msgstr "címkék" - -#: src/Module/Admin/Site.php:695 -msgid "Server tags" -msgstr "Kiszolgálócímkék" - -#: src/Module/Admin/Site.php:695 -msgid "Comma separated list of tags for the \"tags\" subscription." -msgstr "Címkék vesszővel elválasztott listája a „címkék” feliratkozáshoz." - -#: src/Module/Admin/Site.php:696 -msgid "Deny Server tags" -msgstr "Kiszolgálócímkék megtagadása" - -#: src/Module/Admin/Site.php:696 -msgid "Comma separated list of tags that are rejected." -msgstr "Címkék vesszővel elválasztott listája, amelyek vissza lesznek utasítva." - -#: src/Module/Admin/Site.php:697 -msgid "Allow user tags" -msgstr "Felhasználói címkék engedélyezése" - -#: src/Module/Admin/Site.php:697 -msgid "" -"If enabled, the tags from the saved searches will used for the \"tags\" " -"subscription in addition to the \"relay_server_tags\"." -msgstr "Ha engedélyezve van, akkor a mentett keresésekből származó címkék lesznek használva a „címkék” feliratkozásnál a „relay_server_tags” címkéken kívül." - -#: src/Module/Admin/Site.php:700 -msgid "Start Relocation" -msgstr "Áthelyezés indítása" - -#: src/Module/Admin/Blocklist/Server.php:49 -msgid "Server domain pattern added to blocklist." -msgstr "A tiltólistához hozzáadott kiszolgáló tartománymintája." - -#: src/Module/Admin/Blocklist/Server.php:79 -#: src/Module/Admin/Blocklist/Server.php:104 -msgid "Blocked server domain pattern" -msgstr "Tiltott kiszolgálótartomány-minta" - -#: src/Module/Admin/Blocklist/Server.php:81 -msgid "Delete server domain pattern" -msgstr "Kiszolgálótartomány-minta törlése" - -#: src/Module/Admin/Blocklist/Server.php:81 -msgid "Check to delete this entry from the blocklist" -msgstr "Jelölje be a bejegyzés tiltólistából való törléséhez" - -#: src/Module/Admin/Blocklist/Server.php:89 -msgid "Server Domain Pattern Blocklist" -msgstr "Kiszolgálótartomány-minta tiltólistája" - -#: src/Module/Admin/Blocklist/Server.php:90 -msgid "" -"This page can be used to define a blocklist of server domain patterns from " -"the federated network that are not allowed to interact with your node. For " -"each domain pattern you should also provide the reason why you block it." -msgstr "Ez az oldal használható a föderált hálózatból származó azon kiszolgálótartomány-minták tiltólistájának meghatározásához, amelyeknek nem engedélyezett kapcsolatba lépniük az Ön csomópontjával. Minden egyes tartománymintához meg kell adnia az indokot is, hogy miért tiltja azt." - -#: src/Module/Admin/Blocklist/Server.php:91 -msgid "" -"The list of blocked server domain patterns will be made publically available" -" on the /friendica page so that your users and " -"people investigating communication problems can find the reason easily." -msgstr "A tiltott kiszolgálótartomány-minták listája nyilvánosan elérhetővé lesz téve a /friendica oldalon, azért hogy a kommunikációs problémákat kivizsgáló felhasználók és emberek egyszerűen megtalálják az okot." - -#: src/Module/Admin/Blocklist/Server.php:92 -msgid "" -"

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

\n" -"
    \n" -"\t
  • *: Any number of characters
  • \n" -"\t
  • ?: Any single character
  • \n" -"\t
  • [<char1><char2>...]: char1 or char2
  • \n" -"
" -msgstr "

A kiszolgálótartomány-minta szintaxisa kis- és nagybetűkre nem érzékeny parancsértelmező helyettesítő karakter, amely a következő különleges karaktereket tartalmazza:

\n
    \n\t
  • *: bármennyi számú karakter
  • \n\t
  • ?: bármilyen önálló karakter
  • \n\t
  • [<karakter1><karakter2>...]: karakter1 vagy karakter2
  • \n
" - -#: src/Module/Admin/Blocklist/Server.php:98 -msgid "Add new entry to block list" -msgstr "Új bejegyzés hozzáadása a tiltólistához" - -#: src/Module/Admin/Blocklist/Server.php:99 -msgid "Server Domain Pattern" -msgstr "Kiszolgálótartomány-minta" - -#: src/Module/Admin/Blocklist/Server.php:99 -msgid "" -"The domain pattern of the new server to add to the block list. Do not " -"include the protocol." -msgstr "A tiltólistához hozzáadandó új kiszolgáló tartományának mintája. Ne tegye bele a protokollt." - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "Block reason" -msgstr "Tiltás oka" - -#: src/Module/Admin/Blocklist/Server.php:100 -msgid "The reason why you blocked this server domain pattern." -msgstr "Az ok, amiért kitiltotta ezt a kiszolgálótartomány-mintát." - -#: src/Module/Admin/Blocklist/Server.php:101 -msgid "Add Entry" -msgstr "Bejegyzés hozzáadása" - -#: src/Module/Admin/Blocklist/Server.php:102 -msgid "Save changes to the blocklist" -msgstr "Változtatások mentése a tiltólistába" - -#: src/Module/Admin/Blocklist/Server.php:103 -msgid "Current Entries in the Blocklist" -msgstr "Jelenlegi bejegyzések a tiltólistán" - -#: src/Module/Admin/Blocklist/Server.php:106 -msgid "Delete entry from blocklist" -msgstr "Bejegyzés törlése a tiltólistáról" - -#: src/Module/Admin/Blocklist/Server.php:109 -msgid "Delete entry from blocklist?" -msgstr "Törli a bejegyzést a tiltólistáról?" - -#: src/Module/Admin/Blocklist/Contact.php:47 -#: src/Console/GlobalCommunityBlock.php:101 -msgid "The contact has been blocked from the node" -msgstr "A partner tiltva lett a csomópontról" - -#: src/Module/Admin/Blocklist/Contact.php:49 -#: src/Console/GlobalCommunityBlock.php:96 -#, php-format -msgid "Could not find any contact entry for this URL (%s)" -msgstr "Nem sikerült találni egyetlen partnerbejegyzést sem erről az URL-ről (%s)" - -#: src/Module/Admin/Blocklist/Contact.php:57 -#, php-format -msgid "%s contact unblocked" -msgid_plural "%s contacts unblocked" -msgstr[0] "%s partner tiltása feloldva" -msgstr[1] "%s partner tiltása feloldva" - -#: src/Module/Admin/Blocklist/Contact.php:79 -msgid "Remote Contact Blocklist" -msgstr "Távoli partnerek tiltólistája" - -#: src/Module/Admin/Blocklist/Contact.php:80 -msgid "" -"This page allows you to prevent any message from a remote contact to reach " -"your node." -msgstr "Ez az oldal lehetővé teszi, hogy megakadályozzon egy távoli partnertől származó minden üzenetet, amely elérné a csomópontját." - -#: src/Module/Admin/Blocklist/Contact.php:81 -msgid "Block Remote Contact" -msgstr "Távoli partner tiltása" - -#: src/Module/Admin/Blocklist/Contact.php:82 -#: src/Module/Admin/Users/Active.php:138 src/Module/Admin/Users/Index.php:151 -#: src/Module/Admin/Users/Blocked.php:139 -#: src/Module/Admin/Users/Pending.php:103 -msgid "select all" -msgstr "összes kijelölése" - -#: src/Module/Admin/Blocklist/Contact.php:83 -msgid "select none" -msgstr "kijelölés törlése" - -#: src/Module/Admin/Blocklist/Contact.php:86 -msgid "No remote contact is blocked from this node." -msgstr "Nincs olyan távoli partner, aki tiltva lenne erről a csomópontról." - -#: src/Module/Admin/Blocklist/Contact.php:88 -msgid "Blocked Remote Contacts" -msgstr "Tiltott távoli partnerek" - -#: src/Module/Admin/Blocklist/Contact.php:89 -msgid "Block New Remote Contact" -msgstr "Új távoli partner tiltása" - -#: src/Module/Admin/Blocklist/Contact.php:90 -msgid "Photo" -msgstr "Fénykép" - -#: src/Module/Admin/Blocklist/Contact.php:90 -msgid "Reason" -msgstr "Indok" - -#: src/Module/Admin/Blocklist/Contact.php:98 -#, php-format -msgid "%s total blocked contact" -msgid_plural "%s total blocked contacts" -msgstr[0] "összesen %s tiltott partner" -msgstr[1] "összesen %s tiltott partner" - -#: src/Module/Admin/Blocklist/Contact.php:100 -msgid "URL of the remote contact to block." -msgstr "A tiltandó távoli partner URL-je." - -#: src/Module/Admin/Blocklist/Contact.php:101 -msgid "Block Reason" -msgstr "Tiltás oka" - -#: src/Module/Admin/Tos.php:60 -msgid "Display Terms of Service" -msgstr "Használati feltételek megjelenítése" - -#: src/Module/Admin/Tos.php:60 -msgid "" -"Enable the Terms of Service page. If this is enabled a link to the terms " -"will be added to the registration form and the general information page." -msgstr "A használati feltételek oldal engedélyezése. Ha ez engedélyezve van, akkor a használati feltételekre mutató hivatkozás hozzá lesz adva a regisztrációs űrlaphoz és az általános információk oldalához." - -#: src/Module/Admin/Tos.php:61 -msgid "Display Privacy Statement" -msgstr "Adatvédelmi nyilatkozatok megjelenítése" - -#: src/Module/Admin/Tos.php:61 -#, php-format -msgid "" -"Show some informations regarding the needed information to operate the node " -"according e.g. to EU-GDPR." -msgstr "Néhány információ megjelenítése a csomópont üzemeltetésére vonatkozó szükséges információkról, például az EU-GDPR szerint." - -#: src/Module/Admin/Tos.php:62 -msgid "Privacy Statement Preview" -msgstr "Adatvédelmi nyilatkozat előnézete" - -#: src/Module/Admin/Tos.php:64 -msgid "The Terms of Service" -msgstr "A használati feltételek" - -#: src/Module/Admin/Tos.php:64 -msgid "" -"Enter the Terms of Service for your node here. You can use BBCode. Headers " -"of sections should be [h2] and below." -msgstr "Itt adja meg a csomópontja használati feltételeit. Használhat BBCode formázást is. A szakaszok címeinek [h2] vagy az alattiaknak kell lenniük." - -#: src/Module/Admin/Federation.php:54 -msgid "Other" -msgstr "Egyéb" - -#: src/Module/Admin/Federation.php:108 src/Module/Admin/Federation.php:268 -msgid "unknown" -msgstr "ismeretlen" - -#: src/Module/Admin/Federation.php:136 -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 "Ez az oldal néhány számadatot nyújt a föderált közösségi hálózat azon ismert részéhez, amelynek része az Ön Friendica csomópontja. Ezek a számok nem teljesek, hanem csak a hálózat azon részét tükrözik, amelyről a csomópontja tud." - -#: src/Module/Admin/Federation.php:146 -#, php-format -msgid "" -"Currently this node is aware of %d nodes with %d registered users from the " -"following platforms:" -msgstr "Jelenleg erről a csomópontról %d csomópontnak van tudomása %d regisztrált felhasználóval a következő platformokról:" - -#: src/Module/Admin/Users/Create.php:62 -msgid "New User" -msgstr "Új felhasználó" - -#: src/Module/Admin/Users/Create.php:63 -msgid "Add User" -msgstr "Felhasználó hozzáadása" - -#: src/Module/Admin/Users/Create.php:71 -msgid "Name of the new user." -msgstr "Az új felhasználó neve." - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname" -msgstr "Becenév" - -#: src/Module/Admin/Users/Create.php:72 -msgid "Nickname of the new user." -msgstr "Az új felhasználó beceneve." - -#: src/Module/Admin/Users/Create.php:73 src/Module/Admin/Users/Active.php:129 -#: src/Module/Admin/Users/Index.php:142 src/Module/Admin/Users/Index.php:162 -#: src/Module/Admin/Users/Blocked.php:130 -#: src/Module/Admin/Users/Deleted.php:88 -#: src/Module/Admin/Users/Pending.php:104 src/Content/ContactSelector.php:126 -msgid "Email" -msgstr "E-mail" - -#: src/Module/Admin/Users/Create.php:73 -msgid "Email address of the new user." -msgstr "Az új felhasználó e-mail-címe." - -#: src/Module/Admin/Users/Active.php:45 src/Module/Admin/Users/Index.php:45 -#, php-format -msgid "%s user blocked" -msgid_plural "%s users blocked" -msgstr[0] "%s felhasználó tiltva" -msgstr[1] "%s felhasználó tiltva" - -#: src/Module/Admin/Users/Active.php:53 src/Module/Admin/Users/Active.php:88 -#: src/Module/Admin/Users/Index.php:60 src/Module/Admin/Users/Index.php:95 -#: src/Module/Admin/Users/Blocked.php:54 src/Module/Admin/Users/Blocked.php:89 -msgid "You can't remove yourself" -msgstr "Nem távolíthatja el önmagát" - -#: src/Module/Admin/Users/Active.php:57 src/Module/Admin/Users/Index.php:64 -#: src/Module/Admin/Users/Blocked.php:58 -#, php-format -msgid "%s user deleted" -msgid_plural "%s users deleted" -msgstr[0] "%s felhasználó törölve" -msgstr[1] "%s felhasználó törölve" - -#: src/Module/Admin/Users/Active.php:86 src/Module/Admin/Users/Index.php:93 -#: src/Module/Admin/Users/Blocked.php:87 -#, php-format -msgid "User \"%s\" deleted" -msgstr "„%s” felhasználó törölve" - -#: src/Module/Admin/Users/Active.php:96 src/Module/Admin/Users/Index.php:103 -#, php-format -msgid "User \"%s\" blocked" -msgstr "„%s” felhasználó tiltva" - -#: src/Module/Admin/Users/Active.php:129 src/Module/Admin/Users/Index.php:142 -#: src/Module/Admin/Users/Index.php:162 src/Module/Admin/Users/Blocked.php:130 -#: src/Module/Admin/Users/Deleted.php:88 -msgid "Register date" -msgstr "Regisztráció dátuma" - -#: src/Module/Admin/Users/Active.php:129 src/Module/Admin/Users/Index.php:142 -#: src/Module/Admin/Users/Index.php:162 src/Module/Admin/Users/Blocked.php:130 -#: src/Module/Admin/Users/Deleted.php:88 -msgid "Last login" -msgstr "Utolsó bejelentkezés" - -#: src/Module/Admin/Users/Active.php:129 src/Module/Admin/Users/Index.php:142 -#: src/Module/Admin/Users/Index.php:162 src/Module/Admin/Users/Blocked.php:130 -#: src/Module/Admin/Users/Deleted.php:88 -msgid "Last public item" -msgstr "Utolsó nyilvános elem" - -#: src/Module/Admin/Users/Active.php:137 -msgid "Active Accounts" -msgstr "Aktív fiókok" - -#: src/Module/Admin/Users/Active.php:141 src/Module/Admin/Users/Index.php:155 -#: src/Module/Admin/Users/Blocked.php:141 -msgid "User blocked" -msgstr "Felhasználó tiltva" - -#: src/Module/Admin/Users/Active.php:142 src/Module/Admin/Users/Index.php:157 -#: src/Module/Admin/Users/Blocked.php:143 -msgid "Site admin" -msgstr "Oldal adminisztrátor" - -#: src/Module/Admin/Users/Active.php:143 src/Module/Admin/Users/Index.php:158 -#: src/Module/Admin/Users/Blocked.php:144 -msgid "Account expired" -msgstr "A fiók lejárt" - -#: src/Module/Admin/Users/Active.php:144 src/Module/Admin/Users/Index.php:161 -msgid "Create a new user" -msgstr "Új felhasználó létrehozása" - -#: src/Module/Admin/Users/Active.php:150 src/Module/Admin/Users/Index.php:167 -#: src/Module/Admin/Users/Blocked.php:150 -msgid "" -"Selected users will be deleted!\\n\\nEverything these users had posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "A kijelölt felhasználók törölve lesznek!\\n\\nMinden, amit ezek a felhasználók erre az oldalra beküldtek, véglegesen törölve lesz!\\n\\nBiztos benne?" - -#: src/Module/Admin/Users/Active.php:151 src/Module/Admin/Users/Index.php:168 -#: src/Module/Admin/Users/Blocked.php:151 -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 "{0} felhasználó törölve lesz!\\n\\nMinden, amit ez a felhasználó erre az oldalra beküldött, véglegesen törölve lesz!\\n\\nBiztos benne?" - -#: src/Module/Admin/Users/Index.php:52 src/Module/Admin/Users/Blocked.php:46 -#, php-format -msgid "%s user unblocked" -msgid_plural "%s users unblocked" -msgstr[0] "%s felhasználó tiltása feloldva" -msgstr[1] "%s felhasználó tiltása feloldva" - -#: src/Module/Admin/Users/Index.php:109 src/Module/Admin/Users/Blocked.php:96 -#, php-format -msgid "User \"%s\" unblocked" -msgstr "„%s” felhasználó tiltása feloldva" - -#: src/Module/Admin/Users/Index.php:152 -msgid "User waiting for permanent deletion" -msgstr "Végleges törlésre váró felhasználó" - -#: src/Module/Admin/Users/Index.php:162 src/Module/Admin/Users/Deleted.php:88 -msgid "Permanent deletion" -msgstr "Végleges törlés" - -#: src/Module/Admin/Users/Blocked.php:138 -msgid "Blocked Users" -msgstr "Tiltott felhasználók" - -#: src/Module/Admin/Users/Deleted.php:86 -msgid "Users awaiting permanent deletion" -msgstr "Végleges törlésre váró felhasználók" - -#: src/Module/Admin/Users/Pending.php:48 -#, php-format -msgid "%s user approved" -msgid_plural "%s users approved" -msgstr[0] "%s felhasználó jóváhagyva" -msgstr[1] "%s felhasználó jóváhagyva" - -#: src/Module/Admin/Users/Pending.php:55 -#, php-format -msgid "%s registration revoked" -msgid_plural "%s registrations revoked" -msgstr[0] "%s regisztráció visszavonva" -msgstr[1] "%s regisztráció visszavonva" - -#: src/Module/Admin/Users/Pending.php:81 -msgid "Account approved." -msgstr "Fiók jóváhagyva." - -#: src/Module/Admin/Users/Pending.php:87 -msgid "Registration revoked" -msgstr "Regisztráció visszavonva" - -#: src/Module/Admin/Users/Pending.php:102 -msgid "User registrations awaiting review" -msgstr "Felülvizsgálatra váró felhasználói regisztrációk" - -#: src/Module/Admin/Users/Pending.php:104 -msgid "Request date" -msgstr "Kérés dátuma" - -#: src/Module/Admin/Users/Pending.php:105 -msgid "No registrations." -msgstr "Nincsenek regisztrációk." - -#: src/Module/Admin/Users/Pending.php:106 -msgid "Note from the user" -msgstr "Jegyzet a felhasználótól" - -#: src/Module/Admin/Users/Pending.php:108 -msgid "Deny" -msgstr "Elutasítás" - -#: src/Module/Admin/BaseUsers.php:50 src/Content/Widget.php:537 -msgid "All" -msgstr "Összes" - -#: src/Module/Admin/BaseUsers.php:53 -msgid "List of all users" -msgstr "Összes felhasználó listája" - -#: src/Module/Admin/BaseUsers.php:58 -msgid "Active" -msgstr "Aktív" - -#: src/Module/Admin/BaseUsers.php:61 -msgid "List of active accounts" -msgstr "Aktív fiókok listája" - -#: src/Module/Admin/BaseUsers.php:69 -msgid "List of pending registrations" -msgstr "Függőben lévő regisztrációk listája" - -#: src/Module/Admin/BaseUsers.php:77 -msgid "List of blocked users" -msgstr "Tiltott felhasználók listája" - -#: src/Module/Admin/BaseUsers.php:82 -msgid "Deleted" -msgstr "Törölve" - -#: src/Module/Admin/BaseUsers.php:85 -msgid "List of pending user deletions" -msgstr "Függőben lévő felhasználó-törlések listája" - -#: src/Module/Admin/BaseUsers.php:99 mod/settings.php:787 -msgid "Normal Account Page" -msgstr "Normál fiókoldal" - -#: src/Module/Admin/BaseUsers.php:100 mod/settings.php:791 -msgid "Soapbox Page" -msgstr "Szappantartó oldal" - -#: src/Module/Admin/BaseUsers.php:101 mod/settings.php:795 -msgid "Public Forum" -msgstr "Nyilvános fórum" - -#: src/Module/Admin/BaseUsers.php:102 mod/settings.php:799 -msgid "Automatic Friend Page" -msgstr "Automatikus ismerős oldal" - -#: src/Module/Admin/BaseUsers.php:103 -msgid "Private Forum" -msgstr "Személyes fórum" - -#: src/Module/Admin/BaseUsers.php:106 mod/settings.php:771 -msgid "Personal Page" -msgstr "Személyes oldal" - -#: src/Module/Admin/BaseUsers.php:107 mod/settings.php:775 -msgid "Organisation Page" -msgstr "Szervezeti oldal" - -#: src/Module/Admin/BaseUsers.php:108 mod/settings.php:779 -msgid "News Page" -msgstr "Hírek oldal" - -#: src/Module/Admin/BaseUsers.php:109 mod/settings.php:783 -msgid "Community Forum" -msgstr "Közösségi fórum" - -#: src/Module/Admin/BaseUsers.php:110 -msgid "Relay" -msgstr "Továbbítás" - -#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65 -#, php-format -msgid "Theme %s disabled." -msgstr "A(z) „%s” téma letiltva." - -#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67 -#, php-format -msgid "Theme %s successfully enabled." -msgstr "A(z) „%s” téma sikeresen engedélyezve." - -#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69 -#, php-format -msgid "Theme %s failed to install." -msgstr "A(z) „%s” téma telepítése sikertelen." - -#: src/Module/Admin/Themes/Details.php:83 -msgid "Screenshot" -msgstr "Képernyőkép" - -#: src/Module/Admin/Themes/Index.php:51 -msgid "Themes reloaded" -msgstr "Témák újratöltve" - -#: src/Module/Admin/Themes/Index.php:114 -msgid "Reload active themes" -msgstr "Bekapcsolt témák újratöltése" - -#: src/Module/Admin/Themes/Index.php:119 -#, php-format -msgid "No themes found on the system. They should be placed in %1$s" -msgstr "Nem találhatók témák a rendszeren. A témákat a %1$s könyvtárba kell elhelyezni." - -#: src/Module/Admin/Themes/Index.php:120 -msgid "[Experimental]" -msgstr "[Kísérleti]" - -#: src/Module/Admin/Themes/Index.php:121 -msgid "[Unsupported]" -msgstr "[Nem támogatott]" - -#: src/Module/Admin/Themes/Embed.php:65 -msgid "Unknown theme." -msgstr "Ismeretlen téma." - -#: src/Module/Attach.php:50 src/Module/Attach.php:62 -msgid "Item was not found." -msgstr "Az elem nem található." - -#: src/Module/Apps.php:47 -msgid "No installed applications." -msgstr "Nincsenek telepített alkalmazások." - -#: src/Module/Apps.php:52 -msgid "Applications" -msgstr "Alkalmazások" - -#: src/Module/Help.php:62 -msgid "Help:" -msgstr "Súgó:" - -#: src/Module/BaseProfile.php:68 src/Content/Nav.php:179 -#: view/theme/frio/theme.php:227 mod/fbrowser.php:43 -msgid "Photos" -msgstr "Fényképek" - -#: src/Module/BaseProfile.php:71 mod/photos.php:129 -msgid "Photo Albums" -msgstr "Fényképalbumok" - -#: src/Module/BaseProfile.php:76 src/Module/BaseProfile.php:79 -#: src/Content/Nav.php:180 view/theme/frio/theme.php:228 -msgid "Videos" -msgstr "Videók" - -#: src/Module/BaseProfile.php:88 src/Module/BaseProfile.php:99 -#: src/Content/Nav.php:181 src/Content/Nav.php:248 -#: view/theme/frio/theme.php:229 view/theme/frio/theme.php:233 mod/cal.php:274 -#: mod/events.php:417 -msgid "Events" -msgstr "Események" - -#: src/Module/BaseProfile.php:91 src/Module/BaseProfile.php:102 -#: src/Content/Nav.php:248 view/theme/frio/theme.php:233 -msgid "Events and Calendar" -msgstr "Események és naptár" - -#: src/Module/BaseProfile.php:110 mod/notes.php:51 -msgid "Personal Notes" -msgstr "Személyes jegyzetek" - -#: src/Module/BaseProfile.php:113 -msgid "Only You Can See This" -msgstr "Csak Ön láthatja ezt" - -#: src/Module/BaseProfile.php:132 src/Module/BaseProfile.php:135 -msgid "Tips for New Members" -msgstr "Tippek új tagoknak" - -#: src/Module/Photo.php:93 -#, php-format -msgid "The Photo with id %s is not available." -msgstr "A(z) %s azonosítóval rendelkező fénykép nem érhető el." - -#: src/Module/Photo.php:111 -#, php-format -msgid "Invalid photo with id %s." -msgstr "Érvénytelen %s azonosítóval rendelkező fénykép." - -#: src/Module/BaseSettings.php:37 mod/photos.php:150 -msgid "everybody" -msgstr "mindenki" - -#: src/Module/BaseSettings.php:43 -msgid "Account" -msgstr "Fiók" - -#: src/Module/BaseSettings.php:73 -msgid "Display" -msgstr "Megjelenítés" - -#: src/Module/BaseSettings.php:80 mod/settings.php:681 -msgid "Social Networks" -msgstr "Közösségi hálózatok" - -#: src/Module/BaseSettings.php:101 -msgid "Connected apps" -msgstr "Kapcsolt alkalmazások" - -#: src/Module/BaseSettings.php:115 -msgid "Remove account" -msgstr "Fiók eltávolítása" - -#: src/Module/Security/Logout.php:61 -msgid "Logged out." -msgstr "Kijelentkezve." - -#: src/Module/Security/OpenID.php:54 -msgid "OpenID protocol error. No ID returned" -msgstr "OpenID protokollhiba. Nem lett azonosító visszaadva" - -#: src/Module/Security/OpenID.php:92 -msgid "" -"Account not found. Please login to your existing account to add the OpenID " -"to it." -msgstr "A fiók nem található. Jelentkezzen be a meglévő fiókjába, hogy hozzáadja az OpenID-t ahhoz." - -#: src/Module/Security/OpenID.php:94 -msgid "" -"Account not found. Please register a new account or login to your existing " -"account to add the OpenID to it." -msgstr "A fiók nem található. Regisztráljon új fiókot vagy jelentkezzen be a meglévő fiókjába, hogy hozzáadja az OpenID-t ahhoz." - -#: src/Module/Security/TwoFactor/Verify.php:95 -msgid "" -"

Open the two-factor authentication app on your device to get an " -"authentication code and verify your identity.

" -msgstr "

Nyissa meg a kétlépcsős hitelesítés alkalmazást az eszközén, hogy megkapjon egy hitelesítő kódot és ellenőrizze a személyazonosságát.

" - -#: src/Module/Security/TwoFactor/Verify.php:98 -#: src/Module/Security/TwoFactor/Recovery.php:85 -#, php-format -msgid "Don’t have your phone? Enter a two-factor recovery code" -msgstr "Nincs meg a telefonja? Adjon meg egy kétlépcsős visszaszerzési kódot" - -#: src/Module/Security/TwoFactor/Verify.php:100 -msgid "This is my two-factor authenticator app device" -msgstr "Ez az én kétlépcsős hitelesítő alkalmazás eszközöm" - -#: src/Module/Security/TwoFactor/Verify.php:101 -msgid "Verify code and complete login" -msgstr "Kód ellenőrzése és a bejelentkezés befejezése" - -#: src/Module/Security/TwoFactor/Recovery.php:60 -#, php-format -msgid "Remaining recovery codes: %d" -msgstr "Hátralévő visszaszerzési kódok: %d" - -#: src/Module/Security/TwoFactor/Recovery.php:83 -msgid "Two-factor recovery" -msgstr "Kétlépcsős visszaszerzés" - -#: src/Module/Security/TwoFactor/Recovery.php:84 -msgid "" -"

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

" -msgstr "

Megadhatja az egyszeri visszaszerzési kódjai egyikét abban az esetben, ha elvesztette a hozzáférést a mobil eszközéhez.

" - -#: src/Module/Security/TwoFactor/Recovery.php:86 -msgid "Please enter a recovery code" -msgstr "Adjon meg egy visszaszerzési kódot" - -#: src/Module/Security/TwoFactor/Recovery.php:87 -msgid "Submit recovery code and complete login" -msgstr "Visszaszerzési kód elküldése és a bejelentkezés befejezése" - -#: src/Module/Security/Login.php:101 -msgid "Create a New Account" -msgstr "Új fiók létrehozása" - -#: src/Module/Security/Login.php:126 -msgid "Your OpenID: " -msgstr "Az Ön OpenID-ja: " - -#: src/Module/Security/Login.php:129 -msgid "" -"Please enter your username and password to add the OpenID to your existing " -"account." -msgstr "Adja meg a felhasználónevét és a jelszavát, hogy hozzáadja az OpenID azonosítóját a meglévő fiókjához." - -#: src/Module/Security/Login.php:131 -msgid "Or login using OpenID: " -msgstr "Vagy bejelentkezés OpenID használatával: " - -#: src/Module/Security/Login.php:141 src/Content/Nav.php:169 -msgid "Logout" -msgstr "Kijelentkezés" - -#: src/Module/Security/Login.php:144 mod/lostpass.php:130 -msgid "Nickname or Email: " -msgstr "Becenév vagy e-mail-cím: " - -#: src/Module/Security/Login.php:145 -msgid "Password: " -msgstr "Jelszó: " - -#: src/Module/Security/Login.php:146 -msgid "Remember me" -msgstr "Emlékezzen rám" - -#: src/Module/Security/Login.php:155 -msgid "Forgot your password?" -msgstr "Elfelejtette a jelszavát?" - -#: src/Module/Security/Login.php:156 mod/lostpass.php:146 -msgid "Password Reset" -msgstr "Jelszó visszaállítása" - -#: src/Module/Security/Login.php:158 -msgid "Website Terms of Service" -msgstr "Weboldal használati feltételei" - -#: src/Module/Security/Login.php:159 -msgid "terms of service" -msgstr "használati feltételek" - -#: src/Module/Security/Login.php:161 -msgid "Website Privacy Policy" -msgstr "Weboldal adatvédelmi irányelvei" - -#: src/Module/Security/Login.php:162 -msgid "privacy policy" -msgstr "adatvédelmi irányelv" - -#: src/Model/Mail.php:120 src/Model/Mail.php:258 -msgid "[no subject]" -msgstr "[nincs tárgy]" - -#: src/Model/Item.php:1550 -#, php-format -msgid "Detected languages in this post:\\n%s" -msgstr "A bejegyzésben felismert nyelvek:\\n%s" - -#: src/Model/Item.php:2491 include/conversation.php:227 +#: include/conversation.php:227 src/Model/Item.php:2605 msgid "event" msgstr "esemény" -#: src/Model/Item.php:2493 include/conversation.php:235 mod/tagger.php:90 +#: include/conversation.php:230 include/conversation.php:239 mod/tagger.php:90 +msgid "status" +msgstr "állapot" + +#: include/conversation.php:235 mod/tagger.php:90 src/Model/Item.php:2607 msgid "photo" msgstr "fénykép" -#: src/Model/Item.php:2495 -msgid "activity" -msgstr "tevékenység" - -#: src/Model/Item.php:2497 src/Object/Post.php:545 -msgid "comment" -msgid_plural "comments" -msgstr[0] "hozzászólás" -msgstr[1] "hozzászólások" - -#: src/Model/Item.php:2500 -msgid "post" -msgstr "bejegyzés" - -#: src/Model/Item.php:2614 +#: include/conversation.php:249 mod/tagger.php:123 #, php-format -msgid "Content warning: %s" -msgstr "Tartalom figyelmeztetés: %s" +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s megjelölte %2$s %3$s vele: %4$s" -#: src/Model/Item.php:2664 mod/videos.php:252 -msgid "View Video" -msgstr "Videó megtekintése" - -#: src/Model/Item.php:2681 -msgid "bytes" -msgstr "bájt" - -#: src/Model/Item.php:2726 -msgid "View on separate page" -msgstr "Megtekintés külön oldalon" - -#: src/Model/Item.php:2727 -msgid "view on separate page" -msgstr "megtekintés külön oldalon" - -#: src/Model/Item.php:2732 src/Model/Item.php:2738 -#: src/Content/Text/BBCode.php:1142 -msgid "link to source" -msgstr "hivatkozás a forráshoz" - -#: src/Model/Event.php:77 src/Model/Event.php:94 src/Model/Event.php:470 -#: src/Model/Event.php:941 -msgid "Starts:" -msgstr "Kezdődik:" - -#: src/Model/Event.php:80 src/Model/Event.php:100 src/Model/Event.php:471 -#: src/Model/Event.php:945 -msgid "Finishes:" -msgstr "Befejeződik:" - -#: src/Model/Event.php:420 -msgid "all-day" -msgstr "egész nap" - -#: src/Model/Event.php:446 -msgid "Sept" -msgstr "Szept" - -#: src/Model/Event.php:463 mod/cal.php:280 mod/events.php:426 -msgid "today" -msgstr "ma" - -#: src/Model/Event.php:468 -msgid "No events to display" -msgstr "Nincsenek megjelenítendő események" - -#: src/Model/Event.php:587 -msgid "l, F j" -msgstr "F j., l" - -#: src/Model/Event.php:618 -msgid "Edit event" -msgstr "Esemény szerkesztése" - -#: src/Model/Event.php:619 -msgid "Duplicate event" -msgstr "Esemény kettőzése" - -#: src/Model/Event.php:620 -msgid "Delete event" -msgstr "Esemény törlése" - -#: src/Model/Event.php:872 -msgid "D g:i A" -msgstr "D H:i" - -#: src/Model/Event.php:873 -msgid "g:i A" -msgstr "H:i" - -#: src/Model/Event.php:960 src/Model/Event.php:962 -msgid "Show map" -msgstr "Térkép megjelenítése" - -#: src/Model/Event.php:961 -msgid "Hide map" -msgstr "Térkép elrejtése" - -#: src/Model/Event.php:1053 -#, php-format -msgid "%s's birthday" -msgstr "%s születésnapja" - -#: src/Model/Event.php:1054 -#, php-format -msgid "Happy Birthday %s" -msgstr "Boldog születésnapot, %s" - -#: src/Model/Group.php:92 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Egy ilyen névvel rendelkező törölt csoport újraéledt. Lehet, hogy a meglévő elemjogosultságok alkalmazva lesznek erre a csoportra és bármely jövőbeli tagjaira. Ha ez nem az, amit szeretett volna, akkor hozzon létre egy másik csoportot eltérő névvel." - -#: src/Model/Group.php:451 -msgid "Default privacy group for new contacts" -msgstr "Alapértelmezett adatvédelmi csoport az új partnerekhez" - -#: src/Model/Group.php:483 -msgid "Everybody" -msgstr "Mindenki" - -#: src/Model/Group.php:502 -msgid "edit" -msgstr "szerkesztés" - -#: src/Model/Group.php:534 -msgid "add" -msgstr "hozzáadás" - -#: src/Model/Group.php:539 -msgid "Edit group" -msgstr "Csoport szerkesztése" - -#: src/Model/Group.php:542 -msgid "Create a new group" -msgstr "Új csoport létrehozása" - -#: src/Model/Group.php:544 -msgid "Edit groups" -msgstr "Csoportok szerkesztése" - -#: src/Model/Contact.php:979 src/Model/Contact.php:989 -#: include/conversation.php:952 -msgid "Network Posts" -msgstr "Hálózati bejegyzések" - -#: src/Model/Contact.php:980 src/Model/Contact.php:990 -#: include/conversation.php:953 -msgid "View Contact" -msgstr "Partner megtekintése" - -#: src/Model/Contact.php:981 src/Model/Contact.php:994 -#: src/Content/Widget.php:76 view/theme/vier/theme.php:172 -#: include/conversation.php:969 mod/follow.php:146 -msgid "Connect/Follow" -msgstr "Kapcsolódás vagy követés" - -#: src/Model/Contact.php:982 src/Model/Contact.php:995 -msgid "UnFollow" -msgstr "Követés megszüntetése" - -#: src/Model/Contact.php:986 include/conversation.php:949 -msgid "View Status" -msgstr "Állapot megtekintése" - -#: src/Model/Contact.php:988 include/conversation.php:951 -msgid "View Photos" -msgstr "Fényképek megtekintése" - -#: src/Model/Contact.php:991 -msgid "Drop Contact" -msgstr "Partner eldobása" - -#: src/Model/Contact.php:992 include/conversation.php:954 -msgid "Send PM" -msgstr "Személyes üzenet küldése" - -#: src/Model/Contact.php:993 include/conversation.php:964 -msgid "Poke" -msgstr "Megbökés" - -#: src/Model/Contact.php:1406 -msgid "Organisation" -msgstr "Szervezet" - -#: src/Model/Contact.php:1410 src/Content/Widget.php:532 -msgid "News" -msgstr "Hírek" - -#: src/Model/Contact.php:1414 -msgid "Forum" -msgstr "Fórum" - -#: src/Model/Contact.php:2159 mod/dfrn_request.php:355 -msgid "Disallowed profile URL." -msgstr "Nem engedélyezett profil URL." - -#: src/Model/Contact.php:2169 -msgid "Connect URL missing." -msgstr "A kapcsolódási URL hiányzik." - -#: src/Model/Contact.php:2178 -msgid "" -"The contact could not be added. Please check the relevant network " -"credentials in your Settings -> Social Networks page." -msgstr "A partnert nem sikerült hozzáadni. Ellenőrizze a hozzá tartozó hálózat hitelesítési adatait a Beállítások → Közösségi hálózatok oldalon." - -#: src/Model/Contact.php:2219 -msgid "" -"This site is not configured to allow communications with other networks." -msgstr "Ez az oldal nem úgy lett beállítva, hogy lehetővé tegye a kommunikációkat más hálózatokkal." - -#: src/Model/Contact.php:2220 src/Model/Contact.php:2233 -msgid "No compatible communication protocols or feeds were discovered." -msgstr "Nem lettek megfelelő kommunikációs protokollok vagy hírforrások felfedezve." - -#: src/Model/Contact.php:2231 -msgid "The profile address specified does not provide adequate information." -msgstr "A megadott profilcím nem biztosít elegendő információt." - -#: src/Model/Contact.php:2236 -msgid "An author or name was not found." -msgstr "Egy szerző vagy név nem található." - -#: src/Model/Contact.php:2239 -msgid "No browser URL could be matched to this address." -msgstr "Egyetlen böngésző URL-t sem sikerült illeszteni ehhez a címhez." - -#: src/Model/Contact.php:2242 -msgid "" -"Unable to match @-style Identity Address with a known protocol or email " -"contact." -msgstr "Nem lehet illeszteni @-stílusú személyazonosság-címet egy ismert protokollal vagy e-mailes partnerrel." - -#: src/Model/Contact.php:2243 -msgid "Use mailto: in front of address to force email check." -msgstr "Használja a mailto: előtagot a cím előtt az e-mail-ellenőrzés kényszerítéséhez." - -#: src/Model/Contact.php:2249 -msgid "" -"The profile address specified belongs to a network which has been disabled " -"on this site." -msgstr "A megadott profilcím egy olyan hálózathoz tartozik, amely le lett tiltva ezen az oldalon." - -#: src/Model/Contact.php:2254 -msgid "" -"Limited profile. This person will be unable to receive direct/personal " -"notifications from you." -msgstr "Korlátozott profil. Ez a személy nem lesz képes közvetlen vagy személyes értesítéseket fogadni Öntől." - -#: src/Model/Contact.php:2313 -msgid "Unable to retrieve contact information." -msgstr "Nem lehet lekérni a partner információit." - -#: src/Model/Storage/Filesystem.php:100 -#, php-format -msgid "Filesystem storage failed to create \"%s\". Check you write permissions." -msgstr "A fájlrendszer-tároló nem tudta létrehozni ezt: „%s”. Ellenőrizze az írási jogosultságait." - -#: src/Model/Storage/Filesystem.php:148 -#, php-format -msgid "" -"Filesystem storage failed to save data to \"%s\". Check your write " -"permissions" -msgstr "A fájlrendszer-tároló nem tudta elmenteni az adatokat ide: „%s”. Ellenőrizze az írási jogosultságait." - -#: src/Model/Storage/Filesystem.php:176 -msgid "Storage base path" -msgstr "Tároló alapútvonala" - -#: src/Model/Storage/Filesystem.php:178 -msgid "" -"Folder where uploaded files are saved. For maximum security, This should be " -"a path outside web server folder tree" -msgstr "Az a mappa, ahova a feltöltött fájlok mentve lesznek. A legnagyobb biztonság érdekében ennek a webkiszolgáló mappafáján kívüli útvonalnak kell lennie." - -#: src/Model/Storage/Filesystem.php:191 -msgid "Enter a valid existing folder" -msgstr "Adjon meg egy érvényes, létező mappát" - -#: src/Model/Storage/Database.php:74 -#, php-format -msgid "Database storage failed to update %s" -msgstr "Az adatbázis-tároló nem tudta frissíteni ezt: %s" - -#: src/Model/Storage/Database.php:82 -msgid "Database storage failed to insert data" -msgstr "Az adatbázis-tároló nem tudta beszúrni az adatokat" - -#: src/Model/User.php:186 src/Model/User.php:931 -msgid "SERIOUS ERROR: Generation of security keys failed." -msgstr "SÚLYOS HIBA: a biztonsági kulcsok előállítása nem sikerült." - -#: src/Model/User.php:549 -msgid "Login failed" -msgstr "Bejelentkezés sikertelen" - -#: src/Model/User.php:581 -msgid "Not enough information to authenticate" -msgstr "Nincs elegendő információ a hitelesítéshez" - -#: src/Model/User.php:676 -msgid "Password can't be empty" -msgstr "A jelszó nem lehet üres" - -#: src/Model/User.php:695 -msgid "Empty passwords are not allowed." -msgstr "Az üres jelszavak nem megengedettek." - -#: src/Model/User.php:699 -msgid "" -"The new password has been exposed in a public data dump, please choose " -"another." -msgstr "Az új jelszót közzétették egy nyilvános adattárban. Válasszon egy másikat." - -#: src/Model/User.php:705 -msgid "" -"The password can't contain accentuated letters, white spaces or colons (:)" -msgstr "A jelszó nem tartalmazhat ékezetes betűket, üres karaktereket vagy kettőspontot (:)" - -#: src/Model/User.php:811 -msgid "Passwords do not match. Password unchanged." -msgstr "A jelszavak nem egyeznek. A jelszó változatlan maradt." - -#: src/Model/User.php:818 -msgid "An invitation is required." -msgstr "Egy meghívás szükséges." - -#: src/Model/User.php:822 -msgid "Invitation could not be verified." -msgstr "A meghívást nem sikerült ellenőrizni." - -#: src/Model/User.php:830 -msgid "Invalid OpenID url" -msgstr "Érvénytelen OpenID URL" - -#: src/Model/User.php:843 src/Security/Authentication.php:223 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Problémába ütköztünk a megadott OpenID-val történő bejelentkezés közben. Ellenőrizze az azonosító helyesírását." - -#: src/Model/User.php:843 src/Security/Authentication.php:223 -msgid "The error message was:" -msgstr "A hibaüzenet ez volt:" - -#: src/Model/User.php:849 -msgid "Please enter the required information." -msgstr "Adja meg a szükséges információkat." - -#: src/Model/User.php:863 -#, php-format -msgid "" -"system.username_min_length (%s) and system.username_max_length (%s) are " -"excluding each other, swapping values." -msgstr "A system.username_min_length (%s) és a system.username_max_length (%s) kizárják egymást, értékek felcserélése." - -#: src/Model/User.php:870 -#, php-format -msgid "Username should be at least %s character." -msgid_plural "Username should be at least %s characters." -msgstr[0] "A felhasználónévnek legalább %s karakternek kell lennie." -msgstr[1] "A felhasználónévnek legalább %s karakternek kell lennie." - -#: src/Model/User.php:874 -#, php-format -msgid "Username should be at most %s character." -msgid_plural "Username should be at most %s characters." -msgstr[0] "A felhasználónévnek legfeljebb %s karakternek kell lennie." -msgstr[1] "A felhasználónévnek legfeljebb %s karakternek kell lennie." - -#: src/Model/User.php:882 -msgid "That doesn't appear to be your full (First Last) name." -msgstr "Úgy tűnik, hogy ez nem a teljes neve (vezetéknév és keresztnév)." - -#: src/Model/User.php:887 -msgid "Your email domain is not among those allowed on this site." -msgstr "Az e-mail tartománya nem tartozik azok közé, amelyek megengedettek ezen az oldalon." - -#: src/Model/User.php:891 -msgid "Not a valid email address." -msgstr "Nem érvényes e-mail-cím." - -#: src/Model/User.php:894 -msgid "The nickname was blocked from registration by the nodes admin." -msgstr "A becenevet a csomópont adminisztrátora tiltotta a regisztrációtól." - -#: src/Model/User.php:898 src/Model/User.php:906 -msgid "Cannot use that email." -msgstr "Nem lehet használni azt az e-mail-címet." - -#: src/Model/User.php:913 -msgid "Your nickname can only contain a-z, 0-9 and _." -msgstr "A becenév csak a-z, 0-9 és _ karaktereket tartalmazhat." - -#: src/Model/User.php:921 src/Model/User.php:978 -msgid "Nickname is already registered. Please choose another." -msgstr "A becenév már regisztrálva van. Válasszon egy másikat." - -#: src/Model/User.php:965 src/Model/User.php:969 -msgid "An error occurred during registration. Please try again." -msgstr "Hiba történt a regisztráció során. Próbálja újra." - -#: src/Model/User.php:992 -msgid "An error occurred creating your default profile. Please try again." -msgstr "Hiba történt az alapértelmezett profil létrehozásakor. Próbálja újra." - -#: src/Model/User.php:999 -msgid "An error occurred creating your self contact. Please try again." -msgstr "Hiba történt a saját partnere létrehozásakor. Próbálja újra." - -#: src/Model/User.php:1004 -msgid "Friends" -msgstr "Ismerősök" - -#: src/Model/User.php:1008 -msgid "" -"An error occurred creating your default contact group. Please try again." -msgstr "Hiba történt az alapértelmezett partnercsoport létrehozásakor. Próbálja újra." - -#: src/Model/User.php:1199 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tthe administrator of %2$s has set up an account for you." -msgstr "\n\t\tKedves %1$s!\n\t\t\tA(z) %2$s adminisztrátora beállított egy fiókot Önnek." - -#: src/Model/User.php:1202 -#, php-format -msgid "" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%1$s\n" -"\t\tLogin Name:\t\t%2$s\n" -"\t\tPassword:\t\t%3$s\n" -"\n" -"\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\tin.\n" -"\n" -"\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\tthan that.\n" -"\n" -"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\tIf you are new and do not know anybody here, they may help\n" -"\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n" -"\n" -"\t\tThank you and welcome to %4$s." -msgstr "\n\t\tA bejelentkezés részletei a következők:\n\n\t\tOldal címe:\t%1$s\n\t\tBejelentkezési név:\t\t%2$s\n\t\tJelszó:\t\t%3$s\n\n\t\tA jelszavát a fiókja „Beállítások” oldalán változtathatja meg, miután\n\t\tbejelentkezett.\n\n\t\tSzánjon pár percet a többi fiókbeállítás felülvizsgálatára is azon az oldalon.\n\n\t\tÉrdemes lehet néhány alapvető információt is hozzáadnia az\n\t\talapértelmezett profiljához (a „Profilok” oldalon), azért hogy más\n\t\temberek egyszerűen megtalálják Önt.\n\n\t\tAzt ajánljuk, hogy állítsa be a teljes nevét, adjon hozzá\n\t\tprofilfényképet, adjon hozzá néhány profil „kulcsszót” (nagyon hasznos\n\t\túj ismerősök kereséséhez), valamint talán azt, hogy mely országban él,\n\t\tha nem szeretne annál pontosabbat megadni.\n\n\t\tTeljes mértékben tiszteletben tartjuk az adatvédelemmel kapcsolatos\n\t\tjogát, és ezen elemek egyike sem kötelező. Ha még új itt, és senkit\n\t\tsem ismer, akkor ezek segíthetnek Önnek néhány új és érdekes\n\t\tismerőst találni.\n\n\t\tHa bármikor törölni szeretné a fiókját, akkor megteheti azt a\n\t\tkövetkező címen: %1$s/removeme\n\n\t\t\tKöszönjük, és üdvözöljük a %4$s oldalon." - -#: src/Model/User.php:1235 src/Model/User.php:1342 -#, php-format -msgid "Registration details for %s" -msgstr "Regisztrációs részletek ehhez: %s" - -#: src/Model/User.php:1255 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" -"\n" -"\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t\t%4$s\n" -"\t\t\tPassword:\t\t%5$s\n" -"\t\t" -msgstr "\n\t\t\tKedves %1$s!\n\t\t\t\tKöszönjük, hogy regisztrált itt: %2$s. A fiókja adminisztrátori jóváhagyásra vár.\n\n\t\t\tA bejelentkezés részletei a következők:\n\n\t\t\tOldal címe:\t%3$s\n\t\t\tBejelentkezési név:\t\t%4$s\n\t\t\tJelszó:\t\t%5$s\n\t\t" - -#: src/Model/User.php:1274 -#, php-format -msgid "Registration at %s" -msgstr "Regisztráció itt: %s" - -#: src/Model/User.php:1298 -#, php-format -msgid "" -"\n" -"\t\t\t\tDear %1$s,\n" -"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n" -"\t\t\t" -msgstr "\n\t\t\t\tKedves %1$s!\n\t\t\t\tKöszönjük, hogy regisztrált itt: %2$s. A fiókja létrejött.\n\t\t\t" - -#: src/Model/User.php:1306 -#, php-format -msgid "" -"\n" -"\t\t\tThe login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%3$s\n" -"\t\t\tLogin Name:\t\t%1$s\n" -"\t\t\tPassword:\t\t%5$s\n" -"\n" -"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" -"\t\t\tin.\n" -"\n" -"\t\t\tPlease take a few moments to review the other account settings on that page.\n" -"\n" -"\t\t\tYou may also wish to add some basic information to your default profile\n" -"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" -"\n" -"\t\t\tWe recommend setting your full name, adding a profile photo,\n" -"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" -"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" -"\t\t\tthan that.\n" -"\n" -"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" -"\t\t\tIf you are new and do not know anybody here, they may help\n" -"\t\t\tyou to make some new and interesting friends.\n" -"\n" -"\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n" -"\n" -"\t\t\tThank you and welcome to %2$s." -msgstr "\n\t\t\tA bejelentkezés részletei a következők:\n\n\t\t\tOldal címe:\t%3$s\n\t\t\tBejelentkezési név:\t\t%1$s\n\t\t\tJelszó:\t\t%5$s\n\n\t\t\tA jelszavát a fiókja „Beállítások” oldalán változtathatja meg, miután\n\t\t\tbejelentkezett.\n\n\t\t\tSzánjon pár percet a többi fiókbeállítás felülvizsgálatára is azon az oldalon.\n\n\t\t\tÉrdemes lehet néhány alapvető információt is hozzáadnia az\n\t\t\talapértelmezett profiljához (a „Profilok” oldalon), azért hogy más\n\t\t\temberek egyszerűen megtalálják Önt.\n\n\t\t\tAzt ajánljuk, hogy állítsa be a teljes nevét, adjon hozzá\n\t\t\tprofilfényképet, adjon hozzá néhány profil „kulcsszót” (nagyon hasznos\n\t\t\túj ismerősök kereséséhez), valamint talán azt, hogy mely országban él,\n\t\t\tha nem szeretne annál pontosabbat megadni.\n\n\t\t\tTeljes mértékben tiszteletben tartjuk az adatvédelemmel kapcsolatos\n\t\t\tjogát, és ezen elemek egyike sem kötelező. Ha még új itt, és senkit\n\t\t\tsem ismer, akkor ezek segíthetnek Önnek néhány új és érdekes\n\t\t\tismerőst találni.\n\n\t\t\tHa bármikor törölni szeretné a fiókját, akkor megteheti azt a\n\t\t\tkövetkező címen: %3$s/removeme\n\n\t\t\tKöszönjük, és üdvözöljük a %2$s oldalon." - -#: src/Model/Profile.php:348 -msgid "Change profile photo" -msgstr "Profilfénykép megváltoztatása" - -#: src/Model/Profile.php:443 -msgid "Atom feed" -msgstr "Atom hírforrás" - -#: src/Model/Profile.php:481 src/Model/Profile.php:578 -msgid "g A l F d" -msgstr "F j., l, H" - -#: src/Model/Profile.php:482 -msgid "F d" -msgstr "F j." - -#: src/Model/Profile.php:544 src/Model/Profile.php:629 -msgid "[today]" -msgstr "[ma]" - -#: src/Model/Profile.php:554 -msgid "Birthday Reminders" -msgstr "Születésnapi emlékeztető" - -#: src/Model/Profile.php:555 -msgid "Birthdays this week:" -msgstr "Születésnapok ezen a héten:" - -#: src/Model/Profile.php:616 -msgid "[No description]" -msgstr "[Nincs leírás]" - -#: src/Model/Profile.php:642 -msgid "Event Reminders" -msgstr "Eseményemlékeztetők" - -#: src/Model/Profile.php:643 -msgid "Upcoming events the next 7 days:" -msgstr "Közelgő események a következő 7 napon:" - -#: src/Model/Profile.php:818 -#, php-format -msgid "OpenWebAuth: %1$s welcomes %2$s" -msgstr "OpenWebAuth: %1$s üdvözli őt: %2$s" - -#: src/LegacyModule.php:49 -#, php-format -msgid "Legacy module file not found: %s" -msgstr "Az örökölt modulfájl nem található: %s" - -#: src/Render/FriendicaSmartyEngine.php:52 -msgid "The folder view/smarty3/ must be writable by webserver." -msgstr "A „view/smarty3/” mappának írhatónak kell lennie a webkiszolgáló által." - -#: src/Console/ArchiveContact.php:105 -#, php-format -msgid "Could not find any unarchived contact entry for this URL (%s)" -msgstr "Nem sikerült találni egyetlen archiválatlan partnerbejegyzést sem erről az URL-ről (%s)" - -#: src/Console/ArchiveContact.php:108 -msgid "The contact entries have been archived" -msgstr "A partnerbejegyzések archiválva lettek" - -#: src/Console/PostUpdate.php:87 -#, php-format -msgid "Post update version number has been set to %s." -msgstr "A bejegyzésfrissítés verziószáma erre lett beállítva: %s." - -#: src/Console/PostUpdate.php:95 -msgid "Check for pending update actions." -msgstr "Függőben lévő frissítési műveletek ellenőrzése." - -#: src/Console/PostUpdate.php:97 -msgid "Done." -msgstr "Kész." - -#: src/Console/PostUpdate.php:99 -msgid "Execute pending post updates." -msgstr "Függőben lévő bejegyzésfrissítések végrehajtása." - -#: src/Console/PostUpdate.php:105 -msgid "All pending post updates are done." -msgstr "Az összes függőben lévő bejegyzésfrissítés kész." - -#: src/Console/User.php:158 -msgid "Enter new password: " -msgstr "Új jelszó megadása: " - -#: src/Console/User.php:166 mod/settings.php:281 -msgid "Password update failed. Please try again." -msgstr "A jelszó frissítése sikertelen. Próbálja újra." - -#: src/Console/User.php:169 mod/settings.php:284 -msgid "Password changed." -msgstr "A jelszó megváltoztatva." - -#: src/Console/User.php:193 -msgid "Enter user name: " -msgstr "Felhasználónév megadása: " - -#: src/Console/User.php:201 src/Console/User.php:241 src/Console/User.php:274 -#: src/Console/User.php:300 -msgid "Enter user nickname: " -msgstr "Felhasználó becenevének megadása: " - -#: src/Console/User.php:209 -msgid "Enter user email address: " -msgstr "Felhasználó e-mail-címének megadása: " - -#: src/Console/User.php:217 -msgid "Enter a language (optional): " -msgstr "Nyelv megadása (elhagyható): " - -#: src/Console/User.php:255 -msgid "User is not pending." -msgstr "A felhasználó nincs függőben." - -#: src/Console/User.php:313 -msgid "User has already been marked for deletion." -msgstr "A felhasználó már meg lett jelölve törlésre." - -#: src/Console/User.php:318 -#, php-format -msgid "Type \"yes\" to delete %s" -msgstr "Írja be a „yes” szót %s törléséhez" - -#: src/Console/User.php:320 -msgid "Deletion aborted." -msgstr "Törlés megszakítva." - -#: src/Content/Widget/CalendarExport.php:63 -msgid "Export" -msgstr "Exportálás" - -#: src/Content/Widget/CalendarExport.php:64 -msgid "Export calendar as ical" -msgstr "Naptár exportálása iCal-ként" - -#: src/Content/Widget/CalendarExport.php:65 -msgid "Export calendar as csv" -msgstr "Naptár exportálása CSV-ként" - -#: src/Content/Widget/SavedSearches.php:47 -msgid "Remove term" -msgstr "Kifejezés eltávolítása" - -#: src/Content/Widget/SavedSearches.php:60 -msgid "Saved Searches" -msgstr "Mentett keresések" - -#: src/Content/Widget/ContactBlock.php:73 -msgid "No contacts" -msgstr "Nincsenek partnerek" - -#: src/Content/Widget/ContactBlock.php:105 -#, php-format -msgid "%d Contact" -msgid_plural "%d Contacts" -msgstr[0] "%d partner" -msgstr[1] "%d partner" - -#: src/Content/Widget/ContactBlock.php:124 -msgid "View Contacts" -msgstr "Partnerek megtekintése" - -#: src/Content/Widget/TrendingTags.php:51 -#, php-format -msgid "Trending Tags (last %d hour)" -msgid_plural "Trending Tags (last %d hours)" -msgstr[0] "Népszerű címkék (legutóbbi %d óra)" -msgstr[1] "Népszerű címkék (legutóbbi %d óra)" - -#: src/Content/Widget/TrendingTags.php:52 -msgid "More Trending Tags" -msgstr "További népszerű címkék" - -#: src/Content/Widget/TagCloud.php:68 src/Content/Nav.php:224 -#: src/Content/Text/HTML.php:905 -msgid "Tags" -msgstr "Címkék" - -#: src/Content/ForumManager.php:145 src/Content/Nav.php:229 -#: src/Content/Widget.php:533 src/Content/Text/HTML.php:910 -msgid "Forums" -msgstr "Fórumok" - -#: src/Content/ForumManager.php:147 -msgid "External link to forum" -msgstr "Külső hivatkozás a fórumhoz" - -#: src/Content/ForumManager.php:150 src/Content/Widget.php:512 -msgid "show less" -msgstr "kevesebb megjelenítése" - -#: src/Content/ForumManager.php:151 src/Content/Widget.php:411 -#: src/Content/Widget.php:513 -msgid "show more" -msgstr "több megjelenítése" - -#: src/Content/Nav.php:90 -msgid "Nothing new here" -msgstr "Semmi új nincs itt" - -#: src/Content/Nav.php:95 -msgid "Clear notifications" -msgstr "Értesítések törlése" - -#: src/Content/Nav.php:96 src/Content/Text/HTML.php:897 -msgid "@name, !forum, #tags, content" -msgstr "@név, !fórum, #címkék, tartalom" - -#: src/Content/Nav.php:169 -msgid "End this session" -msgstr "Munkamenet befejezése" - -#: src/Content/Nav.php:171 -msgid "Sign in" -msgstr "Bejelentkezés" - -#: src/Content/Nav.php:177 src/Content/Nav.php:263 -#: view/theme/frio/theme.php:225 -msgid "Your posts and conversations" -msgstr "Az Ön bejegyzései és beszélgetései" - -#: src/Content/Nav.php:178 view/theme/frio/theme.php:226 -msgid "Your profile page" -msgstr "Az Ön profiloldala" - -#: src/Content/Nav.php:179 view/theme/frio/theme.php:227 -msgid "Your photos" -msgstr "Az Ön fényképei" - -#: src/Content/Nav.php:180 view/theme/frio/theme.php:228 -msgid "Your videos" -msgstr "Az Ön videói" - -#: src/Content/Nav.php:181 view/theme/frio/theme.php:229 -msgid "Your events" -msgstr "Az Ön eseményei" - -#: src/Content/Nav.php:182 -msgid "Personal notes" -msgstr "Személyes jegyzetek" - -#: src/Content/Nav.php:182 -msgid "Your personal notes" -msgstr "Az Ön személyes jegyzetei" - -#: src/Content/Nav.php:202 src/Content/Nav.php:263 -msgid "Home" -msgstr "Kezdőlap" - -#: src/Content/Nav.php:202 -msgid "Home Page" -msgstr "Kezdőlap" - -#: src/Content/Nav.php:206 -msgid "Create an account" -msgstr "Fiók létrehozása" - -#: src/Content/Nav.php:212 -msgid "Help and documentation" -msgstr "Súgó és dokumentáció" - -#: src/Content/Nav.php:216 -msgid "Apps" -msgstr "Alkalmazások" - -#: src/Content/Nav.php:216 -msgid "Addon applications, utilities, games" -msgstr "Bővítményalkalmazások, segédprogramok és játékok" - -#: src/Content/Nav.php:220 -msgid "Search site content" -msgstr "Oldaltartalom keresése" - -#: src/Content/Nav.php:223 src/Content/Text/HTML.php:904 -msgid "Full Text" -msgstr "Teljes szöveg" - -#: src/Content/Nav.php:244 -msgid "Community" -msgstr "Közösség" - -#: src/Content/Nav.php:244 -msgid "Conversations on this and other servers" -msgstr "Beszélgetések ezen és más kiszolgálókon" - -#: src/Content/Nav.php:251 -msgid "Directory" -msgstr "Könyvtár" - -#: src/Content/Nav.php:251 -msgid "People directory" -msgstr "Emberek könyvtár" - -#: src/Content/Nav.php:253 -msgid "Information about this friendica instance" -msgstr "Információk erről a Friendica példányról" - -#: src/Content/Nav.php:256 -msgid "Terms of Service of this Friendica instance" -msgstr "Ezen Friendica példány használati feltételei" - -#: src/Content/Nav.php:261 view/theme/frio/theme.php:232 -msgid "Network" -msgstr "Hálózat" - -#: src/Content/Nav.php:261 view/theme/frio/theme.php:232 -msgid "Conversations from your friends" -msgstr "Ismerősökkel való beszélgetések" - -#: src/Content/Nav.php:267 -msgid "Introductions" -msgstr "Bemutatkozások" - -#: src/Content/Nav.php:267 -msgid "Friend Requests" -msgstr "Ismerőskérések" - -#: src/Content/Nav.php:269 -msgid "See all notifications" -msgstr "Összes értesítés megtekintése" - -#: src/Content/Nav.php:270 mod/settings.php:711 -msgid "Mark as seen" -msgstr "Megjelölés olvasottként" - -#: src/Content/Nav.php:270 -msgid "Mark all system notifications seen" -msgstr "Összes rendszerértesítés megjelölése olvasottként" - -#: src/Content/Nav.php:273 view/theme/frio/theme.php:234 mod/message.php:134 -msgid "Messages" -msgstr "Üzenetek" - -#: src/Content/Nav.php:273 view/theme/frio/theme.php:234 -msgid "Private mail" -msgstr "Személyes levél" - -#: src/Content/Nav.php:274 -msgid "Inbox" -msgstr "Beérkezett üzenetek" - -#: src/Content/Nav.php:275 -msgid "Outbox" -msgstr "Elküldött üzenetek" - -#: src/Content/Nav.php:276 mod/message.php:46 mod/message.php:127 -msgid "New Message" -msgstr "Új üzenet" - -#: src/Content/Nav.php:279 -msgid "Accounts" -msgstr "Fiókok" - -#: src/Content/Nav.php:279 -msgid "Manage other pages" -msgstr "Más oldalak kezelése" - -#: src/Content/Nav.php:282 view/theme/frio/theme.php:235 -msgid "Account settings" -msgstr "Fiókbeállítások" - -#: src/Content/Nav.php:284 view/theme/frio/theme.php:236 -msgid "Manage/edit friends and contacts" -msgstr "Ismerősök és partnerek kezelése vagy szerkesztése" - -#: src/Content/Nav.php:289 -msgid "Site setup and configuration" -msgstr "Oldal beállítása és konfigurálás" - -#: src/Content/Nav.php:292 -msgid "Navigation" -msgstr "Navigáció" - -#: src/Content/Nav.php:292 -msgid "Site map" -msgstr "Oldaltérkép" - -#: src/Content/ContactSelector.php:51 -msgid "Frequently" -msgstr "Gyakran" - -#: src/Content/ContactSelector.php:52 -msgid "Hourly" -msgstr "Óránként" - -#: src/Content/ContactSelector.php:53 -msgid "Twice daily" -msgstr "Naponta kétszer" - -#: src/Content/ContactSelector.php:54 -msgid "Daily" -msgstr "Naponta" - -#: src/Content/ContactSelector.php:55 -msgid "Weekly" -msgstr "Hetente" - -#: src/Content/ContactSelector.php:56 -msgid "Monthly" -msgstr "Havonta" - -#: src/Content/ContactSelector.php:123 -msgid "DFRN" -msgstr "DFRN" - -#: src/Content/ContactSelector.php:124 -msgid "OStatus" -msgstr "OStatus" - -#: src/Content/ContactSelector.php:125 -msgid "RSS/Atom" -msgstr "RSS/Atom" - -#: src/Content/ContactSelector.php:128 -msgid "Zot!" -msgstr "Zot!" - -#: src/Content/ContactSelector.php:129 -msgid "LinkedIn" -msgstr "LinkedIn" - -#: src/Content/ContactSelector.php:130 -msgid "XMPP/IM" -msgstr "XMPP/IM" - -#: src/Content/ContactSelector.php:131 -msgid "MySpace" -msgstr "MySpace" - -#: src/Content/ContactSelector.php:132 -msgid "Google+" -msgstr "Google+" - -#: src/Content/ContactSelector.php:133 -msgid "pump.io" -msgstr "pump.io" - -#: src/Content/ContactSelector.php:134 -msgid "Twitter" -msgstr "Twitter" - -#: src/Content/ContactSelector.php:135 -msgid "Discourse" -msgstr "Discourse" - -#: src/Content/ContactSelector.php:136 -msgid "Diaspora Connector" -msgstr "Diaspora összekötő" - -#: src/Content/ContactSelector.php:137 -msgid "GNU Social Connector" -msgstr "GNU Social összekötő" - -#: src/Content/ContactSelector.php:138 -msgid "ActivityPub" -msgstr "ActivityPub" - -#: src/Content/ContactSelector.php:139 -msgid "pnut" -msgstr "pnut" - -#: src/Content/ContactSelector.php:175 -#, php-format -msgid "%s (via %s)" -msgstr "%s (ezen keresztül: %s)" - -#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 -msgid "newer" -msgstr "soha" - -#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 -msgid "older" -msgstr "régebbi" - -#: src/Content/Widget.php:49 -msgid "Add New Contact" -msgstr "Új partner hozzáadása" - -#: src/Content/Widget.php:50 -msgid "Enter address or web location" -msgstr "Cím vagy webhely megadása" - -#: src/Content/Widget.php:51 -msgid "Example: bob@example.com, http://example.com/barbara" -msgstr "Példa: bob@example.com, http://example.com/barbara" - -#: src/Content/Widget.php:53 -msgid "Connect" -msgstr "Kapcsolódás" - -#: src/Content/Widget.php:68 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d meghívás érhető el" -msgstr[1] "%d meghívás érhető el" - -#: src/Content/Widget.php:74 view/theme/vier/theme.php:170 -msgid "Find People" -msgstr "Emberek keresése" - -#: src/Content/Widget.php:75 view/theme/vier/theme.php:171 -msgid "Enter name or interest" -msgstr "Név vagy érdeklődés beírása" - -#: src/Content/Widget.php:77 view/theme/vier/theme.php:173 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Példák: Szabó János, Halászat" - -#: src/Content/Widget.php:79 view/theme/vier/theme.php:175 mod/suggest.php:55 -msgid "Friend Suggestions" -msgstr "Ismerős javaslatok" - -#: src/Content/Widget.php:80 view/theme/vier/theme.php:176 -msgid "Similar Interests" -msgstr "Hasonló érdeklődések" - -#: src/Content/Widget.php:81 view/theme/vier/theme.php:177 -msgid "Random Profile" -msgstr "Véletlen profil" - -#: src/Content/Widget.php:82 view/theme/vier/theme.php:178 -msgid "Invite Friends" -msgstr "Ismerősök meghívása" - -#: src/Content/Widget.php:85 view/theme/vier/theme.php:181 -msgid "Local Directory" -msgstr "Helyi könyvtár" - -#: src/Content/Widget.php:216 -msgid "Everyone" -msgstr "Mindenki" - -#: src/Content/Widget.php:245 -msgid "Relationships" -msgstr "Kapcsolatok" - -#: src/Content/Widget.php:286 -msgid "Protocols" -msgstr "Protokollok" - -#: src/Content/Widget.php:288 -msgid "All Protocols" -msgstr "Összes protokoll" - -#: src/Content/Widget.php:316 -msgid "Saved Folders" -msgstr "Mentett mappák" - -#: src/Content/Widget.php:318 src/Content/Widget.php:352 -msgid "Everything" -msgstr "Minden" - -#: src/Content/Widget.php:350 -msgid "Categories" -msgstr "Kategóriák" - -#: src/Content/Widget.php:407 -#, php-format -msgid "%d contact in common" -msgid_plural "%d contacts in common" -msgstr[0] "%d partner közös" -msgstr[1] "%d partner közös" - -#: src/Content/Widget.php:506 -msgid "Archives" -msgstr "Archívumok" - -#: src/Content/Widget.php:530 -msgid "Persons" -msgstr "Személyek" - -#: src/Content/Widget.php:531 -msgid "Organisations" -msgstr "Szervezetek" - -#: src/Content/Widget.php:536 mod/settings.php:762 -msgid "Account Types" -msgstr "Fióktípusok" - -#: src/Content/Pager.php:216 mod/match.php:105 -msgid "first" -msgstr "első" - -#: src/Content/Pager.php:221 -msgid "prev" -msgstr "előző" - -#: src/Content/Pager.php:276 mod/match.php:110 -msgid "next" -msgstr "következő" - -#: src/Content/Pager.php:281 -msgid "last" -msgstr "utolsó" - -#: src/Content/OEmbed.php:292 -msgid "Embedding disabled" -msgstr "A beágyazás letiltva" - -#: src/Content/OEmbed.php:410 -msgid "Embedded content" -msgstr "Beágyazott tartalom" - -#: src/Content/Text/HTML.php:795 -msgid "Loading more entries..." -msgstr "További bejegyzések betöltése…" - -#: src/Content/Text/HTML.php:796 -msgid "The end" -msgstr "Vége" - -#: src/Content/Text/HTML.php:947 src/Content/Text/BBCode.php:1577 -msgid "Click to open/close" -msgstr "Kattintson a megnyitáshoz vagy bezáráshoz" - -#: src/Content/Text/BBCode.php:1015 src/Content/Text/BBCode.php:1659 -#: src/Content/Text/BBCode.php:1660 -msgid "Image/photo" -msgstr "Kép vagy fénykép" - -#: src/Content/Text/BBCode.php:1117 -#, php-format -msgid "%2$s %3$s" -msgstr "%2$s %3$s" - -#: src/Content/Text/BBCode.php:1608 -msgid "$1 wrote:" -msgstr "$1 írta:" - -#: src/Content/Text/BBCode.php:1662 src/Content/Text/BBCode.php:1663 -msgid "Encrypted content" -msgstr "Titkosított tartalom" - -#: src/Content/Text/BBCode.php:1876 -msgid "Invalid source protocol" -msgstr "Érvénytelen forrásprotokoll" - -#: src/Content/Text/BBCode.php:1891 -msgid "Invalid link protocol" -msgstr "Érvénytelen hivatkozási protokoll" - -#: src/Content/Feature.php:96 -msgid "General Features" -msgstr "Általános funkciók" - -#: src/Content/Feature.php:98 -msgid "Photo Location" -msgstr "Fénykép helye" - -#: src/Content/Feature.php:98 -msgid "" -"Photo metadata is normally stripped. This extracts the location (if present)" -" prior to stripping metadata and links it to a map." -msgstr "A fénykép metaadatai általában ki vannak törölve. Ez kinyeri a helyet (ha meg van adva) a metaadatok törlése előtt, és hivatkozást készít rá egy térképen." - -#: src/Content/Feature.php:99 -msgid "Trending Tags" -msgstr "Népszerű címkék" - -#: src/Content/Feature.php:99 -msgid "" -"Show a community page widget with a list of the most popular tags in recent " -"public posts." -msgstr "Egy közösségi oldal felületi elem megjelenítése a legutóbbi nyilvános bejegyzésekben lévő legnépszerűbb címkék listájával." - -#: src/Content/Feature.php:104 -msgid "Post Composition Features" -msgstr "Bejegyzés-összeállítási funkciók" - -#: src/Content/Feature.php:105 -msgid "Auto-mention Forums" -msgstr "Fórumok automatikus említése" - -#: src/Content/Feature.php:105 -msgid "" -"Add/remove mention when a forum page is selected/deselected in ACL window." -msgstr "Említés hozzáadása vagy eltávolítása, ha egy fórumoldalt kiválasztanak vagy megszüntetik a kiválasztását az ACL ablakokban." - -#: src/Content/Feature.php:106 -msgid "Explicit Mentions" -msgstr "Közvetlen említések" - -#: src/Content/Feature.php:106 -msgid "" -"Add explicit mentions to comment box for manual control over who gets " -"mentioned in replies." -msgstr "Közvetlen említések hozzáadása a hozzászólásmezőhöz kézi vezérléssel, hogy ki lesz megemlítve a válaszokban." - -#: src/Content/Feature.php:111 -msgid "Post/Comment Tools" -msgstr "Bejegyzés és hozzászólás eszközök" - -#: src/Content/Feature.php:112 -msgid "Post Categories" -msgstr "Bejegyzéskategóriák" - -#: src/Content/Feature.php:112 -msgid "Add categories to your posts" -msgstr "Kategóriák hozzáadása a bejegyzéseihez." - -#: src/Content/Feature.php:117 -msgid "Advanced Profile Settings" -msgstr "Speciális profilbeállítások" - -#: src/Content/Feature.php:118 -msgid "List Forums" -msgstr "Fórumok felsorolása" - -#: src/Content/Feature.php:118 -msgid "Show visitors public community forums at the Advanced Profile Page" -msgstr "Nyilvános közösségi fórumok megjelenítése a látogatóknak a speciális profiloldalon." - -#: src/Content/Feature.php:119 -msgid "Tag Cloud" -msgstr "Címkefelhő" - -#: src/Content/Feature.php:119 -msgid "Provide a personal tag cloud on your profile page" -msgstr "Személyes címkefelhő biztosítása a profiloldalán." - -#: src/Content/Feature.php:120 -msgid "Display Membership Date" -msgstr "Tagsági dátum megjelenítése" - -#: src/Content/Feature.php:120 -msgid "Display membership date in profile" -msgstr "Tagsági dátum megjelenítése a profilban." - -#: src/Repository/ProfileField.php:275 -msgid "Hometown:" -msgstr "Szülőváros:" - -#: src/Repository/ProfileField.php:276 -msgid "Marital Status:" -msgstr "Családi állapot:" - -#: src/Repository/ProfileField.php:277 -msgid "With:" -msgstr "Ezzel:" - -#: src/Repository/ProfileField.php:278 -msgid "Since:" -msgstr "Ekkortól:" - -#: src/Repository/ProfileField.php:279 -msgid "Sexual Preference:" -msgstr "Szexuális irányultság:" - -#: src/Repository/ProfileField.php:280 -msgid "Political Views:" -msgstr "Politikai nézetek:" - -#: src/Repository/ProfileField.php:281 -msgid "Religious Views:" -msgstr "Vallási néztek:" - -#: src/Repository/ProfileField.php:282 -msgid "Likes:" -msgstr "Kedvelések:" - -#: src/Repository/ProfileField.php:283 -msgid "Dislikes:" -msgstr "Nem kedvelések:" - -#: src/Repository/ProfileField.php:284 -msgid "Title/Description:" -msgstr "Cím vagy leírás:" - -#: src/Repository/ProfileField.php:286 -msgid "Musical interests" -msgstr "Zenei érdeklődések" - -#: src/Repository/ProfileField.php:287 -msgid "Books, literature" -msgstr "Könyvek, irodalom" - -#: src/Repository/ProfileField.php:288 -msgid "Television" -msgstr "Televízió" - -#: src/Repository/ProfileField.php:289 -msgid "Film/dance/culture/entertainment" -msgstr "Film, tánc, kultúra, szórakozás" - -#: src/Repository/ProfileField.php:290 -msgid "Hobbies/Interests" -msgstr "Hobbik, érdeklődések" - -#: src/Repository/ProfileField.php:291 -msgid "Love/romance" -msgstr "Szerelem, romantika" - -#: src/Repository/ProfileField.php:292 -msgid "Work/employment" -msgstr "Munka, foglalkoztatás" - -#: src/Repository/ProfileField.php:293 -msgid "School/education" -msgstr "Iskola, oktatás" - -#: src/Repository/ProfileField.php:294 -msgid "Contact information and Social Networks" -msgstr "Partnerinformációk és közösségi hálózatok" - -#: src/Object/EMail/ItemCCEMail.php:39 -#, php-format -msgid "" -"This message was sent to you by %s, a member of the Friendica social " -"network." -msgstr "Ezt az üzenetet %s, a Friendica közösségi hálózatának tagja küldte Önnek." - -#: src/Object/EMail/ItemCCEMail.php:41 -#, php-format -msgid "You may visit them online at %s" -msgstr "Meglátogathatja őket az interneten ezen a címen: %s" - -#: src/Object/EMail/ItemCCEMail.php:42 -msgid "" -"Please contact the sender by replying to this post if you do not wish to " -"receive these messages." -msgstr "Vegye fel a kapcsolatot a küldővel erre a bejegyzésre válaszolva, ha nem szeretné megkapni ezeket az üzeneteket." - -#: src/Object/EMail/ItemCCEMail.php:46 -#, php-format -msgid "%s posted an update." -msgstr "%s frissítést küldött." - -#: src/Object/Post.php:148 -msgid "This entry was edited" -msgstr "Ezt a bejegyzést szerkesztették" - -#: src/Object/Post.php:176 -msgid "Private Message" -msgstr "Személyes üzenet" - -#: src/Object/Post.php:192 src/Object/Post.php:194 mod/settings.php:568 -msgid "Edit" -msgstr "Szerkesztés" - -#: src/Object/Post.php:214 -msgid "pinned item" -msgstr "kitűzött elem" - -#: src/Object/Post.php:218 -msgid "Delete globally" -msgstr "Törlés globálisan" - -#: src/Object/Post.php:218 -msgid "Remove locally" -msgstr "Eltávolítás helyileg" - -#: src/Object/Post.php:226 include/conversation.php:564 mod/photos.php:1470 +#: include/conversation.php:564 mod/photos.php:1470 src/Object/Post.php:226 msgid "Select" msgstr "Kiválasztás" -#: src/Object/Post.php:231 -#, php-format -msgid "Block %s" -msgstr "%s tiltása" +#: include/conversation.php:565 mod/photos.php:1471 mod/settings.php:660 +#: src/Module/Admin/Users/Active.php:139 +#: src/Module/Admin/Users/Blocked.php:140 src/Module/Admin/Users/Index.php:153 +#: src/Module/Contact.php:894 src/Module/Contact.php:1198 +msgid "Delete" +msgstr "Törlés" -#: src/Object/Post.php:236 -msgid "save to folder" -msgstr "mentés mappába" - -#: src/Object/Post.php:270 -msgid "I will attend" -msgstr "Részt veszek" - -#: src/Object/Post.php:270 -msgid "I will not attend" -msgstr "Nem veszek részt" - -#: src/Object/Post.php:270 -msgid "I might attend" -msgstr "Talán részt veszek" - -#: src/Object/Post.php:300 -msgid "ignore thread" -msgstr "szál mellőzése" - -#: src/Object/Post.php:301 -msgid "unignore thread" -msgstr "szál figyelmen kívül hagyása feloldva" - -#: src/Object/Post.php:302 -msgid "toggle ignore status" -msgstr "mellőzési állapot átváltása" - -#: src/Object/Post.php:305 mod/ostatus_subscribe.php:98 -msgid "ignored" -msgstr "mellőzve" - -#: src/Object/Post.php:314 -msgid "pin" -msgstr "kitűzés" - -#: src/Object/Post.php:315 -msgid "unpin" -msgstr "kitűzés megszüntetése" - -#: src/Object/Post.php:316 -msgid "toggle pin status" -msgstr "kitűzés állapotának átváltása" - -#: src/Object/Post.php:319 -msgid "pinned" -msgstr "kitűzve" - -#: src/Object/Post.php:326 -msgid "add star" -msgstr "csillag hozzáadása" - -#: src/Object/Post.php:327 -msgid "remove star" -msgstr "csillag eltávolítása" - -#: src/Object/Post.php:328 -msgid "toggle star status" -msgstr "csillagállapot átváltása" - -#: src/Object/Post.php:331 -msgid "starred" -msgstr "csillagozott" - -#: src/Object/Post.php:335 -msgid "add tag" -msgstr "címke hozzáadása" - -#: src/Object/Post.php:345 mod/photos.php:1534 -msgid "I like this (toggle)" -msgstr "Ezt kedvelem (átváltás)" - -#: src/Object/Post.php:345 -msgid "like" -msgstr "tetszik" - -#: src/Object/Post.php:346 mod/photos.php:1537 -msgid "I don't like this (toggle)" -msgstr "Ezt nem kedvelem (átváltás)" - -#: src/Object/Post.php:346 -msgid "dislike" -msgstr "nem tetszik" - -#: src/Object/Post.php:348 -msgid "Quote share this" -msgstr "Idézett megosztás" - -#: src/Object/Post.php:348 -msgid "Quote Share" -msgstr "Idéző megosztás" - -#: src/Object/Post.php:351 -msgid "Reshare this" -msgstr "Újra megosztás" - -#: src/Object/Post.php:351 -msgid "Reshare" -msgstr "Újra megosztás" - -#: src/Object/Post.php:352 -msgid "Cancel your Reshare" -msgstr "Újra megosztás megszakítása" - -#: src/Object/Post.php:352 -msgid "Unshare" -msgstr "Megosztás megszüntetése" - -#: src/Object/Post.php:397 -#, php-format -msgid "%s (Received %s)" -msgstr "%s (fogadva: %s)" - -#: src/Object/Post.php:402 -msgid "Comment this item on your system" -msgstr "Hozzászólás az elemhez a saját rendszerén" - -#: src/Object/Post.php:402 -msgid "remote comment" -msgstr "távoli hozzászólás" - -#: src/Object/Post.php:414 -msgid "Pushed" -msgstr "Felküldve" - -#: src/Object/Post.php:414 -msgid "Pulled" -msgstr "Lekérve" - -#: src/Object/Post.php:421 include/conversation.php:960 -msgid "Languages" -msgstr "Nyelvek" - -#: src/Object/Post.php:432 include/conversation.php:613 -msgid "Categories:" -msgstr "Kategóriák:" - -#: src/Object/Post.php:433 include/conversation.php:614 -msgid "Filed under:" -msgstr "Iktatva itt:" - -#: src/Object/Post.php:444 src/Object/Post.php:445 -#: include/conversation.php:600 +#: include/conversation.php:600 src/Object/Post.php:453 +#: src/Object/Post.php:454 #, php-format msgid "View %s's profile @ %s" msgstr "%s profiljának megtekintése ezen: %s" -#: src/Object/Post.php:446 -msgid "to" -msgstr "ide:" +#: include/conversation.php:613 src/Object/Post.php:441 +msgid "Categories:" +msgstr "Kategóriák:" -#: src/Object/Post.php:447 -msgid "via" -msgstr "ezen keresztül:" +#: include/conversation.php:614 src/Object/Post.php:442 +msgid "Filed under:" +msgstr "Iktatva itt:" -#: src/Object/Post.php:448 -msgid "Wall-to-Wall" -msgstr "Falról-falra" - -#: src/Object/Post.php:449 -msgid "via Wall-To-Wall:" -msgstr "falról-falra szolgáltatáson keresztül:" - -#: src/Object/Post.php:458 include/conversation.php:621 +#: include/conversation.php:621 src/Object/Post.php:467 #, php-format msgid "%s from %s" msgstr "%s tőle: %s" -#: src/Object/Post.php:486 src/Object/Post.php:948 mod/photos.php:1379 -#: mod/photos.php:1436 mod/photos.php:1511 -msgid "Comment" -msgstr "Hozzászólás" +#: include/conversation.php:636 +msgid "View in context" +msgstr "Megtekintés környezetben" -#: src/Object/Post.php:487 +#: include/conversation.php:638 include/conversation.php:1222 +#: mod/editpost.php:104 mod/message.php:204 mod/message.php:374 +#: mod/photos.php:1536 mod/wallmessage.php:155 src/Module/Item/Compose.php:159 +#: src/Object/Post.php:501 +msgid "Please wait" +msgstr "Kis türelmet" + +#: include/conversation.php:702 +msgid "remove" +msgstr "eltávolítás" + +#: include/conversation.php:707 +msgid "Delete Selected Items" +msgstr "Kijelölt elemek törlése" + +#: include/conversation.php:742 include/conversation.php:745 +#: include/conversation.php:748 include/conversation.php:751 #, php-format -msgid "Reply to %s" -msgstr "Válasz erre: %s" +msgid "You had been addressed (%s)." +msgstr "Önt megszólították (%s)." -#: src/Object/Post.php:490 -msgid "More" -msgstr "Több" - -#: src/Object/Post.php:508 -msgid "Notifier task is pending" -msgstr "Az értesítőfeladat függőben van" - -#: src/Object/Post.php:509 -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:510 -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:511 -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:512 -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:532 +#: include/conversation.php:754 #, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d hozzászólás" -msgstr[1] "%d hozzászólás" +msgid "You are following %s." +msgstr "Ön követi őt: %s." -#: src/Object/Post.php:533 -msgid "Show more" -msgstr "Több megjelenítése" +#: include/conversation.php:757 +msgid "Tagged" +msgstr "Megjelölve" -#: src/Object/Post.php:534 -msgid "Show fewer" -msgstr "Kevesebb megjelenítése" - -#: src/BaseModule.php:150 -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 "Az űrlap biztonsági tokenje nem volt helyes. Ez valószínűleg azért történt, mert az űrlapot túl hosszan tartották nyitva (>3 óra), mielőtt elküldték volna." - -#: src/BaseModule.php:179 -msgid "All contacts" -msgstr "Összes partner" - -#: src/BaseModule.php:202 -msgid "Common" -msgstr "Közös" - -#: src/Protocol/Diaspora.php:3443 -msgid "Attachments:" -msgstr "Mellékletek:" - -#: src/Protocol/OStatus.php:1760 +#: include/conversation.php:770 include/conversation.php:1114 +#: include/conversation.php:1152 #, php-format -msgid "%s is now following %s." -msgstr "%s mostantól követi %s partnert." +msgid "%s reshared this." +msgstr "%s újra megosztotta ezt." -#: src/Protocol/OStatus.php:1761 -msgid "following" -msgstr "követés" +#: include/conversation.php:772 +msgid "Reshared" +msgstr "Újra megosztva" -#: src/Protocol/OStatus.php:1764 +#: include/conversation.php:772 #, php-format -msgid "%s stopped following %s." -msgstr "%s leállította %s követését." +msgid "Reshared by %s <%s>" +msgstr "%s <%s> újra megosztotta" -#: src/Protocol/OStatus.php:1765 -msgid "stopped following" -msgstr "követés leállítva" - -#: src/App.php:311 -msgid "No system theme config value set." -msgstr "Nincs rendszertéma beállítási érték megadva." - -#: src/Security/Authentication.php:209 src/Security/Authentication.php:261 -msgid "Login failed." -msgstr "Bejelentkezés sikertelen." - -#: src/Security/Authentication.php:272 -msgid "Login failed. Please check your credentials." -msgstr "Bejelentkezés sikertelen. Ellenőrizze a hitelesítési adatait." - -#: src/Security/Authentication.php:391 +#: include/conversation.php:775 #, php-format -msgid "Welcome %s" -msgstr "Üdvözöljük, %s!" +msgid "%s is participating in this thread." +msgstr "%s részt vesz ebben a szálban." -#: src/Security/Authentication.php:392 -msgid "Please upload a profile photo." -msgstr "Töltsön fel egy profilfényképet." +#: include/conversation.php:778 +msgid "Stored" +msgstr "Tárolt" -#: view/theme/duepuntozero/config.php:52 -msgid "default" -msgstr "alapértelmezett" +#: include/conversation.php:781 +msgid "Global" +msgstr "Globális" -#: view/theme/duepuntozero/config.php:53 -msgid "greenzero" -msgstr "zöld nulla" +#: include/conversation.php:784 +msgid "Relayed" +msgstr "Továbbítva" -#: view/theme/duepuntozero/config.php:54 -msgid "purplezero" -msgstr "lila nulla" +#: include/conversation.php:784 +#, php-format +msgid "Relayed by %s <%s>" +msgstr "%s <%s> továbbította" -#: view/theme/duepuntozero/config.php:55 -msgid "easterbunny" -msgstr "húsvéti nyúl" +#: include/conversation.php:787 +msgid "Fetched" +msgstr "Lekérve" -#: view/theme/duepuntozero/config.php:56 -msgid "darkzero" -msgstr "sötét nulla" +#: include/conversation.php:787 +#, php-format +msgid "Fetched because of %s <%s>" +msgstr "Lekérve %s <%s> miatt" -#: view/theme/duepuntozero/config.php:57 -msgid "comix" -msgstr "comix" - -#: view/theme/duepuntozero/config.php:58 -msgid "slackr" -msgstr "slackr" - -#: view/theme/duepuntozero/config.php:71 -msgid "Variations" -msgstr "Variációk" - -#: view/theme/frio/php/Image.php:40 -msgid "Top Banner" -msgstr "Felső reklámcsík" - -#: view/theme/frio/php/Image.php:40 -msgid "" -"Resize image to the width of the screen and show background color below on " -"long pages." -msgstr "Kép átméretezése a képernyő szélességéhez, és a lenti háttérszín megjelenítése hosszú oldalakon." - -#: view/theme/frio/php/Image.php:41 -msgid "Full screen" -msgstr "Teljes képernyő" - -#: view/theme/frio/php/Image.php:41 -msgid "" -"Resize image to fill entire screen, clipping either the right or the bottom." -msgstr "Kép átméretezése a teljes képernyő kitöltéséhez, levágva a jobb szélét vagy az alját." - -#: view/theme/frio/php/Image.php:42 -msgid "Single row mosaic" -msgstr "Egysoros mozaik" - -#: view/theme/frio/php/Image.php:42 -msgid "" -"Resize image to repeat it on a single row, either vertical or horizontal." -msgstr "Kép átméretezése az egy sorban való ismétléshez, függőlegesen vagy vízszintesen." - -#: view/theme/frio/php/Image.php:43 -msgid "Mosaic" -msgstr "Mozaik" - -#: view/theme/frio/php/Image.php:43 -msgid "Repeat image to fill the screen." -msgstr "Kép ismétlése a képernyő kitöltéséhez." - -#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 -msgid "Skip to main content" -msgstr "Kihagyás a fő tartalomhoz" - -#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 -msgid "Back to top" -msgstr "Vissza a tetejére" - -#: view/theme/frio/config.php:142 -msgid "Light (Accented)" -msgstr "Világos (hangsúlyos)" - -#: view/theme/frio/config.php:143 -msgid "Dark (Accented)" -msgstr "Sötét (hangsúlyos)" - -#: view/theme/frio/config.php:144 -msgid "Black (Accented)" -msgstr "Fekete (hangsúlyos)" - -#: view/theme/frio/config.php:156 -msgid "Note" -msgstr "Jegyzet" - -#: view/theme/frio/config.php:156 -msgid "Check image permissions if all users are allowed to see the image" -msgstr "Ellenőrizze a kép jogosultságait, hogy minden felhasználó képes-e megtekinteni a képet." - -#: view/theme/frio/config.php:162 -msgid "Custom" -msgstr "Egyéni" - -#: view/theme/frio/config.php:163 -msgid "Legacy" -msgstr "Örökölt" - -#: view/theme/frio/config.php:164 -msgid "Accented" -msgstr "Hangsúlyos" - -#: view/theme/frio/config.php:165 -msgid "Select color scheme" -msgstr "Színséma kiválasztása" - -#: view/theme/frio/config.php:166 -msgid "Select scheme accent" -msgstr "Sémahangsúly kiválasztása" - -#: view/theme/frio/config.php:166 -msgid "Blue" -msgstr "Kék" - -#: view/theme/frio/config.php:166 -msgid "Red" -msgstr "Piros" - -#: view/theme/frio/config.php:166 -msgid "Purple" -msgstr "Lila" - -#: view/theme/frio/config.php:166 -msgid "Green" -msgstr "Zöld" - -#: view/theme/frio/config.php:166 -msgid "Pink" -msgstr "Rózsaszín" - -#: view/theme/frio/config.php:167 -msgid "Copy or paste schemestring" -msgstr "Sémakarakterlánc másolása vagy beillesztése" - -#: view/theme/frio/config.php:167 -msgid "" -"You can copy this string to share your theme with others. Pasting here " -"applies the schemestring" -msgstr "Lemásolhatja ezt a karakterláncot, hogy megossza a témáját másokkal. Ide beillesztve alkalmazza a sémakarakterláncot" - -#: view/theme/frio/config.php:168 -msgid "Navigation bar background color" -msgstr "Navigációs sáv háttérszíne" - -#: view/theme/frio/config.php:169 -msgid "Navigation bar icon color " -msgstr "Navigációs sáv ikonszíne " - -#: view/theme/frio/config.php:170 -msgid "Link color" -msgstr "Hivatkozás színe" - -#: view/theme/frio/config.php:171 -msgid "Set the background color" -msgstr "Háttérszín beállítása" - -#: view/theme/frio/config.php:172 -msgid "Content background opacity" -msgstr "Tartalom hátterének átlátszatlansága" - -#: view/theme/frio/config.php:173 -msgid "Set the background image" -msgstr "A háttérkép beállítása" - -#: view/theme/frio/config.php:174 -msgid "Background image style" -msgstr "Háttérkép stílusa" - -#: view/theme/frio/config.php:179 -msgid "Login page background image" -msgstr "Bejelentkezési oldal háttérképe" - -#: view/theme/frio/config.php:183 -msgid "Login page background color" -msgstr "Bejelentkezési oldal háttérszíne" - -#: view/theme/frio/config.php:183 -msgid "Leave background image and color empty for theme defaults" -msgstr "Hagyja üresen a háttérképet és színt a téma alapértelmezettjéhez" - -#: view/theme/frio/theme.php:207 -msgid "Guest" -msgstr "Vendég" - -#: view/theme/frio/theme.php:210 -msgid "Visitor" -msgstr "Látogató" - -#: view/theme/frio/theme.php:322 include/conversation.php:948 +#: include/conversation.php:947 view/theme/frio/theme.php:323 msgid "Follow Thread" msgstr "Szál követése" -#: view/theme/quattro/config.php:73 -msgid "Alignment" -msgstr "Igazítás" +#: include/conversation.php:948 src/Model/Contact.php:999 +msgid "View Status" +msgstr "Állapot megtekintése" -#: view/theme/quattro/config.php:73 -msgid "Left" -msgstr "Balra" +#: include/conversation.php:949 include/conversation.php:971 +#: src/Model/Contact.php:925 src/Model/Contact.php:991 +#: src/Model/Contact.php:1000 src/Module/Directory.php:166 +#: src/Module/Settings/Profile/Index.php:240 +msgid "View Profile" +msgstr "Profil megtekintése" -#: view/theme/quattro/config.php:73 -msgid "Center" -msgstr "Középre" +#: include/conversation.php:950 src/Model/Contact.php:1001 +msgid "View Photos" +msgstr "Fényképek megtekintése" -#: view/theme/quattro/config.php:74 -msgid "Color scheme" -msgstr "Színséma" +#: include/conversation.php:951 src/Model/Contact.php:992 +#: src/Model/Contact.php:1002 +msgid "Network Posts" +msgstr "Hálózati bejegyzések" -#: view/theme/quattro/config.php:75 -msgid "Posts font size" -msgstr "Bejegyzések betűmérete" +#: include/conversation.php:952 src/Model/Contact.php:993 +#: src/Model/Contact.php:1003 +msgid "View Contact" +msgstr "Partner megtekintése" -#: view/theme/quattro/config.php:76 -msgid "Textareas font size" -msgstr "Szövegdobozok betűmérete" +#: include/conversation.php:953 src/Model/Contact.php:1005 +msgid "Send PM" +msgstr "Személyes üzenet küldése" -#: view/theme/vier/config.php:75 -msgid "Comma separated list of helper forums" -msgstr "Segítő fórumok vesszővel elválasztott listája" +#: include/conversation.php:954 src/Module/Admin/Blocklist/Contact.php:84 +#: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:154 +#: src/Module/Contact.php:633 src/Module/Contact.php:891 +#: src/Module/Contact.php:1173 +msgid "Block" +msgstr "Tiltás" -#: view/theme/vier/config.php:115 -msgid "don't show" -msgstr "ne jelenítse meg" +#: include/conversation.php:955 src/Module/Contact.php:634 +#: src/Module/Contact.php:892 src/Module/Contact.php:1181 +#: src/Module/Notifications/Introductions.php:113 +#: src/Module/Notifications/Introductions.php:191 +#: src/Module/Notifications/Notification.php:59 +msgid "Ignore" +msgstr "Mellőzés" -#: view/theme/vier/config.php:115 -msgid "show" -msgstr "megjelenítés" +#: include/conversation.php:959 src/Object/Post.php:428 +msgid "Languages" +msgstr "Nyelvek" -#: view/theme/vier/config.php:121 -msgid "Set style" -msgstr "Stílus beállítása" +#: include/conversation.php:963 src/Model/Contact.php:1006 +msgid "Poke" +msgstr "Megbökés" -#: view/theme/vier/config.php:122 -msgid "Community Pages" -msgstr "Közösségi oldalak" +#: include/conversation.php:968 mod/follow.php:146 src/Content/Widget.php:76 +#: src/Model/Contact.php:994 src/Model/Contact.php:1007 +#: view/theme/vier/theme.php:172 +msgid "Connect/Follow" +msgstr "Kapcsolódás vagy követés" -#: view/theme/vier/config.php:123 view/theme/vier/theme.php:125 -msgid "Community Profiles" -msgstr "Közösségi profilok" +#: include/conversation.php:1099 +#, php-format +msgid "%s likes this." +msgstr "%s kedveli ezt." -#: view/theme/vier/config.php:124 -msgid "Help or @NewHere ?" -msgstr "Súgó vagy @NewHere?" +#: include/conversation.php:1102 +#, php-format +msgid "%s doesn't like this." +msgstr "%s nem kedveli ezt." -#: view/theme/vier/config.php:125 view/theme/vier/theme.php:296 -msgid "Connect Services" -msgstr "Szolgáltatások hozzákapcsolása" +#: include/conversation.php:1105 +#, php-format +msgid "%s attends." +msgstr "%s részt vesz." -#: view/theme/vier/config.php:126 -msgid "Find Friends" -msgstr "Ismerősök keresése" +#: include/conversation.php:1108 +#, php-format +msgid "%s doesn't attend." +msgstr "%s nem vesz részt." -#: view/theme/vier/config.php:127 view/theme/vier/theme.php:152 -msgid "Last users" -msgstr "Utolsó felhasználók" +#: include/conversation.php:1111 +#, php-format +msgid "%s attends maybe." +msgstr "%s talán részt vesz." -#: view/theme/vier/theme.php:211 -msgid "Quick Start" -msgstr "Gyors kezdés" +#: include/conversation.php:1120 +msgid "and" +msgstr "és" + +#: include/conversation.php:1123 +#, php-format +msgid "and %d other people" +msgstr "és %d más személy" + +#: include/conversation.php:1131 +#, php-format +msgid "%2$d people like this" +msgstr "%2$d személy kedveli ezt" + +#: include/conversation.php:1132 +#, php-format +msgid "%s like this." +msgstr "%s kedveli ezt." + +#: include/conversation.php:1135 +#, php-format +msgid "%2$d people don't like this" +msgstr "%2$d személy nem kedveli ezt" + +#: include/conversation.php:1136 +#, php-format +msgid "%s don't like this." +msgstr "%s nem kedveli ezt." + +#: include/conversation.php:1139 +#, php-format +msgid "%2$d people attend" +msgstr "%2$d személy részt vesz" + +#: include/conversation.php:1140 +#, php-format +msgid "%s attend." +msgstr "%s részt vesz." + +#: include/conversation.php:1143 +#, php-format +msgid "%2$d people don't attend" +msgstr "%2$d személy nem vesz részt" + +#: include/conversation.php:1144 +#, php-format +msgid "%s don't attend." +msgstr "%s nem vesz részt." + +#: include/conversation.php:1147 +#, php-format +msgid "%2$d people attend maybe" +msgstr "%2$d személy talán részt vesz" + +#: include/conversation.php:1148 +#, php-format +msgid "%s attend maybe." +msgstr "%s talán részt vesz." + +#: include/conversation.php:1151 +#, php-format +msgid "%2$d people reshared this" +msgstr "%2$d személy újra megosztotta ezt" + +#: include/conversation.php:1181 +msgid "Visible to everybody" +msgstr "Látható mindenkinek" + +#: include/conversation.php:1182 src/Module/Item/Compose.php:153 +#: src/Object/Post.php:970 +msgid "Please enter a image/video/audio/webpage URL:" +msgstr "Írjon be egy kép, videó, hang vagy weboldal URL-t:" + +#: include/conversation.php:1183 +msgid "Tag term:" +msgstr "Címkézési kifejezés:" + +#: include/conversation.php:1184 src/Module/Filer/SaveTag.php:69 +msgid "Save to Folder:" +msgstr "Mentés mappába:" + +#: include/conversation.php:1185 +msgid "Where are you right now?" +msgstr "Hol van most éppen?" + +#: include/conversation.php:1186 +msgid "Delete item(s)?" +msgstr "Törli az elemeket?" + +#: include/conversation.php:1196 +msgid "New Post" +msgstr "Új bejegyzés" + +#: include/conversation.php:1199 +msgid "Share" +msgstr "Megosztás" + +#: include/conversation.php:1200 mod/editpost.php:89 mod/photos.php:1382 +#: src/Module/Contact/Poke.php:154 src/Object/Post.php:961 +msgid "Loading..." +msgstr "Betöltés…" + +#: include/conversation.php:1201 mod/editpost.php:90 mod/message.php:202 +#: mod/message.php:371 mod/wallmessage.php:153 +msgid "Upload photo" +msgstr "Fénykép feltöltése" + +#: include/conversation.php:1202 mod/editpost.php:91 +msgid "upload photo" +msgstr "fénykép feltöltése" + +#: include/conversation.php:1203 mod/editpost.php:92 +msgid "Attach file" +msgstr "Fájl csatolása" + +#: include/conversation.php:1204 mod/editpost.php:93 +msgid "attach file" +msgstr "fájl csatolása" + +#: include/conversation.php:1205 src/Module/Item/Compose.php:145 +#: src/Object/Post.php:962 +msgid "Bold" +msgstr "Félkövér" + +#: include/conversation.php:1206 src/Module/Item/Compose.php:146 +#: src/Object/Post.php:963 +msgid "Italic" +msgstr "Dőlt" + +#: include/conversation.php:1207 src/Module/Item/Compose.php:147 +#: src/Object/Post.php:964 +msgid "Underline" +msgstr "Aláhúzott" + +#: include/conversation.php:1208 src/Module/Item/Compose.php:148 +#: src/Object/Post.php:965 +msgid "Quote" +msgstr "Idézet" + +#: include/conversation.php:1209 src/Module/Item/Compose.php:149 +#: src/Object/Post.php:966 +msgid "Code" +msgstr "Kód" + +#: include/conversation.php:1210 src/Module/Item/Compose.php:150 +#: src/Object/Post.php:967 +msgid "Image" +msgstr "Kép" + +#: include/conversation.php:1211 src/Module/Item/Compose.php:151 +#: src/Object/Post.php:968 +msgid "Link" +msgstr "Hivatkozás" + +#: include/conversation.php:1212 src/Module/Item/Compose.php:152 +#: src/Object/Post.php:969 +msgid "Link or Media" +msgstr "Hivatkozás vagy média" + +#: include/conversation.php:1213 +msgid "Video" +msgstr "Videó" + +#: include/conversation.php:1214 mod/editpost.php:100 +#: src/Module/Item/Compose.php:155 +msgid "Set your location" +msgstr "Az Ön helyének beállítása" + +#: include/conversation.php:1215 mod/editpost.php:101 +msgid "set location" +msgstr "hely beállítása" + +#: include/conversation.php:1216 mod/editpost.php:102 +msgid "Clear browser location" +msgstr "Böngésző helyének törlése" + +#: include/conversation.php:1217 mod/editpost.php:103 +msgid "clear location" +msgstr "hely törlése" + +#: include/conversation.php:1219 mod/editpost.php:117 +#: src/Module/Item/Compose.php:160 +msgid "Set title" +msgstr "Cím beállítása" + +#: include/conversation.php:1221 mod/editpost.php:119 +#: src/Module/Item/Compose.php:161 +msgid "Categories (comma-separated list)" +msgstr "Kategóriák (vesszővel elválasztott lista)" + +#: include/conversation.php:1223 mod/editpost.php:105 +msgid "Permission settings" +msgstr "Jogosultsági beállítások" + +#: include/conversation.php:1224 mod/editpost.php:134 mod/events.php:578 +#: mod/photos.php:969 mod/photos.php:1335 +msgid "Permissions" +msgstr "Jogosultságok" + +#: include/conversation.php:1233 mod/editpost.php:114 +msgid "Public post" +msgstr "Nyilvános bejegyzés" + +#: include/conversation.php:1237 mod/editpost.php:125 mod/events.php:573 +#: mod/photos.php:1381 mod/photos.php:1438 mod/photos.php:1513 +#: src/Module/Item/Compose.php:154 src/Object/Post.php:971 +msgid "Preview" +msgstr "Előnézet" + +#: include/conversation.php:1241 mod/dfrn_request.php:642 mod/editpost.php:128 +#: mod/fbrowser.php:105 mod/fbrowser.php:134 mod/follow.php:152 +#: mod/photos.php:1037 mod/photos.php:1143 mod/tagrm.php:37 mod/tagrm.php:129 +#: mod/unfollow.php:100 src/Module/Contact.php:467 +#: src/Module/RemoteFollow.php:110 +msgid "Cancel" +msgstr "Mégse" + +#: include/conversation.php:1248 mod/editpost.php:132 +#: src/Model/Profile.php:460 src/Module/Contact.php:344 +msgid "Message" +msgstr "Üzenet" + +#: include/conversation.php:1249 mod/editpost.php:133 +#: src/Module/Settings/TwoFactor/Trusted.php:101 +msgid "Browser" +msgstr "Böngésző" + +#: include/conversation.php:1251 mod/editpost.php:136 +msgid "Open Compose page" +msgstr "Írás oldal megnyitása" #: include/enotify.php:51 msgid "[Friendica:Notify]" @@ -8942,310 +830,909 @@ msgstr "Teljes név:\t%s\nOldal címe:\t%s\nBejelentkezési név:\t%s (%s)" msgid "Please visit %s to approve or reject the request." msgstr "Látogassa meg a(z) %s oldalt a kérés jóváhagyásához vagy visszautasításához." -#: include/api.php:1127 -#, 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] "A napi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva." -msgstr[1] "A napi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva." +#: mod/api.php:52 mod/api.php:57 mod/dfrn_confirm.php:78 mod/editpost.php:37 +#: mod/events.php:231 mod/follow.php:55 mod/follow.php:135 mod/item.php:185 +#: mod/item.php:190 mod/item.php:910 mod/message.php:69 mod/message.php:112 +#: mod/notes.php:44 mod/ostatus_subscribe.php:30 mod/photos.php:176 +#: mod/photos.php:922 mod/repair_ostatus.php:31 mod/settings.php:47 +#: mod/settings.php:65 mod/settings.php:498 mod/suggest.php:34 +#: mod/uimport.php:32 mod/unfollow.php:35 mod/unfollow.php:50 +#: mod/unfollow.php:82 mod/wall_attach.php:78 mod/wall_attach.php:81 +#: mod/wall_upload.php:99 mod/wall_upload.php:102 mod/wallmessage.php:35 +#: mod/wallmessage.php:59 mod/wallmessage.php:96 mod/wallmessage.php:120 +#: src/Module/Attach.php:56 src/Module/BaseApi.php:69 +#: src/Module/BaseApi.php:80 src/Module/BaseApi.php:91 +#: src/Module/BaseApi.php:102 src/Module/BaseNotifications.php:88 +#: src/Module/Contact.php:385 src/Module/Contact/Advanced.php:43 +#: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:16 +#: src/Module/FriendSuggest.php:44 src/Module/Group.php:45 +#: src/Module/Group.php:90 src/Module/Invite.php:40 src/Module/Invite.php:127 +#: src/Module/Notifications/Notification.php:47 +#: src/Module/Notifications/Notification.php:76 +#: src/Module/Profile/Common.php:57 src/Module/Profile/Contacts.php:57 +#: src/Module/Register.php:62 src/Module/Register.php:75 +#: src/Module/Register.php:193 src/Module/Register.php:232 +#: src/Module/Search/Directory.php:38 src/Module/Settings/Delegation.php:42 +#: src/Module/Settings/Delegation.php:70 src/Module/Settings/Display.php:42 +#: src/Module/Settings/Display.php:118 +#: src/Module/Settings/Profile/Photo/Crop.php:157 +#: src/Module/Settings/Profile/Photo/Index.php:113 +#: src/Module/Settings/UserExport.php:59 src/Module/Settings/UserExport.php:94 +#: src/Module/Settings/UserExport.php:201 +#: src/Module/Settings/UserExport.php:221 +#: src/Module/Settings/UserExport.php:286 +msgid "Permission denied." +msgstr "Hozzáférés megtagadva." -#: include/api.php:1141 -#, php-format -msgid "Weekly posting limit of %d post reached. The post was rejected." -msgid_plural "" -"Weekly posting limit of %d posts reached. The post was rejected." -msgstr[0] "A heti %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva." -msgstr[1] "A heti %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva." +#: mod/api.php:102 mod/api.php:124 src/Module/OAuth/Acknowledge.php:44 +msgid "Authorize application connection" +msgstr "Alkalmazáskapcsolat felhatalmazása" -#: include/api.php:1155 -#, php-format -msgid "Monthly posting limit of %d post reached. The post was rejected." -msgstr "A havi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva." +#: mod/api.php:103 +msgid "Return to your app and insert this Securty Code:" +msgstr "Térjen vissza az alkalmazásához, és szúrja be ezt a biztonsági kódot:" -#: include/conversation.php:195 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s megbökte őt: %2$s" +#: mod/api.php:112 src/Module/BaseAdmin.php:54 src/Module/BaseAdmin.php:58 +msgid "Please login to continue." +msgstr "Jelentkezzen be a folytatáshoz." -#: include/conversation.php:230 include/conversation.php:239 mod/tagger.php:90 -msgid "status" -msgstr "állapot" - -#: include/conversation.php:249 mod/tagger.php:123 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s megjelölte %2$s %3$s vele: %4$s" - -#: include/conversation.php:636 -msgid "View in context" -msgstr "Megtekintés környezetben" - -#: include/conversation.php:702 -msgid "remove" -msgstr "eltávolítás" - -#: include/conversation.php:707 -msgid "Delete Selected Items" -msgstr "Kijelölt elemek törlése" - -#: include/conversation.php:744 include/conversation.php:747 -#: include/conversation.php:750 include/conversation.php:753 -#, php-format -msgid "You had been addressed (%s)." -msgstr "Önt megszólították (%s)." - -#: include/conversation.php:756 -#, php-format -msgid "You are following %s." -msgstr "Ön követi őt: %s." - -#: include/conversation.php:759 -msgid "Tagged" -msgstr "Megjelölve" - -#: include/conversation.php:772 include/conversation.php:1115 -#: include/conversation.php:1153 -#, php-format -msgid "%s reshared this." -msgstr "%s újra megosztotta ezt." - -#: include/conversation.php:774 -msgid "Reshared" -msgstr "Újra megosztva" - -#: include/conversation.php:774 -#, php-format -msgid "Reshared by %s" -msgstr "%s újra megosztotta" - -#: include/conversation.php:777 -#, php-format -msgid "%s is participating in this thread." -msgstr "%s részt vesz ebben a szálban." - -#: include/conversation.php:780 -msgid "Stored" -msgstr "Tárolt" - -#: include/conversation.php:783 -msgid "Global" -msgstr "Globális" - -#: include/conversation.php:786 -msgid "Relayed" -msgstr "Továbbítva" - -#: include/conversation.php:786 -#, php-format -msgid "Relayed by %s." -msgstr "%s továbbította." - -#: include/conversation.php:789 -msgid "Fetched" -msgstr "Lekérve" - -#: include/conversation.php:789 -#, php-format -msgid "Fetched because of %s" -msgstr "Lekérve %s miatt" - -#: include/conversation.php:1100 -#, php-format -msgid "%s likes this." -msgstr "%s kedveli ezt." - -#: include/conversation.php:1103 -#, php-format -msgid "%s doesn't like this." -msgstr "%s nem kedveli ezt." - -#: include/conversation.php:1106 -#, php-format -msgid "%s attends." -msgstr "%s részt vesz." - -#: include/conversation.php:1109 -#, php-format -msgid "%s doesn't attend." -msgstr "%s nem vesz részt." - -#: include/conversation.php:1112 -#, php-format -msgid "%s attends maybe." -msgstr "%s talán részt vesz." - -#: include/conversation.php:1121 -msgid "and" -msgstr "és" - -#: include/conversation.php:1124 -#, php-format -msgid "and %d other people" -msgstr "és %d más személy" - -#: include/conversation.php:1132 -#, php-format -msgid "%2$d people like this" -msgstr "%2$d személy kedveli ezt" - -#: include/conversation.php:1133 -#, php-format -msgid "%s like this." -msgstr "%s kedveli ezt." - -#: include/conversation.php:1136 -#, php-format -msgid "%2$d people don't like this" -msgstr "%2$d személy nem kedveli ezt" - -#: include/conversation.php:1137 -#, php-format -msgid "%s don't like this." -msgstr "%s nem kedveli ezt." - -#: include/conversation.php:1140 -#, php-format -msgid "%2$d people attend" -msgstr "%2$d személy részt vesz" - -#: include/conversation.php:1141 -#, php-format -msgid "%s attend." -msgstr "%s részt vesz." - -#: include/conversation.php:1144 -#, php-format -msgid "%2$d people don't attend" -msgstr "%2$d személy nem vesz részt" - -#: include/conversation.php:1145 -#, php-format -msgid "%s don't attend." -msgstr "%s nem vesz részt." - -#: include/conversation.php:1148 -#, php-format -msgid "%2$d people attend maybe" -msgstr "%2$d személy talán részt vesz" - -#: include/conversation.php:1149 -#, php-format -msgid "%s attend maybe." -msgstr "%s talán részt vesz." - -#: include/conversation.php:1152 -#, php-format -msgid "%2$d people reshared this" -msgstr "%2$d személy újra megosztotta ezt" - -#: include/conversation.php:1182 -msgid "Visible to everybody" -msgstr "Látható mindenkinek" - -#: include/conversation.php:1184 -msgid "Tag term:" -msgstr "Címkézési kifejezés:" - -#: include/conversation.php:1186 -msgid "Where are you right now?" -msgstr "Hol van most éppen?" - -#: include/conversation.php:1187 -msgid "Delete item(s)?" -msgstr "Törli az elemeket?" - -#: include/conversation.php:1197 -msgid "New Post" -msgstr "Új bejegyzés" - -#: include/conversation.php:1200 -msgid "Share" -msgstr "Megosztás" - -#: include/conversation.php:1202 mod/editpost.php:90 mod/wallmessage.php:153 -#: mod/message.php:202 mod/message.php:371 -msgid "Upload photo" -msgstr "Fénykép feltöltése" - -#: include/conversation.php:1203 mod/editpost.php:91 -msgid "upload photo" -msgstr "fénykép feltöltése" - -#: include/conversation.php:1204 mod/editpost.php:92 -msgid "Attach file" -msgstr "Fájl csatolása" - -#: include/conversation.php:1205 mod/editpost.php:93 -msgid "attach file" -msgstr "fájl csatolása" - -#: include/conversation.php:1215 mod/editpost.php:101 -msgid "set location" -msgstr "hely beállítása" - -#: include/conversation.php:1216 mod/editpost.php:102 -msgid "Clear browser location" -msgstr "Böngésző helyének törlése" - -#: include/conversation.php:1217 mod/editpost.php:103 -msgid "clear location" -msgstr "hely törlése" - -#: include/conversation.php:1223 mod/editpost.php:105 -msgid "Permission settings" -msgstr "Jogosultsági beállítások" - -#: include/conversation.php:1224 mod/photos.php:969 mod/photos.php:1335 -#: mod/editpost.php:134 mod/events.php:578 -msgid "Permissions" -msgstr "Jogosultságok" - -#: include/conversation.php:1233 mod/editpost.php:114 -msgid "Public post" -msgstr "Nyilvános bejegyzés" - -#: include/conversation.php:1251 mod/editpost.php:136 -msgid "Open Compose page" -msgstr "Írás oldal megnyitása" - -#: mod/wall_upload.php:52 mod/wall_upload.php:63 mod/wall_upload.php:108 -#: mod/wall_upload.php:159 mod/wall_upload.php:162 mod/wall_attach.php:42 -#: mod/wall_attach.php:49 mod/wall_attach.php:87 -msgid "Invalid request." -msgstr "Érvénytelen kérés." - -#: mod/wall_upload.php:233 -msgid "Wall Photos" -msgstr "Falfényképek" - -#: mod/removeme.php:63 -msgid "User deleted their account" -msgstr "A felhasználó törölte a fiókját" - -#: mod/removeme.php:64 +#: mod/api.php:126 src/Module/OAuth/Acknowledge.php:46 msgid "" -"On your Friendica node an user deleted their account. Please ensure that " -"their data is removed from the backups." -msgstr "Az Ön Friendica csomópontján egy felhasználó törölte a fiókját. Győződjön meg arról, hogy az adatai el lettek-e távolítva a biztonsági mentésekből." +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Szeretné felhatalmazni ezt az alkalmazást, hogy hozzáférjen a bejegyzéseihez és a partnereihez, és/vagy új bejegyzéseket hozzon létre Önnek?" -#: mod/removeme.php:65 -#, php-format -msgid "The user id is %d" -msgstr "A felhasználó-azonosító %d" +#: mod/api.php:127 src/Module/Contact.php:464 +#: src/Module/Notifications/Introductions.php:123 +#: src/Module/OAuth/Acknowledge.php:47 src/Module/Register.php:115 +msgid "Yes" +msgstr "Igen" -#: mod/removeme.php:99 mod/removeme.php:102 -msgid "Remove My Account" -msgstr "Saját fiók eltávolítása" +#: mod/api.php:128 src/Module/Notifications/Introductions.php:123 +#: src/Module/OAuth/Acknowledge.php:48 src/Module/Register.php:116 +msgid "No" +msgstr "Nem" -#: mod/removeme.php:100 +#: mod/cal.php:46 mod/cal.php:50 mod/follow.php:38 mod/redir.php:34 +#: mod/redir.php:203 src/Module/Conversation/Community.php:194 +#: src/Module/Debug/ItemBody.php:38 src/Module/Diaspora/Receive.php:51 +#: src/Module/Item/Follow.php:42 src/Module/Item/Ignore.php:41 +#: src/Module/Item/Pin.php:42 src/Module/Item/Pin.php:57 +#: src/Module/Item/Star.php:42 +msgid "Access denied." +msgstr "Hozzáférés megtagadva." + +#: mod/cal.php:72 mod/cal.php:133 src/Module/HoverCard.php:53 +#: src/Module/Profile/Common.php:41 src/Module/Profile/Common.php:53 +#: src/Module/Profile/Contacts.php:40 src/Module/Profile/Contacts.php:51 +#: src/Module/Profile/Status.php:58 src/Module/Register.php:258 +msgid "User not found." +msgstr "A felhasználó nem található." + +#: mod/cal.php:143 mod/display.php:284 src/Module/Profile/Profile.php:94 +#: src/Module/Profile/Profile.php:109 src/Module/Profile/Status.php:109 +#: src/Module/Update/Profile.php:55 +msgid "Access to this profile has been restricted." +msgstr "A profilhoz való hozzáférés korlátozva lett." + +#: mod/cal.php:274 mod/events.php:417 src/Content/Nav.php:195 +#: src/Content/Nav.php:262 src/Module/BaseProfile.php:88 +#: src/Module/BaseProfile.php:99 view/theme/frio/theme.php:230 +#: view/theme/frio/theme.php:234 +msgid "Events" +msgstr "Események" + +#: mod/cal.php:275 mod/events.php:418 +msgid "View" +msgstr "Nézet" + +#: mod/cal.php:276 mod/events.php:420 +msgid "Previous" +msgstr "Előző" + +#: mod/cal.php:277 mod/events.php:421 src/Module/Install.php:207 +msgid "Next" +msgstr "Következő" + +#: mod/cal.php:280 mod/events.php:426 src/Model/Event.php:463 +msgid "today" +msgstr "ma" + +#: mod/cal.php:281 mod/events.php:427 src/Model/Event.php:464 +#: src/Util/Temporal.php:330 +msgid "month" +msgstr "hónap" + +#: mod/cal.php:282 mod/events.php:428 src/Model/Event.php:465 +#: src/Util/Temporal.php:331 +msgid "week" +msgstr "hét" + +#: mod/cal.php:283 mod/events.php:429 src/Model/Event.php:466 +#: src/Util/Temporal.php:332 +msgid "day" +msgstr "nap" + +#: mod/cal.php:284 mod/events.php:430 +msgid "list" +msgstr "lista" + +#: mod/cal.php:297 src/Console/User.php:182 src/Model/User.php:662 +#: src/Module/Admin/Users/Active.php:73 src/Module/Admin/Users/Blocked.php:74 +#: src/Module/Admin/Users/Index.php:80 src/Module/Admin/Users/Pending.php:71 +#: src/Module/Api/Twitter/ContactEndpoint.php:71 +msgid "User not found" +msgstr "A felhasználó nem található" + +#: mod/cal.php:306 +msgid "This calendar format is not supported" +msgstr "Ez a naptárformátum nem támogatott" + +#: mod/cal.php:308 +msgid "No exportable data found" +msgstr "Nem található exportálható adat" + +#: mod/cal.php:325 +msgid "calendar" +msgstr "naptár" + +#: mod/dfrn_confirm.php:84 src/Module/Profile/Profile.php:82 +msgid "Profile not found." +msgstr "A profil nem található." + +#: mod/dfrn_confirm.php:139 mod/redir.php:56 mod/redir.php:157 +#: src/Module/Contact/Advanced.php:53 src/Module/Contact/Advanced.php:104 +#: src/Module/Contact/Contacts.php:36 src/Module/FriendSuggest.php:54 +#: src/Module/FriendSuggest.php:93 src/Module/Group.php:105 +msgid "Contact not found." +msgstr "A partner nem található." + +#: mod/dfrn_confirm.php:140 msgid "" -"This will completely remove your account. Once this has been done it is not " -"recoverable." -msgstr "Ez teljesen el fogja távolítani a fiókját. Miután ez megtörtént, nem lesz visszaállítható." +"This may occasionally happen if contact was requested by both persons and it" +" has already been approved." +msgstr "Ez olyan esetekben történhet, ha mindkét személy kéri a partnert, és az már jóvá lett hagyva." -#: mod/removeme.php:101 -msgid "Please enter your password for verification:" -msgstr "Adja meg a jelszavát az ellenőrzéshez:" +#: mod/dfrn_confirm.php:241 +msgid "Response from remote site was not understood." +msgstr "A távoli oldalról érkező válasz nem volt értelmezhető." + +#: mod/dfrn_confirm.php:248 mod/dfrn_confirm.php:254 +msgid "Unexpected response from remote site: " +msgstr "Váratlan válasz a távoli oldaltól: " + +#: mod/dfrn_confirm.php:263 +msgid "Confirmation completed successfully." +msgstr "A megerősítés sikeresen befejeződött." + +#: mod/dfrn_confirm.php:275 +msgid "Temporary failure. Please wait and try again." +msgstr "Átmeneti hiba. Várjon és próbálja újra." + +#: mod/dfrn_confirm.php:278 +msgid "Introduction failed or was revoked." +msgstr "A bemutatkozás sikertelen vagy visszavonták." + +#: mod/dfrn_confirm.php:283 +msgid "Remote site reported: " +msgstr "A távoli oldal jelentette: " + +#: mod/dfrn_confirm.php:388 +#, php-format +msgid "No user record found for '%s' " +msgstr "Nem található felhasználó-rekord ehhez: „%s” " + +#: mod/dfrn_confirm.php:398 +msgid "Our site encryption key is apparently messed up." +msgstr "Az oldal titkosítási kulcsunk nyilvánvalóan el lett rontva." + +#: mod/dfrn_confirm.php:409 +msgid "Empty site URL was provided or URL could not be decrypted by us." +msgstr "Üres oldal URL lett megadva vagy az URL-t nem tudtuk visszafejteni." + +#: mod/dfrn_confirm.php:425 +msgid "Contact record was not found for you on our site." +msgstr "A partner rekordja nem található Önnek a mi oldalunkon." + +#: mod/dfrn_confirm.php:439 +#, php-format +msgid "Site public key not available in contact record for URL %s." +msgstr "Az oldal nyilvános kulcsa nem érhető el a partner rekordjában a(z) %s URL-hez." + +#: mod/dfrn_confirm.php:455 +msgid "" +"The ID provided by your system is a duplicate on our system. It should work " +"if you try again." +msgstr "Az rendszere által szolgáltatott azonosító kettőzve van a mi rendszerünkön. Működnie kell, ha megpróbálja újra." + +#: mod/dfrn_confirm.php:466 +msgid "Unable to set your contact credentials on our system." +msgstr "Nem lehet beállítani a partnere hitelesítési adatait a mi rendszerünkön." + +#: mod/dfrn_confirm.php:522 +msgid "Unable to update your contact profile details on our system" +msgstr "Nem lehet frissíteni a partnere profiljának részleteit a mi rendszerünkön" + +#: mod/dfrn_poll.php:136 mod/dfrn_poll.php:509 +#, php-format +msgid "%1$s welcomes %2$s" +msgstr "%1$s üdvözli őt: %2$s" + +#: mod/dfrn_request.php:113 +msgid "This introduction has already been accepted." +msgstr "Ez a bemutatkozás már el lett fogadva." + +#: mod/dfrn_request.php:131 mod/dfrn_request.php:369 +msgid "Profile location is not valid or does not contain profile information." +msgstr "A profil helye nem érvényes vagy nem tartalmaz profilinformációkat." + +#: mod/dfrn_request.php:135 mod/dfrn_request.php:373 +msgid "Warning: profile location has no identifiable owner name." +msgstr "Figyelmeztetés: a profil helyének nincs azonosítható tulajdonosneve." + +#: mod/dfrn_request.php:138 mod/dfrn_request.php:376 +msgid "Warning: profile location has no profile photo." +msgstr "Figyelmeztetés: a profil helyének nincs profilfényképe." + +#: mod/dfrn_request.php:142 mod/dfrn_request.php:380 +#, php-format +msgid "%d required parameter was not found at the given location" +msgid_plural "%d required parameters were not found at the given location" +msgstr[0] "%d szükséges paraméter nem található a megadott helyen" +msgstr[1] "%d szükséges paraméter nem található a megadott helyen" + +#: mod/dfrn_request.php:180 +msgid "Introduction complete." +msgstr "A bemutatkozás befejeződött." + +#: mod/dfrn_request.php:216 +msgid "Unrecoverable protocol error." +msgstr "Helyrehozhatatlan protokollhiba." + +#: mod/dfrn_request.php:243 src/Module/RemoteFollow.php:54 +msgid "Profile unavailable." +msgstr "A profil nem érhető el." + +#: mod/dfrn_request.php:264 +#, php-format +msgid "%s has received too many connection requests today." +msgstr "%s túl sok kapcsolódási kérést kapott ma." + +#: mod/dfrn_request.php:265 +msgid "Spam protection measures have been invoked." +msgstr "A kéretlen adatok elleni védekezési intézkedések meghívásra kerültek." + +#: mod/dfrn_request.php:266 +msgid "Friends are advised to please try again in 24 hours." +msgstr "Az ismerősöknek azt javasoljuk, hogy próbálják újra 24 óra múlva." + +#: mod/dfrn_request.php:290 src/Module/RemoteFollow.php:60 +msgid "Invalid locator" +msgstr "Érvénytelen kereső" + +#: mod/dfrn_request.php:326 +msgid "You have already introduced yourself here." +msgstr "Ön már bemutatkozott itt." + +#: mod/dfrn_request.php:329 +#, php-format +msgid "Apparently you are already friends with %s." +msgstr "Úgy tűnik, hogy Ön és %s már ismerősök." + +#: mod/dfrn_request.php:349 +msgid "Invalid profile URL." +msgstr "Érvénytelen profil URL." + +#: mod/dfrn_request.php:355 src/Model/Contact.php:2177 +msgid "Disallowed profile URL." +msgstr "Nem engedélyezett profil URL." + +#: mod/dfrn_request.php:361 src/Model/Contact.php:2182 +#: src/Module/Friendica.php:80 +msgid "Blocked domain" +msgstr "Tiltott tartomány" + +#: mod/dfrn_request.php:428 src/Module/Contact.php:157 +msgid "Failed to update contact record." +msgstr "Nem sikerült frissíteni a partner rekordját." + +#: mod/dfrn_request.php:448 +msgid "Your introduction has been sent." +msgstr "A bemutatkozása el lett küldve." + +#: mod/dfrn_request.php:480 src/Module/RemoteFollow.php:72 +msgid "" +"Remote subscription can't be done for your network. Please subscribe " +"directly on your system." +msgstr "A távoli feliratkozást nem lehet elvégezni az Ön hálózatánál. Iratkozzon fel közvetlenül a saját rendszerén." + +#: mod/dfrn_request.php:496 +msgid "Please login to confirm introduction." +msgstr "Jelentkezzen be a bemutatkozás megerősítéséhez." + +#: mod/dfrn_request.php:504 +msgid "" +"Incorrect identity currently logged in. Please login to " +"this profile." +msgstr "Hibás személyazonosság van jelenleg bejelentkezve. Jelentkezzen be ebbe a profilba." + +#: mod/dfrn_request.php:518 mod/dfrn_request.php:533 +msgid "Confirm" +msgstr "Megerősítés" + +#: mod/dfrn_request.php:529 +msgid "Hide this contact" +msgstr "A partner elrejtése" + +#: mod/dfrn_request.php:531 +#, php-format +msgid "Welcome home %s." +msgstr "Üdvözöljük itthon, %s!" + +#: mod/dfrn_request.php:532 +#, php-format +msgid "Please confirm your introduction/connection request to %s." +msgstr "Erősítse meg a bemutatkozását vagy a kapcsolódási kérését ehhez: %s." + +#: mod/dfrn_request.php:600 mod/display.php:179 mod/photos.php:836 +#: mod/videos.php:129 src/Module/Conversation/Community.php:188 +#: src/Module/Debug/Probe.php:39 src/Module/Debug/WebFinger.php:38 +#: src/Module/Directory.php:49 src/Module/Search/Index.php:50 +#: src/Module/Search/Index.php:55 +msgid "Public access denied." +msgstr "Nyilvános hozzáférés megtagadva." + +#: mod/dfrn_request.php:636 src/Module/RemoteFollow.php:104 +msgid "Friend/Connection Request" +msgstr "Ismerős- vagy kapcsolódási kérés" + +#: mod/dfrn_request.php:637 +#, php-format +msgid "" +"Enter your Webfinger address (user@domain.tld) or profile URL here. If this " +"isn't supported by your system (for example it doesn't work with Diaspora), " +"you have to subscribe to %s directly on your system" +msgstr "Adja meg itt a WebFinger-címét (felhasználó@tartomány.tld) vagy a profil URL-jét. Ha ezt nem támogatja a rendszere (például nem működik a Diaspora hálózatával), akkor fel kell iratkoznia a(z) %s címre közvetlenül a rendszerén." + +#: mod/dfrn_request.php:638 src/Module/RemoteFollow.php:106 +#, php-format +msgid "" +"If you are not yet a member of the free social web, follow " +"this link to find a public Friendica node and join us today." +msgstr "Ha még nem tagja a szabad közösségi hálónak, akkor kövesse ezt a hivatkozást egy nyilvános Friendica csomópont kereséséhez, és csatlakozzon hozzánk még ma." + +#: mod/dfrn_request.php:639 src/Module/RemoteFollow.php:107 +msgid "Your Webfinger address or profile URL:" +msgstr "A WebFinger-címe vagy profil URL-je:" + +#: mod/dfrn_request.php:640 mod/follow.php:147 src/Module/RemoteFollow.php:108 +msgid "Please answer the following:" +msgstr "Válaszoljon a következőre:" + +#: mod/dfrn_request.php:641 mod/follow.php:74 mod/unfollow.php:99 +#: src/Module/RemoteFollow.php:109 +msgid "Submit Request" +msgstr "Kérés elküldése" + +#: mod/dfrn_request.php:648 mod/follow.php:161 +#, php-format +msgid "%s knows you" +msgstr "%s ismeri Önt" + +#: mod/dfrn_request.php:649 mod/follow.php:162 +msgid "Add a personal note:" +msgstr "Személyes jegyzet hozzáadása:" + +#: mod/display.php:235 mod/display.php:320 +msgid "The requested item doesn't exist or has been deleted." +msgstr "A kért elem nem létezik vagy törölték." + +#: mod/display.php:400 +msgid "The feed for this item is unavailable." +msgstr "Ennek az elemnek a hírforrása nem érhető el." + +#: mod/editpost.php:44 mod/editpost.php:54 +msgid "Item not found" +msgstr "Az elem nem található" + +#: mod/editpost.php:61 +msgid "Edit post" +msgstr "Bejegyzés szerkesztése" + +#: mod/editpost.php:88 mod/notes.php:63 src/Content/Text/HTML.php:893 +#: src/Module/Filer/SaveTag.php:70 +msgid "Save" +msgstr "Mentés" + +#: mod/editpost.php:94 mod/message.php:203 mod/message.php:372 +#: mod/wallmessage.php:154 +msgid "Insert web link" +msgstr "Webhivatkozás beszúrása" + +#: mod/editpost.php:95 +msgid "web link" +msgstr "webhivatkozás" + +#: mod/editpost.php:96 +msgid "Insert video link" +msgstr "Videohivatkozás beszúrása" + +#: mod/editpost.php:97 +msgid "video link" +msgstr "videohivatkozás" + +#: mod/editpost.php:98 +msgid "Insert audio link" +msgstr "Hanghivatkozás beszúrása" + +#: mod/editpost.php:99 +msgid "audio link" +msgstr "hanghivatkozás" + +#: mod/editpost.php:113 src/Core/ACL.php:313 +msgid "CC: email addresses" +msgstr "Másolat: e-mail-címek" + +#: mod/editpost.php:120 src/Core/ACL.php:314 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Példa: bob@example.com, mary@example.com" + +#: mod/events.php:138 mod/events.php:140 +msgid "Event can not end before it has started." +msgstr "Az esemény nem fejeződhet be, mielőtt elkezdődött volna." + +#: mod/events.php:147 mod/events.php:149 +msgid "Event title and start time are required." +msgstr "Az esemény címe és a kezdési idő kötelező." + +#: mod/events.php:419 +msgid "Create New Event" +msgstr "Új esemény létrehozása" + +#: mod/events.php:531 +msgid "Event details" +msgstr "Esemény részletei" + +#: mod/events.php:532 +msgid "Starting date and Title are required." +msgstr "A kezdési dátum és a cím kötelező." + +#: mod/events.php:533 mod/events.php:538 +msgid "Event Starts:" +msgstr "Esemény kezdete:" + +#: mod/events.php:533 mod/events.php:565 +#: src/Module/Admin/Blocklist/Server.php:79 +#: src/Module/Admin/Blocklist/Server.php:80 +#: src/Module/Admin/Blocklist/Server.php:99 +#: src/Module/Admin/Blocklist/Server.php:100 +#: src/Module/Admin/Item/Delete.php:70 src/Module/Debug/Probe.php:60 +#: src/Module/Install.php:200 src/Module/Install.php:233 +#: src/Module/Install.php:238 src/Module/Install.php:257 +#: src/Module/Install.php:268 src/Module/Install.php:273 +#: src/Module/Install.php:279 src/Module/Install.php:284 +#: src/Module/Install.php:298 src/Module/Install.php:313 +#: src/Module/Install.php:340 src/Module/Register.php:135 +#: src/Module/Security/TwoFactor/Verify.php:99 +#: src/Module/Settings/TwoFactor/Index.php:133 +#: src/Module/Settings/TwoFactor/Verify.php:141 +msgid "Required" +msgstr "Kötelező" + +#: mod/events.php:546 mod/events.php:571 +msgid "Finish date/time is not known or not relevant" +msgstr "A befejezési dátum vagy idő nem ismert vagy nem fontos" + +#: mod/events.php:548 mod/events.php:553 +msgid "Event Finishes:" +msgstr "Esemény befejezése:" + +#: mod/events.php:559 mod/events.php:572 +msgid "Adjust for viewer timezone" +msgstr "Igazítás a néző időzónájához" + +#: mod/events.php:561 src/Module/Profile/Profile.php:172 +#: src/Module/Settings/Profile/Index.php:253 +msgid "Description:" +msgstr "Leírás:" + +#: mod/events.php:563 src/Model/Event.php:84 src/Model/Event.php:111 +#: src/Model/Event.php:472 src/Model/Event.php:959 src/Model/Profile.php:368 +#: src/Module/Contact.php:654 src/Module/Directory.php:156 +#: src/Module/Notifications/Introductions.php:172 +#: src/Module/Profile/Profile.php:190 +msgid "Location:" +msgstr "Hely:" + +#: mod/events.php:565 mod/events.php:567 +msgid "Title:" +msgstr "Cím:" + +#: mod/events.php:568 mod/events.php:569 +msgid "Share this event" +msgstr "Az esemény megosztása" + +#: mod/events.php:575 mod/message.php:205 mod/message.php:373 +#: mod/photos.php:951 mod/photos.php:1054 mod/photos.php:1339 +#: mod/photos.php:1380 mod/photos.php:1437 mod/photos.php:1512 +#: src/Module/Admin/Item/Source.php:65 src/Module/Contact.php:612 +#: src/Module/Contact/Advanced.php:132 src/Module/Contact/Poke.php:155 +#: src/Module/Debug/ActivityPubConversion.php:141 +#: src/Module/Debug/Babel.php:313 src/Module/Debug/Localtime.php:64 +#: src/Module/Debug/Probe.php:55 src/Module/Debug/WebFinger.php:53 +#: src/Module/Delegation.php:152 src/Module/FriendSuggest.php:129 +#: src/Module/Install.php:245 src/Module/Install.php:287 +#: src/Module/Install.php:324 src/Module/Invite.php:174 +#: src/Module/Item/Compose.php:144 src/Module/Profile/Profile.php:243 +#: src/Module/Settings/Profile/Index.php:237 src/Object/Post.php:960 +#: view/theme/duepuntozero/config.php:69 view/theme/frio/config.php:160 +#: view/theme/quattro/config.php:71 view/theme/vier/config.php:119 +msgid "Submit" +msgstr "Elküldés" + +#: mod/events.php:576 src/Module/Profile/Profile.php:244 +msgid "Basic" +msgstr "Alap" + +#: mod/events.php:577 src/Module/Admin/Site.php:584 src/Module/Contact.php:961 +#: src/Module/Profile/Profile.php:245 +msgid "Advanced" +msgstr "Speciális" + +#: mod/events.php:594 +msgid "Failed to remove event" +msgstr "Nem sikerült eltávolítani az eseményt" + +#: mod/fbrowser.php:43 src/Content/Nav.php:193 src/Module/BaseProfile.php:68 +#: view/theme/frio/theme.php:228 +msgid "Photos" +msgstr "Fényképek" + +#: mod/fbrowser.php:107 mod/fbrowser.php:136 +#: src/Module/Settings/Profile/Photo/Index.php:130 +msgid "Upload" +msgstr "Feltöltés" + +#: mod/fbrowser.php:131 +msgid "Files" +msgstr "Fájlok" + +#: mod/follow.php:84 +msgid "You already added this contact." +msgstr "Már hozzáadta ezt a partnert." + +#: mod/follow.php:100 +msgid "The network type couldn't be detected. Contact can't be added." +msgstr "A hálózat típusát nem sikerült felismerni. A partnert nem lehet hozzáadni." + +#: mod/follow.php:108 +msgid "Diaspora support isn't enabled. Contact can't be added." +msgstr "A Diaspora támogatása nincs engedélyezve. A partnert nem lehet hozzáadni." + +#: mod/follow.php:113 +msgid "OStatus support is disabled. Contact can't be added." +msgstr "Az OStatus támogatása le van tiltva. A partnert nem lehet hozzáadni." + +#: mod/follow.php:148 mod/unfollow.php:97 +msgid "Your Identity Address:" +msgstr "Az Ön személyazonosság-címe:" + +#: mod/follow.php:149 mod/unfollow.php:103 +#: src/Module/Admin/Blocklist/Contact.php:100 src/Module/Contact.php:650 +#: src/Module/Notifications/Introductions.php:108 +#: src/Module/Notifications/Introductions.php:183 +msgid "Profile URL" +msgstr "Profil URL" + +#: mod/follow.php:150 src/Module/Contact.php:660 +#: src/Module/Notifications/Introductions.php:176 +#: src/Module/Profile/Profile.php:203 +msgid "Tags:" +msgstr "Címkék:" + +#: mod/follow.php:171 mod/unfollow.php:113 src/Module/BaseProfile.php:63 +#: src/Module/Contact.php:939 +msgid "Status Messages and Posts" +msgstr "Állapotüzenetek és bejegyzések" + +#: mod/follow.php:203 +msgid "The contact could not be added." +msgstr "A partnert nem sikerült hozzáadni." + +#: mod/item.php:136 mod/item.php:140 +msgid "Unable to locate original post." +msgstr "Nem lehet megtalálni az eredeti bejegyzést." + +#: mod/item.php:341 mod/item.php:346 +msgid "Empty post discarded." +msgstr "Az üres bejegyzés elvetve." + +#: mod/item.php:717 +msgid "Post updated." +msgstr "Bejegyzés frissítve." + +#: mod/item.php:727 mod/item.php:732 +msgid "Item wasn't stored." +msgstr "Az elem nem lett eltárolva." + +#: mod/item.php:743 +msgid "Item couldn't be fetched." +msgstr "Az elemet nem sikerült lekérni." + +#: mod/item.php:889 src/Module/Admin/Themes/Details.php:39 +#: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:47 +#: src/Module/Debug/ItemBody.php:60 +msgid "Item not found." +msgstr "Az elem nem található." + +#: mod/lostpass.php:40 +msgid "No valid account found." +msgstr "Nem található érvényes fiók." + +#: mod/lostpass.php:52 +msgid "Password reset request issued. Check your email." +msgstr "A jelszó-visszaállítási kérés el lett küldve. Nézze meg a leveleit." + +#: mod/lostpass.php:58 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" +"\t\tpassword. In order to confirm this request, please select the verification link\n" +"\t\tbelow or paste it into your web browser address bar.\n" +"\n" +"\t\tIf you did NOT request this change, please DO NOT follow the link\n" +"\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n" +"\n" +"\t\tYour password will not be changed unless we can verify that you\n" +"\t\tissued this request." +msgstr "\n\t\tKedves %1$s!\n\t\t\tNemrég kérés érkezett a „%2$s” oldalról a fiókja jelszavának\n\t\tvisszaállítására. A kérés megerősítése érdekében kattintson a lenti\n\t\tellenőrző hivatkozásra, vagy illessze be a webböngészője címsávjába.\n\n\t\tHa NEM Ön kérte ezt a változtatást, akkor NE kövesse a megadott\n\t\thivatkozást, illetve hagyja figyelmen kívül és/vagy törölje ezt az\n\t\te-mailt. A kérés hamarosan le fog járni.\n\n\t\tA jelszava nem lesz megváltoztatva, hacsak nem tudjuk ellenőrizni, hogy\n\t\tÖn indította ezt a kérést." + +#: mod/lostpass.php:69 +#, php-format +msgid "" +"\n" +"\t\tFollow this link soon to verify your identity:\n" +"\n" +"\t\t%1$s\n" +"\n" +"\t\tYou will then receive a follow-up message containing the new password.\n" +"\t\tYou may change that password from your account settings page after logging in.\n" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%2$s\n" +"\t\tLogin Name:\t%3$s" +msgstr "\n\t\tKövesse ezt a hivatkozást a személyazonossága ellenőrzéséhez:\n\n\t\t%1$s\n\n\t\tEzután kapni fog egy követő üzenetet, amely az új jelszavát tartalmazza.\n\t\tA jelszót a fiókja beállításainak oldalán változtathatja meg, miután bejelentkezett.\n\n\t\tA bejelentkezés részletei a következők:\n\n\t\tOldal címe:\t%2$s\n\t\tBejelentkezési név:\t%3$s" + +#: mod/lostpass.php:84 +#, php-format +msgid "Password reset requested at %s" +msgstr "Jelszó-visszaállítás kérve itt: %s" + +#: mod/lostpass.php:100 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "A kérést nem sikerült ellenőrizni (lehet, hogy korábban már elküldte). A jelszó-visszaállítás sikertelen." + +#: mod/lostpass.php:113 +msgid "Request has expired, please make a new one." +msgstr "A kérés lejárt, készítsen egy újat." + +#: mod/lostpass.php:128 +msgid "Forgot your Password?" +msgstr "Elfelejtette a jelszavát?" + +#: mod/lostpass.php:129 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Adja meg az e-mail-címét, és küldje el a jelszó-visszaállítás kéréséhez. Azután nézze meg a postafiókját a további utasításokért." + +#: mod/lostpass.php:130 src/Module/Security/Login.php:148 +msgid "Nickname or Email: " +msgstr "Becenév vagy e-mail-cím: " + +#: mod/lostpass.php:131 +msgid "Reset" +msgstr "Visszaállítás" + +#: mod/lostpass.php:146 src/Module/Security/Login.php:160 +msgid "Password Reset" +msgstr "Jelszó visszaállítása" + +#: mod/lostpass.php:147 +msgid "Your password has been reset as requested." +msgstr "A jelszava vissza lett állítva a kérés alapján." + +#: mod/lostpass.php:148 +msgid "Your new password is" +msgstr "Az új jelszava" + +#: mod/lostpass.php:149 +msgid "Save or copy your new password - and then" +msgstr "Mentse el vagy másolja le az új jelszavát – majd" + +#: mod/lostpass.php:150 +msgid "click here to login" +msgstr "kattintson ide a bejelentkezéshez" + +#: mod/lostpass.php:151 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "A jelszava megváltoztatható a Beállítások oldalon, miután sikeresen bejelentkezett." + +#: mod/lostpass.php:155 +msgid "Your password has been reset." +msgstr "A jelszava vissza lett állítva." + +#: mod/lostpass.php:158 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tYour password has been changed as requested. Please retain this\n" +"\t\t\tinformation for your records (or change your password immediately to\n" +"\t\t\tsomething that you will remember).\n" +"\t\t" +msgstr "\n\t\t\tKedves %1$s!\n\t\t\t\tA jelszava vissza lett állítva a kérés alapján. Őrizze meg ezt az\n\t\t\tinformációt a feljegyzéséhez (vagy változtassa meg a jelszót azonnal\n\t\t\tvalami olyanra, amelyre emlékezni fog).\n\t\t" + +#: mod/lostpass.php:164 +#, php-format +msgid "" +"\n" +"\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%1$s\n" +"\t\t\tLogin Name:\t%2$s\n" +"\t\t\tPassword:\t%3$s\n" +"\n" +"\t\t\tYou may change that password from your account settings page after logging in.\n" +"\t\t" +msgstr "\n\t\t\tA bejelentkezés részletei a következők:\n\n\t\t\tOldal címe:\t%1$s\n\t\t\tBejelentkezési név:\t%2$s\n\t\t\tJelszó:\t%3$s\n\n\t\t\tMegváltoztathatja a jelszót a fiókbeállítások oldalon, miután bejelentkezett.\n\t\t" + +#: mod/lostpass.php:176 +#, php-format +msgid "Your password has been changed at %s" +msgstr "A jelszava meg lett változtatva itt: %s" + +#: mod/match.php:62 +msgid "No keywords to match. Please add keywords to your profile." +msgstr "Nincs illesztendő kulcsszó. Adjon kulcsszavakat a profiljához." + +#: mod/match.php:93 src/Module/BaseSearch.php:117 +msgid "No matches" +msgstr "Nincs találat" + +#: mod/match.php:98 +msgid "Profile Match" +msgstr "Profilegyezés" + +#: mod/message.php:46 mod/message.php:127 src/Content/Nav.php:290 +msgid "New Message" +msgstr "Új üzenet" + +#: mod/message.php:83 mod/wallmessage.php:76 +msgid "No recipient selected." +msgstr "Nincs címzett kiválasztva." + +#: mod/message.php:87 +msgid "Unable to locate contact information." +msgstr "Nem lehet megtalálni a partner információit." + +#: mod/message.php:90 mod/wallmessage.php:82 +msgid "Message could not be sent." +msgstr "Az üzenetet nem sikerült elküldeni." + +#: mod/message.php:93 mod/wallmessage.php:85 +msgid "Message collection failure." +msgstr "Üzenet-összegyűjtési hiba." + +#: mod/message.php:121 src/Module/Notifications/Introductions.php:114 +#: src/Module/Notifications/Introductions.php:155 +#: src/Module/Notifications/Notification.php:56 +msgid "Discard" +msgstr "Elvetés" + +#: mod/message.php:134 src/Content/Nav.php:287 view/theme/frio/theme.php:235 +msgid "Messages" +msgstr "Üzenetek" + +#: mod/message.php:147 +msgid "Conversation not found." +msgstr "A beszélgetés nem található." + +#: mod/message.php:152 +msgid "Message was not deleted." +msgstr "Az üzenet nem lett törölve." + +#: mod/message.php:170 +msgid "Conversation was not removed." +msgstr "A beszélgetés nem lett eltávolítva." + +#: mod/message.php:184 mod/message.php:297 mod/wallmessage.php:137 +msgid "Please enter a link URL:" +msgstr "Írjon be egy hivatkozás URL-t:" + +#: mod/message.php:193 mod/wallmessage.php:142 +msgid "Send Private Message" +msgstr "Személyes üzenet küldése" + +#: mod/message.php:194 mod/message.php:363 mod/wallmessage.php:144 +msgid "To:" +msgstr "Címzett:" + +#: mod/message.php:195 mod/message.php:364 mod/wallmessage.php:145 +msgid "Subject:" +msgstr "Tárgy:" + +#: mod/message.php:199 mod/message.php:367 mod/wallmessage.php:151 +#: src/Module/Invite.php:167 +msgid "Your message:" +msgstr "Az üzenete:" + +#: mod/message.php:233 +msgid "No messages." +msgstr "Nincsenek üzenetek." + +#: mod/message.php:289 +msgid "Message not available." +msgstr "Az üzenet nem érhető el." + +#: mod/message.php:339 +msgid "Delete message" +msgstr "Üzenet törlése" + +#: mod/message.php:341 mod/message.php:473 +msgid "D, d M Y - g:i A" +msgstr "Y. M. j., D. – H:i" + +#: mod/message.php:356 mod/message.php:470 +msgid "Delete conversation" +msgstr "Beszélgetés törlése" + +#: mod/message.php:358 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Nem érhető el biztonságos kommunikáció. Esetleg válaszolhat a küldő profiloldaláról." + +#: mod/message.php:362 +msgid "Send Reply" +msgstr "Válasz küldése" + +#: mod/message.php:444 +#, php-format +msgid "Unknown sender - %s" +msgstr "Ismeretlen küldő – %s" + +#: mod/message.php:446 +#, php-format +msgid "You and %s" +msgstr "Ön és %s" + +#: mod/message.php:448 +#, php-format +msgid "%s and You" +msgstr "%s és Ön" + +#: mod/message.php:476 +#, php-format +msgid "%d message" +msgid_plural "%d messages" +msgstr[0] "%d üzenet" +msgstr[1] "%d üzenet" + +#: mod/notes.php:51 src/Module/BaseProfile.php:110 +msgid "Personal Notes" +msgstr "Személyes jegyzetek" + +#: mod/notes.php:59 +msgid "Personal notes are visible only by yourself." +msgstr "A személyes jegyzetek csak az Ön számára láthatók." #: mod/ostatus_subscribe.php:35 msgid "Subscribing to OStatus contacts" @@ -9275,10 +1762,18 @@ msgstr "sikeres" msgid "failed" msgstr "sikertelen" +#: mod/ostatus_subscribe.php:98 +msgid "ignored" +msgstr "mellőzve" + #: mod/ostatus_subscribe.php:103 mod/repair_ostatus.php:71 msgid "Keep this window open until done." msgstr "Tartsa nyitva ezt az ablakot, amíg el nem készül." +#: mod/photos.php:129 src/Module/BaseProfile.php:71 +msgid "Photo Albums" +msgstr "Fényképalbumok" + #: mod/photos.php:130 mod/photos.php:1638 msgid "Recent Photos" msgstr "Legutóbbi fényképek" @@ -9287,6 +1782,10 @@ msgstr "Legutóbbi fényképek" msgid "Upload New Photos" msgstr "Új fényképek feltöltése" +#: mod/photos.php:150 src/Module/BaseSettings.php:37 +msgid "everybody" +msgstr "mindenki" + #: mod/photos.php:183 msgid "Contact information unavailable" msgstr "A partner információi nem érhetők el" @@ -9316,6 +1815,12 @@ msgstr "egy fényképen" msgid "%1$s was tagged in %2$s by %3$s" msgstr "%1$s meg lett jelölve %2$s %3$s által" +#: mod/photos.php:672 mod/photos.php:675 mod/photos.php:702 +#: mod/wall_upload.php:216 src/Module/Settings/Profile/Photo/Index.php:61 +#, php-format +msgid "Image exceeds size limit of %s" +msgstr "A kép meghaladja a beállított %s méretkorlátot" + #: mod/photos.php:678 msgid "Image upload didn't complete, please try again" msgstr "A kép feltöltése nem fejeződött be, próbálja újra" @@ -9334,6 +1839,16 @@ msgstr "A kiszolgáló jelenleg nem tud új fájlfeltöltést fogadni, vegye fel msgid "Image file is empty." msgstr "A képfájl üres." +#: mod/photos.php:725 mod/wall_upload.php:175 +#: src/Module/Settings/Profile/Photo/Index.php:70 +msgid "Unable to process image." +msgstr "Nem lehet feldolgozni a képet." + +#: mod/photos.php:754 mod/wall_upload.php:241 +#: src/Module/Settings/Profile/Photo/Index.php:97 +msgid "Image upload failed." +msgstr "A kép feltöltése sikertelen." + #: mod/photos.php:841 msgid "No photos selected" msgstr "Nincsenek fényképek kijelölve" @@ -9463,14 +1978,33 @@ msgstr "Forgatás jobbra" msgid "Rotate CCW (left)" msgstr "Forgatás balra" -#: mod/photos.php:1533 +#: mod/photos.php:1377 mod/photos.php:1434 mod/photos.php:1509 +#: src/Module/Contact.php:1104 src/Module/Item/Compose.php:142 +#: src/Object/Post.php:957 +msgid "This is you" +msgstr "Ez Ön" + +#: mod/photos.php:1379 mod/photos.php:1436 mod/photos.php:1511 +#: src/Object/Post.php:495 src/Object/Post.php:959 +msgid "Comment" +msgstr "Hozzászólás" + +#: mod/photos.php:1533 src/Object/Post.php:348 msgid "Like" msgstr "Tetszik" -#: mod/photos.php:1535 +#: mod/photos.php:1534 src/Object/Post.php:348 +msgid "I like this (toggle)" +msgstr "Ezt kedvelem (átváltás)" + +#: mod/photos.php:1535 src/Object/Post.php:349 msgid "Dislike" msgstr "Nem tetszik" +#: mod/photos.php:1537 src/Object/Post.php:349 +msgid "I don't like this (toggle)" +msgstr "Ezt nem kedvelem (átváltás)" + #: mod/photos.php:1559 msgid "Map" msgstr "Térkép" @@ -9479,76 +2013,71 @@ msgstr "Térkép" msgid "View Album" msgstr "Album megtekintése" -#: mod/dfrn_confirm.php:140 -msgid "" -"This may occasionally happen if contact was requested by both persons and it" -" has already been approved." -msgstr "Ez olyan esetekben történhet, ha mindkét személy kéri a partnert, és az már jóvá lett hagyva." +#: mod/ping.php:285 +msgid "{0} wants to be your friend" +msgstr "{0} az ismerőse szeretne lenni" -#: mod/dfrn_confirm.php:241 -msgid "Response from remote site was not understood." -msgstr "A távoli oldalról érkező válasz nem volt értelmezhető." +#: mod/ping.php:302 +msgid "{0} requested registration" +msgstr "{0} regisztrációt kért" -#: mod/dfrn_confirm.php:248 mod/dfrn_confirm.php:254 -msgid "Unexpected response from remote site: " -msgstr "Váratlan válasz a távoli oldaltól: " - -#: mod/dfrn_confirm.php:263 -msgid "Confirmation completed successfully." -msgstr "A megerősítés sikeresen befejeződött." - -#: mod/dfrn_confirm.php:275 -msgid "Temporary failure. Please wait and try again." -msgstr "Átmeneti hiba. Várjon és próbálja újra." - -#: mod/dfrn_confirm.php:278 -msgid "Introduction failed or was revoked." -msgstr "A bemutatkozás sikertelen vagy visszavonták." - -#: mod/dfrn_confirm.php:283 -msgid "Remote site reported: " -msgstr "A távoli oldal jelentette: " - -#: mod/dfrn_confirm.php:388 +#: mod/ping.php:315 #, php-format -msgid "No user record found for '%s' " -msgstr "Nem található felhasználó-rekord ehhez: „%s” " +msgid "{0} and %d others requested registration" +msgstr "{0} és még %d személy regisztrációt kért" -#: mod/dfrn_confirm.php:398 -msgid "Our site encryption key is apparently messed up." -msgstr "Az oldal titkosítási kulcsunk nyilvánvalóan el lett rontva." +#: mod/redir.php:50 mod/redir.php:130 +msgid "Bad Request." +msgstr "Hibás kérés." -#: mod/dfrn_confirm.php:409 -msgid "Empty site URL was provided or URL could not be decrypted by us." -msgstr "Üres oldal URL lett megadva vagy az URL-t nem tudtuk visszafejteni." +#: mod/removeme.php:63 +msgid "User deleted their account" +msgstr "A felhasználó törölte a fiókját" -#: mod/dfrn_confirm.php:425 -msgid "Contact record was not found for you on our site." -msgstr "A partner rekordja nem található Önnek a mi oldalunkon." - -#: mod/dfrn_confirm.php:439 -#, php-format -msgid "Site public key not available in contact record for URL %s." -msgstr "Az oldal nyilvános kulcsa nem érhető el a partner rekordjában a(z) %s URL-hez." - -#: mod/dfrn_confirm.php:455 +#: mod/removeme.php:64 msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." -msgstr "Az rendszere által szolgáltatott azonosító kettőzve van a mi rendszerünkön. Működnie kell, ha megpróbálja újra." +"On your Friendica node an user deleted their account. Please ensure that " +"their data is removed from the backups." +msgstr "Az Ön Friendica csomópontján egy felhasználó törölte a fiókját. Győződjön meg arról, hogy az adatai el lettek-e távolítva a biztonsági mentésekből." -#: mod/dfrn_confirm.php:466 -msgid "Unable to set your contact credentials on our system." -msgstr "Nem lehet beállítani a partnere hitelesítési adatait a mi rendszerünkön." +#: mod/removeme.php:65 +#, php-format +msgid "The user id is %d" +msgstr "A felhasználó-azonosító %d" -#: mod/dfrn_confirm.php:522 -msgid "Unable to update your contact profile details on our system" -msgstr "Nem lehet frissíteni a partnere profiljának részleteit a mi rendszerünkön" +#: mod/removeme.php:99 mod/removeme.php:102 +msgid "Remove My Account" +msgstr "Saját fiók eltávolítása" + +#: mod/removeme.php:100 +msgid "" +"This will completely remove your account. Once this has been done it is not " +"recoverable." +msgstr "Ez teljesen el fogja távolítani a fiókját. Miután ez megtörtént, nem lesz visszaállítható." + +#: mod/removeme.php:101 +msgid "Please enter your password for verification:" +msgstr "Adja meg a jelszavát az ellenőrzéshez:" + +#: mod/repair_ostatus.php:36 +msgid "Resubscribing to OStatus contacts" +msgstr "Újrafeliratkozás az OStatus partnerekre" + +#: mod/repair_ostatus.php:50 src/Module/Debug/ActivityPubConversion.php:130 +#: src/Module/Debug/Babel.php:293 src/Module/Security/TwoFactor/Verify.php:96 +msgid "Error" +msgid_plural "Errors" +msgstr[0] "Hiba" +msgstr[1] "Hibák" #: mod/settings.php:90 msgid "Missing some important data!" msgstr "Néhány fontos adat hiányzik!" +#: mod/settings.php:92 src/Module/Contact.php:890 +msgid "Update" +msgstr "Frissítés" + #: mod/settings.php:200 msgid "Failed to connect with email account using the settings provided." msgstr "Nem sikerült kapcsolódni a megadott beállításokat használó e-mail-fiókkal." @@ -9569,6 +2098,14 @@ msgstr "Az áthelyezési üzenet el lett küldve a partnereknek" msgid "Passwords do not match." msgstr "A jelszavak nem egyeznek." +#: mod/settings.php:281 src/Console/User.php:210 +msgid "Password update failed. Please try again." +msgstr "A jelszó frissítése sikertelen. Próbálja újra." + +#: mod/settings.php:284 src/Console/User.php:213 +msgid "Password changed." +msgstr "A jelszó megváltoztatva." + #: mod/settings.php:287 msgid "Password unchanged." msgstr "A jelszó nincs megváltoztatva." @@ -9605,96 +2142,93 @@ msgstr "A személyes fórumnak nincsenek adatvédelmi jogosultságai és nincs a msgid "Settings were not updated." msgstr "A beállítások nem lettek frissítve." -#: mod/settings.php:507 mod/settings.php:533 mod/settings.php:567 -msgid "Add application" -msgstr "Alkalmazás hozzáadása" - -#: mod/settings.php:511 mod/settings.php:537 -msgid "Consumer Key" -msgstr "Fogyasztói kulcs" - -#: mod/settings.php:512 mod/settings.php:538 -msgid "Consumer Secret" -msgstr "Fogyasztói titok" - -#: mod/settings.php:513 mod/settings.php:539 -msgid "Redirect" -msgstr "Átirányítás" - -#: mod/settings.php:514 mod/settings.php:540 -msgid "Icon url" -msgstr "Ikon URL" - -#: mod/settings.php:525 -msgid "You can't edit this application." -msgstr "Nem szerkesztheti ezt az alkalmazást." - -#: mod/settings.php:566 +#: mod/settings.php:517 msgid "Connected Apps" msgstr "Kapcsolt alkalmazások" -#: mod/settings.php:570 -msgid "Client key starts with" -msgstr "Az ügyfélkulcs ezzel kezdődik" +#: mod/settings.php:518 src/Module/Admin/Blocklist/Contact.php:90 +#: src/Module/Admin/Users/Active.php:129 +#: src/Module/Admin/Users/Blocked.php:130 src/Module/Admin/Users/Create.php:71 +#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:142 +#: src/Module/Admin/Users/Index.php:162 src/Module/Admin/Users/Pending.php:104 +#: src/Module/Contact/Advanced.php:134 +msgid "Name" +msgstr "Név" -#: mod/settings.php:571 -msgid "No name" -msgstr "Nincs név" +#: mod/settings.php:519 src/Content/Nav.php:216 +msgid "Home Page" +msgstr "Kezdőlap" -#: mod/settings.php:572 +#: mod/settings.php:520 src/Module/Admin/Queue.php:78 +msgid "Created" +msgstr "Létrehozva" + +#: mod/settings.php:521 msgid "Remove authorization" msgstr "Felhatalmazás eltávolítása" -#: mod/settings.php:583 +#: mod/settings.php:532 msgid "No Addon settings configured" msgstr "Nincsenek bővítménybeállítások meghatározva" -#: mod/settings.php:592 +#: mod/settings.php:541 msgid "Addon Settings" msgstr "Bővítménybeállítások" -#: mod/settings.php:613 +#: mod/settings.php:562 msgid "Additional Features" msgstr "További funkciók" -#: mod/settings.php:638 +#: mod/settings.php:564 mod/settings.php:662 mod/settings.php:797 +#: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:87 +#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:579 +#: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:66 +#: src/Module/Settings/Delegation.php:170 src/Module/Settings/Display.php:189 +msgid "Save Settings" +msgstr "Beállítások mentése" + +#: mod/settings.php:587 msgid "Diaspora (Socialhome, Hubzilla)" msgstr "Diaspora (Socialhome, Hubzilla)" -#: mod/settings.php:638 mod/settings.php:639 +#: mod/settings.php:587 mod/settings.php:588 msgid "enabled" msgstr "engedélyezve" -#: mod/settings.php:638 mod/settings.php:639 +#: mod/settings.php:587 mod/settings.php:588 msgid "disabled" msgstr "letiltva" -#: mod/settings.php:638 mod/settings.php:639 +#: mod/settings.php:587 mod/settings.php:588 #, php-format msgid "Built-in support for %s connectivity is %s" msgstr "A(z) %s összekapcsolhatóságának beépített támogatása %s" -#: mod/settings.php:639 +#: mod/settings.php:588 msgid "OStatus (GNU Social)" msgstr "OStatus (GNU Social)" -#: mod/settings.php:670 +#: mod/settings.php:619 msgid "Email access is disabled on this site." msgstr "Az e-mailes hozzáférés le van tiltva ezen az oldalon." -#: mod/settings.php:675 mod/settings.php:711 +#: mod/settings.php:624 mod/settings.php:660 msgid "None" msgstr "Nincs" -#: mod/settings.php:686 +#: mod/settings.php:630 src/Module/BaseSettings.php:80 +msgid "Social Networks" +msgstr "Közösségi hálózatok" + +#: mod/settings.php:635 msgid "General Social Media Settings" msgstr "Általános közösségimédia-beállítások" -#: mod/settings.php:687 +#: mod/settings.php:636 msgid "Accept only top level posts by contacts you follow" msgstr "Csak felső szintű bejegyzések elfogadása azoktól a partnerektől, akiket követ" -#: mod/settings.php:687 +#: mod/settings.php:636 msgid "" "The system does an auto completion of threads when a comment arrives. This " "has got the side effect that you can receive posts that had been started by " @@ -9703,11 +2237,11 @@ msgid "" "posts from people you really do follow." msgstr "A rendszer elvégezi a szálak automatikus kiegészítést, ha egy hozzászólás érkezik. Ennek az a mellékhatása, hogy olyan bejegyzéseket is kaphat, amelyeket egy nem követő indított el, de valaki olyan szólt hozzá, akit Ön követ. Ez a beállítás kikapcsolja ezt a viselkedést. Ha be van kapcsolva, akkor szigorúan csak olyan emberektől fog bejegyzéseket kapni, akiket valóban követ." -#: mod/settings.php:688 +#: mod/settings.php:637 msgid "Disable Content Warning" msgstr "Tartalomfigyelmeztetés letiltása" -#: mod/settings.php:688 +#: mod/settings.php:637 msgid "" "Users on networks like Mastodon or Pleroma are able to set a content warning" " field which collapse their post by default. This disables the automatic " @@ -9715,187 +2249,227 @@ msgid "" "any other content filtering you eventually set up." msgstr "Például a Mastodon vagy a Pleroma hálózatán lévő felhasználók képesek egy olyan tartalomfigyelmeztetési mezőt beállítani, amely alapértelmezetten összecsukja a bejegyzéseiket. Ez letiltja az automatikus összecsukást, és beállítja a tartalomfigyelmeztetést a bejegyzés címeként. Nincs hatással semmilyen más tartalomszűrésre, amelyet végül beállított." -#: mod/settings.php:689 +#: mod/settings.php:638 msgid "Disable intelligent shortening" msgstr "Intelligens rövidítés letiltása" -#: mod/settings.php:689 +#: mod/settings.php:638 msgid "" "Normally the system tries to find the best link to add to shortened posts. " "If this option is enabled then every shortened post will always point to the" " original friendica post." msgstr "Általában a rendszer megpróbálja megkeresni a legjobb hivatkozást a rövidített bejegyzésekhez történő hozzáadáshoz. Ha ez a beállítás engedélyezve van, akkor minden egyes rövidített bejegyzés mindig az eredeti Friendica bejegyzésre fog mutatni." -#: mod/settings.php:690 +#: mod/settings.php:639 msgid "Attach the link title" msgstr "A hivatkozás címének csatolása" -#: mod/settings.php:690 +#: mod/settings.php:639 msgid "" "When activated, the title of the attached link will be added as a title on " "posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that" " share feed content." msgstr "Ha be van kapcsolva, akkor a csatolt hivatkozás címe címként lesz hozzáadva a Diaspora hálózatra küldött bejegyzéseknél. Ez többnyire az olyan „távoli önmaga” partnerekkel hasznos, amelyek megosztják a hírforrás tartalmát." -#: mod/settings.php:691 +#: mod/settings.php:640 msgid "Automatically follow any GNU Social (OStatus) followers/mentioners" msgstr "Bármely GNU Social (OStatus) követő vagy megemlítő automatikus követése" -#: mod/settings.php:691 +#: mod/settings.php:640 msgid "" "If you receive a message from an unknown OStatus user, this option decides " "what to do. If it is checked, a new contact will be created for every " "unknown user." msgstr "Ha üzenetet kap egy ismeretlen OStatus felhasználótól, akkor ez a beállítás dönti el, hogy mit kell tenni. Ha be van jelölve, akkor új partner lesz létrehozva minden egyes ismeretlen felhasználóhoz." -#: mod/settings.php:692 +#: mod/settings.php:641 msgid "Default group for OStatus contacts" msgstr "Alapértelmezett csoport az OStatus partnerekhez" -#: mod/settings.php:693 +#: mod/settings.php:642 msgid "Your legacy GNU Social account" msgstr "Az örökölt GNU Social fiókja" -#: mod/settings.php:693 +#: mod/settings.php:642 msgid "" "If you enter your old GNU Social/Statusnet account name here (in the format " "user@domain.tld), your contacts will be added automatically. The field will " "be emptied when done." msgstr "Ha megadja itt a régi GNU Social vagy Statusnet fiókja nevét (felhasználó@tartomány.tld formátumban), akkor a partnerei automatikusan hozzá lesznek adva. A mező ki lesz ürítve, ha elkészült." -#: mod/settings.php:696 +#: mod/settings.php:645 msgid "Repair OStatus subscriptions" msgstr "OStatus feliratkozások javítása" -#: mod/settings.php:700 +#: mod/settings.php:649 msgid "Email/Mailbox Setup" msgstr "E-mail vagy postafiók-beállítások" -#: mod/settings.php:701 +#: mod/settings.php:650 msgid "" "If you wish to communicate with email contacts using this service " "(optional), please specify how to connect to your mailbox." msgstr "Ha e-mailes partnerekkel szeretne kommunikálni ezen szolgáltatás használatával (opcionális), akkor adja meg, hogy hogyan kell kapcsolódni a postafiókjához." -#: mod/settings.php:702 +#: mod/settings.php:651 msgid "Last successful email check:" msgstr "Legutóbbi sikeres e-mail-ellenőrzés:" -#: mod/settings.php:704 +#: mod/settings.php:653 msgid "IMAP server name:" msgstr "IMAP-kiszolgáló neve:" -#: mod/settings.php:705 +#: mod/settings.php:654 msgid "IMAP port:" msgstr "IMAP port:" -#: mod/settings.php:706 +#: mod/settings.php:655 msgid "Security:" msgstr "Biztonság:" -#: mod/settings.php:707 +#: mod/settings.php:656 msgid "Email login name:" msgstr "E-mail bejelentkezési neve:" -#: mod/settings.php:708 +#: mod/settings.php:657 msgid "Email password:" msgstr "E-mail jelszava:" -#: mod/settings.php:709 +#: mod/settings.php:658 msgid "Reply-to address:" msgstr "Válaszcím:" -#: mod/settings.php:710 +#: mod/settings.php:659 msgid "Send public posts to all email contacts:" msgstr "Nyilvános bejegyzések küldése az összes e-mail partnernek:" -#: mod/settings.php:711 +#: mod/settings.php:660 msgid "Action after import:" msgstr "Importálás utáni művelet:" -#: mod/settings.php:711 +#: mod/settings.php:660 src/Content/Nav.php:284 +msgid "Mark as seen" +msgstr "Megjelölés olvasottként" + +#: mod/settings.php:660 msgid "Move to folder" msgstr "Áthelyezés mappába" -#: mod/settings.php:712 +#: mod/settings.php:661 msgid "Move to folder:" msgstr "Áthelyezés mappába:" -#: mod/settings.php:726 +#: mod/settings.php:675 msgid "Unable to find your profile. Please contact your admin." msgstr "Nem található a profilja. Vegye fel a kapcsolatot a rendszergazdával." -#: mod/settings.php:763 +#: mod/settings.php:711 src/Content/Widget.php:536 +msgid "Account Types" +msgstr "Fióktípusok" + +#: mod/settings.php:712 msgid "Personal Page Subtypes" msgstr "Személyes oldal altípusai" -#: mod/settings.php:764 +#: mod/settings.php:713 msgid "Community Forum Subtypes" msgstr "Közösségi fórum altípusai" -#: mod/settings.php:772 +#: mod/settings.php:720 src/Module/Admin/BaseUsers.php:106 +msgid "Personal Page" +msgstr "Személyes oldal" + +#: mod/settings.php:721 msgid "Account for a personal profile." msgstr "Egy személyes profil fiókja." -#: mod/settings.php:776 +#: mod/settings.php:724 src/Module/Admin/BaseUsers.php:107 +msgid "Organisation Page" +msgstr "Szervezeti oldal" + +#: mod/settings.php:725 msgid "" "Account for an organisation that automatically approves contact requests as " "\"Followers\"." msgstr "Egy szervezet fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például a „követőket”." -#: mod/settings.php:780 +#: mod/settings.php:728 src/Module/Admin/BaseUsers.php:108 +msgid "News Page" +msgstr "Hírek oldal" + +#: mod/settings.php:729 msgid "" "Account for a news reflector that automatically approves contact requests as" " \"Followers\"." msgstr "Egy hírportál fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például a „követőket”." -#: mod/settings.php:784 +#: mod/settings.php:732 src/Module/Admin/BaseUsers.php:109 +msgid "Community Forum" +msgstr "Közösségi fórum" + +#: mod/settings.php:733 msgid "Account for community discussions." msgstr "Közösségi beszélgetések fiókja." -#: mod/settings.php:788 +#: mod/settings.php:736 src/Module/Admin/BaseUsers.php:99 +msgid "Normal Account Page" +msgstr "Normál fiókoldal" + +#: mod/settings.php:737 msgid "" "Account for a regular personal profile that requires manual approval of " "\"Friends\" and \"Followers\"." msgstr "Egy szokásos személyes profil fiókja, amely az „ismerősök” és a „követők” kézi jóváhagyását igényli." -#: mod/settings.php:792 +#: mod/settings.php:740 src/Module/Admin/BaseUsers.php:100 +msgid "Soapbox Page" +msgstr "Szappantartó oldal" + +#: mod/settings.php:741 msgid "" "Account for a public profile that automatically approves contact requests as" " \"Followers\"." msgstr "Egy nyilvános profil fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például a „követőket”." -#: mod/settings.php:796 +#: mod/settings.php:744 src/Module/Admin/BaseUsers.php:101 +msgid "Public Forum" +msgstr "Nyilvános fórum" + +#: mod/settings.php:745 msgid "Automatically approves all contact requests." msgstr "Automatikusan jóváhagyja az összes partnerkérést." -#: mod/settings.php:800 +#: mod/settings.php:748 src/Module/Admin/BaseUsers.php:102 +msgid "Automatic Friend Page" +msgstr "Automatikus ismerős oldal" + +#: mod/settings.php:749 msgid "" "Account for a popular profile that automatically approves contact requests " "as \"Friends\"." msgstr "Egy népszerű profil fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például az „ismerősöket”." -#: mod/settings.php:803 +#: mod/settings.php:752 msgid "Private Forum [Experimental]" msgstr "Személyes fórum [kísérleti]" -#: mod/settings.php:804 +#: mod/settings.php:753 msgid "Requires manual approval of contact requests." msgstr "A partnerkérések kézi jóváhagyását igényli." -#: mod/settings.php:815 +#: mod/settings.php:764 msgid "OpenID:" msgstr "OpenID:" -#: mod/settings.php:815 +#: mod/settings.php:764 msgid "(Optional) Allow this OpenID to login to this account." msgstr "(Kihagyható) Lehetővé teszi ezen OpenID számára, hogy bejelentkezzen ebbe a fiókba." -#: mod/settings.php:823 +#: mod/settings.php:772 msgid "Publish your profile in your local site directory?" msgstr "Közzéteszi a profilját a helyi oldal könyvtárában?" -#: mod/settings.php:823 +#: mod/settings.php:772 #, php-format msgid "" "Your profile will be published in this node's local " @@ -9903,103 +2477,115 @@ msgid "" " system settings." msgstr "A profilja közzé lesz téve ennek a csomópontnak a helyi könyvtárában. A profilrészletei esetleg nyilvánosan láthatóak lehetnek a rendszerbeállításoktól függően." -#: mod/settings.php:829 +#: mod/settings.php:778 #, php-format msgid "" "Your profile will also be published in the global friendica directories " "(e.g. %s)." msgstr "A profilja közzé lesz téve a globális Friendica könyvtárakban is (például itt: %s)." -#: mod/settings.php:835 +#: mod/settings.php:784 #, php-format msgid "Your Identity Address is '%s' or '%s'." msgstr "Az Ön személyazonosság-címe „%s” vagy „%s”." -#: mod/settings.php:846 +#: mod/settings.php:795 msgid "Account Settings" msgstr "Fiókbeállítások" -#: mod/settings.php:854 +#: mod/settings.php:803 msgid "Password Settings" msgstr "Jelszóbeállítások" -#: mod/settings.php:855 +#: mod/settings.php:804 src/Module/Register.php:149 +msgid "New Password:" +msgstr "Új jelszó:" + +#: mod/settings.php:804 msgid "" "Allowed characters are a-z, A-Z, 0-9 and special characters except white " "spaces, accentuated letters and colon (:)." msgstr "Az engedélyezett karakterek az a-z, A-Z, 0-9 tartományokban lévők és a különleges karakterek, kivéve az üres karaktereket, ékezetes betűket és a kettőspontot (:)." -#: mod/settings.php:856 +#: mod/settings.php:805 src/Module/Register.php:150 +msgid "Confirm:" +msgstr "Megerősítés:" + +#: mod/settings.php:805 msgid "Leave password fields blank unless changing" msgstr "Hagyja üresen a jelszómezőket, különben megváltozik" -#: mod/settings.php:857 +#: mod/settings.php:806 msgid "Current Password:" msgstr "Jelenlegi jelszó:" -#: mod/settings.php:857 +#: mod/settings.php:806 msgid "Your current password to confirm the changes" msgstr "A jelenlegi jelszava a változtatások megerősítéséhez" -#: mod/settings.php:858 +#: mod/settings.php:807 msgid "Password:" msgstr "Jelszó:" -#: mod/settings.php:858 +#: mod/settings.php:807 msgid "Your current password to confirm the changes of the email address" msgstr "A jelenlegi jelszava az e-mail-címe megváltoztatásának megerősítéséhez" -#: mod/settings.php:861 +#: mod/settings.php:810 msgid "Delete OpenID URL" msgstr "OpenID URL törlése" -#: mod/settings.php:863 +#: mod/settings.php:812 msgid "Basic Settings" msgstr "Alapvető beállítások" -#: mod/settings.php:865 +#: mod/settings.php:813 src/Module/Profile/Profile.php:144 +msgid "Full Name:" +msgstr "Teljes név:" + +#: mod/settings.php:814 msgid "Email Address:" msgstr "E-mail-cím:" -#: mod/settings.php:866 +#: mod/settings.php:815 msgid "Your Timezone:" msgstr "Az Ön időzónája:" -#: mod/settings.php:867 +#: mod/settings.php:816 msgid "Your Language:" msgstr "Az Ön nyelve:" -#: mod/settings.php:867 +#: mod/settings.php:816 msgid "" "Set the language we use to show you friendica interface and to send you " "emails" msgstr "Annak a nyelvnek a beállítása, amelyet a Friendica felületének megjelenítéséhez és a levelek küldéséhez használunk" -#: mod/settings.php:868 +#: mod/settings.php:817 msgid "Default Post Location:" msgstr "Alapértelmezett bejegyzésküldési hely:" -#: mod/settings.php:869 +#: mod/settings.php:818 msgid "Use Browser Location:" msgstr "Böngésző helyének használata:" -#: mod/settings.php:871 +#: mod/settings.php:820 msgid "Security and Privacy Settings" msgstr "Biztonsági és adatvédelmi beállítások" -#: mod/settings.php:873 +#: mod/settings.php:822 msgid "Maximum Friend Requests/Day:" msgstr "Legtöbb ismerőskérés naponta:" -#: mod/settings.php:873 mod/settings.php:883 +#: mod/settings.php:822 mod/settings.php:832 msgid "(to prevent spam abuse)" msgstr "(a levélszeméttel való visszaélés elkerüléséhez)" -#: mod/settings.php:875 +#: mod/settings.php:824 msgid "Allow your profile to be searchable globally?" msgstr "Engedélyezi, hogy a profilja globálisan kereshető legyen?" -#: mod/settings.php:875 +#: mod/settings.php:824 msgid "" "Activate this setting if you want others to easily find and follow you. Your" " profile will be searchable on remote systems. This setting also determines " @@ -10007,43 +2593,43 @@ msgid "" "indexed or not." msgstr "Akkor kapcsolja be ezt a beállítást, ha azt szeretné, hogy mások egyszerűen megtalálják és kövessék Önt. A profilja kereshető lesz a távoli rendszereken. Ez a beállítás azt is meghatározza, hogy a Friendica tájékoztatja-e a keresőmotorokat arról, hogy a profilját indexelni kell-e vagy sem." -#: mod/settings.php:876 +#: mod/settings.php:825 msgid "Hide your contact/friend list from viewers of your profile?" msgstr "Elrejti a partnerlistáját vagy ismerőslistáját a profilja megtekintői elől?" -#: mod/settings.php:876 +#: mod/settings.php:825 msgid "" "A list of your contacts is displayed on your profile page. Activate this " "option to disable the display of your contact list." msgstr "A partnereinek listája a profiloldalán van megjelenítve. Kapcsolja be ezt a beállítást, hogy letiltsa a partnerlistája megjelenítését." -#: mod/settings.php:877 +#: mod/settings.php:826 msgid "Hide your profile details from anonymous viewers?" msgstr "Elrejti a profilja részleteit a névtelen megtekintők elől?" -#: mod/settings.php:877 +#: mod/settings.php:826 msgid "" "Anonymous visitors will only see your profile picture, your display name and" " the nickname you are using on your profile page. Your public posts and " "replies will still be accessible by other means." msgstr "A névtelen látogatók csak azt profilfényképét, megjelenített nevét és becenevét láthatják, amelyet a profiloldalán használ. A nyilvános bejegyzései és válaszai továbbra is elérhetők lesznek más eszközökkel." -#: mod/settings.php:878 +#: mod/settings.php:827 msgid "Make public posts unlisted" msgstr "Nyilvános bejegyzések felsorolatlanná tétele" -#: mod/settings.php:878 +#: mod/settings.php:827 msgid "" "Your public posts will not appear on the community pages or in search " "results, nor be sent to relay servers. However they can still appear on " "public feeds on remote servers." msgstr "A nyilvános bejegyzései nem fognak megjelenni a közösségi oldalakon vagy a keresési találatokban, és nem lesznek elküldve az átjátszó kiszolgálóknak. Azonban továbbra is megjelenhetnek a nyilvános hírforrásokban a távoli kiszolgálókon." -#: mod/settings.php:879 +#: mod/settings.php:828 msgid "Make all posted pictures accessible" msgstr "Az összes beküldött fénykép elérhetővé tétele" -#: mod/settings.php:879 +#: mod/settings.php:828 msgid "" "This option makes every posted picture accessible via the direct link. This " "is a workaround for the problem that most other networks can't handle " @@ -10051,493 +2637,249 @@ msgid "" "public on your photo albums though." msgstr "Ez a beállítás elérhetővé tesz minden egyes beküldött fényképet a közvetlen hivatkozáson keresztül. Ez egy kerülőmegoldás arra a problémára, hogy a legtöbb más hálózat nem tudja kezelni a fényképek jogosultságait. A nem nyilvános fényképek továbbra sem lesznek láthatóak a nyilvánosság számára a fényképalbumán keresztül." -#: mod/settings.php:880 +#: mod/settings.php:829 msgid "Allow friends to post to your profile page?" msgstr "Engedélyezi az ismerősöknek, hogy beküldjenek a profiloldalára?" -#: mod/settings.php:880 +#: mod/settings.php:829 msgid "" "Your contacts may write posts on your profile wall. These posts will be " "distributed to your contacts" msgstr "A partnerei bejegyzéseket írhatnak az Ön profilfalára. Ezek a bejegyzések továbbítva lesznek a partnereinek." -#: mod/settings.php:881 +#: mod/settings.php:830 msgid "Allow friends to tag your posts?" msgstr "Engedélyezi az ismerőseinek, hogy címkézzék a bejegyzéseit?" -#: mod/settings.php:881 +#: mod/settings.php:830 msgid "Your contacts can add additional tags to your posts." msgstr "A partnerei további címkéket adhatnak a bejegyzéseihez." -#: mod/settings.php:882 +#: mod/settings.php:831 msgid "Permit unknown people to send you private mail?" msgstr "Engedélyt ad ismeretlen embereknek, hogy személyes levelet küldjenek Önnek?" -#: mod/settings.php:882 +#: mod/settings.php:831 msgid "" "Friendica network users may send you private messages even if they are not " "in your contact list." msgstr "A Friendica hálózat felhasználói akkor is küldhetnek Önnek személyes üzeneteket, ha nincsenek a partnerlistáján." -#: mod/settings.php:883 +#: mod/settings.php:832 msgid "Maximum private messages per day from unknown people:" msgstr "Legtöbb személyes üzenet naponta az ismeretlen emberektől:" -#: mod/settings.php:885 +#: mod/settings.php:834 msgid "Default Post Permissions" msgstr "Alapértelmezett bejegyzés-jogosultságok" -#: mod/settings.php:889 +#: mod/settings.php:838 msgid "Expiration settings" msgstr "Lejárati jogosultságok" -#: mod/settings.php:890 +#: mod/settings.php:839 msgid "Automatically expire posts after this many days:" msgstr "Bejegyzések automatikus lejárata ennyi nap után:" -#: mod/settings.php:890 +#: mod/settings.php:839 msgid "If empty, posts will not expire. Expired posts will be deleted" msgstr "Ha üres, akkor a bejegyzések nem járnak le. A lejárt bejegyzések törölve lesznek." -#: mod/settings.php:891 +#: mod/settings.php:840 msgid "Expire posts" msgstr "Bejegyzések lejárata" -#: mod/settings.php:891 +#: mod/settings.php:840 msgid "When activated, posts and comments will be expired." msgstr "Ha be van kapcsolva, akkor a bejegyzések és a hozzászólások le fognak járni." -#: mod/settings.php:892 +#: mod/settings.php:841 msgid "Expire personal notes" msgstr "Személyes jegyzetek lejárata" -#: mod/settings.php:892 +#: mod/settings.php:841 msgid "" "When activated, the personal notes on your profile page will be expired." msgstr "Ha be van kapcsolva, akkor a profiloldalán lévő személyes jegyzetek le fognak járni." -#: mod/settings.php:893 +#: mod/settings.php:842 msgid "Expire starred posts" msgstr "Csillagozott bejegyzések lejárata" -#: mod/settings.php:893 +#: mod/settings.php:842 msgid "" "Starring posts keeps them from being expired. That behaviour is overwritten " "by this setting." msgstr "A bejegyzések csillagozása megakadályozza azok lejáratát. Ez a viselkedés felülírható ezzel a beállítással." -#: mod/settings.php:894 +#: mod/settings.php:843 msgid "Expire photos" msgstr "Fényképek lejárata" -#: mod/settings.php:894 +#: mod/settings.php:843 msgid "When activated, photos will be expired." msgstr "Ha be van kapcsolva, akkor a fényképek le fognak járni." -#: mod/settings.php:895 +#: mod/settings.php:844 msgid "Only expire posts by others" msgstr "Csak a másoktól származó bejegyzések lejárata" -#: mod/settings.php:895 +#: mod/settings.php:844 msgid "" "When activated, your own posts never expire. Then the settings above are " "only valid for posts you received." msgstr "Ha be van kapcsolva, akkor a saját bejegyzései sosem járnak le. Ekkor a fenti beállítás csak azokra a bejegyzésekre érvényes, amelyeket megkap." -#: mod/settings.php:898 +#: mod/settings.php:847 msgid "Notification Settings" msgstr "Értesítési beállítások" -#: mod/settings.php:899 +#: mod/settings.php:848 msgid "Send a notification email when:" msgstr "Értesítési e-mail küldése a következő esetekben:" -#: mod/settings.php:900 +#: mod/settings.php:849 msgid "You receive an introduction" msgstr "Egy bemutatkozást fogad" -#: mod/settings.php:901 +#: mod/settings.php:850 msgid "Your introductions are confirmed" msgstr "A bemutatkozásait jóváhagyták" -#: mod/settings.php:902 +#: mod/settings.php:851 msgid "Someone writes on your profile wall" msgstr "Valaki ír a profilfalára" -#: mod/settings.php:903 +#: mod/settings.php:852 msgid "Someone writes a followup comment" msgstr "Valaki egy követő hozzászólást ír" -#: mod/settings.php:904 +#: mod/settings.php:853 msgid "You receive a private message" msgstr "Személyes üzenetet kap" -#: mod/settings.php:905 +#: mod/settings.php:854 msgid "You receive a friend suggestion" msgstr "Ismerősajánlást kap" -#: mod/settings.php:906 +#: mod/settings.php:855 msgid "You are tagged in a post" msgstr "Bejelölték egy bejegyzésben" -#: mod/settings.php:907 +#: mod/settings.php:856 msgid "You are poked/prodded/etc. in a post" msgstr "Megbökték, megdöfték, stb. egy bejegyzésben" -#: mod/settings.php:909 +#: mod/settings.php:858 msgid "Activate desktop notifications" msgstr "Asztali értesítések bekapcsolása" -#: mod/settings.php:909 +#: mod/settings.php:858 msgid "Show desktop popup on new notifications" msgstr "Felugró üzenet megjelenítése az asztalon új értesítések esetén." -#: mod/settings.php:911 +#: mod/settings.php:860 msgid "Text-only notification emails" msgstr "Csak szöveges értesítési e-mailek" -#: mod/settings.php:913 +#: mod/settings.php:862 msgid "Send text only notification emails, without the html part" msgstr "Csak szöveges értesítési e-mailek küldése a HTML rész nélkül." -#: mod/settings.php:915 +#: mod/settings.php:864 msgid "Show detailled notifications" msgstr "Részletes értesítések megjelenítése" -#: mod/settings.php:917 +#: mod/settings.php:866 msgid "" "Per default, notifications are condensed to a single notification per item. " "When enabled every notification is displayed." msgstr "Alapértelmezetten az értesítések elemenként egyetlen értesítésbe vannak összevonva. Ha engedélyezve van, akkor minden értesítés megjelenik." -#: mod/settings.php:919 +#: mod/settings.php:868 msgid "Show notifications of ignored contacts" msgstr "Figyelmen kívül hagyott partnerek értesítéseinek megjelenítése" -#: mod/settings.php:921 +#: mod/settings.php:870 msgid "" "You don't see posts from ignored contacts. But you still see their comments." " This setting controls if you want to still receive regular notifications " "that are caused by ignored contacts or not." msgstr "Nem látja a figyelmen kívül hagyott partnerektől érkező bejegyzéseket. Viszont továbbra is látja a hozzászólásaikat. Ez a beállítás azt vezérli, hogy továbbra is szeretne-e olyan normál értesítéseket kapni vagy sem, amelyeket figyelmen kívül hagyott partnerek okoznak." -#: mod/settings.php:923 +#: mod/settings.php:872 msgid "Advanced Account/Page Type Settings" msgstr "Speciális fióktípus vagy oldaltípus beállítások" -#: mod/settings.php:924 +#: mod/settings.php:873 msgid "Change the behaviour of this account for special situations" msgstr "A fiók viselkedésének megváltoztatása bizonyos helyzetekre." -#: mod/settings.php:927 +#: mod/settings.php:876 msgid "Import Contacts" msgstr "Partnerek importálása" -#: mod/settings.php:928 +#: mod/settings.php:877 msgid "" "Upload a CSV file that contains the handle of your followed accounts in the " "first column you exported from the old account." msgstr "Töltsön fel egy olyan CSV-fájlt, amely a követett fiókok kezelőjét tartalmazza az első oszlopban, ahogy a régi fiókból exportálta." -#: mod/settings.php:929 +#: mod/settings.php:878 msgid "Upload File" msgstr "Fájl feltöltése" -#: mod/settings.php:931 +#: mod/settings.php:880 msgid "Relocate" msgstr "Áthelyezés" -#: mod/settings.php:932 +#: mod/settings.php:881 msgid "" "If you have moved this profile from another server, and some of your " "contacts don't receive your updates, try pushing this button." msgstr "Ha áthelyezte ezt a profilt egy másik kiszolgálóról, és néhány partnere nem kapta meg a frissítéseket, akkor próbálja meg megnyomni ezt a gombot." -#: mod/settings.php:933 +#: mod/settings.php:882 msgid "Resend relocate message to contacts" msgstr "Áthelyezési üzenet küldése a partnereknek" -#: mod/editpost.php:44 mod/editpost.php:54 -msgid "Item not found" -msgstr "Az elem nem található" - -#: mod/editpost.php:61 -msgid "Edit post" -msgstr "Bejegyzés szerkesztése" - -#: mod/editpost.php:94 mod/wallmessage.php:154 mod/message.php:203 -#: mod/message.php:372 -msgid "Insert web link" -msgstr "Webhivatkozás beszúrása" - -#: mod/editpost.php:95 -msgid "web link" -msgstr "webhivatkozás" - -#: mod/editpost.php:96 -msgid "Insert video link" -msgstr "Videohivatkozás beszúrása" - -#: mod/editpost.php:97 -msgid "video link" -msgstr "videohivatkozás" - -#: mod/editpost.php:98 -msgid "Insert audio link" -msgstr "Hanghivatkozás beszúrása" - -#: mod/editpost.php:99 -msgid "audio link" -msgstr "hanghivatkozás" - #: mod/suggest.php:44 msgid "" "No suggestions available. If this is a new site, please try again in 24 " "hours." msgstr "Nem érhetők el javaslatok. Ha ez egy új oldal, akkor próbálja újra 24 óra múlva." -#: mod/fbrowser.php:131 -msgid "Files" -msgstr "Fájlok" +#: mod/suggest.php:55 src/Content/Widget.php:79 view/theme/vier/theme.php:175 +msgid "Friend Suggestions" +msgstr "Ismerős javaslatok" -#: mod/ping.php:285 -msgid "{0} wants to be your friend" -msgstr "{0} az ismerőse szeretne lenni" +#: mod/tagrm.php:115 +msgid "Remove Item Tag" +msgstr "Elem címkéjének eltávolítása" -#: mod/ping.php:302 -msgid "{0} requested registration" -msgstr "{0} regisztrációt kért" +#: mod/tagrm.php:117 +msgid "Select a tag to remove: " +msgstr "Eltávolítandó címke kiválasztása: " -#: mod/ping.php:315 -#, php-format -msgid "{0} and %d others requested registration" -msgstr "{0} és még %d személy regisztrációt kért" - -#: mod/api.php:102 mod/api.php:124 -msgid "Authorize application connection" -msgstr "Alkalmazáskapcsolat felhatalmazása" - -#: mod/api.php:103 -msgid "Return to your app and insert this Securty Code:" -msgstr "Térjen vissza az alkalmazásához, és szúrja be ezt a biztonsági kódot:" - -#: mod/api.php:126 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Szeretné felhatalmazni ezt az alkalmazást, hogy hozzáférjen a bejegyzéseihez és a partnereihez, és/vagy új bejegyzéseket hozzon létre Önnek?" - -#: mod/display.php:233 mod/display.php:317 -msgid "The requested item doesn't exist or has been deleted." -msgstr "A kért elem nem létezik vagy törölték." - -#: mod/display.php:397 -msgid "The feed for this item is unavailable." -msgstr "Ennek az elemnek a hírforrása nem érhető el." - -#: mod/wall_attach.php:105 -msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" -msgstr "Elnézést, talán a feltöltése nagyobb annál, amit a PHP beállítása megenged" - -#: mod/wall_attach.php:105 -msgid "Or - did you try to upload an empty file?" -msgstr "Vagy – egy üres fájlt próbált meg feltölteni?" - -#: mod/wall_attach.php:116 -#, php-format -msgid "File exceeds size limit of %s" -msgstr "A fájl meghaladja a beállított %s méretkorlátot" - -#: mod/wall_attach.php:131 -msgid "File upload failed." -msgstr "A fájl feltöltése sikertelen." - -#: mod/match.php:62 -msgid "No keywords to match. Please add keywords to your profile." -msgstr "Nincs illesztendő kulcsszó. Adjon kulcsszavakat a profiljához." - -#: mod/match.php:125 -msgid "Profile Match" -msgstr "Profilegyezés" - -#: mod/follow.php:84 -msgid "You already added this contact." -msgstr "Már hozzáadta ezt a partnert." - -#: mod/follow.php:100 -msgid "The network type couldn't be detected. Contact can't be added." -msgstr "A hálózat típusát nem sikerült felismerni. A partnert nem lehet hozzáadni." - -#: mod/follow.php:108 -msgid "Diaspora support isn't enabled. Contact can't be added." -msgstr "A Diaspora támogatása nincs engedélyezve. A partnert nem lehet hozzáadni." - -#: mod/follow.php:113 -msgid "OStatus support is disabled. Contact can't be added." -msgstr "Az OStatus támogatása le van tiltva. A partnert nem lehet hozzáadni." - -#: mod/follow.php:148 mod/unfollow.php:97 -msgid "Your Identity Address:" -msgstr "Az Ön személyazonosság-címe:" - -#: mod/follow.php:161 mod/dfrn_request.php:648 -#, php-format -msgid "%s knows you" -msgstr "%s ismeri Önt" - -#: mod/follow.php:162 mod/dfrn_request.php:649 -msgid "Add a personal note:" -msgstr "Személyes jegyzet hozzáadása:" - -#: mod/follow.php:203 -msgid "The contact could not be added." -msgstr "A partnert nem sikerült hozzáadni." - -#: mod/item.php:134 mod/item.php:138 -msgid "Unable to locate original post." -msgstr "Nem lehet megtalálni az eredeti bejegyzést." - -#: mod/item.php:339 mod/item.php:344 -msgid "Empty post discarded." -msgstr "Az üres bejegyzés elvetve." - -#: mod/item.php:705 -msgid "Post updated." -msgstr "Bejegyzés frissítve." - -#: mod/item.php:722 mod/item.php:727 -msgid "Item wasn't stored." -msgstr "Az elem nem lett eltárolva." - -#: mod/item.php:738 -msgid "Item couldn't be fetched." -msgstr "Az elemet nem sikerült lekérni." - -#: mod/dfrn_request.php:113 -msgid "This introduction has already been accepted." -msgstr "Ez a bemutatkozás már el lett fogadva." - -#: mod/dfrn_request.php:131 mod/dfrn_request.php:369 -msgid "Profile location is not valid or does not contain profile information." -msgstr "A profil helye nem érvényes vagy nem tartalmaz profilinformációkat." - -#: mod/dfrn_request.php:135 mod/dfrn_request.php:373 -msgid "Warning: profile location has no identifiable owner name." -msgstr "Figyelmeztetés: a profil helyének nincs azonosítható tulajdonosneve." - -#: mod/dfrn_request.php:138 mod/dfrn_request.php:376 -msgid "Warning: profile location has no profile photo." -msgstr "Figyelmeztetés: a profil helyének nincs profilfényképe." - -#: mod/dfrn_request.php:142 mod/dfrn_request.php:380 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "%d szükséges paraméter nem található a megadott helyen" -msgstr[1] "%d szükséges paraméter nem található a megadott helyen" - -#: mod/dfrn_request.php:180 -msgid "Introduction complete." -msgstr "A bemutatkozás befejeződött." - -#: mod/dfrn_request.php:216 -msgid "Unrecoverable protocol error." -msgstr "Helyrehozhatatlan protokollhiba." - -#: mod/dfrn_request.php:264 -#, php-format -msgid "%s has received too many connection requests today." -msgstr "%s túl sok kapcsolódási kérést kapott ma." - -#: mod/dfrn_request.php:265 -msgid "Spam protection measures have been invoked." -msgstr "A kéretlen adatok elleni védekezési intézkedések meghívásra kerültek." - -#: mod/dfrn_request.php:266 -msgid "Friends are advised to please try again in 24 hours." -msgstr "Az ismerősöknek azt javasoljuk, hogy próbálják újra 24 óra múlva." - -#: mod/dfrn_request.php:326 -msgid "You have already introduced yourself here." -msgstr "Ön már bemutatkozott itt." - -#: mod/dfrn_request.php:329 -#, php-format -msgid "Apparently you are already friends with %s." -msgstr "Úgy tűnik, hogy Ön és %s már ismerősök." - -#: mod/dfrn_request.php:349 -msgid "Invalid profile URL." -msgstr "Érvénytelen profil URL." - -#: mod/dfrn_request.php:448 -msgid "Your introduction has been sent." -msgstr "A bemutatkozása el lett küldve." - -#: mod/dfrn_request.php:496 -msgid "Please login to confirm introduction." -msgstr "Jelentkezzen be a bemutatkozás megerősítéséhez." - -#: mod/dfrn_request.php:504 -msgid "" -"Incorrect identity currently logged in. Please login to " -"this profile." -msgstr "Hibás személyazonosság van jelenleg bejelentkezve. Jelentkezzen be ebbe a profilba." - -#: mod/dfrn_request.php:518 mod/dfrn_request.php:533 -msgid "Confirm" -msgstr "Megerősítés" - -#: mod/dfrn_request.php:529 -msgid "Hide this contact" -msgstr "A partner elrejtése" - -#: mod/dfrn_request.php:531 -#, php-format -msgid "Welcome home %s." -msgstr "Üdvözöljük itthon, %s!" - -#: mod/dfrn_request.php:532 -#, php-format -msgid "Please confirm your introduction/connection request to %s." -msgstr "Erősítse meg a bemutatkozását vagy a kapcsolódási kérését ehhez: %s." - -#: mod/dfrn_request.php:637 -#, php-format -msgid "" -"Enter your Webfinger address (user@domain.tld) or profile URL here. If this " -"isn't supported by your system (for example it doesn't work with Diaspora), " -"you have to subscribe to %s directly on your system" -msgstr "Adja meg itt a WebFinger-címét (felhasználó@tartomány.tld) vagy a profil URL-jét. Ha ezt nem támogatja a rendszere (például nem működik a Diaspora hálózatával), akkor fel kell iratkoznia a(z) %s címre közvetlenül a rendszerén." - -#: mod/cal.php:275 mod/events.php:418 -msgid "View" -msgstr "Nézet" - -#: mod/cal.php:276 mod/events.php:420 -msgid "Previous" -msgstr "Előző" - -#: mod/cal.php:284 mod/events.php:430 -msgid "list" -msgstr "lista" - -#: mod/cal.php:306 -msgid "This calendar format is not supported" -msgstr "Ez a naptárformátum nem támogatott" - -#: mod/cal.php:308 -msgid "No exportable data found" -msgstr "Nem található exportálható adat" - -#: mod/cal.php:325 -msgid "calendar" -msgstr "naptár" +#: mod/tagrm.php:128 src/Module/Settings/Delegation.php:179 +#: src/Module/Settings/TwoFactor/Trusted.php:104 +msgid "Remove" +msgstr "Eltávolítás" #: mod/uimport.php:45 msgid "User imports on closed servers can only be done by an administrator." msgstr "A lezárt kiszolgálókon történő felhasználó-importálásokat csak egy adminisztrátor végezheti el." +#: mod/uimport.php:54 src/Module/Register.php:84 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Ez az oldal túllépte a fiókregisztrációk naponta megengedett számát. Próbálja újra holnap." + +#: mod/uimport.php:61 src/Module/Register.php:160 +msgid "Import" +msgstr "Importálás" + #: mod/uimport.php:63 msgid "Move account" msgstr "Fiók áthelyezése" @@ -10569,329 +2911,6 @@ msgid "" "select \"Export account\"" msgstr "A fiókja exportálásához menjen a „Beállítások → Személyes adatok exportálása” oldalra, és válassza a „Fiók exportálása” lehetőséget." -#: mod/lostpass.php:40 -msgid "No valid account found." -msgstr "Nem található érvényes fiók." - -#: mod/lostpass.php:52 -msgid "Password reset request issued. Check your email." -msgstr "A jelszó-visszaállítási kérés el lett küldve. Nézze meg a leveleit." - -#: mod/lostpass.php:58 -#, php-format -msgid "" -"\n" -"\t\tDear %1$s,\n" -"\t\t\tA request was recently received at \"%2$s\" to reset your account\n" -"\t\tpassword. In order to confirm this request, please select the verification link\n" -"\t\tbelow or paste it into your web browser address bar.\n" -"\n" -"\t\tIf you did NOT request this change, please DO NOT follow the link\n" -"\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n" -"\n" -"\t\tYour password will not be changed unless we can verify that you\n" -"\t\tissued this request." -msgstr "\n\t\tKedves %1$s!\n\t\t\tNemrég kérés érkezett a „%2$s” oldalról a fiókja jelszavának\n\t\tvisszaállítására. A kérés megerősítése érdekében kattintson a lenti\n\t\tellenőrző hivatkozásra, vagy illessze be a webböngészője címsávjába.\n\n\t\tHa NEM Ön kérte ezt a változtatást, akkor NE kövesse a megadott\n\t\thivatkozást, illetve hagyja figyelmen kívül és/vagy törölje ezt az\n\t\te-mailt. A kérés hamarosan le fog járni.\n\n\t\tA jelszava nem lesz megváltoztatva, hacsak nem tudjuk ellenőrizni, hogy\n\t\tÖn indította ezt a kérést." - -#: mod/lostpass.php:69 -#, php-format -msgid "" -"\n" -"\t\tFollow this link soon to verify your identity:\n" -"\n" -"\t\t%1$s\n" -"\n" -"\t\tYou will then receive a follow-up message containing the new password.\n" -"\t\tYou may change that password from your account settings page after logging in.\n" -"\n" -"\t\tThe login details are as follows:\n" -"\n" -"\t\tSite Location:\t%2$s\n" -"\t\tLogin Name:\t%3$s" -msgstr "\n\t\tKövesse ezt a hivatkozást a személyazonossága ellenőrzéséhez:\n\n\t\t%1$s\n\n\t\tEzután kapni fog egy követő üzenetet, amely az új jelszavát tartalmazza.\n\t\tA jelszót a fiókja beállításainak oldalán változtathatja meg, miután bejelentkezett.\n\n\t\tA bejelentkezés részletei a következők:\n\n\t\tOldal címe:\t%2$s\n\t\tBejelentkezési név:\t%3$s" - -#: mod/lostpass.php:84 -#, php-format -msgid "Password reset requested at %s" -msgstr "Jelszó-visszaállítás kérve itt: %s" - -#: mod/lostpass.php:100 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "A kérést nem sikerült ellenőrizni (lehet, hogy korábban már elküldte). A jelszó-visszaállítás sikertelen." - -#: mod/lostpass.php:113 -msgid "Request has expired, please make a new one." -msgstr "A kérés lejárt, készítsen egy újat." - -#: mod/lostpass.php:128 -msgid "Forgot your Password?" -msgstr "Elfelejtette a jelszavát?" - -#: mod/lostpass.php:129 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Adja meg az e-mail-címét, és küldje el a jelszó-visszaállítás kéréséhez. Azután nézze meg a postafiókját a további utasításokért." - -#: mod/lostpass.php:131 -msgid "Reset" -msgstr "Visszaállítás" - -#: mod/lostpass.php:147 -msgid "Your password has been reset as requested." -msgstr "A jelszava vissza lett állítva a kérés alapján." - -#: mod/lostpass.php:148 -msgid "Your new password is" -msgstr "Az új jelszava" - -#: mod/lostpass.php:149 -msgid "Save or copy your new password - and then" -msgstr "Mentse el vagy másolja le az új jelszavát – majd" - -#: mod/lostpass.php:150 -msgid "click here to login" -msgstr "kattintson ide a bejelentkezéshez" - -#: mod/lostpass.php:151 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "A jelszava megváltoztatható a Beállítások oldalon, miután sikeresen bejelentkezett." - -#: mod/lostpass.php:155 -msgid "Your password has been reset." -msgstr "A jelszava vissza lett állítva." - -#: mod/lostpass.php:158 -#, php-format -msgid "" -"\n" -"\t\t\tDear %1$s,\n" -"\t\t\t\tYour password has been changed as requested. Please retain this\n" -"\t\t\tinformation for your records (or change your password immediately to\n" -"\t\t\tsomething that you will remember).\n" -"\t\t" -msgstr "\n\t\t\tKedves %1$s!\n\t\t\t\tA jelszava vissza lett állítva a kérés alapján. Őrizze meg ezt az\n\t\t\tinformációt a feljegyzéséhez (vagy változtassa meg a jelszót azonnal\n\t\t\tvalami olyanra, amelyre emlékezni fog).\n\t\t" - -#: mod/lostpass.php:164 -#, php-format -msgid "" -"\n" -"\t\t\tYour login details are as follows:\n" -"\n" -"\t\t\tSite Location:\t%1$s\n" -"\t\t\tLogin Name:\t%2$s\n" -"\t\t\tPassword:\t%3$s\n" -"\n" -"\t\t\tYou may change that password from your account settings page after logging in.\n" -"\t\t" -msgstr "\n\t\t\tA bejelentkezés részletei a következők:\n\n\t\t\tOldal címe:\t%1$s\n\t\t\tBejelentkezési név:\t%2$s\n\t\t\tJelszó:\t%3$s\n\n\t\t\tMegváltoztathatja a jelszót a fiókbeállítások oldalon, miután bejelentkezett.\n\t\t" - -#: mod/lostpass.php:176 -#, php-format -msgid "Your password has been changed at %s" -msgstr "A jelszava meg lett változtatva itt: %s" - -#: mod/events.php:138 mod/events.php:140 -msgid "Event can not end before it has started." -msgstr "Az esemény nem fejeződhet be, mielőtt elkezdődött volna." - -#: mod/events.php:147 mod/events.php:149 -msgid "Event title and start time are required." -msgstr "Az esemény címe és a kezdési idő kötelező." - -#: mod/events.php:419 -msgid "Create New Event" -msgstr "Új esemény létrehozása" - -#: mod/events.php:531 -msgid "Event details" -msgstr "Esemény részletei" - -#: mod/events.php:532 -msgid "Starting date and Title are required." -msgstr "A kezdési dátum és a cím kötelező." - -#: mod/events.php:533 mod/events.php:538 -msgid "Event Starts:" -msgstr "Esemény kezdete:" - -#: mod/events.php:546 mod/events.php:571 -msgid "Finish date/time is not known or not relevant" -msgstr "A befejezési dátum vagy idő nem ismert vagy nem fontos" - -#: mod/events.php:548 mod/events.php:553 -msgid "Event Finishes:" -msgstr "Esemény befejezése:" - -#: mod/events.php:559 mod/events.php:572 -msgid "Adjust for viewer timezone" -msgstr "Igazítás a néző időzónájához" - -#: mod/events.php:565 mod/events.php:567 -msgid "Title:" -msgstr "Cím:" - -#: mod/events.php:568 mod/events.php:569 -msgid "Share this event" -msgstr "Az esemény megosztása" - -#: mod/events.php:594 -msgid "Failed to remove event" -msgstr "Nem sikerült eltávolítani az eseményt" - -#: mod/wallmessage.php:68 mod/wallmessage.php:129 -#, php-format -msgid "Number of daily wall messages for %s exceeded. Message failed." -msgstr "A(z) %s napi falüzeneteinek száma túllépve. Az üzenet sikertelen." - -#: mod/wallmessage.php:76 mod/message.php:83 -msgid "No recipient selected." -msgstr "Nincs címzett kiválasztva." - -#: mod/wallmessage.php:79 -msgid "Unable to check your home location." -msgstr "Nem lehet ellenőrizni az otthona helyét." - -#: mod/wallmessage.php:82 mod/message.php:90 -msgid "Message could not be sent." -msgstr "Az üzenetet nem sikerült elküldeni." - -#: mod/wallmessage.php:85 mod/message.php:93 -msgid "Message collection failure." -msgstr "Üzenet-összegyűjtési hiba." - -#: mod/wallmessage.php:103 mod/wallmessage.php:112 -msgid "No recipient." -msgstr "Nincs címzett." - -#: mod/wallmessage.php:137 mod/message.php:184 mod/message.php:297 -msgid "Please enter a link URL:" -msgstr "Írjon be egy hivatkozás URL-t:" - -#: mod/wallmessage.php:142 mod/message.php:193 -msgid "Send Private Message" -msgstr "Személyes üzenet küldése" - -#: mod/wallmessage.php:143 -#, php-format -msgid "" -"If you wish for %s to respond, please check that the privacy settings on " -"your site allow private mail from unknown senders." -msgstr "Ha azt szeretné, hogy %s válaszoljon, ellenőrizze, hogy az Ön oldalán lévő adatvédelmi beállítások lehetővé teszik-e az ismeretlen küldőktől származó személyes leveleket." - -#: mod/wallmessage.php:144 mod/message.php:194 mod/message.php:363 -msgid "To:" -msgstr "Címzett:" - -#: mod/wallmessage.php:145 mod/message.php:195 mod/message.php:364 -msgid "Subject:" -msgstr "Tárgy:" - -#: mod/videos.php:134 -msgid "No videos selected" -msgstr "Nincsenek videók kiválasztva" - -#: mod/videos.php:267 -msgid "Recent Videos" -msgstr "Legutóbbi videók" - -#: mod/videos.php:269 -msgid "Upload New Videos" -msgstr "Új videók feltöltése" - -#: mod/message.php:87 -msgid "Unable to locate contact information." -msgstr "Nem lehet megtalálni a partner információit." - -#: mod/message.php:147 -msgid "Conversation not found." -msgstr "A beszélgetés nem található." - -#: mod/message.php:152 -msgid "Message was not deleted." -msgstr "Az üzenet nem lett törölve." - -#: mod/message.php:170 -msgid "Conversation was not removed." -msgstr "A beszélgetés nem lett eltávolítva." - -#: mod/message.php:233 -msgid "No messages." -msgstr "Nincsenek üzenetek." - -#: mod/message.php:289 -msgid "Message not available." -msgstr "Az üzenet nem érhető el." - -#: mod/message.php:339 -msgid "Delete message" -msgstr "Üzenet törlése" - -#: mod/message.php:341 mod/message.php:473 -msgid "D, d M Y - g:i A" -msgstr "Y. M. j., D. – H:i" - -#: mod/message.php:356 mod/message.php:470 -msgid "Delete conversation" -msgstr "Beszélgetés törlése" - -#: mod/message.php:358 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Nem érhető el biztonságos kommunikáció. Esetleg válaszolhat a küldő profiloldaláról." - -#: mod/message.php:362 -msgid "Send Reply" -msgstr "Válasz küldése" - -#: mod/message.php:444 -#, php-format -msgid "Unknown sender - %s" -msgstr "Ismeretlen küldő – %s" - -#: mod/message.php:446 -#, php-format -msgid "You and %s" -msgstr "Ön és %s" - -#: mod/message.php:448 -#, php-format -msgid "%s and You" -msgstr "%s és Ön" - -#: mod/message.php:476 -#, php-format -msgid "%d message" -msgid_plural "%d messages" -msgstr[0] "%d üzenet" -msgstr[1] "%d üzenet" - -#: mod/tagrm.php:113 -msgid "Remove Item Tag" -msgstr "Elem címkéjének eltávolítása" - -#: mod/tagrm.php:115 -msgid "Select a tag to remove: " -msgstr "Eltávolítandó címke kiválasztása: " - -#: mod/redir.php:50 mod/redir.php:130 -msgid "Bad Request." -msgstr "Hibás kérés." - -#: mod/dfrn_poll.php:135 mod/dfrn_poll.php:506 -#, php-format -msgid "%1$s welcomes %2$s" -msgstr "%1$s üdvözli őt: %2$s" - -#: mod/repair_ostatus.php:36 -msgid "Resubscribing to OStatus contacts" -msgstr "Újrafeliratkozás az OStatus partnerekre" - #: mod/unfollow.php:65 mod/unfollow.php:133 msgid "You aren't following this contact." msgstr "Ön nem követi ezt a partnert." @@ -10904,6 +2923,8039 @@ msgstr "A követés megszüntetését jelenleg nem támogatja a hálózata." msgid "Disconnect/Unfollow" msgstr "Leválasztás vagy követés megszüntetése" -#: mod/notes.php:59 -msgid "Personal notes are visible only by yourself." -msgstr "A személyes jegyzetek csak az Ön számára láthatók." +#: mod/videos.php:134 +msgid "No videos selected" +msgstr "Nincsenek videók kiválasztva" + +#: mod/videos.php:252 +msgid "View Video" +msgstr "Videó megtekintése" + +#: mod/videos.php:267 +msgid "Recent Videos" +msgstr "Legutóbbi videók" + +#: mod/videos.php:269 +msgid "Upload New Videos" +msgstr "Új videók feltöltése" + +#: mod/wall_attach.php:42 mod/wall_attach.php:49 mod/wall_attach.php:87 +#: mod/wall_upload.php:52 mod/wall_upload.php:63 mod/wall_upload.php:108 +#: mod/wall_upload.php:159 mod/wall_upload.php:162 +msgid "Invalid request." +msgstr "Érvénytelen kérés." + +#: mod/wall_attach.php:105 +msgid "Sorry, maybe your upload is bigger than the PHP configuration allows" +msgstr "Elnézést, talán a feltöltése nagyobb annál, amit a PHP beállítása megenged" + +#: mod/wall_attach.php:105 +msgid "Or - did you try to upload an empty file?" +msgstr "Vagy – egy üres fájlt próbált meg feltölteni?" + +#: mod/wall_attach.php:116 +#, php-format +msgid "File exceeds size limit of %s" +msgstr "A fájl meghaladja a beállított %s méretkorlátot" + +#: mod/wall_attach.php:131 +msgid "File upload failed." +msgstr "A fájl feltöltése sikertelen." + +#: mod/wall_upload.php:233 src/Model/Photo.php:953 +msgid "Wall Photos" +msgstr "Falfényképek" + +#: mod/wallmessage.php:68 mod/wallmessage.php:129 +#, php-format +msgid "Number of daily wall messages for %s exceeded. Message failed." +msgstr "A(z) %s napi falüzeneteinek száma túllépve. Az üzenet sikertelen." + +#: mod/wallmessage.php:79 +msgid "Unable to check your home location." +msgstr "Nem lehet ellenőrizni az otthona helyét." + +#: mod/wallmessage.php:103 mod/wallmessage.php:112 +msgid "No recipient." +msgstr "Nincs címzett." + +#: mod/wallmessage.php:143 +#, php-format +msgid "" +"If you wish for %s to respond, please check that the privacy settings on " +"your site allow private mail from unknown senders." +msgstr "Ha azt szeretné, hogy %s válaszoljon, ellenőrizze, hogy az Ön oldalán lévő adatvédelmi beállítások lehetővé teszik-e az ismeretlen küldőktől származó személyes leveleket." + +#: src/App.php:312 +msgid "No system theme config value set." +msgstr "Nincs rendszertéma beállítási érték megadva." + +#: src/App/Module.php:241 +msgid "You must be logged in to use addons. " +msgstr "Bejelentkezve kell lennie a bővítmények használatához." + +#: src/App/Page.php:250 +msgid "Delete this item?" +msgstr "Törli ezt az elemet?" + +#: src/App/Page.php:251 +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:299 +msgid "toggle mobile" +msgstr "váltás mobilra" + +#: src/App/Router.php:236 +#, php-format +msgid "Method not allowed for this module. Allowed method(s): %s" +msgstr "A módszer nem engedélyezett ennél a modulnál. Az engedélyezett módszerek: %s" + +#: src/App/Router.php:238 src/Module/HTTPException/PageNotFound.php:32 +msgid "Page not found." +msgstr "Az oldal nem található." + +#: src/BaseModule.php:180 +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 "Az űrlap biztonsági tokenje nem volt helyes. Ez valószínűleg azért történt, mert az űrlapot túl hosszan tartották nyitva (>3 óra), mielőtt elküldték volna." + +#: src/BaseModule.php:209 +msgid "All contacts" +msgstr "Összes partner" + +#: src/BaseModule.php:214 src/Content/Widget.php:238 src/Core/ACL.php:183 +#: src/Module/Contact.php:860 src/Module/PermissionTooltip.php:77 +#: src/Module/PermissionTooltip.php:99 +msgid "Followers" +msgstr "Követők" + +#: src/BaseModule.php:219 src/Content/Widget.php:239 +#: src/Module/Contact.php:861 +msgid "Following" +msgstr "Követés" + +#: src/BaseModule.php:224 src/Content/Widget.php:240 +#: src/Module/Contact.php:862 +msgid "Mutual friends" +msgstr "Kölcsönösen ismerősök" + +#: src/BaseModule.php:232 +msgid "Common" +msgstr "Közös" + +#: src/Console/Addon.php:177 src/Console/Addon.php:202 +msgid "Addon not found" +msgstr "A bővítmény nem található" + +#: src/Console/Addon.php:181 +msgid "Addon already enabled" +msgstr "A bővítmény már engedélyezve van" + +#: src/Console/Addon.php:206 +msgid "Addon already disabled" +msgstr "A bővítmény már le van tiltva" + +#: src/Console/ArchiveContact.php:105 +#, php-format +msgid "Could not find any unarchived contact entry for this URL (%s)" +msgstr "Nem sikerült találni egyetlen archiválatlan partnerbejegyzést sem erről az URL-ről (%s)" + +#: src/Console/ArchiveContact.php:108 +msgid "The contact entries have been archived" +msgstr "A partnerbejegyzések archiválva lettek" + +#: src/Console/GlobalCommunityBlock.php:96 +#: src/Module/Admin/Blocklist/Contact.php:49 +#, php-format +msgid "Could not find any contact entry for this URL (%s)" +msgstr "Nem sikerült találni egyetlen partnerbejegyzést sem erről az URL-ről (%s)" + +#: src/Console/GlobalCommunityBlock.php:101 +#: src/Module/Admin/Blocklist/Contact.php:47 +msgid "The contact has been blocked from the node" +msgstr "A partner tiltva lett a csomópontról" + +#: src/Console/PostUpdate.php:87 +#, php-format +msgid "Post update version number has been set to %s." +msgstr "A bejegyzésfrissítés verziószáma erre lett beállítva: %s." + +#: src/Console/PostUpdate.php:95 +msgid "Check for pending update actions." +msgstr "Függőben lévő frissítési műveletek ellenőrzése." + +#: src/Console/PostUpdate.php:97 +msgid "Done." +msgstr "Kész." + +#: src/Console/PostUpdate.php:99 +msgid "Execute pending post updates." +msgstr "Függőben lévő bejegyzésfrissítések végrehajtása." + +#: src/Console/PostUpdate.php:105 +msgid "All pending post updates are done." +msgstr "Az összes függőben lévő bejegyzésfrissítés kész." + +#: src/Console/User.php:158 src/Console/User.php:245 +msgid "Enter user nickname: " +msgstr "Felhasználó becenevének megadása: " + +#: src/Console/User.php:202 +msgid "Enter new password: " +msgstr "Új jelszó megadása: " + +#: src/Console/User.php:237 +msgid "Enter user name: " +msgstr "Felhasználónév megadása: " + +#: src/Console/User.php:253 +msgid "Enter user email address: " +msgstr "Felhasználó e-mail-címének megadása: " + +#: src/Console/User.php:261 +msgid "Enter a language (optional): " +msgstr "Nyelv megadása (elhagyható): " + +#: src/Console/User.php:286 +msgid "User is not pending." +msgstr "A felhasználó nincs függőben." + +#: src/Console/User.php:318 +msgid "User has already been marked for deletion." +msgstr "A felhasználó már meg lett jelölve törlésre." + +#: src/Console/User.php:323 +#, php-format +msgid "Type \"yes\" to delete %s" +msgstr "Írja be a „yes” szót %s törléséhez" + +#: src/Console/User.php:325 +msgid "Deletion aborted." +msgstr "Törlés megszakítva." + +#: src/Console/User.php:450 +msgid "Enter category: " +msgstr "Kategória megadása: " + +#: src/Console/User.php:460 +msgid "Enter key: " +msgstr "Kulcs megadása: " + +#: src/Console/User.php:494 +msgid "Enter value: " +msgstr "Érték megadása: " + +#: src/Content/BoundariesPager.php:116 src/Content/Pager.php:171 +msgid "newer" +msgstr "soha" + +#: src/Content/BoundariesPager.php:124 src/Content/Pager.php:176 +msgid "older" +msgstr "régebbi" + +#: src/Content/ContactSelector.php:51 +msgid "Frequently" +msgstr "Gyakran" + +#: src/Content/ContactSelector.php:52 +msgid "Hourly" +msgstr "Óránként" + +#: src/Content/ContactSelector.php:53 +msgid "Twice daily" +msgstr "Naponta kétszer" + +#: src/Content/ContactSelector.php:54 +msgid "Daily" +msgstr "Naponta" + +#: src/Content/ContactSelector.php:55 +msgid "Weekly" +msgstr "Hetente" + +#: src/Content/ContactSelector.php:56 +msgid "Monthly" +msgstr "Havonta" + +#: src/Content/ContactSelector.php:123 +msgid "DFRN" +msgstr "DFRN" + +#: src/Content/ContactSelector.php:124 +msgid "OStatus" +msgstr "OStatus" + +#: src/Content/ContactSelector.php:125 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: src/Content/ContactSelector.php:126 src/Module/Admin/Users/Active.php:129 +#: src/Module/Admin/Users/Blocked.php:130 src/Module/Admin/Users/Create.php:73 +#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:142 +#: src/Module/Admin/Users/Index.php:162 src/Module/Admin/Users/Pending.php:104 +msgid "Email" +msgstr "E-mail" + +#: src/Content/ContactSelector.php:127 src/Module/Debug/Babel.php:307 +msgid "Diaspora" +msgstr "Diaspora" + +#: src/Content/ContactSelector.php:128 +msgid "Zot!" +msgstr "Zot!" + +#: src/Content/ContactSelector.php:129 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: src/Content/ContactSelector.php:130 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: src/Content/ContactSelector.php:131 +msgid "MySpace" +msgstr "MySpace" + +#: src/Content/ContactSelector.php:132 +msgid "Google+" +msgstr "Google+" + +#: src/Content/ContactSelector.php:133 +msgid "pump.io" +msgstr "pump.io" + +#: src/Content/ContactSelector.php:134 +msgid "Twitter" +msgstr "Twitter" + +#: src/Content/ContactSelector.php:135 +msgid "Discourse" +msgstr "Discourse" + +#: src/Content/ContactSelector.php:136 +msgid "Diaspora Connector" +msgstr "Diaspora összekötő" + +#: src/Content/ContactSelector.php:137 +msgid "GNU Social Connector" +msgstr "GNU Social összekötő" + +#: src/Content/ContactSelector.php:138 +msgid "ActivityPub" +msgstr "ActivityPub" + +#: src/Content/ContactSelector.php:139 +msgid "pnut" +msgstr "pnut" + +#: src/Content/ContactSelector.php:175 +#, php-format +msgid "%s (via %s)" +msgstr "%s (ezen keresztül: %s)" + +#: src/Content/Feature.php:96 +msgid "General Features" +msgstr "Általános funkciók" + +#: src/Content/Feature.php:98 +msgid "Photo Location" +msgstr "Fénykép helye" + +#: src/Content/Feature.php:98 +msgid "" +"Photo metadata is normally stripped. This extracts the location (if present)" +" prior to stripping metadata and links it to a map." +msgstr "A fénykép metaadatai általában ki vannak törölve. Ez kinyeri a helyet (ha meg van adva) a metaadatok törlése előtt, és hivatkozást készít rá egy térképen." + +#: src/Content/Feature.php:99 +msgid "Trending Tags" +msgstr "Népszerű címkék" + +#: src/Content/Feature.php:99 +msgid "" +"Show a community page widget with a list of the most popular tags in recent " +"public posts." +msgstr "Egy közösségi oldal felületi elem megjelenítése a legutóbbi nyilvános bejegyzésekben lévő legnépszerűbb címkék listájával." + +#: src/Content/Feature.php:104 +msgid "Post Composition Features" +msgstr "Bejegyzés-összeállítási funkciók" + +#: src/Content/Feature.php:105 +msgid "Auto-mention Forums" +msgstr "Fórumok automatikus említése" + +#: src/Content/Feature.php:105 +msgid "" +"Add/remove mention when a forum page is selected/deselected in ACL window." +msgstr "Említés hozzáadása vagy eltávolítása, ha egy fórumoldalt kiválasztanak vagy megszüntetik a kiválasztását az ACL ablakokban." + +#: src/Content/Feature.php:106 +msgid "Explicit Mentions" +msgstr "Közvetlen említések" + +#: src/Content/Feature.php:106 +msgid "" +"Add explicit mentions to comment box for manual control over who gets " +"mentioned in replies." +msgstr "Közvetlen említések hozzáadása a hozzászólásmezőhöz kézi vezérléssel, hogy ki lesz megemlítve a válaszokban." + +#: src/Content/Feature.php:111 +msgid "Post/Comment Tools" +msgstr "Bejegyzés és hozzászólás eszközök" + +#: src/Content/Feature.php:112 +msgid "Post Categories" +msgstr "Bejegyzéskategóriák" + +#: src/Content/Feature.php:112 +msgid "Add categories to your posts" +msgstr "Kategóriák hozzáadása a bejegyzéseihez." + +#: src/Content/Feature.php:117 +msgid "Advanced Profile Settings" +msgstr "Speciális profilbeállítások" + +#: src/Content/Feature.php:118 +msgid "List Forums" +msgstr "Fórumok felsorolása" + +#: src/Content/Feature.php:118 +msgid "Show visitors public community forums at the Advanced Profile Page" +msgstr "Nyilvános közösségi fórumok megjelenítése a látogatóknak a speciális profiloldalon." + +#: src/Content/Feature.php:119 +msgid "Tag Cloud" +msgstr "Címkefelhő" + +#: src/Content/Feature.php:119 +msgid "Provide a personal tag cloud on your profile page" +msgstr "Személyes címkefelhő biztosítása a profiloldalán." + +#: src/Content/Feature.php:120 +msgid "Display Membership Date" +msgstr "Tagsági dátum megjelenítése" + +#: src/Content/Feature.php:120 +msgid "Display membership date in profile" +msgstr "Tagsági dátum megjelenítése a profilban." + +#: src/Content/ForumManager.php:145 src/Content/Nav.php:243 +#: src/Content/Text/HTML.php:914 src/Content/Widget.php:533 +msgid "Forums" +msgstr "Fórumok" + +#: src/Content/ForumManager.php:147 +msgid "External link to forum" +msgstr "Külső hivatkozás a fórumhoz" + +#: src/Content/ForumManager.php:150 src/Content/Widget.php:512 +msgid "show less" +msgstr "kevesebb megjelenítése" + +#: src/Content/ForumManager.php:151 src/Content/Widget.php:411 +#: src/Content/Widget.php:513 +msgid "show more" +msgstr "több megjelenítése" + +#: src/Content/Nav.php:90 +msgid "Nothing new here" +msgstr "Semmi új nincs itt" + +#: src/Content/Nav.php:94 src/Module/Special/HTTPException.php:75 +msgid "Go back" +msgstr "Vissza" + +#: src/Content/Nav.php:95 +msgid "Clear notifications" +msgstr "Értesítések törlése" + +#: src/Content/Nav.php:96 src/Content/Text/HTML.php:901 +msgid "@name, !forum, #tags, content" +msgstr "@név, !fórum, #címkék, tartalom" + +#: src/Content/Nav.php:183 src/Module/Security/Login.php:145 +msgid "Logout" +msgstr "Kijelentkezés" + +#: src/Content/Nav.php:183 +msgid "End this session" +msgstr "Munkamenet befejezése" + +#: src/Content/Nav.php:185 src/Module/Bookmarklet.php:46 +#: src/Module/Security/Login.php:146 +msgid "Login" +msgstr "Bejelentkezés" + +#: src/Content/Nav.php:185 +msgid "Sign in" +msgstr "Bejelentkezés" + +#: src/Content/Nav.php:191 src/Module/BaseProfile.php:60 +#: src/Module/Contact.php:663 src/Module/Contact.php:928 +#: src/Module/Settings/TwoFactor/Index.php:112 view/theme/frio/theme.php:226 +msgid "Status" +msgstr "Állapot" + +#: src/Content/Nav.php:191 src/Content/Nav.php:277 +#: view/theme/frio/theme.php:226 +msgid "Your posts and conversations" +msgstr "Az Ön bejegyzései és beszélgetései" + +#: src/Content/Nav.php:192 src/Module/BaseProfile.php:52 +#: src/Module/BaseSettings.php:57 src/Module/Contact.php:665 +#: src/Module/Contact.php:944 src/Module/Profile/Profile.php:237 +#: src/Module/Welcome.php:57 view/theme/frio/theme.php:227 +msgid "Profile" +msgstr "Profil" + +#: src/Content/Nav.php:192 view/theme/frio/theme.php:227 +msgid "Your profile page" +msgstr "Az Ön profiloldala" + +#: src/Content/Nav.php:193 view/theme/frio/theme.php:228 +msgid "Your photos" +msgstr "Az Ön fényképei" + +#: src/Content/Nav.php:194 src/Module/BaseProfile.php:76 +#: src/Module/BaseProfile.php:79 view/theme/frio/theme.php:229 +msgid "Videos" +msgstr "Videók" + +#: src/Content/Nav.php:194 view/theme/frio/theme.php:229 +msgid "Your videos" +msgstr "Az Ön videói" + +#: src/Content/Nav.php:195 view/theme/frio/theme.php:230 +msgid "Your events" +msgstr "Az Ön eseményei" + +#: src/Content/Nav.php:196 +msgid "Personal notes" +msgstr "Személyes jegyzetek" + +#: src/Content/Nav.php:196 +msgid "Your personal notes" +msgstr "Az Ön személyes jegyzetei" + +#: src/Content/Nav.php:216 src/Content/Nav.php:277 +msgid "Home" +msgstr "Kezdőlap" + +#: src/Content/Nav.php:220 src/Module/Register.php:155 +#: src/Module/Security/Login.php:106 +msgid "Register" +msgstr "Regisztráció" + +#: src/Content/Nav.php:220 +msgid "Create an account" +msgstr "Fiók létrehozása" + +#: src/Content/Nav.php:226 src/Module/Help.php:69 +#: src/Module/Settings/TwoFactor/AppSpecific.php:115 +#: src/Module/Settings/TwoFactor/Index.php:111 +#: src/Module/Settings/TwoFactor/Recovery.php:93 +#: src/Module/Settings/TwoFactor/Verify.php:132 view/theme/vier/theme.php:217 +msgid "Help" +msgstr "Súgó" + +#: src/Content/Nav.php:226 +msgid "Help and documentation" +msgstr "Súgó és dokumentáció" + +#: src/Content/Nav.php:230 +msgid "Apps" +msgstr "Alkalmazások" + +#: src/Content/Nav.php:230 +msgid "Addon applications, utilities, games" +msgstr "Bővítményalkalmazások, segédprogramok és játékok" + +#: src/Content/Nav.php:234 src/Content/Text/HTML.php:899 +#: src/Module/Search/Index.php:99 +msgid "Search" +msgstr "Keresés" + +#: src/Content/Nav.php:234 +msgid "Search site content" +msgstr "Oldaltartalom keresése" + +#: src/Content/Nav.php:237 src/Content/Text/HTML.php:908 +msgid "Full Text" +msgstr "Teljes szöveg" + +#: src/Content/Nav.php:238 src/Content/Text/HTML.php:909 +#: src/Content/Widget/TagCloud.php:68 +msgid "Tags" +msgstr "Címkék" + +#: src/Content/Nav.php:239 src/Content/Nav.php:298 +#: src/Content/Text/HTML.php:910 src/Module/BaseProfile.php:121 +#: src/Module/BaseProfile.php:124 src/Module/Contact.php:863 +#: src/Module/Contact.php:951 view/theme/frio/theme.php:237 +msgid "Contacts" +msgstr "Partnerek" + +#: src/Content/Nav.php:258 +msgid "Community" +msgstr "Közösség" + +#: src/Content/Nav.php:258 +msgid "Conversations on this and other servers" +msgstr "Beszélgetések ezen és más kiszolgálókon" + +#: src/Content/Nav.php:262 src/Module/BaseProfile.php:91 +#: src/Module/BaseProfile.php:102 view/theme/frio/theme.php:234 +msgid "Events and Calendar" +msgstr "Események és naptár" + +#: src/Content/Nav.php:265 +msgid "Directory" +msgstr "Könyvtár" + +#: src/Content/Nav.php:265 +msgid "People directory" +msgstr "Emberek könyvtár" + +#: src/Content/Nav.php:267 src/Module/BaseAdmin.php:85 +msgid "Information" +msgstr "Információk" + +#: src/Content/Nav.php:267 +msgid "Information about this friendica instance" +msgstr "Információk erről a Friendica példányról" + +#: src/Content/Nav.php:270 src/Module/Admin/Tos.php:59 +#: src/Module/BaseAdmin.php:95 src/Module/Register.php:163 +#: src/Module/Tos.php:84 +msgid "Terms of Service" +msgstr "Használati feltételek" + +#: src/Content/Nav.php:270 +msgid "Terms of Service of this Friendica instance" +msgstr "Ezen Friendica példány használati feltételei" + +#: src/Content/Nav.php:275 view/theme/frio/theme.php:233 +msgid "Network" +msgstr "Hálózat" + +#: src/Content/Nav.php:275 view/theme/frio/theme.php:233 +msgid "Conversations from your friends" +msgstr "Ismerősökkel való beszélgetések" + +#: src/Content/Nav.php:281 +msgid "Introductions" +msgstr "Bemutatkozások" + +#: src/Content/Nav.php:281 +msgid "Friend Requests" +msgstr "Ismerőskérések" + +#: src/Content/Nav.php:282 src/Module/BaseNotifications.php:139 +#: src/Module/Notifications/Introductions.php:54 +msgid "Notifications" +msgstr "Értesítések" + +#: src/Content/Nav.php:283 +msgid "See all notifications" +msgstr "Összes értesítés megtekintése" + +#: src/Content/Nav.php:284 +msgid "Mark all system notifications seen" +msgstr "Összes rendszerértesítés megjelölése olvasottként" + +#: src/Content/Nav.php:287 view/theme/frio/theme.php:235 +msgid "Private mail" +msgstr "Személyes levél" + +#: src/Content/Nav.php:288 +msgid "Inbox" +msgstr "Beérkezett üzenetek" + +#: src/Content/Nav.php:289 +msgid "Outbox" +msgstr "Elküldött üzenetek" + +#: src/Content/Nav.php:293 +msgid "Accounts" +msgstr "Fiókok" + +#: src/Content/Nav.php:293 +msgid "Manage other pages" +msgstr "Más oldalak kezelése" + +#: src/Content/Nav.php:296 src/Module/Admin/Addons/Details.php:114 +#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:124 +#: src/Module/Welcome.php:52 view/theme/frio/theme.php:236 +msgid "Settings" +msgstr "Beállítások" + +#: src/Content/Nav.php:296 view/theme/frio/theme.php:236 +msgid "Account settings" +msgstr "Fiókbeállítások" + +#: src/Content/Nav.php:298 view/theme/frio/theme.php:237 +msgid "Manage/edit friends and contacts" +msgstr "Ismerősök és partnerek kezelése vagy szerkesztése" + +#: src/Content/Nav.php:303 src/Module/BaseAdmin.php:125 +msgid "Admin" +msgstr "Adminisztráció" + +#: src/Content/Nav.php:303 +msgid "Site setup and configuration" +msgstr "Oldal beállítása és konfigurálás" + +#: src/Content/Nav.php:306 +msgid "Navigation" +msgstr "Navigáció" + +#: src/Content/Nav.php:306 +msgid "Site map" +msgstr "Oldaltérkép" + +#: src/Content/OEmbed.php:298 +msgid "Embedding disabled" +msgstr "A beágyazás letiltva" + +#: src/Content/OEmbed.php:416 +msgid "Embedded content" +msgstr "Beágyazott tartalom" + +#: src/Content/Pager.php:216 +msgid "first" +msgstr "első" + +#: src/Content/Pager.php:221 +msgid "prev" +msgstr "előző" + +#: src/Content/Pager.php:276 +msgid "next" +msgstr "következő" + +#: src/Content/Pager.php:281 +msgid "last" +msgstr "utolsó" + +#: src/Content/Text/BBCode.php:942 src/Content/Text/BBCode.php:1607 +#: src/Content/Text/BBCode.php:1608 +msgid "Image/photo" +msgstr "Kép vagy fénykép" + +#: src/Content/Text/BBCode.php:1066 +#, php-format +msgid "%2$s %3$s" +msgstr "%2$s %3$s" + +#: src/Content/Text/BBCode.php:1091 src/Model/Item.php:3113 +#: src/Model/Item.php:3119 src/Model/Item.php:3120 +msgid "Link to source" +msgstr "Hivatkozás a forráshoz" + +#: src/Content/Text/BBCode.php:1525 src/Content/Text/HTML.php:951 +msgid "Click to open/close" +msgstr "Kattintson a megnyitáshoz vagy bezáráshoz" + +#: src/Content/Text/BBCode.php:1556 +msgid "$1 wrote:" +msgstr "$1 írta:" + +#: src/Content/Text/BBCode.php:1610 src/Content/Text/BBCode.php:1611 +msgid "Encrypted content" +msgstr "Titkosított tartalom" + +#: src/Content/Text/BBCode.php:1824 +msgid "Invalid source protocol" +msgstr "Érvénytelen forrásprotokoll" + +#: src/Content/Text/BBCode.php:1839 +msgid "Invalid link protocol" +msgstr "Érvénytelen hivatkozási protokoll" + +#: src/Content/Text/HTML.php:799 +msgid "Loading more entries..." +msgstr "További bejegyzések betöltése…" + +#: src/Content/Text/HTML.php:800 +msgid "The end" +msgstr "Vége" + +#: src/Content/Text/HTML.php:893 src/Model/Profile.php:454 +#: src/Module/Contact.php:340 +msgid "Follow" +msgstr "Követés" + +#: src/Content/Widget.php:49 +msgid "Add New Contact" +msgstr "Új partner hozzáadása" + +#: src/Content/Widget.php:50 +msgid "Enter address or web location" +msgstr "Cím vagy webhely megadása" + +#: src/Content/Widget.php:51 +msgid "Example: bob@example.com, http://example.com/barbara" +msgstr "Példa: bob@example.com, http://example.com/barbara" + +#: src/Content/Widget.php:53 +msgid "Connect" +msgstr "Kapcsolódás" + +#: src/Content/Widget.php:68 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d meghívás érhető el" +msgstr[1] "%d meghívás érhető el" + +#: src/Content/Widget.php:74 view/theme/vier/theme.php:170 +msgid "Find People" +msgstr "Emberek keresése" + +#: src/Content/Widget.php:75 view/theme/vier/theme.php:171 +msgid "Enter name or interest" +msgstr "Név vagy érdeklődés beírása" + +#: src/Content/Widget.php:77 view/theme/vier/theme.php:173 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Példák: Szabó János, Halászat" + +#: src/Content/Widget.php:78 src/Module/Contact.php:884 +#: src/Module/Directory.php:105 view/theme/vier/theme.php:174 +msgid "Find" +msgstr "Keresés" + +#: src/Content/Widget.php:80 view/theme/vier/theme.php:176 +msgid "Similar Interests" +msgstr "Hasonló érdeklődések" + +#: src/Content/Widget.php:81 view/theme/vier/theme.php:177 +msgid "Random Profile" +msgstr "Véletlen profil" + +#: src/Content/Widget.php:82 view/theme/vier/theme.php:178 +msgid "Invite Friends" +msgstr "Ismerősök meghívása" + +#: src/Content/Widget.php:83 src/Module/Directory.php:97 +#: view/theme/vier/theme.php:179 +msgid "Global Directory" +msgstr "Globális könyvtár" + +#: src/Content/Widget.php:85 view/theme/vier/theme.php:181 +msgid "Local Directory" +msgstr "Helyi könyvtár" + +#: src/Content/Widget.php:214 src/Model/Group.php:535 +#: src/Module/Contact.php:847 src/Module/Welcome.php:76 +msgid "Groups" +msgstr "Csoportok" + +#: src/Content/Widget.php:216 +msgid "Everyone" +msgstr "Mindenki" + +#: src/Content/Widget.php:245 +msgid "Relationships" +msgstr "Kapcsolatok" + +#: src/Content/Widget.php:247 src/Module/Contact.php:799 +#: src/Module/Group.php:292 +msgid "All Contacts" +msgstr "Összes partner" + +#: src/Content/Widget.php:286 +msgid "Protocols" +msgstr "Protokollok" + +#: src/Content/Widget.php:288 +msgid "All Protocols" +msgstr "Összes protokoll" + +#: src/Content/Widget.php:316 +msgid "Saved Folders" +msgstr "Mentett mappák" + +#: src/Content/Widget.php:318 src/Content/Widget.php:352 +msgid "Everything" +msgstr "Minden" + +#: src/Content/Widget.php:350 +msgid "Categories" +msgstr "Kategóriák" + +#: src/Content/Widget.php:407 +#, php-format +msgid "%d contact in common" +msgid_plural "%d contacts in common" +msgstr[0] "%d partner közös" +msgstr[1] "%d partner közös" + +#: src/Content/Widget.php:506 +msgid "Archives" +msgstr "Archívumok" + +#: src/Content/Widget.php:530 +msgid "Persons" +msgstr "Személyek" + +#: src/Content/Widget.php:531 +msgid "Organisations" +msgstr "Szervezetek" + +#: src/Content/Widget.php:532 src/Model/Contact.php:1423 +msgid "News" +msgstr "Hírek" + +#: src/Content/Widget.php:537 src/Module/Admin/BaseUsers.php:50 +msgid "All" +msgstr "Összes" + +#: src/Content/Widget/CalendarExport.php:54 +msgid "Export" +msgstr "Exportálás" + +#: src/Content/Widget/CalendarExport.php:55 +msgid "Export calendar as ical" +msgstr "Naptár exportálása iCal-ként" + +#: src/Content/Widget/CalendarExport.php:56 +msgid "Export calendar as csv" +msgstr "Naptár exportálása CSV-ként" + +#: src/Content/Widget/ContactBlock.php:73 +msgid "No contacts" +msgstr "Nincsenek partnerek" + +#: src/Content/Widget/ContactBlock.php:105 +#, php-format +msgid "%d Contact" +msgid_plural "%d Contacts" +msgstr[0] "%d partner" +msgstr[1] "%d partner" + +#: src/Content/Widget/ContactBlock.php:124 +msgid "View Contacts" +msgstr "Partnerek megtekintése" + +#: src/Content/Widget/SavedSearches.php:47 +msgid "Remove term" +msgstr "Kifejezés eltávolítása" + +#: src/Content/Widget/SavedSearches.php:60 +msgid "Saved Searches" +msgstr "Mentett keresések" + +#: src/Content/Widget/TrendingTags.php:51 +#, php-format +msgid "Trending Tags (last %d hour)" +msgid_plural "Trending Tags (last %d hours)" +msgstr[0] "Népszerű címkék (legutóbbi %d óra)" +msgstr[1] "Népszerű címkék (legutóbbi %d óra)" + +#: src/Content/Widget/TrendingTags.php:52 +msgid "More Trending Tags" +msgstr "További népszerű címkék" + +#: src/Core/ACL.php:154 src/Module/Profile/Profile.php:238 +msgid "Yourself" +msgstr "Önmaga" + +#: src/Core/ACL.php:190 src/Module/PermissionTooltip.php:83 +#: src/Module/PermissionTooltip.php:105 +msgid "Mutuals" +msgstr "Kölcsönösen ismerősök" + +#: src/Core/ACL.php:280 +msgid "Post to Email" +msgstr "Beküldés e-mailbe" + +#: src/Core/ACL.php:307 +msgid "Public" +msgstr "Nyilvános" + +#: src/Core/ACL.php:308 +msgid "" +"This content will be shown to all your followers and can be seen in the " +"community pages and by anyone with its link." +msgstr "Ez a tartalom meg fog jelenni az összes követőjének, és látható lesz a közösségi oldalakon, valamint bárki számára a hivatkozásával." + +#: src/Core/ACL.php:309 +msgid "Limited/Private" +msgstr "Korlátozott vagy személyes" + +#: src/Core/ACL.php:310 +msgid "" +"This content will be shown only to the people in the first box, to the " +"exception of the people mentioned in the second box. It won't appear " +"anywhere public." +msgstr "Ez a tartalom csak az első mezőben lévő embereknek fog megjelenni, kivéve a második mezőben említett embereknek. Nem jelenik meg sehol sem nyilvánosan." + +#: src/Core/ACL.php:311 +msgid "Show to:" +msgstr "Megjelenítés nekik:" + +#: src/Core/ACL.php:312 +msgid "Except to:" +msgstr "Kivéve nekik:" + +#: src/Core/ACL.php:315 +msgid "Connectors" +msgstr "Összekötők" + +#: src/Core/Installer.php:179 +msgid "" +"The database configuration file \"config/local.config.php\" could not be " +"written. Please use the enclosed text to create a configuration file in your" +" web server root." +msgstr "A „config/local.config.php” adatbázis-beállítófájlt nem sikerült írni. Használja a mellékelt szöveget egy beállítófájl létrehozásához a webkiszolgáló gyökerében." + +#: src/Core/Installer.php:198 +msgid "" +"You may need to import the file \"database.sql\" manually using phpmyadmin " +"or mysql." +msgstr "Lehet, hogy kézzel kell importálnia a „database.sql” fájlt phpMyAdmin vagy MySQL használatával." + +#: src/Core/Installer.php:199 src/Module/Install.php:206 +#: src/Module/Install.php:365 +msgid "Please see the file \"doc/INSTALL.md\"." +msgstr "Nézze meg a „doc/INSTALL.md” fájlt." + +#: src/Core/Installer.php:260 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Nem sikerült megtalálni a PHP parancssori verzióját a webkiszolgáló PATH környezeti változójában." + +#: src/Core/Installer.php:261 +msgid "" +"If you don't have a command line version of PHP installed on your server, " +"you will not be able to run the background processing. See 'Setup the worker'" +msgstr "Ha nincs telepítve a PHP parancssori verziója a kiszolgálóján, akkor nem lesz képes futtatni a háttérfeldolgozást. Nézze meg a Setup the worker szakaszt a dokumentációban (angol nyelven)." + +#: src/Core/Installer.php:266 +msgid "PHP executable path" +msgstr "PHP végrehajtható útvonala" + +#: src/Core/Installer.php:266 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "A teljes útvonal megadása a PHP végrehajthatóhoz. Ezt üresen hagyhatja a telepítés folytatásához." + +#: src/Core/Installer.php:271 +msgid "Command line PHP" +msgstr "Parancssori PHP" + +#: src/Core/Installer.php:280 +msgid "PHP executable is not the php cli binary (could be cgi-fgci version)" +msgstr "A PHP végrehajtható nem a PHP parancssori bináris (lehet cgi-fgci verzió)" + +#: src/Core/Installer.php:281 +msgid "Found PHP version: " +msgstr "Megtalált PHP-verzió: " + +#: src/Core/Installer.php:283 +msgid "PHP cli binary" +msgstr "PHP parancssori bináris" + +#: src/Core/Installer.php:296 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "A rendszerén lévő PHP parancssori verziójában a „register_argc_argv” nincs engedélyezve." + +#: src/Core/Installer.php:297 +msgid "This is required for message delivery to work." +msgstr "Ez ahhoz szükséges, hogy az üzenetkézbesítés működjön." + +#: src/Core/Installer.php:302 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: src/Core/Installer.php:334 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Hiba: az „openssl_pkey_new” függvény ezen a rendszeren nem képes titkosítási kulcsokat előállítani" + +#: src/Core/Installer.php:335 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Ha Windows alatt fut, akkor nézze meg a „http://www.php.net/manual/en/openssl.installation.php” dokumentációt." + +#: src/Core/Installer.php:338 +msgid "Generate encryption keys" +msgstr "Titkosítási kulcsok előállítása" + +#: src/Core/Installer.php:390 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Hiba: az Apache webkiszolgáló mod-rewrite modulja szükséges, de nincs telepítve." + +#: src/Core/Installer.php:395 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite modul" + +#: src/Core/Installer.php:401 +msgid "Error: PDO or MySQLi PHP module required but not installed." +msgstr "Hiba: a PDO vagy a MySQLi PHP-modul szükséges, de nincs telepítve." + +#: src/Core/Installer.php:406 +msgid "Error: The MySQL driver for PDO is not installed." +msgstr "Hiba: a PDO-hoz szükséges MySQL illesztőprogram nincs telepítve." + +#: src/Core/Installer.php:410 +msgid "PDO or MySQLi PHP module" +msgstr "PDO vagy MySQLi PHP-modul" + +#: src/Core/Installer.php:418 +msgid "Error, XML PHP module required but not installed." +msgstr "Hiba: az XML PHP-modul szükséges, de nincs telepítve." + +#: src/Core/Installer.php:422 +msgid "XML PHP module" +msgstr "XML PHP-modul" + +#: src/Core/Installer.php:425 +msgid "libCurl PHP module" +msgstr "libCurl PHP-modul" + +#: src/Core/Installer.php:426 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Hiba: az libCURL PHP-modul szükséges, de nincs telepítve." + +#: src/Core/Installer.php:432 +msgid "GD graphics PHP module" +msgstr "GD grafikai PHP-modul" + +#: src/Core/Installer.php:433 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Hiba: a JPEG támogatással rendelkező GD grafikai PHP-modul szükséges, de nincs telepítve." + +#: src/Core/Installer.php:439 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP-modul" + +#: src/Core/Installer.php:440 +msgid "Error: openssl PHP module required but not installed." +msgstr "Hiba: az OpenSSL PHP-modul szükséges, de nincs telepítve." + +#: src/Core/Installer.php:446 +msgid "mb_string PHP module" +msgstr "mb_string PHP-modul" + +#: src/Core/Installer.php:447 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Hiba: az mb_string PHP-modul szükséges, de nincs telepítve." + +#: src/Core/Installer.php:453 +msgid "iconv PHP module" +msgstr "iconv PHP-modul" + +#: src/Core/Installer.php:454 +msgid "Error: iconv PHP module required but not installed." +msgstr "Hiba: az iconv PHP-modul szükséges, de nincs telepítve." + +#: src/Core/Installer.php:460 +msgid "POSIX PHP module" +msgstr "POSIX PHP-modul" + +#: src/Core/Installer.php:461 +msgid "Error: POSIX PHP module required but not installed." +msgstr "Hiba: a POSIX PHP-modul szükséges, de nincs telepítve." + +#: src/Core/Installer.php:467 +msgid "Program execution functions" +msgstr "Programvégrehajtási funkciók" + +#: src/Core/Installer.php:468 +msgid "" +"Error: Program execution functions (proc_open) required but not enabled." +msgstr "Hiba: a programvégrehajtási funkciók (proc_open) szükségesek, de nincsenek engedélyezve." + +#: src/Core/Installer.php:474 +msgid "JSON PHP module" +msgstr "JSON PHP-modul" + +#: src/Core/Installer.php:475 +msgid "Error: JSON PHP module required but not installed." +msgstr "Hiba: a JSON PHP-modul szükséges, de nincs telepítve." + +#: src/Core/Installer.php:481 +msgid "File Information PHP module" +msgstr "Fájlinformációk PHP-modul" + +#: src/Core/Installer.php:482 +msgid "Error: File Information PHP module required but not installed." +msgstr "Hiba: a fájlinformációk PHP-modul szükséges, de nincs telepítve." + +#: src/Core/Installer.php:505 +msgid "" +"The web installer needs to be able to create a file called " +"\"local.config.php\" in the \"config\" folder of your web server and it is " +"unable to do so." +msgstr "A webes telepítőnek képesnek kell lennie létrehozni egy „local.config.php” nevű fájlt a webkiszolgáló „config” mappájában, és ezt nem lehet megtenni." + +#: src/Core/Installer.php:506 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Ez leggyakrabban jogosultsági beállítás, mivel előfordulhat, hogy a webkiszolgáló nem képes fájlokat írni a mappájába, annak ellenére, hogy Ön tud." + +#: src/Core/Installer.php:507 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named local.config.php in your Friendica \"config\" folder." +msgstr "Ezen eljárás végén adni fogunk Önnek egy szöveget, hogy elmentse egy „local.config.php” nevű fájlba a Friendica „config” mappájában." + +#: src/Core/Installer.php:508 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"doc/INSTALL.md\" for instructions." +msgstr "Alternatívaként kihagyhatja ezt az eljárást, és végezhet kézi telepítést. Az utasításokért nézze meg a „doc/INSTALL.txt” fájlt." + +#: src/Core/Installer.php:511 +msgid "config/local.config.php is writable" +msgstr "a config/local.config.php írható" + +#: src/Core/Installer.php:531 +msgid "" +"Friendica uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "A Friendica a Smarty3 sablonmotort használja a webes nézetei megjelenítéséhez. A Smarty3 lefordítja a sablonokat PHP-ra a megjelenítés felgyorsításához." + +#: src/Core/Installer.php:532 +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory view/smarty3/ under the Friendica top level " +"folder." +msgstr "A lefordított sablonok tárolása érdekében a webkiszolgálónak írási hozzáférésre van szüksége a Friendica felső szintű mappája alatti „view/smarty3/” könyvtárhoz." + +#: src/Core/Installer.php:533 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Biztosítsa, hogy a webkiszolgálót futtató felhasználónak (például www-data) legyen írási hozzáférése ehhez a mappához." + +#: src/Core/Installer.php:534 +msgid "" +"Note: as a security measure, you should give the web server write access to " +"view/smarty3/ only--not the template files (.tpl) that it contains." +msgstr "Megjegyzés: biztonsági intézkedésként csak a „view/smarty3/” mappához kell írási hozzáférést adnia a webkiszolgálónak, nem azokhoz a sablonfájlokhoz (.tpl), amelyeket tartalmaz." + +#: src/Core/Installer.php:537 +msgid "view/smarty3 is writable" +msgstr "A „view/smarty3” írható" + +#: src/Core/Installer.php:565 +msgid "" +"Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-" +"dist to .htaccess." +msgstr "Úgy tűnik, hogy a .htaccess fájlban lévő URL átírás nem működik. Győződjön meg arról, hogy lemásolta-e a .htaccess-dist fájlt .htaccess néven." + +#: src/Core/Installer.php:566 +msgid "" +"In some circumstances (like running inside containers), you can skip this " +"error." +msgstr "Bizonyos körülmények között (például konténereken belül való futtatáskor) átugorhatja ezt a hibát." + +#: src/Core/Installer.php:568 +msgid "Error message from Curl when fetching" +msgstr "Hibaüzenet a cURL-től a lekéréskor" + +#: src/Core/Installer.php:574 +msgid "Url rewrite is working" +msgstr "Az URL átírás működik" + +#: src/Core/Installer.php:603 +msgid "ImageMagick PHP extension is not installed" +msgstr "Az ImageMagick PHP-kiterjesztés nincs telepítve" + +#: src/Core/Installer.php:605 +msgid "ImageMagick PHP extension is installed" +msgstr "Az ImageMagick PHP-kiterjesztés telepítve van" + +#: src/Core/Installer.php:607 +msgid "ImageMagick supports GIF" +msgstr "Az ImageMagick támogatja a GIF-et" + +#: src/Core/Installer.php:629 +msgid "Database already in use." +msgstr "Az adatbázis már használatban van." + +#: src/Core/Installer.php:634 +msgid "Could not connect to database." +msgstr "Nem sikerült kapcsolódni az adatbázishoz." + +#: src/Core/L10n.php:377 src/Model/Event.php:431 +#: src/Module/Settings/Display.php:178 +msgid "Monday" +msgstr "Hétfő" + +#: src/Core/L10n.php:377 src/Model/Event.php:432 +msgid "Tuesday" +msgstr "Kedd" + +#: src/Core/L10n.php:377 src/Model/Event.php:433 +msgid "Wednesday" +msgstr "Szerda" + +#: src/Core/L10n.php:377 src/Model/Event.php:434 +msgid "Thursday" +msgstr "Csütörtök" + +#: src/Core/L10n.php:377 src/Model/Event.php:435 +msgid "Friday" +msgstr "Péntek" + +#: src/Core/L10n.php:377 src/Model/Event.php:436 +msgid "Saturday" +msgstr "Szombat" + +#: src/Core/L10n.php:377 src/Model/Event.php:430 +#: src/Module/Settings/Display.php:178 +msgid "Sunday" +msgstr "Vasárnap" + +#: src/Core/L10n.php:381 src/Model/Event.php:451 +msgid "January" +msgstr "Január" + +#: src/Core/L10n.php:381 src/Model/Event.php:452 +msgid "February" +msgstr "Február" + +#: src/Core/L10n.php:381 src/Model/Event.php:453 +msgid "March" +msgstr "Március" + +#: src/Core/L10n.php:381 src/Model/Event.php:454 +msgid "April" +msgstr "Április" + +#: src/Core/L10n.php:381 src/Core/L10n.php:401 src/Model/Event.php:442 +msgid "May" +msgstr "Május" + +#: src/Core/L10n.php:381 src/Model/Event.php:455 +msgid "June" +msgstr "Június" + +#: src/Core/L10n.php:381 src/Model/Event.php:456 +msgid "July" +msgstr "Július" + +#: src/Core/L10n.php:381 src/Model/Event.php:457 +msgid "August" +msgstr "Augusztus" + +#: src/Core/L10n.php:381 src/Model/Event.php:458 +msgid "September" +msgstr "Szeptember" + +#: src/Core/L10n.php:381 src/Model/Event.php:459 +msgid "October" +msgstr "Október" + +#: src/Core/L10n.php:381 src/Model/Event.php:460 +msgid "November" +msgstr "November" + +#: src/Core/L10n.php:381 src/Model/Event.php:461 +msgid "December" +msgstr "December" + +#: src/Core/L10n.php:397 src/Model/Event.php:423 +msgid "Mon" +msgstr "Hét" + +#: src/Core/L10n.php:397 src/Model/Event.php:424 +msgid "Tue" +msgstr "Ked" + +#: src/Core/L10n.php:397 src/Model/Event.php:425 +msgid "Wed" +msgstr "Sze" + +#: src/Core/L10n.php:397 src/Model/Event.php:426 +msgid "Thu" +msgstr "Csü" + +#: src/Core/L10n.php:397 src/Model/Event.php:427 +msgid "Fri" +msgstr "Pén" + +#: src/Core/L10n.php:397 src/Model/Event.php:428 +msgid "Sat" +msgstr "Szo" + +#: src/Core/L10n.php:397 src/Model/Event.php:422 +msgid "Sun" +msgstr "Vas" + +#: src/Core/L10n.php:401 src/Model/Event.php:438 +msgid "Jan" +msgstr "Jan" + +#: src/Core/L10n.php:401 src/Model/Event.php:439 +msgid "Feb" +msgstr "Feb" + +#: src/Core/L10n.php:401 src/Model/Event.php:440 +msgid "Mar" +msgstr "Már" + +#: src/Core/L10n.php:401 src/Model/Event.php:441 +msgid "Apr" +msgstr "Ápr" + +#: src/Core/L10n.php:401 src/Model/Event.php:443 +msgid "Jun" +msgstr "Jún" + +#: src/Core/L10n.php:401 src/Model/Event.php:444 +msgid "Jul" +msgstr "Júl" + +#: src/Core/L10n.php:401 src/Model/Event.php:445 +msgid "Aug" +msgstr "Aug" + +#: src/Core/L10n.php:401 +msgid "Sep" +msgstr "Sze" + +#: src/Core/L10n.php:401 src/Model/Event.php:447 +msgid "Oct" +msgstr "Okt" + +#: src/Core/L10n.php:401 src/Model/Event.php:448 +msgid "Nov" +msgstr "Nov" + +#: src/Core/L10n.php:401 src/Model/Event.php:449 +msgid "Dec" +msgstr "Dec" + +#: src/Core/L10n.php:420 +msgid "poke" +msgstr "megbökés" + +#: src/Core/L10n.php:420 +msgid "poked" +msgstr "megbökve" + +#: src/Core/L10n.php:421 +msgid "ping" +msgstr "pingelés" + +#: src/Core/L10n.php:421 +msgid "pinged" +msgstr "pingelve" + +#: src/Core/L10n.php:422 +msgid "prod" +msgstr "döfés" + +#: src/Core/L10n.php:422 +msgid "prodded" +msgstr "megdöfve" + +#: src/Core/L10n.php:423 +msgid "slap" +msgstr "ütés" + +#: src/Core/L10n.php:423 +msgid "slapped" +msgstr "megütve" + +#: src/Core/L10n.php:424 +msgid "finger" +msgstr "fogdosás" + +#: src/Core/L10n.php:424 +msgid "fingered" +msgstr "megfogdosva" + +#: src/Core/L10n.php:425 +msgid "rebuff" +msgstr "elutasítás" + +#: src/Core/L10n.php:425 +msgid "rebuffed" +msgstr "elutasítva" + +#: src/Core/Renderer.php:90 src/Core/Renderer.php:119 +#: src/Core/Renderer.php:146 src/Core/Renderer.php:180 +#: src/Render/FriendicaSmartyEngine.php:56 +msgid "" +"Friendica can't display this page at the moment, please contact the " +"administrator." +msgstr "A Friendica jelenleg nem tudja megjeleníteni ezt az oldalt. Vegye fel a kapcsolatot a rendszergazdával." + +#: src/Core/Renderer.php:142 +msgid "template engine cannot be registered without a name." +msgstr "a sablonmotort nem lehet regisztrálni név nélkül." + +#: src/Core/Renderer.php:176 +msgid "template engine is not registered!" +msgstr "a sablonmotor nincs regisztrálva!" + +#: src/Core/Update.php:67 +#, php-format +msgid "" +"Updates from version %s are not supported. Please update at least to version" +" 2021.01 and wait until the postupdate finished version 1383." +msgstr "A korábbi %s verzióról való frissítések nem támogatottak. Frissítsen legalább a 2021.01-es verzióra, és várja meg, amíg a bejegyzésfrissítés befejezi az 1383-as verziót." + +#: src/Core/Update.php:78 +#, php-format +msgid "" +"Updates from postupdate version %s are not supported. Please update at least" +" to version 2021.01 and wait until the postupdate finished version 1383." +msgstr "A korábbi %s bejegyzésfrissítési verzióról való frissítések nem támogatottak. Frissítsen legalább a 2021.01-es verzióra, és várja meg, amíg a bejegyzésfrissítés befejezi az 1383-as verziót." + +#: src/Core/Update.php:152 +#, php-format +msgid "%s: executing pre update %d" +msgstr "%s: %d előfrissítés végrehajtása" + +#: src/Core/Update.php:190 +#, php-format +msgid "%s: executing post update %d" +msgstr "%s: %d bejegyzésfrissítés végrehajtása" + +#: src/Core/Update.php:259 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "A(z) %s frissítés sikertelen. Nézze meg a hibanaplókat." + +#: src/Core/Update.php:312 +#, php-format +msgid "" +"\n" +"\t\t\t\tThe friendica developers released update %s recently,\n" +"\t\t\t\tbut when I tried to install it, something went terribly wrong.\n" +"\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n" +"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid." +msgstr "\n\t\t\t\tA Friendica fejlesztői nemrég kiadták a(z) %s frissítést, de amikor\n\t\t\t\tmegpróbáltam telepíteni, valami nagyon elromlott.\n\t\t\t\tEzt hamarosan javítani kell, és én nem tudom egyedül elvégezni.\n\t\t\t\tVegye fel a kapcsolatot egy Friendica fejlesztővel, ha egyedül nem\n\t\t\t\ttud nekem segíteni. Az adatbázisunk érvénytelen lehet." + +#: src/Core/Update.php:318 +#, php-format +msgid "The error message is\\n[pre]%s[/pre]" +msgstr "A hibaüzenet a következő:\\n[pre]%s[/pre]" + +#: src/Core/Update.php:322 src/Core/Update.php:364 +msgid "[Friendica Notify] Database update" +msgstr "[Friendica értesítés] Adatbázis-frissítés" + +#: src/Core/Update.php:358 +#, php-format +msgid "" +"\n" +"\t\t\t\t\tThe friendica database was successfully updated from %s to %s." +msgstr "\n\t\t\t\t\tA Friendica adatbázisa sikeresen frissítve lett: %s → %s." + +#: src/Core/UserImport.php:126 +msgid "Error decoding account file" +msgstr "Hiba a fiókfájl dekódolásakor" + +#: src/Core/UserImport.php:132 +msgid "Error! No version data in file! This is not a Friendica account file?" +msgstr "Hiba! Nincsenek verzióadatok a fájlban! Ez nem Friendica fiókfájl?" + +#: src/Core/UserImport.php:140 +#, php-format +msgid "User '%s' already exists on this server!" +msgstr "„%s” felhasználó már létezik ezen a kiszolgálón!" + +#: src/Core/UserImport.php:176 +msgid "User creation error" +msgstr "Felhasználó-létrehozási hiba" + +#: src/Core/UserImport.php:221 +#, php-format +msgid "%d contact not imported" +msgid_plural "%d contacts not imported" +msgstr[0] "%d partner nincs importálva" +msgstr[1] "%d partner nincs importálva" + +#: src/Core/UserImport.php:274 +msgid "User profile creation error" +msgstr "Felhasználóiprofil-létrehozási hiba" + +#: src/Core/UserImport.php:330 +msgid "Done. You can now login with your username and password" +msgstr "Kész. Most már bejelentkezhet a felhasználónevével és a jelszavával." + +#: src/Database/DBStructure.php:65 +#, php-format +msgid "The database version had been set to %s." +msgstr "Az adatbázis verziója %s értékre lett állítva." + +#: src/Database/DBStructure.php:78 +#, php-format +msgid "" +"The post update is at version %d, it has to be at %d to safely drop the " +"tables." +msgstr "A bejegyzésfrissítés %d. verziónál van. %d. verziónál kell lennie a táblák biztonságos eldobásához." + +#: src/Database/DBStructure.php:90 +msgid "No unused tables found." +msgstr "Nem találhatók nem használt táblák." + +#: src/Database/DBStructure.php:95 +msgid "" +"These tables are not used for friendica and will be deleted when you execute" +" \"dbstructure drop -e\":" +msgstr "Ezek a táblák nincsenek használatban a Friendica programnál, és törölve lesznek, ha lefuttatja a „dbstructure drop -e” parancsot:" + +#: src/Database/DBStructure.php:133 +msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." +msgstr "Nincsenek Antelope fájlformátummal rendelkező táblák MyISAM vagy InnoDB motorokon." + +#: src/Database/DBStructure.php:157 +#, php-format +msgid "" +"\n" +"Error %d occurred during database update:\n" +"%s\n" +msgstr "\nHiba (%d) történt az adatbázis frissítése során:\n%s\n" + +#: src/Database/DBStructure.php:160 +msgid "Errors encountered performing database changes: " +msgstr "Hibák történtek az adatbázis változtatásainak végrehajtásakor: " + +#: src/Database/DBStructure.php:550 +msgid "Another database update is currently running." +msgstr "Egy másik adatbázis-frissítés is fut jelenleg." + +#: src/Database/DBStructure.php:554 +#, php-format +msgid "%s: Database update" +msgstr "%s: adatbázis-frissítés" + +#: src/Database/DBStructure.php:854 +#, php-format +msgid "%s: updating %s table." +msgstr "%s: a(z) %s tábla frissítése." + +#: src/Factory/Api/Mastodon/Error.php:38 +msgid "Record not found" +msgstr "A rekord nem található" + +#: src/Factory/Api/Mastodon/Error.php:48 +msgid "Unprocessable Entity" +msgstr "Feldolgozhatatlan entitás" + +#: src/Factory/Api/Mastodon/Error.php:58 +#: src/Module/Special/HTTPException.php:50 +msgid "Unauthorized" +msgstr "Nem engedélyezett" + +#: src/Factory/Api/Mastodon/Error.php:68 +msgid "" +"Token is not authorized with a valid user or is missing a required scope" +msgstr "A token nincs felhatalmazva egy érvényes felhasználóval, vagy hiányzik a szükséges hatókör" + +#: src/Factory/Api/Mastodon/Error.php:78 +#: src/Module/Special/HTTPException.php:53 +msgid "Internal Server Error" +msgstr "Belső kiszolgálóhiba" + +#: src/Factory/Notification/Introduction.php:135 +msgid "Friend Suggestion" +msgstr "Ismerősajánlás" + +#: src/Factory/Notification/Introduction.php:161 +msgid "Friend/Connect Request" +msgstr "Ismerős vagy kapcsolódási kérés" + +#: src/Factory/Notification/Introduction.php:161 +msgid "New Follower" +msgstr "Új követő" + +#: src/Factory/Notification/Notification.php:103 +#, php-format +msgid "%s created a new post" +msgstr "%s létrehozott egy új bejegyzést" + +#: src/Factory/Notification/Notification.php:104 +#: src/Factory/Notification/Notification.php:362 +#, php-format +msgid "%s commented on %s's post" +msgstr "%s hozzászólt %s bejegyzéséhez" + +#: src/Factory/Notification/Notification.php:130 +#, php-format +msgid "%s liked %s's post" +msgstr "%s kedvelte %s bejegyzését" + +#: src/Factory/Notification/Notification.php:141 +#, php-format +msgid "%s disliked %s's post" +msgstr "%s nem kedvelte %s bejegyzését" + +#: src/Factory/Notification/Notification.php:152 +#, php-format +msgid "%s is attending %s's event" +msgstr "%s részt vesz %s eseményén" + +#: src/Factory/Notification/Notification.php:163 +#, php-format +msgid "%s is not attending %s's event" +msgstr "%s nem vesz részt %s eseményén" + +#: src/Factory/Notification/Notification.php:174 +#, php-format +msgid "%s may attending %s's event" +msgstr "%s talán részt vesz %s eseményén" + +#: src/Factory/Notification/Notification.php:201 +#, php-format +msgid "%s is now friends with %s" +msgstr "%s és %s mostantól ismerősök" + +#: src/LegacyModule.php:49 +#, php-format +msgid "Legacy module file not found: %s" +msgstr "Az örökölt modulfájl nem található: %s" + +#: src/Model/Contact.php:995 src/Model/Contact.php:1008 +msgid "UnFollow" +msgstr "Követés megszüntetése" + +#: src/Model/Contact.php:1004 +msgid "Drop Contact" +msgstr "Partner eldobása" + +#: src/Model/Contact.php:1014 src/Module/Admin/Users/Pending.php:107 +#: src/Module/Notifications/Introductions.php:111 +#: src/Module/Notifications/Introductions.php:189 +msgid "Approve" +msgstr "Jóváhagyás" + +#: src/Model/Contact.php:1419 +msgid "Organisation" +msgstr "Szervezet" + +#: src/Model/Contact.php:1427 +msgid "Forum" +msgstr "Fórum" + +#: src/Model/Contact.php:2187 +msgid "Connect URL missing." +msgstr "A kapcsolódási URL hiányzik." + +#: src/Model/Contact.php:2196 +msgid "" +"The contact could not be added. Please check the relevant network " +"credentials in your Settings -> Social Networks page." +msgstr "A partnert nem sikerült hozzáadni. Ellenőrizze a hozzá tartozó hálózat hitelesítési adatait a Beállítások → Közösségi hálózatok oldalon." + +#: src/Model/Contact.php:2237 +msgid "" +"This site is not configured to allow communications with other networks." +msgstr "Ez az oldal nem úgy lett beállítva, hogy lehetővé tegye a kommunikációkat más hálózatokkal." + +#: src/Model/Contact.php:2238 src/Model/Contact.php:2251 +msgid "No compatible communication protocols or feeds were discovered." +msgstr "Nem lettek megfelelő kommunikációs protokollok vagy hírforrások felfedezve." + +#: src/Model/Contact.php:2249 +msgid "The profile address specified does not provide adequate information." +msgstr "A megadott profilcím nem biztosít elegendő információt." + +#: src/Model/Contact.php:2254 +msgid "An author or name was not found." +msgstr "Egy szerző vagy név nem található." + +#: src/Model/Contact.php:2257 +msgid "No browser URL could be matched to this address." +msgstr "Egyetlen böngésző URL-t sem sikerült illeszteni ehhez a címhez." + +#: src/Model/Contact.php:2260 +msgid "" +"Unable to match @-style Identity Address with a known protocol or email " +"contact." +msgstr "Nem lehet illeszteni @-stílusú személyazonosság-címet egy ismert protokollal vagy e-mailes partnerrel." + +#: src/Model/Contact.php:2261 +msgid "Use mailto: in front of address to force email check." +msgstr "Használja a mailto: előtagot a cím előtt az e-mail-ellenőrzés kényszerítéséhez." + +#: src/Model/Contact.php:2267 +msgid "" +"The profile address specified belongs to a network which has been disabled " +"on this site." +msgstr "A megadott profilcím egy olyan hálózathoz tartozik, amely le lett tiltva ezen az oldalon." + +#: src/Model/Contact.php:2272 +msgid "" +"Limited profile. This person will be unable to receive direct/personal " +"notifications from you." +msgstr "Korlátozott profil. Ez a személy nem lesz képes közvetlen vagy személyes értesítéseket fogadni Öntől." + +#: src/Model/Contact.php:2331 +msgid "Unable to retrieve contact information." +msgstr "Nem lehet lekérni a partner információit." + +#: src/Model/Event.php:50 src/Model/Event.php:871 +#: src/Module/Debug/Localtime.php:36 +msgid "l F d, Y \\@ g:i A" +msgstr "Y. F j., l, H:i" + +#: src/Model/Event.php:77 src/Model/Event.php:94 src/Model/Event.php:470 +#: src/Model/Event.php:941 +msgid "Starts:" +msgstr "Kezdődik:" + +#: src/Model/Event.php:80 src/Model/Event.php:100 src/Model/Event.php:471 +#: src/Model/Event.php:945 +msgid "Finishes:" +msgstr "Befejeződik:" + +#: src/Model/Event.php:420 +msgid "all-day" +msgstr "egész nap" + +#: src/Model/Event.php:446 +msgid "Sept" +msgstr "Szept" + +#: src/Model/Event.php:468 +msgid "No events to display" +msgstr "Nincsenek megjelenítendő események" + +#: src/Model/Event.php:587 +msgid "l, F j" +msgstr "F j., l" + +#: src/Model/Event.php:618 +msgid "Edit event" +msgstr "Esemény szerkesztése" + +#: src/Model/Event.php:619 +msgid "Duplicate event" +msgstr "Esemény kettőzése" + +#: src/Model/Event.php:620 +msgid "Delete event" +msgstr "Esemény törlése" + +#: src/Model/Event.php:872 +msgid "D g:i A" +msgstr "D H:i" + +#: src/Model/Event.php:873 +msgid "g:i A" +msgstr "H:i" + +#: src/Model/Event.php:960 src/Model/Event.php:962 +msgid "Show map" +msgstr "Térkép megjelenítése" + +#: src/Model/Event.php:961 +msgid "Hide map" +msgstr "Térkép elrejtése" + +#: src/Model/Event.php:1053 +#, php-format +msgid "%s's birthday" +msgstr "%s születésnapja" + +#: src/Model/Event.php:1054 +#, php-format +msgid "Happy Birthday %s" +msgstr "Boldog születésnapot, %s" + +#: src/Model/Group.php:92 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Egy ilyen névvel rendelkező törölt csoport újraéledt. Lehet, hogy a meglévő elemjogosultságok alkalmazva lesznek erre a csoportra és bármely jövőbeli tagjaira. Ha ez nem az, amit szeretett volna, akkor hozzon létre egy másik csoportot eltérő névvel." + +#: src/Model/Group.php:451 +msgid "Default privacy group for new contacts" +msgstr "Alapértelmezett adatvédelmi csoport az új partnerekhez" + +#: src/Model/Group.php:483 +msgid "Everybody" +msgstr "Mindenki" + +#: src/Model/Group.php:502 +msgid "edit" +msgstr "szerkesztés" + +#: src/Model/Group.php:534 +msgid "add" +msgstr "hozzáadás" + +#: src/Model/Group.php:539 +msgid "Edit group" +msgstr "Csoport szerkesztése" + +#: src/Model/Group.php:540 src/Module/Group.php:193 +msgid "Contacts not in any group" +msgstr "Egyetlen csoportban sem lévő partnerek" + +#: src/Model/Group.php:542 +msgid "Create a new group" +msgstr "Új csoport létrehozása" + +#: src/Model/Group.php:543 src/Module/Group.php:178 src/Module/Group.php:201 +#: src/Module/Group.php:276 +msgid "Group Name: " +msgstr "Csoport neve: " + +#: src/Model/Group.php:544 +msgid "Edit groups" +msgstr "Csoportok szerkesztése" + +#: src/Model/Item.php:1659 +#, php-format +msgid "Detected languages in this post:\\n%s" +msgstr "A bejegyzésben felismert nyelvek:\\n%s" + +#: src/Model/Item.php:2609 +msgid "activity" +msgstr "tevékenység" + +#: src/Model/Item.php:2611 +msgid "comment" +msgstr "hozzászólás" + +#: src/Model/Item.php:2614 +msgid "post" +msgstr "bejegyzés" + +#: src/Model/Item.php:2728 +#, php-format +msgid "Content warning: %s" +msgstr "Tartalom figyelmeztetés: %s" + +#: src/Model/Item.php:3078 +msgid "bytes" +msgstr "bájt" + +#: src/Model/Item.php:3107 src/Model/Item.php:3108 +msgid "View on separate page" +msgstr "Megtekintés külön oldalon" + +#: src/Model/Mail.php:136 src/Model/Mail.php:268 +msgid "[no subject]" +msgstr "[nincs tárgy]" + +#: src/Model/Profile.php:356 src/Module/Profile/Profile.php:252 +#: src/Module/Profile/Profile.php:254 +msgid "Edit profile" +msgstr "Profil szerkesztése" + +#: src/Model/Profile.php:358 +msgid "Change profile photo" +msgstr "Profilfénykép megváltoztatása" + +#: src/Model/Profile.php:371 src/Module/Directory.php:161 +#: src/Module/Profile/Profile.php:180 +msgid "Homepage:" +msgstr "Honlap:" + +#: src/Model/Profile.php:372 src/Module/Contact.php:658 +#: src/Module/Notifications/Introductions.php:174 +msgid "About:" +msgstr "Névjegy:" + +#: src/Model/Profile.php:373 src/Module/Contact.php:656 +#: src/Module/Profile/Profile.php:176 +msgid "XMPP:" +msgstr "XMPP:" + +#: src/Model/Profile.php:456 src/Module/Contact.php:342 +msgid "Unfollow" +msgstr "Követés megszüntetése" + +#: src/Model/Profile.php:458 +msgid "Atom feed" +msgstr "Atom hírforrás" + +#: src/Model/Profile.php:466 src/Module/Contact.php:338 +#: src/Module/Notifications/Introductions.php:186 +msgid "Network:" +msgstr "Hálózat:" + +#: src/Model/Profile.php:496 src/Model/Profile.php:593 +msgid "g A l F d" +msgstr "F j., l, H" + +#: src/Model/Profile.php:497 +msgid "F d" +msgstr "F j." + +#: src/Model/Profile.php:559 src/Model/Profile.php:644 +msgid "[today]" +msgstr "[ma]" + +#: src/Model/Profile.php:569 +msgid "Birthday Reminders" +msgstr "Születésnapi emlékeztető" + +#: src/Model/Profile.php:570 +msgid "Birthdays this week:" +msgstr "Születésnapok ezen a héten:" + +#: src/Model/Profile.php:631 +msgid "[No description]" +msgstr "[Nincs leírás]" + +#: src/Model/Profile.php:657 +msgid "Event Reminders" +msgstr "Eseményemlékeztetők" + +#: src/Model/Profile.php:658 +msgid "Upcoming events the next 7 days:" +msgstr "Közelgő események a következő 7 napon:" + +#: src/Model/Profile.php:833 +#, php-format +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "OpenWebAuth: %1$s üdvözli őt: %2$s" + +#: src/Model/Storage/Database.php:74 +#, php-format +msgid "Database storage failed to update %s" +msgstr "Az adatbázis-tároló nem tudta frissíteni ezt: %s" + +#: src/Model/Storage/Database.php:82 +msgid "Database storage failed to insert data" +msgstr "Az adatbázis-tároló nem tudta beszúrni az adatokat" + +#: src/Model/Storage/Filesystem.php:100 +#, php-format +msgid "Filesystem storage failed to create \"%s\". Check you write permissions." +msgstr "A fájlrendszer-tároló nem tudta létrehozni ezt: „%s”. Ellenőrizze az írási jogosultságait." + +#: src/Model/Storage/Filesystem.php:148 +#, php-format +msgid "" +"Filesystem storage failed to save data to \"%s\". Check your write " +"permissions" +msgstr "A fájlrendszer-tároló nem tudta elmenteni az adatokat ide: „%s”. Ellenőrizze az írási jogosultságait." + +#: src/Model/Storage/Filesystem.php:176 +msgid "Storage base path" +msgstr "Tároló alapútvonala" + +#: src/Model/Storage/Filesystem.php:178 +msgid "" +"Folder where uploaded files are saved. For maximum security, This should be " +"a path outside web server folder tree" +msgstr "Az a mappa, ahova a feltöltött fájlok mentve lesznek. A legnagyobb biztonság érdekében ennek a webkiszolgáló mappafáján kívüli útvonalnak kell lennie." + +#: src/Model/Storage/Filesystem.php:191 +msgid "Enter a valid existing folder" +msgstr "Adjon meg egy érvényes, létező mappát" + +#: src/Model/User.php:186 src/Model/User.php:986 +msgid "SERIOUS ERROR: Generation of security keys failed." +msgstr "SÚLYOS HIBA: a biztonsági kulcsok előállítása nem sikerült." + +#: src/Model/User.php:571 src/Model/User.php:604 +msgid "Login failed" +msgstr "Bejelentkezés sikertelen" + +#: src/Model/User.php:636 +msgid "Not enough information to authenticate" +msgstr "Nincs elegendő információ a hitelesítéshez" + +#: src/Model/User.php:731 +msgid "Password can't be empty" +msgstr "A jelszó nem lehet üres" + +#: src/Model/User.php:750 +msgid "Empty passwords are not allowed." +msgstr "Az üres jelszavak nem megengedettek." + +#: src/Model/User.php:754 +msgid "" +"The new password has been exposed in a public data dump, please choose " +"another." +msgstr "Az új jelszót közzétették egy nyilvános adattárban. Válasszon egy másikat." + +#: src/Model/User.php:760 +msgid "" +"The password can't contain accentuated letters, white spaces or colons (:)" +msgstr "A jelszó nem tartalmazhat ékezetes betűket, üres karaktereket vagy kettőspontot (:)" + +#: src/Model/User.php:866 +msgid "Passwords do not match. Password unchanged." +msgstr "A jelszavak nem egyeznek. A jelszó változatlan maradt." + +#: src/Model/User.php:873 +msgid "An invitation is required." +msgstr "Egy meghívás szükséges." + +#: src/Model/User.php:877 +msgid "Invitation could not be verified." +msgstr "A meghívást nem sikerült ellenőrizni." + +#: src/Model/User.php:885 +msgid "Invalid OpenID url" +msgstr "Érvénytelen OpenID URL" + +#: src/Model/User.php:898 src/Security/Authentication.php:224 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Problémába ütköztünk a megadott OpenID-val történő bejelentkezés közben. Ellenőrizze az azonosító helyesírását." + +#: src/Model/User.php:898 src/Security/Authentication.php:224 +msgid "The error message was:" +msgstr "A hibaüzenet ez volt:" + +#: src/Model/User.php:904 +msgid "Please enter the required information." +msgstr "Adja meg a szükséges információkat." + +#: src/Model/User.php:918 +#, php-format +msgid "" +"system.username_min_length (%s) and system.username_max_length (%s) are " +"excluding each other, swapping values." +msgstr "A system.username_min_length (%s) és a system.username_max_length (%s) kizárják egymást, értékek felcserélése." + +#: src/Model/User.php:925 +#, php-format +msgid "Username should be at least %s character." +msgid_plural "Username should be at least %s characters." +msgstr[0] "A felhasználónévnek legalább %s karakternek kell lennie." +msgstr[1] "A felhasználónévnek legalább %s karakternek kell lennie." + +#: src/Model/User.php:929 +#, php-format +msgid "Username should be at most %s character." +msgid_plural "Username should be at most %s characters." +msgstr[0] "A felhasználónévnek legfeljebb %s karakternek kell lennie." +msgstr[1] "A felhasználónévnek legfeljebb %s karakternek kell lennie." + +#: src/Model/User.php:937 +msgid "That doesn't appear to be your full (First Last) name." +msgstr "Úgy tűnik, hogy ez nem a teljes neve (vezetéknév és keresztnév)." + +#: src/Model/User.php:942 +msgid "Your email domain is not among those allowed on this site." +msgstr "Az e-mail tartománya nem tartozik azok közé, amelyek megengedettek ezen az oldalon." + +#: src/Model/User.php:946 +msgid "Not a valid email address." +msgstr "Nem érvényes e-mail-cím." + +#: src/Model/User.php:949 +msgid "The nickname was blocked from registration by the nodes admin." +msgstr "A becenevet a csomópont adminisztrátora tiltotta a regisztrációtól." + +#: src/Model/User.php:953 src/Model/User.php:961 +msgid "Cannot use that email." +msgstr "Nem lehet használni azt az e-mail-címet." + +#: src/Model/User.php:968 +msgid "Your nickname can only contain a-z, 0-9 and _." +msgstr "A becenév csak a-z, 0-9 és _ karaktereket tartalmazhat." + +#: src/Model/User.php:976 src/Model/User.php:1033 +msgid "Nickname is already registered. Please choose another." +msgstr "A becenév már regisztrálva van. Válasszon egy másikat." + +#: src/Model/User.php:1020 src/Model/User.php:1024 +msgid "An error occurred during registration. Please try again." +msgstr "Hiba történt a regisztráció során. Próbálja újra." + +#: src/Model/User.php:1047 +msgid "An error occurred creating your default profile. Please try again." +msgstr "Hiba történt az alapértelmezett profil létrehozásakor. Próbálja újra." + +#: src/Model/User.php:1054 +msgid "An error occurred creating your self contact. Please try again." +msgstr "Hiba történt a saját partnere létrehozásakor. Próbálja újra." + +#: src/Model/User.php:1059 +msgid "Friends" +msgstr "Ismerősök" + +#: src/Model/User.php:1063 +msgid "" +"An error occurred creating your default contact group. Please try again." +msgstr "Hiba történt az alapértelmezett partnercsoport létrehozásakor. Próbálja újra." + +#: src/Model/User.php:1256 +#, php-format +msgid "" +"\n" +"\t\tDear %1$s,\n" +"\t\t\tthe administrator of %2$s has set up an account for you." +msgstr "\n\t\tKedves %1$s!\n\t\t\tA(z) %2$s adminisztrátora beállított egy fiókot Önnek." + +#: src/Model/User.php:1259 +#, php-format +msgid "" +"\n" +"\t\tThe login details are as follows:\n" +"\n" +"\t\tSite Location:\t%1$s\n" +"\t\tLogin Name:\t\t%2$s\n" +"\t\tPassword:\t\t%3$s\n" +"\n" +"\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\tin.\n" +"\n" +"\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\tthan that.\n" +"\n" +"\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\tIf you are new and do not know anybody here, they may help\n" +"\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\tIf you ever want to delete your account, you can do so at %1$s/removeme\n" +"\n" +"\t\tThank you and welcome to %4$s." +msgstr "\n\t\tA bejelentkezés részletei a következők:\n\n\t\tOldal címe:\t%1$s\n\t\tBejelentkezési név:\t\t%2$s\n\t\tJelszó:\t\t%3$s\n\n\t\tA jelszavát a fiókja „Beállítások” oldalán változtathatja meg, miután\n\t\tbejelentkezett.\n\n\t\tSzánjon pár percet a többi fiókbeállítás felülvizsgálatára is azon az oldalon.\n\n\t\tÉrdemes lehet néhány alapvető információt is hozzáadnia az\n\t\talapértelmezett profiljához (a „Profilok” oldalon), azért hogy más\n\t\temberek egyszerűen megtalálják Önt.\n\n\t\tAzt ajánljuk, hogy állítsa be a teljes nevét, adjon hozzá\n\t\tprofilfényképet, adjon hozzá néhány profil „kulcsszót” (nagyon hasznos\n\t\túj ismerősök kereséséhez), valamint talán azt, hogy mely országban él,\n\t\tha nem szeretne annál pontosabbat megadni.\n\n\t\tTeljes mértékben tiszteletben tartjuk az adatvédelemmel kapcsolatos\n\t\tjogát, és ezen elemek egyike sem kötelező. Ha még új itt, és senkit\n\t\tsem ismer, akkor ezek segíthetnek Önnek néhány új és érdekes\n\t\tismerőst találni.\n\n\t\tHa bármikor törölni szeretné a fiókját, akkor megteheti azt a\n\t\tkövetkező címen: %1$s/removeme\n\n\t\t\tKöszönjük, és üdvözöljük a %4$s oldalon." + +#: src/Model/User.php:1292 src/Model/User.php:1399 +#, php-format +msgid "Registration details for %s" +msgstr "Regisztrációs részletek ehhez: %s" + +#: src/Model/User.php:1312 +#, php-format +msgid "" +"\n" +"\t\t\tDear %1$s,\n" +"\t\t\t\tThank you for registering at %2$s. Your account is pending for approval by the administrator.\n" +"\n" +"\t\t\tYour login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t\t%4$s\n" +"\t\t\tPassword:\t\t%5$s\n" +"\t\t" +msgstr "\n\t\t\tKedves %1$s!\n\t\t\t\tKöszönjük, hogy regisztrált itt: %2$s. A fiókja adminisztrátori jóváhagyásra vár.\n\n\t\t\tA bejelentkezés részletei a következők:\n\n\t\t\tOldal címe:\t%3$s\n\t\t\tBejelentkezési név:\t\t%4$s\n\t\t\tJelszó:\t\t%5$s\n\t\t" + +#: src/Model/User.php:1331 +#, php-format +msgid "Registration at %s" +msgstr "Regisztráció itt: %s" + +#: src/Model/User.php:1355 +#, php-format +msgid "" +"\n" +"\t\t\t\tDear %1$s,\n" +"\t\t\t\tThank you for registering at %2$s. Your account has been created.\n" +"\t\t\t" +msgstr "\n\t\t\t\tKedves %1$s!\n\t\t\t\tKöszönjük, hogy regisztrált itt: %2$s. A fiókja létrejött.\n\t\t\t" + +#: src/Model/User.php:1363 +#, php-format +msgid "" +"\n" +"\t\t\tThe login details are as follows:\n" +"\n" +"\t\t\tSite Location:\t%3$s\n" +"\t\t\tLogin Name:\t\t%1$s\n" +"\t\t\tPassword:\t\t%5$s\n" +"\n" +"\t\t\tYou may change your password from your account \"Settings\" page after logging\n" +"\t\t\tin.\n" +"\n" +"\t\t\tPlease take a few moments to review the other account settings on that page.\n" +"\n" +"\t\t\tYou may also wish to add some basic information to your default profile\n" +"\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n" +"\n" +"\t\t\tWe recommend setting your full name, adding a profile photo,\n" +"\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n" +"\t\t\tperhaps what country you live in; if you do not wish to be more specific\n" +"\t\t\tthan that.\n" +"\n" +"\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n" +"\t\t\tIf you are new and do not know anybody here, they may help\n" +"\t\t\tyou to make some new and interesting friends.\n" +"\n" +"\t\t\tIf you ever want to delete your account, you can do so at %3$s/removeme\n" +"\n" +"\t\t\tThank you and welcome to %2$s." +msgstr "\n\t\t\tA bejelentkezés részletei a következők:\n\n\t\t\tOldal címe:\t%3$s\n\t\t\tBejelentkezési név:\t\t%1$s\n\t\t\tJelszó:\t\t%5$s\n\n\t\t\tA jelszavát a fiókja „Beállítások” oldalán változtathatja meg, miután\n\t\t\tbejelentkezett.\n\n\t\t\tSzánjon pár percet a többi fiókbeállítás felülvizsgálatára is azon az oldalon.\n\n\t\t\tÉrdemes lehet néhány alapvető információt is hozzáadnia az\n\t\t\talapértelmezett profiljához (a „Profilok” oldalon), azért hogy más\n\t\t\temberek egyszerűen megtalálják Önt.\n\n\t\t\tAzt ajánljuk, hogy állítsa be a teljes nevét, adjon hozzá\n\t\t\tprofilfényképet, adjon hozzá néhány profil „kulcsszót” (nagyon hasznos\n\t\t\túj ismerősök kereséséhez), valamint talán azt, hogy mely országban él,\n\t\t\tha nem szeretne annál pontosabbat megadni.\n\n\t\t\tTeljes mértékben tiszteletben tartjuk az adatvédelemmel kapcsolatos\n\t\t\tjogát, és ezen elemek egyike sem kötelező. Ha még új itt, és senkit\n\t\t\tsem ismer, akkor ezek segíthetnek Önnek néhány új és érdekes\n\t\t\tismerőst találni.\n\n\t\t\tHa bármikor törölni szeretné a fiókját, akkor megteheti azt a\n\t\t\tkövetkező címen: %3$s/removeme\n\n\t\t\tKöszönjük, és üdvözöljük a %2$s oldalon." + +#: src/Module/Admin/Addons/Details.php:65 +msgid "Addon not found." +msgstr "A bővítmény nem található." + +#: src/Module/Admin/Addons/Details.php:76 src/Module/Admin/Addons/Index.php:49 +#, php-format +msgid "Addon %s disabled." +msgstr "A(z) „%s” bővítmény letiltva." + +#: src/Module/Admin/Addons/Details.php:79 src/Module/Admin/Addons/Index.php:51 +#, php-format +msgid "Addon %s enabled." +msgstr "A(z) „%s” bővítmény engedélyezve." + +#: src/Module/Admin/Addons/Details.php:88 +#: src/Module/Admin/Themes/Details.php:46 +msgid "Disable" +msgstr "Letiltás" + +#: src/Module/Admin/Addons/Details.php:91 +#: src/Module/Admin/Themes/Details.php:49 +msgid "Enable" +msgstr "Engedélyezés" + +#: src/Module/Admin/Addons/Details.php:111 +#: src/Module/Admin/Addons/Index.php:67 +#: src/Module/Admin/Blocklist/Contact.php:78 +#: src/Module/Admin/Blocklist/Server.php:88 +#: src/Module/Admin/Federation.php:159 src/Module/Admin/Item/Delete.php:65 +#: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Logs/View.php:64 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:576 +#: src/Module/Admin/Summary.php:232 src/Module/Admin/Themes/Details.php:90 +#: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:58 +#: src/Module/Admin/Users/Active.php:136 +#: src/Module/Admin/Users/Blocked.php:137 src/Module/Admin/Users/Create.php:61 +#: src/Module/Admin/Users/Deleted.php:85 src/Module/Admin/Users/Index.php:149 +#: src/Module/Admin/Users/Pending.php:101 +msgid "Administration" +msgstr "Adminisztráció" + +#: src/Module/Admin/Addons/Details.php:112 +#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92 +#: src/Module/BaseSettings.php:87 +msgid "Addons" +msgstr "Bővítmények" + +#: src/Module/Admin/Addons/Details.php:113 +#: src/Module/Admin/Themes/Details.php:92 +msgid "Toggle" +msgstr "Átváltás" + +#: src/Module/Admin/Addons/Details.php:121 +#: src/Module/Admin/Themes/Details.php:101 +msgid "Author: " +msgstr "Szerző: " + +#: src/Module/Admin/Addons/Details.php:122 +#: src/Module/Admin/Themes/Details.php:102 +msgid "Maintainer: " +msgstr "Karbantartó: " + +#: src/Module/Admin/Addons/Index.php:42 +msgid "Addons reloaded" +msgstr "Bővítmények újratöltve" + +#: src/Module/Admin/Addons/Index.php:53 +#, php-format +msgid "Addon %s failed to install." +msgstr "A(z) „%s” bővítmény telepítése sikertelen." + +#: src/Module/Admin/Addons/Index.php:70 +msgid "Reload active addons" +msgstr "Bekapcsolt bővítmények újratöltése" + +#: src/Module/Admin/Addons/Index.php:75 +#, php-format +msgid "" +"There are currently no addons available on your node. You can find the " +"official addon repository at %1$s and might find other interesting addons in" +" the open addon registry at %2$s" +msgstr "Jelenleg nem érhetők el bővítmények az Ön csomópontján. A hivatalos bővítménytároló megtalálható a %1$s oldalon, és esetleg egyéb érdekes bővítményeket is találhat a %2$s címen elérhető nyílt bővítményjegyzékben." + +#: src/Module/Admin/BaseUsers.php:53 +msgid "List of all users" +msgstr "Összes felhasználó listája" + +#: src/Module/Admin/BaseUsers.php:58 +msgid "Active" +msgstr "Aktív" + +#: src/Module/Admin/BaseUsers.php:61 +msgid "List of active accounts" +msgstr "Aktív fiókok listája" + +#: src/Module/Admin/BaseUsers.php:66 src/Module/Contact.php:807 +#: src/Module/Contact.php:867 +msgid "Pending" +msgstr "Függőben" + +#: src/Module/Admin/BaseUsers.php:69 +msgid "List of pending registrations" +msgstr "Függőben lévő regisztrációk listája" + +#: src/Module/Admin/BaseUsers.php:74 src/Module/Contact.php:815 +#: src/Module/Contact.php:868 +msgid "Blocked" +msgstr "Tiltva" + +#: src/Module/Admin/BaseUsers.php:77 +msgid "List of blocked users" +msgstr "Tiltott felhasználók listája" + +#: src/Module/Admin/BaseUsers.php:82 +msgid "Deleted" +msgstr "Törölve" + +#: src/Module/Admin/BaseUsers.php:85 +msgid "List of pending user deletions" +msgstr "Függőben lévő felhasználó-törlések listája" + +#: src/Module/Admin/BaseUsers.php:103 +msgid "Private Forum" +msgstr "Személyes fórum" + +#: src/Module/Admin/BaseUsers.php:110 +msgid "Relay" +msgstr "Továbbítás" + +#: src/Module/Admin/Blocklist/Contact.php:57 +#, php-format +msgid "%s contact unblocked" +msgid_plural "%s contacts unblocked" +msgstr[0] "%s partner tiltása feloldva" +msgstr[1] "%s partner tiltása feloldva" + +#: src/Module/Admin/Blocklist/Contact.php:79 +msgid "Remote Contact Blocklist" +msgstr "Távoli partnerek tiltólistája" + +#: src/Module/Admin/Blocklist/Contact.php:80 +msgid "" +"This page allows you to prevent any message from a remote contact to reach " +"your node." +msgstr "Ez az oldal lehetővé teszi, hogy megakadályozzon egy távoli partnertől származó minden üzenetet, amely elérné a csomópontját." + +#: src/Module/Admin/Blocklist/Contact.php:81 +msgid "Block Remote Contact" +msgstr "Távoli partner tiltása" + +#: src/Module/Admin/Blocklist/Contact.php:82 +#: src/Module/Admin/Users/Active.php:138 +#: src/Module/Admin/Users/Blocked.php:139 src/Module/Admin/Users/Index.php:151 +#: src/Module/Admin/Users/Pending.php:103 +msgid "select all" +msgstr "összes kijelölése" + +#: src/Module/Admin/Blocklist/Contact.php:83 +msgid "select none" +msgstr "kijelölés törlése" + +#: src/Module/Admin/Blocklist/Contact.php:85 +#: src/Module/Admin/Users/Blocked.php:142 src/Module/Admin/Users/Index.php:156 +#: src/Module/Contact.php:633 src/Module/Contact.php:891 +#: src/Module/Contact.php:1173 +msgid "Unblock" +msgstr "Tiltás feloldása" + +#: src/Module/Admin/Blocklist/Contact.php:86 +msgid "No remote contact is blocked from this node." +msgstr "Nincs olyan távoli partner, aki tiltva lenne erről a csomópontról." + +#: src/Module/Admin/Blocklist/Contact.php:88 +msgid "Blocked Remote Contacts" +msgstr "Tiltott távoli partnerek" + +#: src/Module/Admin/Blocklist/Contact.php:89 +msgid "Block New Remote Contact" +msgstr "Új távoli partner tiltása" + +#: src/Module/Admin/Blocklist/Contact.php:90 +msgid "Photo" +msgstr "Fénykép" + +#: src/Module/Admin/Blocklist/Contact.php:90 +msgid "Reason" +msgstr "Indok" + +#: src/Module/Admin/Blocklist/Contact.php:98 +#, php-format +msgid "%s total blocked contact" +msgid_plural "%s total blocked contacts" +msgstr[0] "összesen %s tiltott partner" +msgstr[1] "összesen %s tiltott partner" + +#: src/Module/Admin/Blocklist/Contact.php:100 +msgid "URL of the remote contact to block." +msgstr "A tiltandó távoli partner URL-je." + +#: src/Module/Admin/Blocklist/Contact.php:101 +msgid "Block Reason" +msgstr "Tiltás oka" + +#: src/Module/Admin/Blocklist/Server.php:49 +msgid "Server domain pattern added to blocklist." +msgstr "A tiltólistához hozzáadott kiszolgáló tartománymintája." + +#: src/Module/Admin/Blocklist/Server.php:79 +#: src/Module/Admin/Blocklist/Server.php:104 +msgid "Blocked server domain pattern" +msgstr "Tiltott kiszolgálótartomány-minta" + +#: src/Module/Admin/Blocklist/Server.php:80 +#: src/Module/Admin/Blocklist/Server.php:105 src/Module/Friendica.php:81 +msgid "Reason for the block" +msgstr "A tiltás oka" + +#: src/Module/Admin/Blocklist/Server.php:81 +msgid "Delete server domain pattern" +msgstr "Kiszolgálótartomány-minta törlése" + +#: src/Module/Admin/Blocklist/Server.php:81 +msgid "Check to delete this entry from the blocklist" +msgstr "Jelölje be a bejegyzés tiltólistából való törléséhez" + +#: src/Module/Admin/Blocklist/Server.php:89 +msgid "Server Domain Pattern Blocklist" +msgstr "Kiszolgálótartomány-minta tiltólistája" + +#: src/Module/Admin/Blocklist/Server.php:90 +msgid "" +"This page can be used to define a blocklist of server domain patterns from " +"the federated network that are not allowed to interact with your node. For " +"each domain pattern you should also provide the reason why you block it." +msgstr "Ez az oldal használható a föderált hálózatból származó azon kiszolgálótartomány-minták tiltólistájának meghatározásához, amelyeknek nem engedélyezett kapcsolatba lépniük az Ön csomópontjával. Minden egyes tartománymintához meg kell adnia az indokot is, hogy miért tiltja azt." + +#: src/Module/Admin/Blocklist/Server.php:91 +msgid "" +"The list of blocked server domain patterns will be made publically available" +" on the /friendica page so that your users and " +"people investigating communication problems can find the reason easily." +msgstr "A tiltott kiszolgálótartomány-minták listája nyilvánosan elérhetővé lesz téve a /friendica oldalon, azért hogy a kommunikációs problémákat kivizsgáló felhasználók és emberek egyszerűen megtalálják az okot." + +#: src/Module/Admin/Blocklist/Server.php:92 +msgid "" +"

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

\n" +"
    \n" +"\t
  • *: Any number of characters
  • \n" +"\t
  • ?: Any single character
  • \n" +"\t
  • [<char1><char2>...]: char1 or char2
  • \n" +"
" +msgstr "

A kiszolgálótartomány-minta szintaxisa kis- és nagybetűkre nem érzékeny parancsértelmező helyettesítő karakter, amely a következő különleges karaktereket tartalmazza:

\n
    \n\t
  • *: bármennyi számú karakter
  • \n\t
  • ?: bármilyen önálló karakter
  • \n\t
  • [<karakter1><karakter2>...]: karakter1 vagy karakter2
  • \n
" + +#: src/Module/Admin/Blocklist/Server.php:98 +msgid "Add new entry to block list" +msgstr "Új bejegyzés hozzáadása a tiltólistához" + +#: src/Module/Admin/Blocklist/Server.php:99 +msgid "Server Domain Pattern" +msgstr "Kiszolgálótartomány-minta" + +#: src/Module/Admin/Blocklist/Server.php:99 +msgid "" +"The domain pattern of the new server to add to the block list. Do not " +"include the protocol." +msgstr "A tiltólistához hozzáadandó új kiszolgáló tartományának mintája. Ne tegye bele a protokollt." + +#: src/Module/Admin/Blocklist/Server.php:100 +msgid "Block reason" +msgstr "Tiltás oka" + +#: src/Module/Admin/Blocklist/Server.php:100 +msgid "The reason why you blocked this server domain pattern." +msgstr "Az ok, amiért kitiltotta ezt a kiszolgálótartomány-mintát." + +#: src/Module/Admin/Blocklist/Server.php:101 +msgid "Add Entry" +msgstr "Bejegyzés hozzáadása" + +#: src/Module/Admin/Blocklist/Server.php:102 +msgid "Save changes to the blocklist" +msgstr "Változtatások mentése a tiltólistába" + +#: src/Module/Admin/Blocklist/Server.php:103 +msgid "Current Entries in the Blocklist" +msgstr "Jelenlegi bejegyzések a tiltólistán" + +#: src/Module/Admin/Blocklist/Server.php:106 +msgid "Delete entry from blocklist" +msgstr "Bejegyzés törlése a tiltólistáról" + +#: src/Module/Admin/Blocklist/Server.php:109 +msgid "Delete entry from blocklist?" +msgstr "Törli a bejegyzést a tiltólistáról?" + +#: src/Module/Admin/DBSync.php:51 +msgid "Update has been marked successful" +msgstr "A frissítés sikeresen meg lett jelölve" + +#: src/Module/Admin/DBSync.php:59 +#, php-format +msgid "Database structure update %s was successfully applied." +msgstr "A(z) %s adatbázisszerkezet-frissítés sikeresen alkalmazva." + +#: src/Module/Admin/DBSync.php:61 +#, php-format +msgid "Executing of database structure update %s failed with error: %s" +msgstr "A(z) %s adatbázisszerkezet-frissítés végrehajtása meghiúsult ezzel a hibával: %s" + +#: src/Module/Admin/DBSync.php:76 +#, php-format +msgid "Executing %s failed with error: %s" +msgstr "A(z) %s végrehajtása meghiúsult ezzel a hibával: %s" + +#: src/Module/Admin/DBSync.php:78 +#, php-format +msgid "Update %s was successfully applied." +msgstr "A(z) %s frissítés sikeresen alkalmazva." + +#: src/Module/Admin/DBSync.php:81 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "A(z) %s frissítés nem adott vissza állapotot. Nem tudni, hogy sikerült-e." + +#: src/Module/Admin/DBSync.php:84 +#, php-format +msgid "There was no additional update function %s that needed to be called." +msgstr "Nem volt további frissítési funkció, %s amelyet meg kellett hívni." + +#: src/Module/Admin/DBSync.php:106 +msgid "No failed updates." +msgstr "Nincsenek sikertelen frissítések." + +#: src/Module/Admin/DBSync.php:107 +msgid "Check database structure" +msgstr "Adatbázis-szerkezet ellenőrzése" + +#: src/Module/Admin/DBSync.php:112 +msgid "Failed Updates" +msgstr "Sikertelen frissítések" + +#: src/Module/Admin/DBSync.php:113 +msgid "" +"This does not include updates prior to 1139, which did not return a status." +msgstr "Ez nem tartalmazza az 1139 előtti frissítéseket, amelyek nem adtak vissza állapotot." + +#: src/Module/Admin/DBSync.php:114 +msgid "Mark success (if update was manually applied)" +msgstr "Megjelölés sikeresként (ha a frissítés kézzel lett alkalmazva)" + +#: src/Module/Admin/DBSync.php:115 +msgid "Attempt to execute this update step automatically" +msgstr "Próbálja meg automatikusan végrehajtani ezt a frissítési lépést" + +#: src/Module/Admin/Features.php:76 +#, php-format +msgid "Lock feature %s" +msgstr "%s funkció zárolása" + +#: src/Module/Admin/Features.php:85 +msgid "Manage Additional Features" +msgstr "További funkciók kezelése" + +#: src/Module/Admin/Federation.php:56 +msgid "Other" +msgstr "Egyéb" + +#: src/Module/Admin/Federation.php:118 src/Module/Admin/Federation.php:348 +msgid "unknown" +msgstr "ismeretlen" + +#: src/Module/Admin/Federation.php:154 +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 "Ez az oldal néhány számadatot nyújt a föderált közösségi hálózat azon ismert részéhez, amelynek része az Ön Friendica csomópontja. Ezek a számok nem teljesek, hanem csak a hálózat azon részét tükrözik, amelyről a csomópontja tud." + +#: src/Module/Admin/Federation.php:160 src/Module/BaseAdmin.php:87 +msgid "Federation Statistics" +msgstr "Föderációs statisztikák" + +#: src/Module/Admin/Federation.php:164 +#, php-format +msgid "" +"Currently this node is aware of %d nodes with %d registered users from the " +"following platforms:" +msgstr "Jelenleg erről a csomópontról %d csomópontnak van tudomása %d regisztrált felhasználóval a következő platformokról:" + +#: src/Module/Admin/Item/Delete.php:54 +msgid "Item marked for deletion." +msgstr "Az elem megjelölve törlésre." + +#: src/Module/Admin/Item/Delete.php:66 src/Module/BaseAdmin.php:105 +msgid "Delete Item" +msgstr "Elem törlése" + +#: src/Module/Admin/Item/Delete.php:67 +msgid "Delete this Item" +msgstr "Az elem törlése" + +#: src/Module/Admin/Item/Delete.php:68 +msgid "" +"On this page you can delete an item from your node. If the item is a top " +"level posting, the entire thread will be deleted." +msgstr "Ezen az oldalon törölhet egy elemet a csomópontjáról. Ha az elem egy felső szintű beküldés, akkor a teljes szál törlésre fog kerülni." + +#: src/Module/Admin/Item/Delete.php:69 +msgid "" +"You need to know the GUID of the item. You can find it e.g. by looking at " +"the display URL. The last part of http://example.com/display/123456 is the " +"GUID, here 123456." +msgstr "Tudnia kell az elem GUID értékét. Ezt megtalálhatja például a megjelenített URL-re tekintve. A http://example.com/display/123456 utolsó része a GUID, itt az 123456." + +#: src/Module/Admin/Item/Delete.php:70 +msgid "GUID" +msgstr "GUID" + +#: src/Module/Admin/Item/Delete.php:70 +msgid "The GUID of the item you want to delete." +msgstr "Annak az elemnek GUID értéke, amelyet törölni szeretne." + +#: src/Module/Admin/Item/Source.php:57 src/Module/BaseAdmin.php:115 +msgid "Item Source" +msgstr "Elem forrása" + +#: src/Module/Admin/Item/Source.php:58 +msgid "Item Guid" +msgstr "Elem GUID értéke" + +#: src/Module/Admin/Item/Source.php:63 +msgid "Item Id" +msgstr "Elemazonosító" + +#: src/Module/Admin/Item/Source.php:64 +msgid "Item URI" +msgstr "Elem URI" + +#: src/Module/Admin/Item/Source.php:66 +msgid "Terms" +msgstr "Kifejezések" + +#: src/Module/Admin/Item/Source.php:67 +msgid "Tag" +msgstr "Címke" + +#: src/Module/Admin/Item/Source.php:68 src/Module/Admin/Users/Active.php:129 +#: src/Module/Admin/Users/Blocked.php:130 src/Module/Admin/Users/Index.php:142 +msgid "Type" +msgstr "Típus" + +#: src/Module/Admin/Item/Source.php:69 +msgid "Term" +msgstr "Kifejezés" + +#: src/Module/Admin/Item/Source.php:70 +msgid "URL" +msgstr "URL" + +#: src/Module/Admin/Item/Source.php:71 +msgid "Mention" +msgstr "Említés" + +#: src/Module/Admin/Item/Source.php:72 +msgid "Implicit Mention" +msgstr "Implicit említés" + +#: src/Module/Admin/Item/Source.php:73 +#: src/Module/Debug/ActivityPubConversion.php:62 +msgid "Source" +msgstr "Forrás" + +#: src/Module/Admin/Logs/Settings.php:48 +#, php-format +msgid "The logfile '%s' is not writable. No logging possible" +msgstr "A(z) „%s” naplófájl nem írható. A naplózás nem lehetséges." + +#: src/Module/Admin/Logs/Settings.php:72 +msgid "PHP log currently enabled." +msgstr "A PHP-naplózás jelenleg engedélyezve van." + +#: src/Module/Admin/Logs/Settings.php:74 +msgid "PHP log currently disabled." +msgstr "A PHP-naplózás jelenleg le van tiltva." + +#: src/Module/Admin/Logs/Settings.php:81 src/Module/BaseAdmin.php:107 +#: src/Module/BaseAdmin.php:108 +msgid "Logs" +msgstr "Naplók" + +#: src/Module/Admin/Logs/Settings.php:83 +msgid "Clear" +msgstr "Törlés" + +#: src/Module/Admin/Logs/Settings.php:87 +msgid "Enable Debugging" +msgstr "Hibakeresés engedélyezése" + +#: src/Module/Admin/Logs/Settings.php:88 +msgid "Log file" +msgstr "Naplófájl" + +#: src/Module/Admin/Logs/Settings.php:88 +msgid "" +"Must be writable by web server. Relative to your Friendica top-level " +"directory." +msgstr "Írhatónak kell lennie a webkiszolgáló által. Relatívan kell megadni a Friendica felső szintű könyvtárához képest." + +#: src/Module/Admin/Logs/Settings.php:89 +msgid "Log level" +msgstr "Naplózási szint" + +#: src/Module/Admin/Logs/Settings.php:91 +msgid "PHP logging" +msgstr "PHP-naplózás" + +#: src/Module/Admin/Logs/Settings.php:92 +msgid "" +"To temporarily enable logging of PHP errors and warnings you can prepend the" +" following to the index.php file of your installation. The filename set in " +"the 'error_log' line is relative to the friendica top-level directory and " +"must be writeable by the web server. The option '1' for 'log_errors' and " +"'display_errors' is to enable these options, set to '0' to disable them." +msgstr "A PHP hibák és figyelmeztetések naplózásának átmeneti engedélyezéséhez beszúrhatja a következőket a telepítése index.php fájljának elejére. Az „error_log” sorban beállított fájlnév relatív a Friendica felső szintű könyvtárához képest, és írhatónak kell lennie a webkiszolgáló által. A „log_errors” és a „display_errors” beállítások „1” értéke a beállítások engedélyezéséhez kell. Állítsa „0” értékre a letiltásukhoz." + +#: src/Module/Admin/Logs/View.php:40 +#, php-format +msgid "" +"Error trying to open %1$s log file.\\r\\n
Check to see " +"if file %1$s exist and is readable." +msgstr "Hiba a(z) %1$s naplófájl megnyitási kísérlete során.\\r\\n
Ellenőrizze, hogy a(z) „%1$s” fájl létezik-e és olvasható-e." + +#: src/Module/Admin/Logs/View.php:44 +#, php-format +msgid "" +"Couldn't open %1$s log file.\\r\\n
Check to see if file" +" %1$s is readable." +msgstr "Nem sikerült megnyitni a(z) %1$s naplófájlt.\\r\\n
Ellenőrizze, hogy a(z) „%1$s” fájl olvasható-e." + +#: src/Module/Admin/Logs/View.php:65 src/Module/BaseAdmin.php:109 +msgid "View Logs" +msgstr "Naplók megtekintése" + +#: src/Module/Admin/Queue.php:50 +msgid "Inspect Deferred Worker Queue" +msgstr "Elhalasztott feldolgozó várakozási sorának vizsgálata" + +#: src/Module/Admin/Queue.php:51 +msgid "" +"This page lists the deferred worker jobs. This are jobs that couldn't be " +"executed at the first time." +msgstr "Ez az oldal az elhalasztott feldolgozó feladatokat sorolja fel. Ezek azok a feladatok, amelyeket nem sikerült végrehajtani első alkalommal." + +#: src/Module/Admin/Queue.php:54 +msgid "Inspect Worker Queue" +msgstr "Feldolgozó várakozási sorának vizsgálata" + +#: src/Module/Admin/Queue.php:55 +msgid "" +"This page lists the currently queued worker jobs. These jobs are handled by " +"the worker cronjob you've set up during install." +msgstr "Ez az oldal a jelenleg sorba állított feldolgozó feladatokat sorolja fel. Ezeket a feladatokat a feldolgozó cron-feladata kezeli, amelyet a telepítés során állított be." + +#: src/Module/Admin/Queue.php:75 +msgid "ID" +msgstr "Azonosító" + +#: src/Module/Admin/Queue.php:76 +msgid "Command" +msgstr "Parancs" + +#: src/Module/Admin/Queue.php:77 +msgid "Job Parameters" +msgstr "Feladat paraméterei" + +#: src/Module/Admin/Queue.php:79 +msgid "Priority" +msgstr "Prioritás" + +#: src/Module/Admin/Site.php:70 +msgid "Can not parse base url. Must have at least ://" +msgstr "Nem lehet feldolgozni az alap URL-t. Legalább :// értékkel kell rendelkeznie." + +#: src/Module/Admin/Site.php:124 +msgid "Relocation started. Could take a while to complete." +msgstr "Az áthelyezés elkezdődött. Eltarthat egy ideig, mire befejeződik." + +#: src/Module/Admin/Site.php:248 +msgid "Invalid storage backend setting value." +msgstr "Érvénytelen tároló-háttérprogram beállítási érték." + +#: src/Module/Admin/Site.php:446 src/Module/Settings/Display.php:134 +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:463 src/Module/Settings/Display.php:144 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s – (kísérleti)" + +#: src/Module/Admin/Site.php:475 +msgid "No community page for local users" +msgstr "Nincs közösségi oldal a helyi felhasználókhoz" + +#: src/Module/Admin/Site.php:476 +msgid "No community page" +msgstr "Nincs közösségi oldal" + +#: src/Module/Admin/Site.php:477 +msgid "Public postings from users of this site" +msgstr "Nyilvános beküldések ezen oldal felhasználóitól" + +#: src/Module/Admin/Site.php:478 +msgid "Public postings from the federated network" +msgstr "Nyilvános beküldések a föderált hálózatból" + +#: src/Module/Admin/Site.php:479 +msgid "Public postings from local users and the federated network" +msgstr "Nyilvános beküldések a helyi felhasználóktól és a föderált hálózatból" + +#: src/Module/Admin/Site.php:485 +msgid "Multi user instance" +msgstr "Többfelhasználós példány" + +#: src/Module/Admin/Site.php:513 +msgid "Closed" +msgstr "Lezárva" + +#: src/Module/Admin/Site.php:514 +msgid "Requires approval" +msgstr "Jóváhagyást igényel" + +#: src/Module/Admin/Site.php:515 +msgid "Open" +msgstr "Nyitott" + +#: src/Module/Admin/Site.php:519 src/Module/Install.php:215 +msgid "No SSL policy, links will track page SSL state" +msgstr "Nincs SSL irányelv, a hivatkozások követik az oldal SSL állapotát" + +#: src/Module/Admin/Site.php:520 src/Module/Install.php:216 +msgid "Force all links to use SSL" +msgstr "Az összes hivatkozás kényszerítése SSL használatára" + +#: src/Module/Admin/Site.php:521 src/Module/Install.php:217 +msgid "Self-signed certificate, use SSL for local links only (discouraged)" +msgstr "Önaláírt tanúsítvány, SSL használata csak helyi hivatkozásoknál (nem ajánlott)" + +#: src/Module/Admin/Site.php:525 +msgid "Don't check" +msgstr "Ne ellenőrizze" + +#: src/Module/Admin/Site.php:526 +msgid "check the stable version" +msgstr "a stabil verzió ellenőrzése" + +#: src/Module/Admin/Site.php:527 +msgid "check the development version" +msgstr "a fejlesztői verzió ellenőrzése" + +#: src/Module/Admin/Site.php:531 +msgid "none" +msgstr "nincs" + +#: src/Module/Admin/Site.php:532 +msgid "Local contacts" +msgstr "Helyi partnerek" + +#: src/Module/Admin/Site.php:533 +msgid "Interactors" +msgstr "Interaktorok" + +#: src/Module/Admin/Site.php:546 +msgid "Database (legacy)" +msgstr "Adatbázis (örökölt)" + +#: src/Module/Admin/Site.php:577 src/Module/BaseAdmin.php:90 +msgid "Site" +msgstr "Oldal" + +#: src/Module/Admin/Site.php:578 +msgid "General Information" +msgstr "Általános információk" + +#: src/Module/Admin/Site.php:580 +msgid "Republish users to directory" +msgstr "Felhasználók újra közzé tétele a könyvtárba" + +#: src/Module/Admin/Site.php:581 src/Module/Register.php:139 +msgid "Registration" +msgstr "Regisztráció" + +#: src/Module/Admin/Site.php:582 +msgid "File upload" +msgstr "Fájlfeltöltés" + +#: src/Module/Admin/Site.php:583 +msgid "Policies" +msgstr "Irányelvek" + +#: src/Module/Admin/Site.php:585 +msgid "Auto Discovered Contact Directory" +msgstr "Automatikusan felfedezett partnerkönyvtár" + +#: src/Module/Admin/Site.php:586 +msgid "Performance" +msgstr "Teljesítmény" + +#: src/Module/Admin/Site.php:587 +msgid "Worker" +msgstr "Feldolgozó" + +#: src/Module/Admin/Site.php:588 +msgid "Message Relay" +msgstr "Üzenettovábbítás" + +#: src/Module/Admin/Site.php:589 +msgid "" +"Use the command \"console relay\" in the command line to add or remove " +"relays." +msgstr "Használja a „console relay” parancsot a parancssorban a továbbítók hozzáadásához vagy eltávolításához." + +#: src/Module/Admin/Site.php:590 +msgid "The system is not subscribed to any relays at the moment." +msgstr "A rendszer jelenleg nincs feliratkozva semmilyen továbbítóra sem." + +#: src/Module/Admin/Site.php:591 +msgid "The system is currently subscribed to the following relays:" +msgstr "A rendszer jelenleg a következő továbbítókra van feliratkozva:" + +#: src/Module/Admin/Site.php:593 +msgid "Relocate Instance" +msgstr "Példány áthelyezése" + +#: src/Module/Admin/Site.php:594 +msgid "" +"Warning! Advanced function. Could make this server " +"unreachable." +msgstr "Figyelmeztetés! Speciális funkció. Elérhetetlenné teheti a kiszolgálót." + +#: src/Module/Admin/Site.php:598 +msgid "Site name" +msgstr "Oldal neve" + +#: src/Module/Admin/Site.php:599 +msgid "Sender Email" +msgstr "Küldő e-mail-címe" + +#: src/Module/Admin/Site.php:599 +msgid "" +"The email address your server shall use to send notification emails from." +msgstr "Az az e-mail-cím, amelyet a kiszolgáló használhat az értesítési e-mailek kiküldéséhez." + +#: src/Module/Admin/Site.php:600 +msgid "Name of the system actor" +msgstr "A rendszer szereplőjének neve" + +#: src/Module/Admin/Site.php:600 +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 "A belső rendszerfiók neve, amely az ActivityPub kérések végrehajtásához lesz használva. Ennek egy nem használt felhasználónévnek kell lennie. Ha be van állítva, akkor ez nem változtatható meg újra." + +#: src/Module/Admin/Site.php:601 +msgid "Banner/Logo" +msgstr "Reklámcsík vagy logó" + +#: src/Module/Admin/Site.php:602 +msgid "Email Banner/Logo" +msgstr "E-mail reklámcsík vagy logó" + +#: src/Module/Admin/Site.php:603 +msgid "Shortcut icon" +msgstr "Böngészőikon" + +#: src/Module/Admin/Site.php:603 +msgid "Link to an icon that will be used for browsers." +msgstr "Hivatkozás egy ikonra, amely a böngészőknél lesz használva." + +#: src/Module/Admin/Site.php:604 +msgid "Touch icon" +msgstr "Érintő ikon" + +#: src/Module/Admin/Site.php:604 +msgid "Link to an icon that will be used for tablets and mobiles." +msgstr "Hivatkozás egy ikonra, amely táblagépeknél és mobiltelefonoknál lesz használva." + +#: src/Module/Admin/Site.php:605 +msgid "Additional Info" +msgstr "További információk" + +#: src/Module/Admin/Site.php:605 +#, php-format +msgid "" +"For public servers: you can add additional information here that will be " +"listed at %s/servers." +msgstr "Nyilvános kiszolgálóknál: itt adhat meg további információkat, amelyek a %s/servers oldalon lesznek felsorolva." + +#: src/Module/Admin/Site.php:606 +msgid "System language" +msgstr "Rendszer nyelve" + +#: src/Module/Admin/Site.php:607 +msgid "System theme" +msgstr "Rendszer témája" + +#: src/Module/Admin/Site.php:607 +msgid "" +"Default system theme - may be over-ridden by user profiles - Change default theme settings" +msgstr "Alapértelmezett rendszertéma – a felhasználói profilok felülbírálhatják – alapértelmezett témabeállítások megváltoztatása." + +#: src/Module/Admin/Site.php:608 +msgid "Mobile system theme" +msgstr "Mobilrendszer témája" + +#: src/Module/Admin/Site.php:608 +msgid "Theme for mobile devices" +msgstr "Téma a mobil eszközökhöz." + +#: src/Module/Admin/Site.php:609 src/Module/Install.php:225 +msgid "SSL link policy" +msgstr "SSL-hivatkozás irányelve" + +#: src/Module/Admin/Site.php:609 src/Module/Install.php:227 +msgid "Determines whether generated links should be forced to use SSL" +msgstr "Meghatározza, hogy az előállított hivatkozásokat kényszeríteni kell-e SSL használatára." + +#: src/Module/Admin/Site.php:610 +msgid "Force SSL" +msgstr "SSL kényszerítése" + +#: src/Module/Admin/Site.php:610 +msgid "" +"Force all Non-SSL requests to SSL - Attention: on some systems it could lead" +" to endless loops." +msgstr "Az összes nem SSL kérés SSL-re kényszerítése – Figyelem: néhány rendszeren végtelen hurkokat eredményezhet." + +#: src/Module/Admin/Site.php:611 +msgid "Hide help entry from navigation menu" +msgstr "Súgó bejegyzés elrejtése a navigációs menüből" + +#: src/Module/Admin/Site.php:611 +msgid "" +"Hides the menu entry for the Help pages from the navigation menu. You can " +"still access it calling /help directly." +msgstr "Elrejti a súgóoldalak menübejegyzését a navigációs menüből. Továbbra is elérheti a „/help” közvetlen meghívásával." + +#: src/Module/Admin/Site.php:612 +msgid "Single user instance" +msgstr "Egyfelhasználós példány" + +#: src/Module/Admin/Site.php:612 +msgid "Make this instance multi-user or single-user for the named user" +msgstr "Többfelhasználóssá vagy a megnevezett felhasználó számára egyfelhasználóssá teszi ezt a rendszert." + +#: src/Module/Admin/Site.php:614 +msgid "File storage backend" +msgstr "Fájltároló háttérprogram" + +#: src/Module/Admin/Site.php:614 +msgid "" +"The backend used to store uploaded data. If you change the storage backend, " +"you can manually move the existing files. If you do not do so, the files " +"uploaded before the change will still be available at the old backend. " +"Please see the settings documentation" +" for more information about the choices and the moving procedure." +msgstr "A feltöltött adatok tárolásához használt háttérprogram. Ha megváltoztatja a tároló háttérprogramot, akkor a meglévő fájlokat kézzel tudja áthelyezni. Ha nem tesz így, akkor a változtatás előtt feltöltött fájlok továbbra is elérhetőek lesznek a régi háttérprogramnál. A lehetőségekkel és az áthelyezési eljárással kapcsolatos további információkért nézze meg a beállítások dokumentációját." + +#: src/Module/Admin/Site.php:616 +msgid "Maximum image size" +msgstr "Legnagyobb képméret" + +#: src/Module/Admin/Site.php:616 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "A feltöltött képek legnagyobb mérete bájtban. Alapértelmezetten 0, ami azt jelenti, hogy nincs korlát." + +#: src/Module/Admin/Site.php:617 +msgid "Maximum image length" +msgstr "Legnagyobb képhossz" + +#: src/Module/Admin/Site.php:617 +msgid "" +"Maximum length in pixels of the longest side of uploaded images. Default is " +"-1, which means no limits." +msgstr "A feltöltött képek leghosszabb oldalának legnagyobb hossza képpontban. Alapértelmezetten -1, ami azt jelenti, hogy nincs korlát." + +#: src/Module/Admin/Site.php:618 +msgid "JPEG image quality" +msgstr "JPEG-képek minősége" + +#: src/Module/Admin/Site.php:618 +msgid "" +"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " +"100, which is full quality." +msgstr "A feltöltött JPEG-képek ezzel a minőségbeállítással lesznek elmentve [0-100]. Alapértelmezetten 100, ami teljes minőséget jelent." + +#: src/Module/Admin/Site.php:620 +msgid "Register policy" +msgstr "Regisztrációs irányelv" + +#: src/Module/Admin/Site.php:621 +msgid "Maximum Daily Registrations" +msgstr "Legtöbb napi regisztráció" + +#: src/Module/Admin/Site.php:621 +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 "Ha a regisztrációk megengedettek fent, akkor ez állítja be a naponta elfogadandó új felhasználói regisztrációk legnagyobb számát. Ha a regisztráció lezártra van állítva, akkor ennek a beállításnak nincs hatása." + +#: src/Module/Admin/Site.php:622 +msgid "Register text" +msgstr "Regisztrációs szöveg" + +#: src/Module/Admin/Site.php:622 +msgid "" +"Will be displayed prominently on the registration page. You can use BBCode " +"here." +msgstr "Szembetűnően lesz megjelenítve a regisztrációs oldalon. BBCode formázást is használhat itt." + +#: src/Module/Admin/Site.php:623 +msgid "Forbidden Nicknames" +msgstr "Tiltott becenevek" + +#: src/Module/Admin/Site.php:623 +msgid "" +"Comma separated list of nicknames that are forbidden from registration. " +"Preset is a list of role names according RFC 2142." +msgstr "A becenevek vesszővel elválasztott listája, amelyek tiltottak a regisztrációnál. Az előbeállítás az RFC 2142 szerinti szerepnevek listája." + +#: src/Module/Admin/Site.php:624 +msgid "Accounts abandoned after x days" +msgstr "Fiókok elhagyottak X nap után" + +#: src/Module/Admin/Site.php:624 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Nem fogja pazarolni a rendszer erőforrásait a külső oldalak lekérdezésével az elhagyott fiókoknál. Adjon meg 0 értéket, hogy ne legyen időkorlát." + +#: src/Module/Admin/Site.php:625 +msgid "Allowed friend domains" +msgstr "Engedélyezett ismerőstartományok" + +#: src/Module/Admin/Site.php:625 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Azon tartományok vesszővel elválasztott listája, amelyeknek engedélyezett ismeretséget létesíteni ezzel az oldallal. A helyettesítő karakterek is elfogadottak. Ha üresen marad, akkor bármely tartomány megengedett." + +#: src/Module/Admin/Site.php:626 +msgid "Allowed email domains" +msgstr "Engedélyezett e-mail-tartományok" + +#: src/Module/Admin/Site.php:626 +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 "Azon tartományok vesszővel elválasztott listája, amelyek engedélyezettek az e-mail-címekben az oldalra történő regisztrációkhoz. A helyettesítő karakterek is elfogadottak. Ha üresen marad, akkor bármely tartomány megengedett." + +#: src/Module/Admin/Site.php:627 +msgid "No OEmbed rich content" +msgstr "Nincs OEmbed gazdag tartalom" + +#: src/Module/Admin/Site.php:627 +msgid "" +"Don't show the rich content (e.g. embedded PDF), except from the domains " +"listed below." +msgstr "Ne jelenítse meg a gazdag tartalmat (például beágyazott PDF), kivéve az alább felsorolt tartományokról." + +#: src/Module/Admin/Site.php:628 +msgid "Trusted third-party domains" +msgstr "Megbízható harmadik fél tartományok" + +#: src/Module/Admin/Site.php:628 +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 "Tartományok vesszővel elválasztott listája, amelyekről engedélyezett a tartalom bejegyzésekben való beágyazása, mint például az OEmbed használatával. A felsorolt tartományok összes altartománya is engedélyezve van." + +#: src/Module/Admin/Site.php:629 +msgid "Block public" +msgstr "Nyilvános tiltása" + +#: src/Module/Admin/Site.php:629 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently logged in." +msgstr "Jelölje be az ezen az oldalon lévő összes, egyébként nyilvános személyes oldal nyilvános hozzáférésének tiltásához, hacsak jelenleg nincs bejelentkezve." + +#: src/Module/Admin/Site.php:630 +msgid "Force publish" +msgstr "Közzététel kényszerítése" + +#: src/Module/Admin/Site.php:630 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Jelölje be, hogy ezen az oldalon az összes profil kényszerítetten fel legyen sorolva az oldal könyvtárában." + +#: src/Module/Admin/Site.php:630 +msgid "Enabling this may violate privacy laws like the GDPR" +msgstr "Ennek engedélyezése megsértheti az adatvédelmi rendeleteket, mint például a GDPR-t." + +#: src/Module/Admin/Site.php:631 +msgid "Global directory URL" +msgstr "Globális könyvtár URL" + +#: src/Module/Admin/Site.php:631 +msgid "" +"URL to the global directory. If this is not set, the global directory is " +"completely unavailable to the application." +msgstr "Az URL a globális könyvtárhoz. Ha ez nincs beállítva, akkor a globális könyvtár teljesen elérhetetlen lesz az alkalmazásoknak." + +#: src/Module/Admin/Site.php:632 +msgid "Private posts by default for new users" +msgstr "Alapértelmezetten személyes bejegyzések az új felhasználóknál" + +#: src/Module/Admin/Site.php:632 +msgid "" +"Set default post permissions for all new members to the default privacy " +"group rather than public." +msgstr "Az összes új tag alapértelmezett bejegyzés-jogosultságainak beállítása az alapértelmezett adatvédelmi csoportra a nyilvános helyett." + +#: src/Module/Admin/Site.php:633 +msgid "Don't include post content in email notifications" +msgstr "Ne ágyazza be a bejegyzés tartalmát az e-mailes értesítésekbe" + +#: src/Module/Admin/Site.php:633 +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 "Adatvédelmi intézkedésként ne ágyazza be egy bejegyzés, hozzászólás, személyes üzenet stb. tartalmát azokba az e-mailes értesítésekbe, amelyek erről az oldalról kerülnek kiküldésre." + +#: src/Module/Admin/Site.php:634 +msgid "Disallow public access to addons listed in the apps menu." +msgstr "Nyilvános hozzáférés letiltása az alkalmazások menüben felsorolt bővítményekhez" + +#: src/Module/Admin/Site.php:634 +msgid "" +"Checking this box will restrict addons listed in the apps menu to members " +"only." +msgstr "A jelölőnégyzet bejelölésével csak a tagok számára fogja korlátozni az alkalmazások menüben felsorolt bővítményeket." + +#: src/Module/Admin/Site.php:635 +msgid "Don't embed private images in posts" +msgstr "Ne ágyazzon be személyes képeket a bejegyzésekbe" + +#: src/Module/Admin/Site.php:635 +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 " +"photos will have to authenticate and load each image, which may take a " +"while." +msgstr "Ne cserélje ki a bejegyzésekben lévő helyileg kiszolgált személyes fényképeket a kép beágyazott másolatával. Ez azt jelenti, hogy a személyes fényképeket tartalmazó bejegyzéseket fogadó partnereknek hitelesíteniük kell magukat és be kell tölteniük minden egyes képet, ami eltarthat egy ideig." + +#: src/Module/Admin/Site.php:636 +msgid "Explicit Content" +msgstr "Felnőtteknek szánt tartalom" + +#: src/Module/Admin/Site.php:636 +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 " +"node information and might be used, e.g. by the global directory, to filter " +"your node from listings of nodes to join. Additionally a note about this " +"will be shown at the user registration page." +msgstr "Állítsa be ezt annak közléséhez, hogy a csomópontját főként felnőtteknek szóló tartalomhoz használják, ami lehet, hogy nem alkalmas kiskorúak számára. Ez az információ közzé lesz téve a csomópont információiban, és használhatja például a globális könyvtár is, hogy kiszűrje a csomópontját a csatlakozáshoz felajánlott csomópontok listájából. Ezenkívül egy megjegyzés is meg lesz jelenítve ezzel kapcsolatban a felhasználó regisztrációs oldalán." + +#: src/Module/Admin/Site.php:637 +msgid "Allow Users to set remote_self" +msgstr "Távoli önmaguk beállításának engedélyezése a felhasználóknak" + +#: src/Module/Admin/Site.php:637 +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 "Ennek bejelölésével minden egyes felhasználó számára engedélyezett, hogy az egyes partnereket távoli önmagukként jelöljék meg a partner javítása párbeszédablakban. Ezen jelző beállítása egy partnernél a tartalom minden egyes beküldésének tükrözését okozza a felhasználók adatfolyamában." + +#: src/Module/Admin/Site.php:638 +msgid "Block multiple registrations" +msgstr "Többszörös regisztrációk tiltása" + +#: src/Module/Admin/Site.php:638 +msgid "Disallow users to register additional accounts for use as pages." +msgstr "Nem teszi lehetővé a felhasználóknak, hogy további fiókokat regisztráljanak oldalakként történő használathoz." + +#: src/Module/Admin/Site.php:639 +msgid "Disable OpenID" +msgstr "OpenID letiltása" + +#: src/Module/Admin/Site.php:639 +msgid "Disable OpenID support for registration and logins." +msgstr "Az OpenID támogatás letiltása a regisztrációnál és a bejelentkezéseknél." + +#: src/Module/Admin/Site.php:640 +msgid "No Fullname check" +msgstr "Nincs teljes név ellenőrzés" + +#: src/Module/Admin/Site.php:640 +msgid "" +"Allow users to register without a space between the first name and the last " +"name in their full name." +msgstr "Lehetővé teszi a felhasználóknak, hogy a teljes nevükben lévő vezetéknév és a keresztnév közti szóköz nélkül regisztráljanak." + +#: src/Module/Admin/Site.php:641 +msgid "Community pages for visitors" +msgstr "Közösségi oldalak a látogatók számára" + +#: src/Module/Admin/Site.php:641 +msgid "" +"Which community pages should be available for visitors. Local users always " +"see both pages." +msgstr "Mely közösségi oldalaknak kell elérhetőnek lenniük a látogatók számára. A helyi felhasználók mindig mindkét oldalt látják." + +#: src/Module/Admin/Site.php:642 +msgid "Posts per user on community page" +msgstr "Felhasználónkénti bejegyzések a közösségi oldalon" + +#: src/Module/Admin/Site.php:642 +msgid "" +"The maximum number of posts per user on the community page. (Not valid for " +"\"Global Community\")" +msgstr "A felhasználónkénti bejegyzések legnagyobb száma a közösségi oldalon (nem érvényes a „globális közösségnél”)." + +#: src/Module/Admin/Site.php:643 +msgid "Disable OStatus support" +msgstr "OStatus támogatás letiltása" + +#: src/Module/Admin/Site.php:643 +msgid "" +"Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " +"communications in OStatus are public, so privacy warnings will be " +"occasionally displayed." +msgstr "A beépített OStatus (StatusNet, GNU Social stb.) kompatibilitás letiltása. Az OStatus hálózaton lévő összes kommunikáció nyilvános, ezért adatvédelmi figyelmeztetések lesznek időnként megjelenítve." + +#: src/Module/Admin/Site.php:644 +msgid "OStatus support can only be enabled if threading is enabled." +msgstr "Az OStatus támogatást csak akkor lehet engedélyezni, ha a szálkezelés engedélyezve van." + +#: src/Module/Admin/Site.php:646 +msgid "" +"Diaspora support can't be enabled because Friendica was installed into a sub" +" directory." +msgstr "A Diaspora támogatást nem lehet engedélyezni, mert a Friendica egy alkönyvtárba lett telepítve." + +#: src/Module/Admin/Site.php:647 +msgid "Enable Diaspora support" +msgstr "Diaspora támogatás engedélyezése" + +#: src/Module/Admin/Site.php:647 +msgid "Provide built-in Diaspora network compatibility." +msgstr "Beépített Diaspora hálózati kompatibilitás biztosítása." + +#: src/Module/Admin/Site.php:648 +msgid "Only allow Friendica contacts" +msgstr "Csak Friendica partnerek engedélyezése" + +#: src/Module/Admin/Site.php:648 +msgid "" +"All contacts must use Friendica protocols. All other built-in communication " +"protocols disabled." +msgstr "Az összes partnernek Friendica protokollokat kell használnia. Az összes egyéb beépített kommunikációs protokoll le lesz tiltva." + +#: src/Module/Admin/Site.php:649 +msgid "Verify SSL" +msgstr "SSL ellenőrzése" + +#: src/Module/Admin/Site.php:649 +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 "Ha szeretné, bekapcsolhatja a szigorú tanúsítvány-ellenőrzést. Ezt azt jelenti, hogy nem tud kapcsolódni (egyáltalán) az önaláírt SSL-t használó oldalakhoz." + +#: src/Module/Admin/Site.php:650 +msgid "Proxy user" +msgstr "Proxy felhasználó" + +#: src/Module/Admin/Site.php:651 +msgid "Proxy URL" +msgstr "Proxy URL" + +#: src/Module/Admin/Site.php:652 +msgid "Network timeout" +msgstr "Hálózati időkorlát" + +#: src/Module/Admin/Site.php:652 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Az érték másodpercben van. Állítsa 0-ra a korlátlan időhöz (nem ajánlott)." + +#: src/Module/Admin/Site.php:653 +msgid "Maximum Load Average" +msgstr "Legnagyobb terhelésátlag" + +#: src/Module/Admin/Site.php:653 +#, php-format +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default %d." +msgstr "A legnagyobb rendszerterhelés, mielőtt a kézbesítési és lekérdezési folyamatok elhalasztásra kerülnek. Alapértelmezetten %d." + +#: src/Module/Admin/Site.php:654 +msgid "Maximum Load Average (Frontend)" +msgstr "Legnagyobb terhelésátlag (előtétprogram)" + +#: src/Module/Admin/Site.php:654 +msgid "Maximum system load before the frontend quits service - default 50." +msgstr "A legnagyobb rendszerterhelés, mielőtt az előtétprogram kilép a szolgáltatásból. Alapértelmezetten 50." + +#: src/Module/Admin/Site.php:655 +msgid "Minimal Memory" +msgstr "Legkevesebb memória" + +#: src/Module/Admin/Site.php:655 +msgid "" +"Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " +"default 0 (deactivated)." +msgstr "A legkevesebb szabad memória MB-ban a feldolgozónál. Hozzáférést igényel a /proc/meminfo fájlhoz. Alapértelmezetten 0 (kikapcsolva)." + +#: src/Module/Admin/Site.php:656 +msgid "Periodically optimize tables" +msgstr "Táblák időszakos optimalizálása" + +#: src/Module/Admin/Site.php:656 +msgid "Periodically optimize tables like the cache and the workerqueue" +msgstr "A táblák időszakos optimalizálása, mint például a gyorsítótár és a feldolgozó várakozási sorának táblái." + +#: src/Module/Admin/Site.php:658 +msgid "Discover followers/followings from contacts" +msgstr "Követők vagy követések felfedezése a partnerekből" + +#: src/Module/Admin/Site.php:658 +msgid "" +"If enabled, contacts are checked for their followers and following contacts." +msgstr "Ha engedélyezve van, akkor a partnerek ellenőrizve lesznek a követő és követett partnereik számára." + +#: src/Module/Admin/Site.php:659 +msgid "None - deactivated" +msgstr "Nincs: ki van kapcsolva." + +#: src/Module/Admin/Site.php:660 +msgid "" +"Local contacts - contacts of our local contacts are discovered for their " +"followers/followings." +msgstr "Helyi partnerek: a helyi partnereink partnerei lesznek felfedezve a követőik vagy követésiek számára." + +#: src/Module/Admin/Site.php:661 +msgid "" +"Interactors - contacts of our local contacts and contacts who interacted on " +"locally visible postings are discovered for their followers/followings." +msgstr "Interaktorok: a helyi partnereink partnerei és a helyileg látható beküldésekkel kapcsolatba került partnerek lesznek felfedezve a követőik vagy követésiek számára." + +#: src/Module/Admin/Site.php:663 +msgid "Synchronize the contacts with the directory server" +msgstr "A partnerek szinkronizálása a könyvtárkiszolgálóval" + +#: src/Module/Admin/Site.php:663 +msgid "" +"if enabled, the system will check periodically for new contacts on the " +"defined directory server." +msgstr "Ha engedélyezve van, akkor a rendszer időszakosan ellenőrizni fogja az új partnereket a meghatározott könyvtárkiszolgálón." + +#: src/Module/Admin/Site.php:665 +msgid "Days between requery" +msgstr "Ismételt lekérdezések közti napok" + +#: src/Module/Admin/Site.php:665 +msgid "Number of days after which a server is requeried for his contacts." +msgstr "A napok száma, amely után egy kiszolgáló ismét lekérdezésre kerül a partnereiért." + +#: src/Module/Admin/Site.php:666 +msgid "Discover contacts from other servers" +msgstr "Partnerek felfedezése más kiszolgálókról" + +#: src/Module/Admin/Site.php:666 +msgid "" +"Periodically query other servers for contacts. The system queries Friendica," +" Mastodon and Hubzilla servers." +msgstr "Más kiszolgálók időszakos lekérdezése partnerek után. A rendszer Friendica, Mastodon és Hubzilla kiszolgálókat kérdez le." + +#: src/Module/Admin/Site.php:667 +msgid "Search the local directory" +msgstr "A helyi könyvtár keresése" + +#: src/Module/Admin/Site.php:667 +msgid "" +"Search the local directory instead of the global directory. When searching " +"locally, every search will be executed on the global directory in the " +"background. This improves the search results when the search is repeated." +msgstr "A helyi könyvtár keresése a globális könyvtár helyett. Helyi kereséskor minden egyes keresés a globális könyvtárban lesz végrehajtva a háttérben. Ez javítja a keresési eredményeket, ha a keresést megismétlik." + +#: src/Module/Admin/Site.php:669 +msgid "Publish server information" +msgstr "Kiszolgálóinformációk közzététele" + +#: src/Module/Admin/Site.php:669 +msgid "" +"If enabled, general server and usage data will be published. The data " +"contains the name and version of the server, number of users with public " +"profiles, number of posts and the activated protocols and connectors. See the-federation.info for details." +msgstr "Ha engedélyezve van, akkor az általános kiszolgáló és használati adatok közzé lesznek téve. Az adatok tartalmazzák a kiszolgáló nevét és verzióját, a nyilvános profillal rendelkező felhasználók számát, a bejegyzések számát, valamint a engedélyezett protokollokat és összekötőket. A részletekért nézze meg a the-federation.info weboldalt." + +#: src/Module/Admin/Site.php:671 +msgid "Check upstream version" +msgstr "Távoli verzió ellenőrzése" + +#: src/Module/Admin/Site.php:671 +msgid "" +"Enables checking for new Friendica versions at github. If there is a new " +"version, you will be informed in the admin panel overview." +msgstr "Engedélyezi az új Friendica verziójának keresését a GitHubon. Ha új verzió érhető el, akkor tájékoztatva lesz az adminisztrátori panel áttekintőjében." + +#: src/Module/Admin/Site.php:672 +msgid "Suppress Tags" +msgstr "Címkék letiltása" + +#: src/Module/Admin/Site.php:672 +msgid "Suppress showing a list of hashtags at the end of the posting." +msgstr "A kettős keresztes címkék listája megjelenítésének letiltása a beküldések végénél." + +#: src/Module/Admin/Site.php:673 +msgid "Clean database" +msgstr "Adatbázis tisztítása" + +#: src/Module/Admin/Site.php:673 +msgid "" +"Remove old remote items, orphaned database records and old content from some" +" other helper tables." +msgstr "Régi távoli elemek, árva adatbázisrekordok és néhány egyéb segédtáblából származó régi tartalom eltávolítása." + +#: src/Module/Admin/Site.php:674 +msgid "Lifespan of remote items" +msgstr "Távoli elemek élettartama" + +#: src/Module/Admin/Site.php:674 +msgid "" +"When the database cleanup is enabled, this defines the days after which " +"remote items will be deleted. Own items, and marked or filed items are " +"always kept. 0 disables this behaviour." +msgstr "Ha az adatbázis-tisztítás engedélyezve van, akkor ez határozza meg azon napok számát, amely után a távoli elemek törölve lesznek. A saját elemek, valamint a megjelölt és iktatott elemek mindig meg lesznek tartva. A 0 érték letiltja ezt a viselkedést." + +#: src/Module/Admin/Site.php:675 +msgid "Lifespan of unclaimed items" +msgstr "Nem igényelt elemek élettartama" + +#: src/Module/Admin/Site.php:675 +msgid "" +"When the database cleanup is enabled, this defines the days after which " +"unclaimed remote items (mostly content from the relay) will be deleted. " +"Default value is 90 days. Defaults to the general lifespan value of remote " +"items if set to 0." +msgstr "Ha az adatbázis-tisztítás engedélyezve van, akkor ez határozza meg azon napok számát, amely után a nem igényelt távoli elemek (főleg a továbbításból származó tartalmak) törölve lesznek. Az alapértelmezett érték 90 nap. A távoli elemek általános élettartamértékének alapértelmezettje lesz, ha 0 értékre van állítva." + +#: src/Module/Admin/Site.php:676 +msgid "Lifespan of raw conversation data" +msgstr "Nyers beszélgetési adatok élettartama" + +#: src/Module/Admin/Site.php:676 +msgid "" +"The conversation data is used for ActivityPub and OStatus, as well as for " +"debug purposes. It should be safe to remove it after 14 days, default is 90 " +"days." +msgstr "A beszélgetési adatok az ActivityPub és az OStatus hálózatoknál, valamint hibakeresési célokhoz vannak használva. Biztonságosan el lehet távolítani azokat 14 nap után. Alapértelmezetten 90 nap." + +#: src/Module/Admin/Site.php:677 +msgid "Path to item cache" +msgstr "Elemgyorsítótár útvonala" + +#: src/Module/Admin/Site.php:677 +msgid "The item caches buffers generated bbcode and external images." +msgstr "Az elemgyorsítótárak pufferelik az előállított BBCode-ot és a külső képeket." + +#: src/Module/Admin/Site.php:678 +msgid "Cache duration in seconds" +msgstr "Gyorsítótár-időtartam másodpercben" + +#: src/Module/Admin/Site.php:678 +msgid "" +"How long should the cache files be hold? Default value is 86400 seconds (One" +" day). To disable the item cache, set the value to -1." +msgstr "Mennyi ideig kell a gyorsítótár fájljait megtartani? Az alapértelmezett érték 86400 másodperc (egy nap). Az elemgyorsítótár letiltásához állítson be -1 értéket." + +#: src/Module/Admin/Site.php:679 +msgid "Maximum numbers of comments per post" +msgstr "Bejegyzésenkénti hozzászólások legnagyobb száma" + +#: src/Module/Admin/Site.php:679 +msgid "How much comments should be shown for each post? Default value is 100." +msgstr "Mennyi hozzászólást kell megjeleníteni az egyes bejegyzéseknél? Az alapértelmezett érték 100." + +#: src/Module/Admin/Site.php:680 +msgid "Maximum numbers of comments per post on the display page" +msgstr "Bejegyzésenkénti hozzászólások legnagyobb száma a megjelenítési oldalon" + +#: src/Module/Admin/Site.php:680 +msgid "" +"How many comments should be shown on the single view for each post? Default " +"value is 1000." +msgstr "Mennyi hozzászólást kell megjeleníteni egy önálló nézeten az egyes bejegyzéseknél? Az alapértelmezett érték 1000." + +#: src/Module/Admin/Site.php:681 +msgid "Temp path" +msgstr "Ideiglenes mappa útvonala" + +#: src/Module/Admin/Site.php:681 +msgid "" +"If you have a restricted system where the webserver can't access the system " +"temp path, enter another path here." +msgstr "Ha korlátozott rendszere van, ahol a webkiszolgáló nem tudja elérni a rendszer ideiglenes mappájának útvonalát, akkor adjon meg egy másik útvonalat itt." + +#: src/Module/Admin/Site.php:682 +msgid "Disable picture proxy" +msgstr "Képproxy letiltása" + +#: src/Module/Admin/Site.php:682 +msgid "" +"The picture proxy increases performance and privacy. It shouldn't be used on" +" systems with very low bandwidth." +msgstr "A képproxy növeli a teljesítményt és az adatvédelmet. Nem szabad használni nagyon alacsony sávszélességgel rendelkező rendszereknél." + +#: src/Module/Admin/Site.php:683 +msgid "Only search in tags" +msgstr "Keresés csak címkékben" + +#: src/Module/Admin/Site.php:683 +msgid "On large systems the text search can slow down the system extremely." +msgstr "Nagy rendszereknél a szöveges keresés rendkívüli módon lelassíthatja a rendszert." + +#: src/Module/Admin/Site.php:685 +msgid "New base url" +msgstr "Új alap URL" + +#: src/Module/Admin/Site.php:685 +msgid "" +"Change base url for this server. Sends relocate message to all Friendica and" +" Diaspora* contacts of all users." +msgstr "A kiszolgáló alap URL-ének megváltoztatása. Áthelyezési üzenetet küld az összes felhasználó minden Friendica és Diaspora* partnerének." + +#: src/Module/Admin/Site.php:687 +msgid "RINO Encryption" +msgstr "RINO titkosítás" + +#: src/Module/Admin/Site.php:687 +msgid "Encryption layer between nodes." +msgstr "Titkosítási réteg a csomópontok között." + +#: src/Module/Admin/Site.php:687 src/Module/Admin/Site.php:693 +#: src/Module/Contact.php:562 src/Module/Settings/TwoFactor/Index.php:118 +msgid "Disabled" +msgstr "Letiltva" + +#: src/Module/Admin/Site.php:687 +msgid "Enabled" +msgstr "Engedélyezve" + +#: src/Module/Admin/Site.php:689 +msgid "Maximum number of parallel workers" +msgstr "Párhuzamos feldolgozók legnagyobb száma" + +#: src/Module/Admin/Site.php:689 +#, php-format +msgid "" +"On shared hosters set this to %d. On larger systems, values of %d are great." +" Default value is %d." +msgstr "Osztott tárhelyszolgáltatóknál állítsa ezt %d értékre. Nagyobb rendszereknél érdemes a számot %d értékre állítani. Az alapértelmezett érték %d." + +#: src/Module/Admin/Site.php:690 +msgid "Enable fastlane" +msgstr "Prioritásos sor engedélyezése" + +#: src/Module/Admin/Site.php:690 +msgid "" +"When enabed, the fastlane mechanism starts an additional worker if processes" +" with higher priority are blocked by processes of lower priority." +msgstr "Ha engedélyezve van, akkor a prioritásos sor mechanizmus további feldolgozót indít, ha a magasabb prioritással rendelkező folyamatokat blokkolják az alacsonyabb prioritású folyamatok." + +#: src/Module/Admin/Site.php:692 +msgid "Direct relay transfer" +msgstr "Közvetlen továbbító-átvitel" + +#: src/Module/Admin/Site.php:692 +msgid "" +"Enables the direct transfer to other servers without using the relay servers" +msgstr "Engedélyezi a más kiszolgálókra való közvetlen átvitelt a továbbító kiszolgálók használata nélkül." + +#: src/Module/Admin/Site.php:693 +msgid "Relay scope" +msgstr "Továbbítás hatóköre" + +#: src/Module/Admin/Site.php:693 +msgid "" +"Can be \"all\" or \"tags\". \"all\" means that every public post should be " +"received. \"tags\" means that only posts with selected tags should be " +"received." +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:693 +msgid "all" +msgstr "összes" + +#: src/Module/Admin/Site.php:693 +msgid "tags" +msgstr "címkék" + +#: src/Module/Admin/Site.php:694 +msgid "Server tags" +msgstr "Kiszolgálócímkék" + +#: src/Module/Admin/Site.php:694 +msgid "Comma separated list of tags for the \"tags\" subscription." +msgstr "Címkék vesszővel elválasztott listája a „címkék” feliratkozáshoz." + +#: src/Module/Admin/Site.php:695 +msgid "Deny Server tags" +msgstr "Kiszolgálócímkék megtagadása" + +#: src/Module/Admin/Site.php:695 +msgid "Comma separated list of tags that are rejected." +msgstr "Címkék vesszővel elválasztott listája, amelyek vissza lesznek utasítva." + +#: src/Module/Admin/Site.php:696 +msgid "Allow user tags" +msgstr "Felhasználói címkék engedélyezése" + +#: src/Module/Admin/Site.php:696 +msgid "" +"If enabled, the tags from the saved searches will used for the \"tags\" " +"subscription in addition to the \"relay_server_tags\"." +msgstr "Ha engedélyezve van, akkor a mentett keresésekből származó címkék lesznek használva a „címkék” feliratkozásnál a „relay_server_tags” címkéken kívül." + +#: src/Module/Admin/Site.php:699 +msgid "Start Relocation" +msgstr "Áthelyezés indítása" + +#: src/Module/Admin/Summary.php:53 +#, php-format +msgid "Template engine (%s) error: %s" +msgstr "Sablonmotor (%s) hiba: %s" + +#: src/Module/Admin/Summary.php:57 +#, php-format +msgid "" +"Your DB still runs with MyISAM tables. You should change the engine type to " +"InnoDB. As Friendica will use InnoDB only features in the future, you should" +" change this! See here for a guide that may be helpful " +"converting the table engines. You may also use the command php " +"bin/console.php dbstructure toinnodb of your Friendica installation for" +" an automatic conversion.
" +msgstr "Az adatbázisa még mindig MyISAM táblákkal fut. Meg kell változtatnia a motor típusát InnoDB-re. Mivel a Friendica a jövőben olyan funkciókat fog használni, amely csak InnoDB használatával érhető el, ezért meg kell változtatnia! Nézze meg ezt az útmutatót, amely hasznos lehet a táblamotorok átalakításához. Használhatja a Friendica telepítésének php bin/console.php dbstructure toinnodb parancsát is az automatikus átalakításhoz.
" + +#: src/Module/Admin/Summary.php:62 +#, php-format +msgid "" +"Your DB still runs with InnoDB tables in the Antelope file format. You " +"should change the file format to Barracuda. Friendica is using features that" +" are not provided by the Antelope format. See here for a " +"guide that may be helpful converting the table engines. You may also use the" +" command php bin/console.php dbstructure toinnodb of your Friendica" +" installation for an automatic conversion.
" +msgstr "Az adatbázisa még mindig Antelope fájlformátumban lévő InnoDB táblákkal fut. Meg kell változtatnia a fájlformátumot Barracudára. A Friendica olyan funkciókat használ, amelyeket az Antelope fájlformátum nem biztosít. Nézze meg ezt az útmutatót, amely hasznos lehet a táblamotorok átalakításához. Használhatja a Friendica telepítésének php bin/console.php dbstructure toinnodb parancsát is az automatikus átalakításhoz.
" + +#: src/Module/Admin/Summary.php:72 +#, php-format +msgid "" +"Your table_definition_cache is too low (%d). This can lead to the database " +"error \"Prepared statement needs to be re-prepared\". Please set it at least" +" to %d. See here for more information.
" +msgstr "A table_definition_cache értéke túl alacsony (%d). Ez a „Prepared statement needs to be re-prepared” adatbázishibához vezethet. Állítsa legalább %d értékre. További információkért nézze meg ezt.
" + +#: src/Module/Admin/Summary.php:82 +#, php-format +msgid "" +"There is a new version of Friendica available for download. Your current " +"version is %1$s, upstream version is %2$s" +msgstr "Elérhető a Friendica új verziója a letöltéshez. A jelenlegi verziója %1$s, a távoli verzió %2$s." + +#: src/Module/Admin/Summary.php:91 +msgid "" +"The database update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear." +msgstr "Az adatbázis frissítése sikertelen. Futtassa a „php bin/console.php dbstructure update” parancsot a parancssorból, és nézze meg a hibákat, amelyek esetleg megjelennek." + +#: src/Module/Admin/Summary.php:95 +msgid "" +"The last update failed. Please run \"php bin/console.php dbstructure " +"update\" from the command line and have a look at the errors that might " +"appear. (Some of the errors are possibly inside the logfile.)" +msgstr "A legutóbbi frissítés sikertelen. Futtassa a „php bin/console.php dbstructure update” parancsot a parancssorból, és nézze meg a hibákat, amelyek esetleg megjelennek (néhány hiba valószínűleg a naplófájlban lesz)." + +#: src/Module/Admin/Summary.php:100 +msgid "The worker was never executed. Please check your database structure!" +msgstr "A feldolgozó sosem lett végrehajtva. Ellenőrizze az adatbázis szerkezetét!" + +#: src/Module/Admin/Summary.php:102 +#, php-format +msgid "" +"The last worker execution was on %s UTC. This is older than one hour. Please" +" check your crontab settings." +msgstr "Az utolsó feldolgozó-végrehajtás ideje %s volt (UTC szerint). Ez régebbi mint egy óra. Ellenőrizze a cron-feladat beállításait." + +#: src/Module/Admin/Summary.php:107 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +".htconfig.php. See the Config help page for " +"help with the transition." +msgstr "A Friendica beállításai most a „config/local.config.php” fájlban vannak eltárolva. Másolja le a „config/local-sample.config.php” fájlt, és helyezze át a beállításokat a .htconfig.php fájlból. Az átvitelhez való segítségért nézze meg a beállítások súgóoldalát." + +#: src/Module/Admin/Summary.php:111 +#, php-format +msgid "" +"Friendica's configuration now is stored in config/local.config.php, please " +"copy config/local-sample.config.php and move your config from " +"config/local.ini.php. See the Config help " +"page for help with the transition." +msgstr "A Friendica beállításai most a „config/local.config.php” fájlban vannak eltárolva. Másolja le a „config/local-sample.config.php” fájlt, és helyezze át a beállításokat a config/local.ini.php fájlból. Az átvitelhez való segítségért nézze meg a beállítások súgóoldalát." + +#: src/Module/Admin/Summary.php:117 +#, php-format +msgid "" +"%s is not reachable on your system. This is a severe " +"configuration issue that prevents server to server communication. See the installation page for help." +msgstr "A %s nem érhető el a rendszeréről. Ez súlyos beállítási probléma, amely megakadályozza a kiszolgálók közti kommunikációt. Nézze meg a telepítési oldalt a segítségért." + +#: src/Module/Admin/Summary.php:135 +#, php-format +msgid "The logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "A(z) „%s” naplófájl nem használható. Nem lehetséges a naplózás (hiba: „%s”)." + +#: src/Module/Admin/Summary.php:149 +#, php-format +msgid "" +"The debug logfile '%s' is not usable. No logging possible (error: '%s')" +msgstr "A(z) „%s” hibakeresési naplófájl nem használható. Nem lehetséges a naplózás (hiba: „%s”)." + +#: src/Module/Admin/Summary.php:165 +#, php-format +msgid "" +"Friendica's system.basepath was updated from '%s' to '%s'. Please remove the" +" system.basepath from your db to avoid differences." +msgstr "A Friendica „system.basepath” beállítása frissítve lett „%s” értékről „%s” értékre. Távolítsa el a „system.basepath” beállítást az adatbázisából az eltérések elkerüléséhez." + +#: src/Module/Admin/Summary.php:173 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is wrong and the config file '%s' " +"isn't used." +msgstr "A Friendica jelenlegi „system.basepath” értéke („%s”) hibás, és a(z) „%s” beállítófájl nincs használva." + +#: src/Module/Admin/Summary.php:181 +#, php-format +msgid "" +"Friendica's current system.basepath '%s' is not equal to the config file " +"'%s'. Please fix your configuration." +msgstr "A Friendica jelenlegi „system.basepath” értéke („%s”) nem azonos a(z) „%s” beállítófájlban lévővel. Javítsa a beállításokat." + +#: src/Module/Admin/Summary.php:188 +msgid "Normal Account" +msgstr "Normál fiók" + +#: src/Module/Admin/Summary.php:189 +msgid "Automatic Follower Account" +msgstr "Automatikusan követő fiók" + +#: src/Module/Admin/Summary.php:190 +msgid "Public Forum Account" +msgstr "Nyilvános fórum fiók" + +#: src/Module/Admin/Summary.php:191 +msgid "Automatic Friend Account" +msgstr "Automatikus ismerős fiók" + +#: src/Module/Admin/Summary.php:192 +msgid "Blog Account" +msgstr "Blog fiók" + +#: src/Module/Admin/Summary.php:193 +msgid "Private Forum Account" +msgstr "Személyes fórumfiók" + +#: src/Module/Admin/Summary.php:213 +msgid "Message queues" +msgstr "Üzenet várakozási sorai" + +#: src/Module/Admin/Summary.php:219 +msgid "Server Settings" +msgstr "Kiszolgálóbeállítások" + +#: src/Module/Admin/Summary.php:233 src/Repository/ProfileField.php:285 +msgid "Summary" +msgstr "Összefoglaló" + +#: src/Module/Admin/Summary.php:235 +msgid "Registered users" +msgstr "Regisztrált felhasználók" + +#: src/Module/Admin/Summary.php:237 +msgid "Pending registrations" +msgstr "Függőben lévő regisztrációk" + +#: src/Module/Admin/Summary.php:238 +msgid "Version" +msgstr "Verzió" + +#: src/Module/Admin/Summary.php:242 +msgid "Active addons" +msgstr "Bekapcsolt bővítmények" + +#: src/Module/Admin/Themes/Details.php:57 src/Module/Admin/Themes/Index.php:65 +#, php-format +msgid "Theme %s disabled." +msgstr "A(z) „%s” téma letiltva." + +#: src/Module/Admin/Themes/Details.php:59 src/Module/Admin/Themes/Index.php:67 +#, php-format +msgid "Theme %s successfully enabled." +msgstr "A(z) „%s” téma sikeresen engedélyezve." + +#: src/Module/Admin/Themes/Details.php:61 src/Module/Admin/Themes/Index.php:69 +#, php-format +msgid "Theme %s failed to install." +msgstr "A(z) „%s” téma telepítése sikertelen." + +#: src/Module/Admin/Themes/Details.php:83 +msgid "Screenshot" +msgstr "Képernyőkép" + +#: src/Module/Admin/Themes/Details.php:91 +#: src/Module/Admin/Themes/Index.php:112 src/Module/BaseAdmin.php:93 +msgid "Themes" +msgstr "Témák" + +#: src/Module/Admin/Themes/Embed.php:65 +msgid "Unknown theme." +msgstr "Ismeretlen téma." + +#: src/Module/Admin/Themes/Index.php:51 +msgid "Themes reloaded" +msgstr "Témák újratöltve" + +#: src/Module/Admin/Themes/Index.php:114 +msgid "Reload active themes" +msgstr "Bekapcsolt témák újratöltése" + +#: src/Module/Admin/Themes/Index.php:119 +#, php-format +msgid "No themes found on the system. They should be placed in %1$s" +msgstr "Nem találhatók témák a rendszeren. A témákat a %1$s könyvtárba kell elhelyezni." + +#: src/Module/Admin/Themes/Index.php:120 +msgid "[Experimental]" +msgstr "[Kísérleti]" + +#: src/Module/Admin/Themes/Index.php:121 +msgid "[Unsupported]" +msgstr "[Nem támogatott]" + +#: src/Module/Admin/Tos.php:60 +msgid "Display Terms of Service" +msgstr "Használati feltételek megjelenítése" + +#: src/Module/Admin/Tos.php:60 +msgid "" +"Enable the Terms of Service page. If this is enabled a link to the terms " +"will be added to the registration form and the general information page." +msgstr "A használati feltételek oldal engedélyezése. Ha ez engedélyezve van, akkor a használati feltételekre mutató hivatkozás hozzá lesz adva a regisztrációs űrlaphoz és az általános információk oldalához." + +#: src/Module/Admin/Tos.php:61 +msgid "Display Privacy Statement" +msgstr "Adatvédelmi nyilatkozatok megjelenítése" + +#: src/Module/Admin/Tos.php:61 +#, php-format +msgid "" +"Show some informations regarding the needed information to operate the node " +"according e.g. to EU-GDPR." +msgstr "Néhány információ megjelenítése a csomópont üzemeltetésére vonatkozó szükséges információkról, például az EU-GDPR szerint." + +#: src/Module/Admin/Tos.php:62 +msgid "Privacy Statement Preview" +msgstr "Adatvédelmi nyilatkozat előnézete" + +#: src/Module/Admin/Tos.php:64 +msgid "The Terms of Service" +msgstr "A használati feltételek" + +#: src/Module/Admin/Tos.php:64 +msgid "" +"Enter the Terms of Service for your node here. You can use BBCode. Headers " +"of sections should be [h2] and below." +msgstr "Itt adja meg a csomópontja használati feltételeit. Használhat BBCode formázást is. A szakaszok címeinek [h2] vagy az alattiaknak kell lenniük." + +#: src/Module/Admin/Users/Active.php:45 src/Module/Admin/Users/Index.php:45 +#, php-format +msgid "%s user blocked" +msgid_plural "%s users blocked" +msgstr[0] "%s felhasználó tiltva" +msgstr[1] "%s felhasználó tiltva" + +#: src/Module/Admin/Users/Active.php:53 src/Module/Admin/Users/Active.php:88 +#: src/Module/Admin/Users/Blocked.php:54 src/Module/Admin/Users/Blocked.php:89 +#: src/Module/Admin/Users/Index.php:60 src/Module/Admin/Users/Index.php:95 +msgid "You can't remove yourself" +msgstr "Nem távolíthatja el önmagát" + +#: src/Module/Admin/Users/Active.php:57 src/Module/Admin/Users/Blocked.php:58 +#: src/Module/Admin/Users/Index.php:64 +#, php-format +msgid "%s user deleted" +msgid_plural "%s users deleted" +msgstr[0] "%s felhasználó törölve" +msgstr[1] "%s felhasználó törölve" + +#: src/Module/Admin/Users/Active.php:86 src/Module/Admin/Users/Blocked.php:87 +#: src/Module/Admin/Users/Index.php:93 +#, php-format +msgid "User \"%s\" deleted" +msgstr "„%s” felhasználó törölve" + +#: src/Module/Admin/Users/Active.php:96 src/Module/Admin/Users/Index.php:103 +#, php-format +msgid "User \"%s\" blocked" +msgstr "„%s” felhasználó tiltva" + +#: src/Module/Admin/Users/Active.php:129 +#: src/Module/Admin/Users/Blocked.php:130 +#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:142 +#: src/Module/Admin/Users/Index.php:162 +msgid "Register date" +msgstr "Regisztráció dátuma" + +#: src/Module/Admin/Users/Active.php:129 +#: src/Module/Admin/Users/Blocked.php:130 +#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:142 +#: src/Module/Admin/Users/Index.php:162 +msgid "Last login" +msgstr "Utolsó bejelentkezés" + +#: src/Module/Admin/Users/Active.php:129 +#: src/Module/Admin/Users/Blocked.php:130 +#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:142 +#: src/Module/Admin/Users/Index.php:162 +msgid "Last public item" +msgstr "Utolsó nyilvános elem" + +#: src/Module/Admin/Users/Active.php:137 +msgid "Active Accounts" +msgstr "Aktív fiókok" + +#: src/Module/Admin/Users/Active.php:141 +#: src/Module/Admin/Users/Blocked.php:141 src/Module/Admin/Users/Index.php:155 +msgid "User blocked" +msgstr "Felhasználó tiltva" + +#: src/Module/Admin/Users/Active.php:142 +#: src/Module/Admin/Users/Blocked.php:143 src/Module/Admin/Users/Index.php:157 +msgid "Site admin" +msgstr "Oldal adminisztrátor" + +#: src/Module/Admin/Users/Active.php:143 +#: src/Module/Admin/Users/Blocked.php:144 src/Module/Admin/Users/Index.php:158 +msgid "Account expired" +msgstr "A fiók lejárt" + +#: src/Module/Admin/Users/Active.php:144 src/Module/Admin/Users/Index.php:161 +msgid "Create a new user" +msgstr "Új felhasználó létrehozása" + +#: src/Module/Admin/Users/Active.php:150 +#: src/Module/Admin/Users/Blocked.php:150 src/Module/Admin/Users/Index.php:167 +msgid "" +"Selected users will be deleted!\\n\\nEverything these users had posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "A kijelölt felhasználók törölve lesznek!\\n\\nMinden, amit ezek a felhasználók erre az oldalra beküldtek, véglegesen törölve lesz!\\n\\nBiztos benne?" + +#: src/Module/Admin/Users/Active.php:151 +#: src/Module/Admin/Users/Blocked.php:151 src/Module/Admin/Users/Index.php:168 +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 "{0} felhasználó törölve lesz!\\n\\nMinden, amit ez a felhasználó erre az oldalra beküldött, véglegesen törölve lesz!\\n\\nBiztos benne?" + +#: src/Module/Admin/Users/Blocked.php:46 src/Module/Admin/Users/Index.php:52 +#, php-format +msgid "%s user unblocked" +msgid_plural "%s users unblocked" +msgstr[0] "%s felhasználó tiltása feloldva" +msgstr[1] "%s felhasználó tiltása feloldva" + +#: src/Module/Admin/Users/Blocked.php:96 src/Module/Admin/Users/Index.php:109 +#, php-format +msgid "User \"%s\" unblocked" +msgstr "„%s” felhasználó tiltása feloldva" + +#: src/Module/Admin/Users/Blocked.php:138 +msgid "Blocked Users" +msgstr "Tiltott felhasználók" + +#: src/Module/Admin/Users/Create.php:62 +msgid "New User" +msgstr "Új felhasználó" + +#: src/Module/Admin/Users/Create.php:63 +msgid "Add User" +msgstr "Felhasználó hozzáadása" + +#: src/Module/Admin/Users/Create.php:71 +msgid "Name of the new user." +msgstr "Az új felhasználó neve." + +#: src/Module/Admin/Users/Create.php:72 +msgid "Nickname" +msgstr "Becenév" + +#: src/Module/Admin/Users/Create.php:72 +msgid "Nickname of the new user." +msgstr "Az új felhasználó beceneve." + +#: src/Module/Admin/Users/Create.php:73 +msgid "Email address of the new user." +msgstr "Az új felhasználó e-mail-címe." + +#: src/Module/Admin/Users/Deleted.php:86 +msgid "Users awaiting permanent deletion" +msgstr "Végleges törlésre váró felhasználók" + +#: src/Module/Admin/Users/Deleted.php:88 src/Module/Admin/Users/Index.php:162 +msgid "Permanent deletion" +msgstr "Végleges törlés" + +#: src/Module/Admin/Users/Index.php:150 src/Module/Admin/Users/Index.php:160 +#: src/Module/BaseAdmin.php:91 +msgid "Users" +msgstr "Felhasználók" + +#: src/Module/Admin/Users/Index.php:152 +msgid "User waiting for permanent deletion" +msgstr "Végleges törlésre váró felhasználó" + +#: src/Module/Admin/Users/Pending.php:48 +#, php-format +msgid "%s user approved" +msgid_plural "%s users approved" +msgstr[0] "%s felhasználó jóváhagyva" +msgstr[1] "%s felhasználó jóváhagyva" + +#: src/Module/Admin/Users/Pending.php:55 +#, php-format +msgid "%s registration revoked" +msgid_plural "%s registrations revoked" +msgstr[0] "%s regisztráció visszavonva" +msgstr[1] "%s regisztráció visszavonva" + +#: src/Module/Admin/Users/Pending.php:81 +msgid "Account approved." +msgstr "Fiók jóváhagyva." + +#: src/Module/Admin/Users/Pending.php:87 +msgid "Registration revoked" +msgstr "Regisztráció visszavonva" + +#: src/Module/Admin/Users/Pending.php:102 +msgid "User registrations awaiting review" +msgstr "Felülvizsgálatra váró felhasználói regisztrációk" + +#: src/Module/Admin/Users/Pending.php:104 +msgid "Request date" +msgstr "Kérés dátuma" + +#: src/Module/Admin/Users/Pending.php:105 +msgid "No registrations." +msgstr "Nincsenek regisztrációk." + +#: src/Module/Admin/Users/Pending.php:106 +msgid "Note from the user" +msgstr "Jegyzet a felhasználótól" + +#: src/Module/Admin/Users/Pending.php:108 +msgid "Deny" +msgstr "Elutasítás" + +#: src/Module/Api/Mastodon/Apps.php:58 +msgid "Missing parameters" +msgstr "Hiányzó paraméterek" + +#: src/Module/Api/Mastodon/Statuses/Bookmark.php:51 +msgid "Only starting posts can be bookmarked" +msgstr "Csak a kezdeti bejegyzéseket lehet könyvjelzőzni" + +#: src/Module/Api/Mastodon/Statuses/Mute.php:50 +msgid "Only starting posts can be muted" +msgstr "Csak a kezdeti bejegyzéseket lehet némítani" + +#: src/Module/Api/Mastodon/Statuses/Pin.php:50 +#: src/Module/Api/Mastodon/Statuses/Unpin.php:50 +msgid "Only starting posts can be pinned" +msgstr "Csak a kezdeti bejegyzéseket lehet kitűzni" + +#: src/Module/Api/Mastodon/Statuses/Reblog.php:53 +#, php-format +msgid "Posts from %s can't be shared" +msgstr "%s bejegyzéseit nem lehet megosztani" + +#: src/Module/Api/Mastodon/Statuses/Unbookmark.php:51 +msgid "Only starting posts can be unbookmarked" +msgstr "Csak a kezdeti bejegyzéseket lehet kivenni a könyvjelzőkből" + +#: src/Module/Api/Mastodon/Statuses/Unmute.php:50 +msgid "Only starting posts can be unmuted" +msgstr "Csak a kezdeti bejegyzéseket némítását lehet megszüntetni" + +#: src/Module/Api/Mastodon/Statuses/Unreblog.php:53 +#, php-format +msgid "Posts from %s can't be unshared" +msgstr "%s bejegyzéseinek megosztását nem lehet visszavonni" + +#: src/Module/Api/Twitter/ContactEndpoint.php:63 src/Module/Contact.php:400 +msgid "Contact not found" +msgstr "A partner nem található" + +#: src/Module/Api/Twitter/ContactEndpoint.php:133 +msgid "Profile not found" +msgstr "A profil nem található" + +#: src/Module/Apps.php:47 +msgid "No installed applications." +msgstr "Nincsenek telepített alkalmazások." + +#: src/Module/Apps.php:52 +msgid "Applications" +msgstr "Alkalmazások" + +#: src/Module/Attach.php:50 src/Module/Attach.php:62 +msgid "Item was not found." +msgstr "Az elem nem található." + +#: src/Module/BaseAdmin.php:63 +msgid "You don't have access to administration pages." +msgstr "Nincs hozzáférése az adminisztrációs oldalakhoz." + +#: src/Module/BaseAdmin.php:67 +msgid "" +"Submanaged account can't access the administration pages. Please log back in" +" as the main account." +msgstr "Az alkezelt fiókok nem férhetnek hozzá az adminisztrációs oldalakhoz. Jelentkezzen vissza a fő fiókkal." + +#: src/Module/BaseAdmin.php:86 +msgid "Overview" +msgstr "Áttekintő" + +#: src/Module/BaseAdmin.php:89 +msgid "Configuration" +msgstr "Beállítás" + +#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:65 +msgid "Additional features" +msgstr "További funkciók" + +#: src/Module/BaseAdmin.php:97 +msgid "Database" +msgstr "Adatbázis" + +#: src/Module/BaseAdmin.php:98 +msgid "DB updates" +msgstr "Adatbázis-frissítések" + +#: src/Module/BaseAdmin.php:99 +msgid "Inspect Deferred Workers" +msgstr "Elhalasztott feldolgozók vizsgálata" + +#: src/Module/BaseAdmin.php:100 +msgid "Inspect worker Queue" +msgstr "Feldolgozó várakozási sorának vizsgálata" + +#: src/Module/BaseAdmin.php:102 +msgid "Tools" +msgstr "Eszközök" + +#: src/Module/BaseAdmin.php:103 +msgid "Contact Blocklist" +msgstr "Partnertiltólista" + +#: src/Module/BaseAdmin.php:104 +msgid "Server Blocklist" +msgstr "Kiszolgáló-tiltólista" + +#: src/Module/BaseAdmin.php:111 +msgid "Diagnostics" +msgstr "Diagnosztika" + +#: src/Module/BaseAdmin.php:112 +msgid "PHP Info" +msgstr "PHP-információk" + +#: src/Module/BaseAdmin.php:113 +msgid "probe address" +msgstr "Cím szondázása" + +#: src/Module/BaseAdmin.php:114 +msgid "check webfinger" +msgstr "WebFinger ellenőrzése" + +#: src/Module/BaseAdmin.php:116 +msgid "Babel" +msgstr "Babel" + +#: src/Module/BaseAdmin.php:117 src/Module/Debug/ActivityPubConversion.php:138 +msgid "ActivityPub Conversion" +msgstr "ActivityPub beszélgetés" + +#: src/Module/BaseAdmin.php:126 +msgid "Addon Features" +msgstr "Bővítményszolgáltatások" + +#: src/Module/BaseAdmin.php:127 +msgid "User registrations waiting for confirmation" +msgstr "Megerősítésre váró felhasználói regisztrációk" + +#: src/Module/BaseApi.php:116 +#, php-format +msgid "API endpoint %s %s is not implemented" +msgstr "A(z) %s %s API-végpont nincs megvalósítva" + +#: src/Module/BaseApi.php:117 +msgid "" +"The API endpoint is currently not implemented but might be in the future." +msgstr "Az API-végpont jelenleg nincs megvalósítva, de ez változhat a jövőben." + +#: src/Module/BaseProfile.php:55 src/Module/Contact.php:947 +msgid "Profile Details" +msgstr "Profil részletei" + +#: src/Module/BaseProfile.php:113 +msgid "Only You Can See This" +msgstr "Csak Ön láthatja ezt" + +#: src/Module/BaseProfile.php:132 src/Module/BaseProfile.php:135 +msgid "Tips for New Members" +msgstr "Tippek új tagoknak" + +#: src/Module/BaseSearch.php:69 +#, php-format +msgid "People Search - %s" +msgstr "Emberek keresése – %s" + +#: src/Module/BaseSearch.php:79 +#, php-format +msgid "Forum Search - %s" +msgstr "Fórum keresése – %s" + +#: src/Module/BaseSettings.php:43 +msgid "Account" +msgstr "Fiók" + +#: src/Module/BaseSettings.php:50 src/Module/Security/TwoFactor/Verify.php:94 +#: src/Module/Settings/TwoFactor/Index.php:110 +msgid "Two-factor authentication" +msgstr "Kétlépcsős hitelesítés" + +#: src/Module/BaseSettings.php:73 +msgid "Display" +msgstr "Megjelenítés" + +#: src/Module/BaseSettings.php:94 src/Module/Settings/Delegation.php:171 +msgid "Manage Accounts" +msgstr "Fiókok kezelése" + +#: src/Module/BaseSettings.php:101 +msgid "Connected apps" +msgstr "Kapcsolt alkalmazások" + +#: src/Module/BaseSettings.php:108 src/Module/Settings/UserExport.php:77 +msgid "Export personal data" +msgstr "Személyes adatok exportálása" + +#: src/Module/BaseSettings.php:115 +msgid "Remove account" +msgstr "Fiók eltávolítása" + +#: src/Module/Bookmarklet.php:56 +msgid "This page is missing a url parameter." +msgstr "Erről az oldalról hiányzik egy URL paraméter." + +#: src/Module/Bookmarklet.php:78 +msgid "The post was created" +msgstr "A bejegyzés létrejött" + +#: src/Module/Contact.php:94 +#, php-format +msgid "%d contact edited." +msgid_plural "%d contacts edited." +msgstr[0] "%d partner szerkesztve." +msgstr[1] "%d partner szerkesztve." + +#: src/Module/Contact.php:121 +msgid "Could not access contact record." +msgstr "Nem sikerült hozzáférni a partner rekordjához." + +#: src/Module/Contact.php:417 +msgid "You can't block yourself" +msgstr "Nem tilthatja le önmagát" + +#: src/Module/Contact.php:423 +msgid "Contact has been blocked" +msgstr "A partner tiltva lett" + +#: src/Module/Contact.php:423 +msgid "Contact has been unblocked" +msgstr "A partner tiltása fel lett oldva" + +#: src/Module/Contact.php:431 +msgid "You can't ignore yourself" +msgstr "Nem mellőzheti önmagát" + +#: src/Module/Contact.php:437 +msgid "Contact has been ignored" +msgstr "A partner figyelmen kívül lett hagyva" + +#: src/Module/Contact.php:437 +msgid "Contact has been unignored" +msgstr "A partner figyelmen kívül hagyása fel lett oldva" + +#: src/Module/Contact.php:447 +msgid "Contact has been archived" +msgstr "A partner archiválva lett" + +#: src/Module/Contact.php:447 +msgid "Contact has been unarchived" +msgstr "A partner archiválása meg lett szüntetve" + +#: src/Module/Contact.php:460 +msgid "Drop contact" +msgstr "Partner eldobása" + +#: src/Module/Contact.php:463 src/Module/Contact.php:887 +msgid "Do you really want to delete this contact?" +msgstr "Valóban törölni szeretné ezt a partnert?" + +#: src/Module/Contact.php:476 +msgid "Contact has been removed." +msgstr "A partner el lett távolítva." + +#: src/Module/Contact.php:504 +#, php-format +msgid "You are mutual friends with %s" +msgstr "Ön kölcsönösen ismerős %s partnerrel" + +#: src/Module/Contact.php:508 +#, php-format +msgid "You are sharing with %s" +msgstr "Ön megoszt %s partnerrel" + +#: src/Module/Contact.php:512 +#, php-format +msgid "%s is sharing with you" +msgstr "%s megoszt Önnel" + +#: src/Module/Contact.php:536 +msgid "Private communications are not available for this contact." +msgstr "A személyes kommunikációk nem érhetők el ennél a partnernél." + +#: src/Module/Contact.php:538 +msgid "Never" +msgstr "Soha" + +#: src/Module/Contact.php:541 +msgid "(Update was not successful)" +msgstr "(a frissítés nem volt sikeres)" + +#: src/Module/Contact.php:541 +msgid "(Update was successful)" +msgstr "(a frissítés sikeres volt)" + +#: src/Module/Contact.php:543 src/Module/Contact.php:1144 +msgid "Suggest friends" +msgstr "Ismerősök ajánlása" + +#: src/Module/Contact.php:547 +#, php-format +msgid "Network type: %s" +msgstr "Hálózat típusa: %s" + +#: src/Module/Contact.php:552 +msgid "Communications lost with this contact!" +msgstr "A kommunikációk megszakadtak ezzel a partnerrel!" + +#: src/Module/Contact.php:558 +msgid "Fetch further information for feeds" +msgstr "További információk lekérése a hírforrásokhoz" + +#: src/Module/Contact.php:560 +msgid "" +"Fetch information like preview pictures, title and teaser from the feed " +"item. You can activate this if the feed doesn't contain much text. Keywords " +"are taken from the meta header in the feed item and are posted as hash tags." +msgstr "Információk lekérése a hírforrás eleméből, mint például előnézeti képek, cím és előzetes. Akkor kapcsolhatja be ezt, ha a hírforrás nem tartalmaz sok szöveget. A kulcsszavak a hírforrás elemében lévő metafejlécéből lesznek kiszedve, és kettős keresztes címkékként lesznek beküldve." + +#: src/Module/Contact.php:563 +msgid "Fetch information" +msgstr "Információk lekérése" + +#: src/Module/Contact.php:564 +msgid "Fetch keywords" +msgstr "Kulcsszavak lekérése" + +#: src/Module/Contact.php:565 +msgid "Fetch information and keywords" +msgstr "Információk és kulcsszavak lekérése" + +#: src/Module/Contact.php:577 src/Module/Contact.php:581 +#: src/Module/Contact.php:584 src/Module/Contact.php:588 +msgid "No mirroring" +msgstr "Nincs tükrözés" + +#: src/Module/Contact.php:578 +msgid "Mirror as forwarded posting" +msgstr "Tükrözés továbbított beküldésként" + +#: src/Module/Contact.php:579 src/Module/Contact.php:585 +#: src/Module/Contact.php:589 +msgid "Mirror as my own posting" +msgstr "Tükrözés saját beküldésként" + +#: src/Module/Contact.php:582 src/Module/Contact.php:586 +msgid "Native reshare" +msgstr "Natív újra megosztás" + +#: src/Module/Contact.php:601 +msgid "Contact Information / Notes" +msgstr "Partner információ vagy jegyzetek" + +#: src/Module/Contact.php:602 +msgid "Contact Settings" +msgstr "Partnerbeállítások" + +#: src/Module/Contact.php:610 +msgid "Contact" +msgstr "Partner" + +#: src/Module/Contact.php:614 +msgid "Their personal note" +msgstr "A személyes jegyzeteik" + +#: src/Module/Contact.php:616 +msgid "Edit contact notes" +msgstr "Partner jegyzeteinek szerkesztése" + +#: src/Module/Contact.php:619 src/Module/Contact.php:1112 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "%s profiljának megtekintése [%s]" + +#: src/Module/Contact.php:620 +msgid "Block/Unblock contact" +msgstr "Partner tiltása vagy tiltásának feloldása" + +#: src/Module/Contact.php:621 +msgid "Ignore contact" +msgstr "Partner mellőzése" + +#: src/Module/Contact.php:622 +msgid "View conversations" +msgstr "Beszélgetések megtekintése" + +#: src/Module/Contact.php:627 +msgid "Last update:" +msgstr "Utolsó frissítés:" + +#: src/Module/Contact.php:629 +msgid "Update public posts" +msgstr "Nyilvános bejegyzések frissítése" + +#: src/Module/Contact.php:631 src/Module/Contact.php:1154 +msgid "Update now" +msgstr "Frissítés most" + +#: src/Module/Contact.php:634 src/Module/Contact.php:892 +#: src/Module/Contact.php:1181 +msgid "Unignore" +msgstr "Mellőzés feloldása" + +#: src/Module/Contact.php:638 +msgid "Currently blocked" +msgstr "Jelenleg tiltva" + +#: src/Module/Contact.php:639 +msgid "Currently ignored" +msgstr "Jelenleg mellőzve" + +#: src/Module/Contact.php:640 +msgid "Currently archived" +msgstr "Jelenleg archiválva" + +#: src/Module/Contact.php:641 +msgid "Awaiting connection acknowledge" +msgstr "Várakozás a kapcsolat nyugtázására" + +#: src/Module/Contact.php:642 src/Module/Notifications/Introductions.php:177 +msgid "Hide this contact from others" +msgstr "A partner elrejtése mások elől" + +#: src/Module/Contact.php:642 +msgid "" +"Replies/likes to your public posts may still be visible" +msgstr "A nyilvános bejegyzéseire adott válaszok vagy kedvelések továbbra is láthatóak lehetnek." + +#: src/Module/Contact.php:643 +msgid "Notification for new posts" +msgstr "Értesítés új bejegyzéseknél" + +#: src/Module/Contact.php:643 +msgid "Send a notification of every new post of this contact" +msgstr "Értesítés küldése a partner minden új bejegyzéséről." + +#: src/Module/Contact.php:645 +msgid "Keyword Deny List" +msgstr "Kulcsszavas tiltólista" + +#: src/Module/Contact.php:645 +msgid "" +"Comma separated list of keywords that should not be converted to hashtags, " +"when \"Fetch information and keywords\" is selected" +msgstr "Kulcsszavak vesszővel elválasztott listája, amelyeket nem szabad kettős keresztes címkékké átalakítani, ha az „Információk és kulcsszavak lekérése” ki van jelölve." + +#: src/Module/Contact.php:661 src/Module/Settings/TwoFactor/Index.php:132 +msgid "Actions" +msgstr "Műveletek" + +#: src/Module/Contact.php:668 +msgid "Mirror postings from this contact" +msgstr "Beküldés tükrözése ettől a partnertől" + +#: src/Module/Contact.php:670 +msgid "" +"Mark this contact as remote_self, this will cause friendica to repost new " +"entries from this contact." +msgstr "A partner megjelölése távoli önmagaként. Ezt azt fogja okozni, hogy a Friendica újraküldi az ettől a partnertől származó új bejegyzéseket." + +#: src/Module/Contact.php:802 +msgid "Show all contacts" +msgstr "Összes partner megjelenítése" + +#: src/Module/Contact.php:810 +msgid "Only show pending contacts" +msgstr "Csak a függőben lévő partnerek megjelenítése" + +#: src/Module/Contact.php:818 +msgid "Only show blocked contacts" +msgstr "Csak a tiltott partnerek megjelenítése" + +#: src/Module/Contact.php:823 src/Module/Contact.php:870 +#: src/Object/Post.php:308 +msgid "Ignored" +msgstr "Mellőzve" + +#: src/Module/Contact.php:826 +msgid "Only show ignored contacts" +msgstr "Csak a mellőzött partnerek megjelenítése" + +#: src/Module/Contact.php:831 src/Module/Contact.php:871 +msgid "Archived" +msgstr "Archiválva" + +#: src/Module/Contact.php:834 +msgid "Only show archived contacts" +msgstr "Csak az archivált partnerek megjelenítése" + +#: src/Module/Contact.php:839 src/Module/Contact.php:869 +msgid "Hidden" +msgstr "Rejtett" + +#: src/Module/Contact.php:842 +msgid "Only show hidden contacts" +msgstr "Csak a rejtett partnerek megjelenítése" + +#: src/Module/Contact.php:850 +msgid "Organize your contact groups" +msgstr "Partnercsoportok szervezése" + +#: src/Module/Contact.php:882 +msgid "Search your contacts" +msgstr "Partnerek keresése" + +#: src/Module/Contact.php:883 src/Module/Search/Index.php:194 +#, php-format +msgid "Results for: %s" +msgstr "Találatok erre: %s" + +#: src/Module/Contact.php:893 src/Module/Contact.php:1190 +msgid "Archive" +msgstr "Archiválás" + +#: src/Module/Contact.php:893 src/Module/Contact.php:1190 +msgid "Unarchive" +msgstr "Archiválás megszüntetése" + +#: src/Module/Contact.php:896 +msgid "Batch Actions" +msgstr "Tömeges műveletek" + +#: src/Module/Contact.php:931 +msgid "Conversations started by this contact" +msgstr "A partner által elkezdett beszélgetések" + +#: src/Module/Contact.php:936 +msgid "Posts and Comments" +msgstr "Bejegyzések és hozzászólások" + +#: src/Module/Contact.php:954 +msgid "View all known contacts" +msgstr "Összes ismert partner megtekintése" + +#: src/Module/Contact.php:964 +msgid "Advanced Contact Settings" +msgstr "Speciális partnerbeállítások" + +#: src/Module/Contact.php:1071 +msgid "Mutual Friendship" +msgstr "Kölcsönös ismeretség" + +#: src/Module/Contact.php:1075 +msgid "is a fan of yours" +msgstr "az Ön rajongója" + +#: src/Module/Contact.php:1079 +msgid "you are a fan of" +msgstr "Ön rajong érte:" + +#: src/Module/Contact.php:1097 +msgid "Pending outgoing contact request" +msgstr "Függőben lévő kimenő partnerkérés" + +#: src/Module/Contact.php:1099 +msgid "Pending incoming contact request" +msgstr "Függőben lévő bejövő partnerkérés" + +#: src/Module/Contact.php:1164 +msgid "Refetch contact data" +msgstr "Partneradatok ismételt lekérése" + +#: src/Module/Contact.php:1175 +msgid "Toggle Blocked status" +msgstr "Tiltott állapot átváltása" + +#: src/Module/Contact.php:1183 +msgid "Toggle Ignored status" +msgstr "Mellőzött állapot átváltása" + +#: src/Module/Contact.php:1192 +msgid "Toggle Archive status" +msgstr "Archiválási állapot átváltása" + +#: src/Module/Contact.php:1200 +msgid "Delete contact" +msgstr "Partner törlése" + +#: src/Module/Contact/Advanced.php:92 +msgid "Contact update failed." +msgstr "A partner frissítése sikertelen." + +#: src/Module/Contact/Advanced.php:109 +msgid "" +"WARNING: This is highly advanced and if you enter incorrect" +" information your communications with this contact may stop working." +msgstr "FIGYELMEZTETÉS: ez erősen speciális, és ha hibás információkat ad meg, akkor a partnerrel való kommunikációi esetleg nem működnek többé." + +#: src/Module/Contact/Advanced.php:110 +msgid "" +"Please use your browser 'Back' button now if you are " +"uncertain what to do on this page." +msgstr "Használja a böngésző „Vissza” gombját most, ha nem biztos abban, hogy mit kell tenni ezen az oldalon." + +#: src/Module/Contact/Advanced.php:130 +msgid "Return to contact editor" +msgstr "Visszatérés a partnerszerkesztőhöz" + +#: src/Module/Contact/Advanced.php:135 +msgid "Account Nickname" +msgstr "Fiók beceneve" + +#: src/Module/Contact/Advanced.php:136 +msgid "@Tagname - overrides Name/Nickname" +msgstr "@Címkenév – felülbírálja a nevet vagy a becenevet" + +#: src/Module/Contact/Advanced.php:137 +msgid "Account URL" +msgstr "Fiók URL" + +#: src/Module/Contact/Advanced.php:138 +msgid "Account URL Alias" +msgstr "Fiók URL álneve" + +#: src/Module/Contact/Advanced.php:139 +msgid "Friend Request URL" +msgstr "Ismerőskérési URL" + +#: src/Module/Contact/Advanced.php:140 +msgid "Friend Confirm URL" +msgstr "Ismerősmegerősítési URL" + +#: src/Module/Contact/Advanced.php:141 +msgid "Notification Endpoint URL" +msgstr "Értesítésvégpont URL" + +#: src/Module/Contact/Advanced.php:142 +msgid "Poll/Feed URL" +msgstr "Lekérés vagy hírforrás URL" + +#: src/Module/Contact/Advanced.php:143 +msgid "New photo from this URL" +msgstr "Új fénykép erről az URL-ről" + +#: src/Module/Contact/Contacts.php:31 src/Module/Conversation/Network.php:177 +msgid "Invalid contact." +msgstr "Érvénytelen partner." + +#: src/Module/Contact/Contacts.php:54 +msgid "No known contacts." +msgstr "Nincsenek ismert partnerek." + +#: src/Module/Contact/Contacts.php:68 src/Module/Profile/Common.php:99 +msgid "No common contacts." +msgstr "Nincsenek közös partnerek." + +#: src/Module/Contact/Contacts.php:80 src/Module/Profile/Contacts.php:97 +#, php-format +msgid "Follower (%s)" +msgid_plural "Followers (%s)" +msgstr[0] "Követő (%s)" +msgstr[1] "Követők (%s)" + +#: src/Module/Contact/Contacts.php:84 src/Module/Profile/Contacts.php:100 +#, php-format +msgid "Following (%s)" +msgid_plural "Following (%s)" +msgstr[0] "Követés (%s)" +msgstr[1] "Követés (%s)" + +#: src/Module/Contact/Contacts.php:88 src/Module/Profile/Contacts.php:103 +#, php-format +msgid "Mutual friend (%s)" +msgid_plural "Mutual friends (%s)" +msgstr[0] "Kölcsönösen ismerősök (%s)" +msgstr[1] "Kölcsönösen ismerősök (%s)" + +#: src/Module/Contact/Contacts.php:90 src/Module/Profile/Contacts.php:105 +#, php-format +msgid "These contacts both follow and are followed by %s." +msgstr "Ezeket a partnereket %s követi és ők is követik őt." + +#: src/Module/Contact/Contacts.php:96 src/Module/Profile/Common.php:87 +#, php-format +msgid "Common contact (%s)" +msgid_plural "Common contacts (%s)" +msgstr[0] "Közös partner (%s)" +msgstr[1] "Közös partnerek (%s)" + +#: src/Module/Contact/Contacts.php:98 src/Module/Profile/Common.php:89 +#, php-format +msgid "" +"Both %s and yourself have publicly interacted with these " +"contacts (follow, comment or likes on public posts)." +msgstr "%s és Ön is nyilvánosan kapcsolatba léptek ezekkel a partnerekkel (követés, hozzászólás vagy kedvelések a nyilvános bejegyzéseknél)." + +#: src/Module/Contact/Contacts.php:104 src/Module/Profile/Contacts.php:111 +#, php-format +msgid "Contact (%s)" +msgid_plural "Contacts (%s)" +msgstr[0] "Partner (%s)" +msgstr[1] "Partnerek (%s)" + +#: src/Module/Contact/Poke.php:113 +msgid "Error while sending poke, please retry." +msgstr "Hiba a bökés küldése során. Próbálja újra." + +#: src/Module/Contact/Poke.php:126 src/Module/Search/Acl.php:55 +msgid "You must be logged in to use this module." +msgstr "Bejelentkezve kell lennie a modul használatához." + +#: src/Module/Contact/Poke.php:149 +msgid "Poke/Prod" +msgstr "Bökés vagy döfés" + +#: src/Module/Contact/Poke.php:150 +msgid "poke, prod or do other things to somebody" +msgstr "bökés, döfés vagy egyéb dolgok művelése valakivel" + +#: src/Module/Contact/Poke.php:152 +msgid "Choose what you wish to do to recipient" +msgstr "Válassza ki, hogy mit szeretne tenni a címzettel" + +#: src/Module/Contact/Poke.php:153 +msgid "Make this post private" +msgstr "A bejegyzés személyessé tétele" + +#: src/Module/Conversation/Community.php:69 +msgid "Local Community" +msgstr "Helyi közösség" + +#: src/Module/Conversation/Community.php:72 +msgid "Posts from local users on this server" +msgstr "Bejegyzések a kiszolgálón lévő helyi felhasználóktól" + +#: src/Module/Conversation/Community.php:80 +msgid "Global Community" +msgstr "Globális közösség" + +#: src/Module/Conversation/Community.php:83 +msgid "Posts from users of the whole federated network" +msgstr "Bejegyzések a teljes föderált hálózat felhasználóitól" + +#: src/Module/Conversation/Community.php:116 +msgid "Own Contacts" +msgstr "Saját partnerek" + +#: src/Module/Conversation/Community.php:120 +msgid "Include" +msgstr "Tartalmazás" + +#: src/Module/Conversation/Community.php:121 +msgid "Hide" +msgstr "Elrejtés" + +#: src/Module/Conversation/Community.php:149 src/Module/Search/Index.php:139 +#: src/Module/Search/Index.php:181 +msgid "No results." +msgstr "Nincs találat." + +#: src/Module/Conversation/Community.php:174 +msgid "" +"This community stream shows all public posts received by this node. They may" +" not reflect the opinions of this node’s users." +msgstr "Ez a közösségi folyam megjeleníti az összes nyilvános bejegyzést, amelyet ez a csomópont megkapott. Előfordulhat, hogy azok nem tükrözik ezen csomópont felhasználóinak véleményét." + +#: src/Module/Conversation/Community.php:212 +msgid "Community option not available." +msgstr "A közösségi beállítás nem érhető el." + +#: src/Module/Conversation/Community.php:228 +msgid "Not available." +msgstr "Nem érhető el." + +#: src/Module/Conversation/Network.php:163 +msgid "No such group" +msgstr "Nincs ilyen csoport" + +#: src/Module/Conversation/Network.php:167 +#, php-format +msgid "Group: %s" +msgstr "Csoport: %s" + +#: src/Module/Conversation/Network.php:243 +msgid "Latest Activity" +msgstr "Legutóbbi tevékenység" + +#: src/Module/Conversation/Network.php:246 +msgid "Sort by latest activity" +msgstr "Rendezés a legutóbbi tevékenység szerint" + +#: src/Module/Conversation/Network.php:251 +msgid "Latest Posts" +msgstr "Legutóbbi bejegyzések" + +#: src/Module/Conversation/Network.php:254 +msgid "Sort by post received date" +msgstr "Rendezés a bejegyzés érkezési dátuma szerint" + +#: src/Module/Conversation/Network.php:259 +#: src/Module/Settings/Profile/Index.php:242 +msgid "Personal" +msgstr "Személyes" + +#: src/Module/Conversation/Network.php:262 +msgid "Posts that mention or involve you" +msgstr "Bejegyzések, amelyek említik vagy tartalmazzák Önt" + +#: src/Module/Conversation/Network.php:267 src/Object/Post.php:334 +msgid "Starred" +msgstr "Csillagozott" + +#: src/Module/Conversation/Network.php:270 +msgid "Favourite Posts" +msgstr "Kedvenc bejegyzések" + +#: src/Module/Credits.php:44 +msgid "Credits" +msgstr "Köszönetnyilvánítás" + +#: src/Module/Credits.php:45 +msgid "" +"Friendica is a community project, that would not be possible without the " +"help of many people. Here is a list of those who have contributed to the " +"code or the translation of Friendica. Thank you all!" +msgstr "A Friendica egy közösségi projekt, amely nem lehetne lehetséges a sok ember segítsége nélkül. Itt van azok listája, akik közreműködtek a kódban vagy a Friendica fordításában. Köszönet mindannyiuknak!" + +#: src/Module/Debug/ActivityPubConversion.php:58 +msgid "Formatted" +msgstr "Formázott" + +#: src/Module/Debug/ActivityPubConversion.php:70 +msgid "Activity" +msgstr "Tevékenység" + +#: src/Module/Debug/ActivityPubConversion.php:118 +msgid "Object data" +msgstr "Objektum adatai" + +#: src/Module/Debug/ActivityPubConversion.php:125 +msgid "Result Item" +msgstr "Eredményelem" + +#: src/Module/Debug/ActivityPubConversion.php:139 +msgid "Source activity" +msgstr "Forrástevékenység" + +#: src/Module/Debug/Babel.php:51 +msgid "Source input" +msgstr "Forrás bevitele" + +#: src/Module/Debug/Babel.php:57 +msgid "BBCode::toPlaintext" +msgstr "BBCode::toPlaintext" + +#: src/Module/Debug/Babel.php:63 +msgid "BBCode::convert (raw HTML)" +msgstr "BBCode::convert (nyers HTML)" + +#: src/Module/Debug/Babel.php:68 +msgid "BBCode::convert (hex)" +msgstr "BBCode::convert (hexa)" + +#: src/Module/Debug/Babel.php:73 +msgid "BBCode::convert" +msgstr "BBCode::convert" + +#: src/Module/Debug/Babel.php:79 +msgid "BBCode::convert => HTML::toBBCode" +msgstr "BBCode::convert => HTML::toBBCode" + +#: src/Module/Debug/Babel.php:85 +msgid "BBCode::toMarkdown" +msgstr "BBCode::toMarkdown" + +#: src/Module/Debug/Babel.php:91 +msgid "BBCode::toMarkdown => Markdown::convert (raw HTML)" +msgstr "BBCode::toMarkdown => Markdown::convert (nyers HTML)" + +#: src/Module/Debug/Babel.php:95 +msgid "BBCode::toMarkdown => Markdown::convert" +msgstr "BBCode::toMarkdown => Markdown::convert" + +#: src/Module/Debug/Babel.php:101 +msgid "BBCode::toMarkdown => Markdown::toBBCode" +msgstr "BBCode::toMarkdown => Markdown::toBBCode" + +#: src/Module/Debug/Babel.php:107 +msgid "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" +msgstr "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode" + +#: src/Module/Debug/Babel.php:115 +msgid "Item Body" +msgstr "Elem törzse" + +#: src/Module/Debug/Babel.php:119 +msgid "Item Tags" +msgstr "Elem címkéi" + +#: src/Module/Debug/Babel.php:125 +msgid "PageInfo::appendToBody" +msgstr "PageInfo::appendToBody" + +#: src/Module/Debug/Babel.php:130 +msgid "PageInfo::appendToBody => BBCode::convert (raw HTML)" +msgstr "PageInfo::appendToBody => BBCode::convert (nyers HTML)" + +#: src/Module/Debug/Babel.php:134 +msgid "PageInfo::appendToBody => BBCode::convert" +msgstr "PageInfo::appendToBody => BBCode::convert" + +#: src/Module/Debug/Babel.php:141 +msgid "Source input (Diaspora format)" +msgstr "Forrás bevitele (Diaspora formátum)" + +#: src/Module/Debug/Babel.php:150 +msgid "Source input (Markdown)" +msgstr "Forrás bevitele (Markdown)" + +#: src/Module/Debug/Babel.php:156 +msgid "Markdown::convert (raw HTML)" +msgstr "Markdown::convert (nyers HTML)" + +#: src/Module/Debug/Babel.php:161 +msgid "Markdown::convert" +msgstr "Markdown::convert" + +#: src/Module/Debug/Babel.php:167 +msgid "Markdown::toBBCode" +msgstr "Markdown::toBBCode" + +#: src/Module/Debug/Babel.php:174 +msgid "Raw HTML input" +msgstr "Nyers HTML bevitel" + +#: src/Module/Debug/Babel.php:179 +msgid "HTML Input" +msgstr "HTML bevitel" + +#: src/Module/Debug/Babel.php:186 +msgid "HTML Purified (raw)" +msgstr "HTML megtisztítva (nyers)" + +#: src/Module/Debug/Babel.php:191 +msgid "HTML Purified (hex)" +msgstr "HTML megtisztítva (hexa)" + +#: src/Module/Debug/Babel.php:196 +msgid "HTML Purified" +msgstr "HTML megtisztítva" + +#: src/Module/Debug/Babel.php:202 +msgid "HTML::toBBCode" +msgstr "HTML::toBBCode" + +#: src/Module/Debug/Babel.php:208 +msgid "HTML::toBBCode => BBCode::convert" +msgstr "HTML::toBBCode => BBCode::convert" + +#: src/Module/Debug/Babel.php:213 +msgid "HTML::toBBCode => BBCode::convert (raw HTML)" +msgstr "HTML::toBBCode => BBCode::convert (nyers HTML)" + +#: src/Module/Debug/Babel.php:219 +msgid "HTML::toBBCode => BBCode::toPlaintext" +msgstr "HTML::toBBCode => BBCode::toPlaintext" + +#: src/Module/Debug/Babel.php:225 +msgid "HTML::toMarkdown" +msgstr "HTML::toMarkdown" + +#: src/Module/Debug/Babel.php:231 +msgid "HTML::toPlaintext" +msgstr "HTML::toPlaintext" + +#: src/Module/Debug/Babel.php:237 +msgid "HTML::toPlaintext (compact)" +msgstr "HTML::toPlaintext (tömör)" + +#: src/Module/Debug/Babel.php:255 +msgid "Decoded post" +msgstr "Dekódolt bejegyzés" + +#: src/Module/Debug/Babel.php:276 +msgid "Post array before expand entities" +msgstr "A bejegyzéstömb az entitások kiterjesztése előtt" + +#: src/Module/Debug/Babel.php:283 +msgid "Post converted" +msgstr "Bejegyzés átalakítva" + +#: src/Module/Debug/Babel.php:288 +msgid "Converted body" +msgstr "Átalakított törzs" + +#: src/Module/Debug/Babel.php:294 +msgid "Twitter addon is absent from the addon/ folder." +msgstr "A Twitter bővítmény hiányzik az „addon/” mappából." + +#: src/Module/Debug/Babel.php:304 +msgid "Babel Diagnostic" +msgstr "Babel diagnosztika" + +#: src/Module/Debug/Babel.php:305 +msgid "Source text" +msgstr "Forrásszöveg" + +#: src/Module/Debug/Babel.php:306 +msgid "BBCode" +msgstr "BBCode" + +#: src/Module/Debug/Babel.php:308 +msgid "Markdown" +msgstr "Markdown" + +#: src/Module/Debug/Babel.php:309 +msgid "HTML" +msgstr "HTML" + +#: src/Module/Debug/Babel.php:311 +msgid "Twitter Source / Tweet URL (requires API key)" +msgstr "Twitter forrás vagy Tweet URL (API-kulcsot igényel)" + +#: src/Module/Debug/Feed.php:38 src/Module/Filer/SaveTag.php:40 +#: src/Module/Settings/Profile/Index.php:158 +msgid "You must be logged in to use this module" +msgstr "Bejelentkezve kell lennie a modul használatához" + +#: src/Module/Debug/Feed.php:63 +msgid "Source URL" +msgstr "Forrás URL" + +#: src/Module/Debug/Localtime.php:49 +msgid "Time Conversion" +msgstr "Időátalakítás" + +#: src/Module/Debug/Localtime.php:50 +msgid "" +"Friendica provides this service for sharing events with other networks and " +"friends in unknown timezones." +msgstr "A Friendica ezt a szolgáltatást az ismeretlen időzónákban lévő más hálózatokkal és ismerősökkel történő események megosztásához biztosítja." + +#: src/Module/Debug/Localtime.php:51 +#, php-format +msgid "UTC time: %s" +msgstr "UTC idő: %s" + +#: src/Module/Debug/Localtime.php:54 +#, php-format +msgid "Current timezone: %s" +msgstr "Jelenlegi időzóna: %s" + +#: src/Module/Debug/Localtime.php:58 +#, php-format +msgid "Converted localtime: %s" +msgstr "Átalakított helyi idő: %s" + +#: src/Module/Debug/Localtime.php:62 +msgid "Please select your timezone:" +msgstr "Válassza ki az időzónáját:" + +#: src/Module/Debug/Probe.php:38 src/Module/Debug/WebFinger.php:37 +msgid "Only logged in users are permitted to perform a probing." +msgstr "Csak bejelentkezett felhasználóknak engedélyezett a szondázás végrehajtása." + +#: src/Module/Debug/Probe.php:53 +msgid "Probe Diagnostic" +msgstr "Szondázási diagnosztika" + +#: src/Module/Debug/Probe.php:54 +msgid "Output" +msgstr "Kimenet" + +#: src/Module/Debug/Probe.php:57 +msgid "Lookup address" +msgstr "Keresési cím" + +#: src/Module/Debug/WebFinger.php:52 +msgid "Webfinger Diagnostic" +msgstr "WebFinger diagnosztika" + +#: src/Module/Debug/WebFinger.php:54 +msgid "Lookup address:" +msgstr "Keresési cím:" + +#: src/Module/Delegation.php:147 +msgid "Switch between your accounts" +msgstr "Váltás a fiókjai között" + +#: src/Module/Delegation.php:148 +msgid "Manage your accounts" +msgstr "Fiókok kezelése" + +#: src/Module/Delegation.php:149 +msgid "" +"Toggle between different identities or community/group pages which share " +"your account details or which you have been granted \"manage\" permissions" +msgstr "Váltás a különböző személyazonosságok vagy közösségi és csoportoldalak között, amelyek megosztják a fiókja részleteit, vagy amelyeket „kezelés” jogosultságokkal ruházott fel" + +#: src/Module/Delegation.php:150 +msgid "Select an identity to manage: " +msgstr "A kezelendő személyazonosság kiválasztása: " + +#: src/Module/Directory.php:77 +msgid "No entries (some entries may be hidden)." +msgstr "Nincsenek bejegyzések (néhány bejegyzés rejtve lehet)." + +#: src/Module/Directory.php:99 +msgid "Find on this site" +msgstr "Keresés ezen az oldalon" + +#: src/Module/Directory.php:101 +msgid "Results for:" +msgstr "Találat erre:" + +#: src/Module/Directory.php:103 +msgid "Site Directory" +msgstr "Oldal könyvtára" + +#: src/Module/Filer/RemoveTag.php:69 +msgid "Item was not removed" +msgstr "Az elem nem lett eltávolítva" + +#: src/Module/Filer/RemoveTag.php:72 +msgid "Item was not deleted" +msgstr "Az elem nem lett törölve" + +#: src/Module/Filer/SaveTag.php:69 +msgid "- select -" +msgstr "– válasszon –" + +#: src/Module/FriendSuggest.php:65 +msgid "Suggested contact not found." +msgstr "Az ajánlott partner nem található." + +#: src/Module/FriendSuggest.php:84 +msgid "Friend suggestion sent." +msgstr "Az ismerősajánlás elküldve." + +#: src/Module/FriendSuggest.php:121 +msgid "Suggest Friends" +msgstr "Ismerősök ajánlása" + +#: src/Module/FriendSuggest.php:124 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Ismerős ajánlása %s számára" + +#: src/Module/Friendica.php:61 +msgid "Installed addons/apps:" +msgstr "Telepített bővítmények vagy alkalmazások:" + +#: src/Module/Friendica.php:66 +msgid "No installed addons/apps" +msgstr "Nincsenek telepített bővítmények vagy alkalmazások" + +#: src/Module/Friendica.php:71 +#, php-format +msgid "Read about the Terms of Service of this node." +msgstr "Olvassa el ennek a csomópontnak a használati feltételeit." + +#: src/Module/Friendica.php:78 +msgid "On this server the following remote servers are blocked." +msgstr "Ezen a kiszolgálón a következő távoli kiszolgálók vannak tiltva." + +#: src/Module/Friendica.php:96 +#, 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 "Ez egy %s verziójú Friendica, amely a %s helyen fut a weben. Az adatbázis verziója %s, a bejegyzésfrissítés verziója %s." + +#: src/Module/Friendica.php:101 +msgid "" +"Please visit Friendi.ca to learn more " +"about the Friendica project." +msgstr "Látogassa meg a Friendi.ca oldalt, hogy többet tudjon meg a Friendica projektről." + +#: src/Module/Friendica.php:102 +msgid "Bug reports and issues: please visit" +msgstr "Hibák és problémák jelentéséhez látogassa meg" + +#: src/Module/Friendica.php:102 +msgid "the bugtracker at github" +msgstr "a GitHubon lévő hibakövetőt" + +#: src/Module/Friendica.php:103 +msgid "Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca" +msgstr "Javaslatokat, dicséretet és egyebeket az „info” kukac friendi pont ca címre küldhet." + +#: src/Module/Group.php:61 +msgid "Could not create group." +msgstr "Nem sikerült létrehozni a csoportot." + +#: src/Module/Group.php:72 src/Module/Group.php:214 src/Module/Group.php:238 +msgid "Group not found." +msgstr "A csoport nem található." + +#: src/Module/Group.php:78 +msgid "Group name was not changed." +msgstr "A csoport neve nem változott meg." + +#: src/Module/Group.php:100 +msgid "Unknown group." +msgstr "Ismeretlen csoport." + +#: src/Module/Group.php:109 +msgid "Contact is deleted." +msgstr "A partner törölve." + +#: src/Module/Group.php:115 +msgid "Unable to add the contact to the group." +msgstr "Nem lehet hozzáadni a partnert a csoporthoz." + +#: src/Module/Group.php:118 +msgid "Contact successfully added to group." +msgstr "A partner sikeresen hozzáadva a csoporthoz." + +#: src/Module/Group.php:122 +msgid "Unable to remove the contact from the group." +msgstr "Nem lehet eltávolítani a partnert a csoportból." + +#: src/Module/Group.php:125 +msgid "Contact successfully removed from group." +msgstr "A partner sikeresen eltávolítva a csoportból." + +#: src/Module/Group.php:128 +msgid "Unknown group command." +msgstr "Ismeretlen csoportparancs." + +#: src/Module/Group.php:131 +msgid "Bad request." +msgstr "Hibás kérés." + +#: src/Module/Group.php:170 +msgid "Save Group" +msgstr "Csoport mentése" + +#: src/Module/Group.php:171 +msgid "Filter" +msgstr "Szűrő" + +#: src/Module/Group.php:177 +msgid "Create a group of contacts/friends." +msgstr "Partnerek vagy ismerősök csoportjának létrehozása." + +#: src/Module/Group.php:219 +msgid "Unable to remove group." +msgstr "Nem lehet eltávolítani a csoportot." + +#: src/Module/Group.php:270 +msgid "Delete Group" +msgstr "Csoport törlése" + +#: src/Module/Group.php:280 +msgid "Edit Group Name" +msgstr "Csoport nevének szerkesztése" + +#: src/Module/Group.php:290 +msgid "Members" +msgstr "Tagok" + +#: src/Module/Group.php:293 +msgid "Group is empty" +msgstr "A csoport üres" + +#: src/Module/Group.php:306 +msgid "Remove contact from group" +msgstr "Partner eltávolítása a csoportból" + +#: src/Module/Group.php:327 +msgid "Click on a contact to add or remove." +msgstr "Kattintson egy partnerre a hozzáadáshoz vagy eltávolításhoz." + +#: src/Module/Group.php:341 +msgid "Add contact to group" +msgstr "Partner hozzáadása a csoporthoz" + +#: src/Module/HTTPException/MethodNotAllowed.php:32 +msgid "Method Not Allowed." +msgstr "A módszer nem engedélyezett." + +#: src/Module/Help.php:62 +msgid "Help:" +msgstr "Súgó:" + +#: src/Module/Home.php:54 +#, php-format +msgid "Welcome to %s" +msgstr "Üdvözli a(z) %s!" + +#: src/Module/HoverCard.php:47 +msgid "No profile" +msgstr "Nincs profil" + +#: src/Module/Install.php:188 +msgid "Friendica Communications Server - Setup" +msgstr "Friendica kommunikációs kiszolgáló – Beállítás" + +#: src/Module/Install.php:199 +msgid "System check" +msgstr "Rendszerellenőrzés" + +#: src/Module/Install.php:201 src/Module/Install.php:258 +#: src/Module/Install.php:341 +msgid "Requirement not satisfied" +msgstr "A követelmény nincs kielégítve" + +#: src/Module/Install.php:202 +msgid "Optional requirement not satisfied" +msgstr "A választható követelmény nincs kielégítve" + +#: src/Module/Install.php:203 +msgid "OK" +msgstr "Rendben" + +#: src/Module/Install.php:208 +msgid "Check again" +msgstr "Ellenőrzés újra" + +#: src/Module/Install.php:223 +msgid "Base settings" +msgstr "Alapvető beállítások" + +#: src/Module/Install.php:230 +msgid "Host name" +msgstr "Gépnév" + +#: src/Module/Install.php:232 +msgid "" +"Overwrite this field in case the determinated hostname isn't right, " +"otherweise leave it as is." +msgstr "Írja felül ezt a mezőt abban az esetben, ha a felismert gépnév nem helyes, egyébként hagyja úgy, ahogy van." + +#: src/Module/Install.php:235 +msgid "Base path to installation" +msgstr "Alap útvonal a telepítéshez" + +#: src/Module/Install.php:237 +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 "Ha a rendszer nem tudja felismerni a helyes útvonalat a telepítéshez, akkor itt adja meg a helyes útvonalat. Ezt a beállítást csak akkor kell megadni, ha korlátozott rendszert és a webgyökérre mutató szimbolikus hivatkozásokat használ." + +#: src/Module/Install.php:240 +msgid "Sub path of the URL" +msgstr "Az URL alútvonala" + +#: src/Module/Install.php:242 +msgid "" +"Overwrite this field in case the sub path determination isn't right, " +"otherwise leave it as is. Leaving this field blank means the installation is" +" at the base URL without sub path." +msgstr "Írja felül ezt a mezőt abban az esetben, ha az alútvonal felismerése nem helyes, egyébként hagyja úgy, ahogy van. A mező üresen hagyása azt jelenti, hogy a telepítés az alap útvonalon van alútvonal nélkül." + +#: src/Module/Install.php:253 +msgid "Database connection" +msgstr "Adatbázis-kapcsolat" + +#: src/Module/Install.php:254 +msgid "" +"In order to install Friendica we need to know how to connect to your " +"database." +msgstr "A Friendica telepítése érdekében tudnunk kell, hogy hogyan kell kapcsolódni az adatbázisához." + +#: src/Module/Install.php:255 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Vegye fel a kapcsolatot a tárhelyszolgáltatóval vagy az oldal adminisztrátorával, ha kérdései vannak ezekkel a beállításokkal kapcsolatban." + +#: src/Module/Install.php:256 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "A lent megadott adatbázisnak már léteznie kell. Ha még nem létezik, akkor hozza létre a folytatás előtt." + +#: src/Module/Install.php:265 +msgid "Database Server Name" +msgstr "Adatbázis-kiszolgáló neve" + +#: src/Module/Install.php:270 +msgid "Database Login Name" +msgstr "Adatbázis bejelentkezési neve" + +#: src/Module/Install.php:276 +msgid "Database Login Password" +msgstr "Adatbázis bejelentkezési jelszava" + +#: src/Module/Install.php:278 +msgid "For security reasons the password must not be empty" +msgstr "Biztonsági okokból a jelszó nem lehet üres" + +#: src/Module/Install.php:281 +msgid "Database Name" +msgstr "Adatbázis neve" + +#: src/Module/Install.php:285 src/Module/Install.php:315 +msgid "Please select a default timezone for your website" +msgstr "Válasszon egy alapértelmezett időzónát a weboldalához" + +#: src/Module/Install.php:300 +msgid "Site settings" +msgstr "Oldalbeállítások" + +#: src/Module/Install.php:310 +msgid "Site administrator email address" +msgstr "Oldal adminisztrátorának e-mail-címe" + +#: src/Module/Install.php:312 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "A fiókja e-mail-címének egyeznie kell ezzel a webes adminisztrátori panel használata érdekében." + +#: src/Module/Install.php:319 +msgid "System Language:" +msgstr "Rendszer nyelve:" + +#: src/Module/Install.php:321 +msgid "" +"Set the default language for your Friendica installation interface and to " +"send emails." +msgstr "Az alapértelmezett nyelv beállítása a Friendica telepítésnek felületéhez és az e-mailek küldéséhez." + +#: src/Module/Install.php:333 +msgid "Your Friendica site database has been installed." +msgstr "A Friendica oldalának adatbázisa telepítve lett." + +#: src/Module/Install.php:343 +msgid "Installation finished" +msgstr "A telepítés befejeződött" + +#: src/Module/Install.php:363 +msgid "

What next

" +msgstr "

Mi következik?

" + +#: src/Module/Install.php:364 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"worker." +msgstr "FONTOS: be kell állítania [kézzel] egy ütemezett feladatot a feldolgozóhoz." + +#: src/Module/Install.php:367 +#, php-format +msgid "" +"Go to your new Friendica node registration page " +"and register as new user. Remember to use the same email you have entered as" +" administrator email. This will allow you to enter the site admin panel." +msgstr "Menjen az új Friendica csomópont regisztrációs oldalára, és regisztráljon új felhasználóként. Ne felejtse el ugyanazt az e-mail-címet használni, mint amelyet adminisztrátori e-mail-címként adott meg. Ez lehetővé fogja tenni az oldal adminisztrátori paneljére történő belépést." + +#: src/Module/Invite.php:55 +msgid "Total invitation limit exceeded." +msgstr "Az összes meghívás korlátja túllépve." + +#: src/Module/Invite.php:78 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: nem érvényes e-mail-cím." + +#: src/Module/Invite.php:104 +msgid "Please join us on Friendica" +msgstr "Csatlakozzon hozzánk a Friendica hálózatán" + +#: src/Module/Invite.php:113 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "A meghíváskorlát túllépve. Vegye fel a kapcsolatot az oldal adminisztrátorával." + +#: src/Module/Invite.php:117 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: az üzenetkézbesítés sikertelen." + +#: src/Module/Invite.php:121 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d üzenet elküldve." +msgstr[1] "%d üzenet elküldve." + +#: src/Module/Invite.php:139 +msgid "You have no more invitations available" +msgstr "Nincs több elérhető meghívása" + +#: src/Module/Invite.php:146 +#, php-format +msgid "" +"Visit %s for a list of public sites that you can join. Friendica members on " +"other sites can all connect with each other, as well as with members of many" +" other social networks." +msgstr "Látogassa meg a %s oldalt azon nyilvános oldalak listájáért, amelyekhez csatlakozhat. A egyéb oldalakon lévő Friendica-tagok mindegyike tud egymással kapcsolódni, valamint számos más közösségi hálózat tagjaival is." + +#: src/Module/Invite.php:148 +#, php-format +msgid "" +"To accept this invitation, please visit and register at %s or any other " +"public Friendica website." +msgstr "A meghívás elfogadásához látogasson el és regisztráljon a(z) %s címen vagy bármely más nyilvános Friendica weboldalon." + +#: src/Module/Invite.php:149 +#, php-format +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks. See %s for a list of alternate Friendica " +"sites you can join." +msgstr "A Friendica oldalak mindegyike össze van kapcsolva, hogy egy hatalmas, fokozott magánszféra-védelemmel ellátott közösségi hálót hozzanak létre, amelyet a tagjai birtokolnak és vezérelnek. A tagok képesek sok hagyományos közösségi hálózathoz is kapcsolódni. Nézze meg a(z) %s oldalt azon alternatív Friendica oldalak listájáért, amelyekhez csatlakozhat." + +#: src/Module/Invite.php:153 +msgid "" +"Our apologies. This system is not currently configured to connect with other" +" public sites or invite members." +msgstr "Elnézést kérünk. Ez a rendszer jelenleg nem úgy van beállítva, hogy más nyilvános oldalakhoz kapcsolódjon vagy tagokat hívjon meg." + +#: src/Module/Invite.php:156 +msgid "" +"Friendica sites all inter-connect to create a huge privacy-enhanced social " +"web that is owned and controlled by its members. They can also connect with " +"many traditional social networks." +msgstr "A Friendica oldalak mindegyike össze van kapcsolva, hogy egy hatalmas, fokozott magánszféra-védelemmel ellátott közösségi hálót hozzanak létre, amelyet a tagjai birtokolnak és vezérelnek. A tagok képesek sok hagyományos közösségi hálózathoz is kapcsolódni." + +#: src/Module/Invite.php:155 +#, php-format +msgid "To accept this invitation, please visit and register at %s." +msgstr "A meghívás elfogadásához látogasson el és regisztráljon a(z) %s címen." + +#: src/Module/Invite.php:163 +msgid "Send invitations" +msgstr "Meghívások küldése" + +#: src/Module/Invite.php:164 +msgid "Enter email addresses, one per line:" +msgstr "Adja meg az e-mail-címeket, soronként egyet:" + +#: src/Module/Invite.php:168 +msgid "" +"You are cordially invited to join me and other close friends on Friendica - " +"and help us to create a better social web." +msgstr "Szeretettel meghívom Önt, hogy csatlakozzon hozzám és más közeli ismerősökhöz a Friendica hálózatán – és segítsen nekünk egy jobb közösségi hálót létrehozni." + +#: src/Module/Invite.php:170 +msgid "You will need to supply this invitation code: $invite_code" +msgstr "Meg kell majd adnia ezt a meghívási kódot: $invite_code" + +#: src/Module/Invite.php:170 +msgid "" +"Once you have registered, please connect with me via my profile page at:" +msgstr "Miután regisztrált, lépjen velem kapcsolatba a profiloldalamon keresztül itt:" + +#: src/Module/Invite.php:172 +msgid "" +"For more information about the Friendica project and why we feel it is " +"important, please visit http://friendi.ca" +msgstr "A Friendica projekttel kapcsolatos további információkért, valamint hogy miért tartjuk ezt fontosnak, látogasson el a https://friendi.ca/ oldalra." + +#: src/Module/Item/Compose.php:46 +msgid "Please enter a post body." +msgstr "Adjon meg egy bejegyzéstörzset." + +#: src/Module/Item/Compose.php:59 +msgid "This feature is only available with the frio theme." +msgstr "Ez a funkció csak a frio témával érhető el." + +#: src/Module/Item/Compose.php:86 +msgid "Compose new personal note" +msgstr "Új személyes jegyzet írása" + +#: src/Module/Item/Compose.php:95 +msgid "Compose new post" +msgstr "Új bejegyzés írása" + +#: src/Module/Item/Compose.php:135 +msgid "Visibility" +msgstr "Láthatóság" + +#: src/Module/Item/Compose.php:156 +msgid "Clear the location" +msgstr "A hely törlése" + +#: src/Module/Item/Compose.php:157 +msgid "Location services are unavailable on your device" +msgstr "A helymeghatározó szolgáltatások nem érhetők el az Ön eszközén" + +#: src/Module/Item/Compose.php:158 +msgid "" +"Location services are disabled. Please check the website's permissions on " +"your device" +msgstr "A helymeghatározó szolgáltatások le vannak tiltva. Ellenőrizze a weboldal jogosultságait az Ön eszközén" + +#: src/Module/Item/Follow.php:52 +msgid "Unable to follow this item." +msgstr "Nem lehet követni ezt az elemet." + +#: src/Module/Maintenance.php:48 src/Module/Maintenance.php:53 +msgid "System down for maintenance" +msgstr "A rendszer le van kapcsolva a karbantartáshoz" + +#: src/Module/Maintenance.php:54 +msgid "" +"This Friendica node is currently in maintenance mode, either automatically " +"because it is self-updating or manually by the node administrator. This " +"condition should be temporary, please come back in a few minutes." +msgstr "Ez a Friendica csomópont jelenleg karbantartási módban van, vagy automatikusan, mert épp önmagát frissíti, vagy kézileg a csomópont adminisztrátora által. Ennek az állapotnak átmenetinek kell lennie, jöjjön vissza néhány perc múlva." + +#: src/Module/Manifest.php:42 +msgid "A Decentralized Social Network" +msgstr "Egy decentralizált közösségi hálózat" + +#: src/Module/Notifications/Introductions.php:78 +msgid "Show Ignored Requests" +msgstr "Mellőzött kérések megjelenítése" + +#: src/Module/Notifications/Introductions.php:78 +msgid "Hide Ignored Requests" +msgstr "Mellőzött kérések elrejtése" + +#: src/Module/Notifications/Introductions.php:94 +#: src/Module/Notifications/Introductions.php:163 +msgid "Notification type:" +msgstr "Értesítés típusa:" + +#: src/Module/Notifications/Introductions.php:97 +msgid "Suggested by:" +msgstr "Ajánlotta:" + +#: src/Module/Notifications/Introductions.php:122 +msgid "Claims to be known to you: " +msgstr "Azt állítja, hogy Ön ismeri: " + +#: src/Module/Notifications/Introductions.php:131 +msgid "Shall your connection be bidirectional or not?" +msgstr "Legyen a kapcsolata kétirányú vagy sem?" + +#: src/Module/Notifications/Introductions.php:132 +#, php-format +msgid "" +"Accepting %s as a friend allows %s to subscribe to your posts, and you will " +"also receive updates from them in your news feed." +msgstr "%s ismerősként való elfogadása lehetővé teszi %s számára, hogy feliratkozzon a bejegyzéseire, és Ön is frissítéseket fog kapni tőle a hírforrásában." + +#: src/Module/Notifications/Introductions.php:133 +#, php-format +msgid "" +"Accepting %s as a subscriber allows them to subscribe to your posts, but you" +" will not receive updates from them in your news feed." +msgstr "%s feliratkozóként való elfogadása lehetővé teszi számára, hogy feliratkozzon a bejegyzéseire, de Ön nem fog frissítéseket kapni tőle a hírforrásában." + +#: src/Module/Notifications/Introductions.php:135 +msgid "Friend" +msgstr "Ismerős" + +#: src/Module/Notifications/Introductions.php:136 +msgid "Subscriber" +msgstr "Feliratkozó" + +#: src/Module/Notifications/Introductions.php:201 +msgid "No introductions." +msgstr "Nincsenek bemutatkozások." + +#: src/Module/Notifications/Introductions.php:202 +#: src/Module/Notifications/Notifications.php:133 +#, php-format +msgid "No more %s notifications." +msgstr "Nincs több %s értesítés." + +#: src/Module/Notifications/Notification.php:103 +msgid "You must be logged in to show this page." +msgstr "Bejelentkezve kell lennie az oldal megtekintéséhez." + +#: src/Module/Notifications/Notifications.php:50 +msgid "Network Notifications" +msgstr "Hálózati értesítések" + +#: src/Module/Notifications/Notifications.php:58 +msgid "System Notifications" +msgstr "Rendszerértesítések" + +#: src/Module/Notifications/Notifications.php:66 +msgid "Personal Notifications" +msgstr "Személyes értesítések" + +#: src/Module/Notifications/Notifications.php:74 +msgid "Home Notifications" +msgstr "Saját értesítések" + +#: src/Module/Notifications/Notifications.php:138 +msgid "Show unread" +msgstr "Olvasatlanok megjelenítése" + +#: src/Module/Notifications/Notifications.php:138 +msgid "Show all" +msgstr "Összes megjelenítése" + +#: src/Module/OAuth/Authorize.php:54 +msgid "Unsupported or missing response type" +msgstr "Nem támogatott vagy hiányzó választípus" + +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:58 +msgid "Incomplete request data" +msgstr "Befejezetlen kérésadat" + +#: src/Module/OAuth/Authorize.php:106 +#, php-format +msgid "" +"Please copy the following authentication code into your application and " +"close this window: %s" +msgstr "Másolja be a következő hitelesítési kódot az alkalmazásába, és zárja be ezt az ablakot: %s" + +#: src/Module/OAuth/Token.php:82 +msgid "Unsupported or missing grant type" +msgstr "Nem támogatott vagy hiányzó felhatalmazástípus" + +#: src/Module/PermissionTooltip.php:25 +#, php-format +msgid "Wrong type \"%s\", expected one of: %s" +msgstr "Hibás típus: „%s”, a következők egyike várt: %s" + +#: src/Module/PermissionTooltip.php:38 +msgid "Model not found" +msgstr "A modell nem található" + +#: src/Module/PermissionTooltip.php:60 +msgid "Remote privacy information not available." +msgstr "A távoli adatvédelmi információk nem érhetők el." + +#: src/Module/PermissionTooltip.php:71 +msgid "Visible to:" +msgstr "Látható nekik:" + +#: src/Module/Photo.php:93 +#, php-format +msgid "The Photo with id %s is not available." +msgstr "A(z) %s azonosítóval rendelkező fénykép nem érhető el." + +#: src/Module/Photo.php:111 +#, php-format +msgid "Invalid photo with id %s." +msgstr "Érvénytelen %s azonosítóval rendelkező fénykép." + +#: src/Module/Profile/Contacts.php:121 +msgid "No contacts." +msgstr "Nincsenek partnerek." + +#: src/Module/Profile/Profile.php:135 +#, php-format +msgid "" +"You're currently viewing your profile as %s Cancel" +msgstr "A profilját jelenleg %s nevében nézi Mégse" + +#: src/Module/Profile/Profile.php:149 +msgid "Member since:" +msgstr "Ekkortól tag:" + +#: src/Module/Profile/Profile.php:155 +msgid "j F, Y" +msgstr "Y. F j." + +#: src/Module/Profile/Profile.php:156 +msgid "j F" +msgstr "F j." + +#: src/Module/Profile/Profile.php:164 src/Util/Temporal.php:163 +msgid "Birthday:" +msgstr "Születésnap:" + +#: src/Module/Profile/Profile.php:167 +#: src/Module/Settings/Profile/Index.php:260 src/Util/Temporal.php:165 +msgid "Age: " +msgstr "Életkor: " + +#: src/Module/Profile/Profile.php:167 +#: src/Module/Settings/Profile/Index.php:260 src/Util/Temporal.php:165 +#, php-format +msgid "%d year old" +msgid_plural "%d years old" +msgstr[0] "%d éves" +msgstr[1] "%d éves" + +#: src/Module/Profile/Profile.php:230 +msgid "Forums:" +msgstr "Fórumok:" + +#: src/Module/Profile/Profile.php:242 +msgid "View profile as:" +msgstr "Profil megtekintése másként:" + +#: src/Module/Profile/Profile.php:259 +msgid "View as" +msgstr "Megtekintés másként" + +#: src/Module/Profile/Profile.php:322 src/Module/Profile/Profile.php:325 +#: src/Module/Profile/Status.php:65 src/Module/Profile/Status.php:68 +#: src/Protocol/Feed.php:943 src/Protocol/OStatus.php:1256 +#, php-format +msgid "%s's timeline" +msgstr "%s idővonala" + +#: src/Module/Profile/Profile.php:323 src/Module/Profile/Status.php:66 +#: src/Protocol/Feed.php:947 src/Protocol/OStatus.php:1260 +#, php-format +msgid "%s's posts" +msgstr "%s bejegyzései" + +#: src/Module/Profile/Profile.php:324 src/Module/Profile/Status.php:67 +#: src/Protocol/Feed.php:950 src/Protocol/OStatus.php:1263 +#, php-format +msgid "%s's comments" +msgstr "%s hozzászólásai" + +#: src/Module/Register.php:69 +msgid "Only parent users can create additional accounts." +msgstr "Csak fölérendelt felhasználók hozhatnak létre további fiókokat." + +#: src/Module/Register.php:101 +msgid "" +"You may (optionally) fill in this form via OpenID by supplying your OpenID " +"and clicking \"Register\"." +msgstr "Kitöltheti ezt az űrlapot OpenID használatán keresztül is az OpenID azonosítója megadásával és „Regisztráció” gombra kattintva (nem kötelező)." + +#: src/Module/Register.php:102 +msgid "" +"If you are not familiar with OpenID, please leave that field blank and fill " +"in the rest of the items." +msgstr "Ha nem ismeri az OpenID-t, akkor hagyja a mezőt üresen, és töltse ki a többi elemet." + +#: src/Module/Register.php:103 +msgid "Your OpenID (optional): " +msgstr "Az Ön OpenID-ja (opcionális): " + +#: src/Module/Register.php:112 +msgid "Include your profile in member directory?" +msgstr "Felveszi a profilját a tagkönyvtárba?" + +#: src/Module/Register.php:135 +msgid "Note for the admin" +msgstr "Jegyzet az adminisztrátornak" + +#: src/Module/Register.php:135 +msgid "Leave a message for the admin, why you want to join this node" +msgstr "Hagyjon üzenetet az adminisztrátornak, hogy miért szeretne ehhez a csomóponthoz csatlakozni" + +#: src/Module/Register.php:136 +msgid "Membership on this site is by invitation only." +msgstr "Ezen az oldalon a tagság csak meghívás alapján van." + +#: src/Module/Register.php:137 +msgid "Your invitation code: " +msgstr "A meghívási kódja: " + +#: src/Module/Register.php:145 +msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " +msgstr "A teljes neve (például Kovács János, valódi vagy valódinak látszó): " + +#: src/Module/Register.php:146 +msgid "" +"Your Email Address: (Initial information will be send there, so this has to " +"be an existing address.)" +msgstr "Az e-mail-címe (a kezdeti információk ide lesznek elküldve, szóval ennek létező címnek kell lennie):" + +#: src/Module/Register.php:147 +msgid "Please repeat your e-mail address:" +msgstr "Ismételje meg az e-mail-címét:" + +#: src/Module/Register.php:149 +msgid "Leave empty for an auto generated password." +msgstr "Hagyja üresen egy automatikusan előállított jelszóhoz." + +#: src/Module/Register.php:151 +#, php-format +msgid "" +"Choose a profile nickname. This must begin with a text character. Your " +"profile address on this site will then be \"nickname@%s\"." +msgstr "Válasszon profilbecenevet. Ennek betűvel kell kezdődnie. Ezután a profilcíme ezen az oldalon „becenév@%s” lesz." + +#: src/Module/Register.php:152 +msgid "Choose a nickname: " +msgstr "Becenév választása: " + +#: src/Module/Register.php:161 +msgid "Import your profile to this friendica instance" +msgstr "A profilja importálása erre a Friendica példányra" + +#: src/Module/Register.php:168 +msgid "Note: This node explicitly contains adult content" +msgstr "Megjegyzés: ez a csomópont kifejezetten tartalmaz felnőtt tartalmat" + +#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155 +msgid "Parent Password:" +msgstr "Fölérendelt jelszó:" + +#: src/Module/Register.php:170 src/Module/Settings/Delegation.php:155 +msgid "" +"Please enter the password of the parent account to legitimize your request." +msgstr "Adja meg a fölérendelt fiók jelszavát a kérése törvényesítéséhez." + +#: src/Module/Register.php:199 +msgid "Password doesn't match." +msgstr "A jelszó nem egyezik." + +#: src/Module/Register.php:205 +msgid "Please enter your password." +msgstr "Adja meg a jelszavát." + +#: src/Module/Register.php:247 +msgid "You have entered too much information." +msgstr "Túl sok információt adott meg." + +#: src/Module/Register.php:271 +msgid "Please enter the identical mail address in the second field." +msgstr "Adja meg a megegyező e-mail-címet a második mezőben." + +#: src/Module/Register.php:298 +msgid "The additional account was created." +msgstr "A további fiók létre lett hozva." + +#: src/Module/Register.php:323 +msgid "" +"Registration successful. Please check your email for further instructions." +msgstr "A regisztráció sikerült. Nézze meg a postafiókját a további utasításokért." + +#: src/Module/Register.php:327 +#, php-format +msgid "" +"Failed to send email message. Here your accout details:
login: %s
" +"password: %s

You can change your password after login." +msgstr "Nem sikerült elküldeni az e-mail üzenetet. Itt vannak a fiók részletei:
Bejelentkezés: %s
Jelszó: %s

A jelszavát bejelentkezés után változtathatja meg." + +#: src/Module/Register.php:333 +msgid "Registration successful." +msgstr "A regisztráció sikerült." + +#: src/Module/Register.php:338 src/Module/Register.php:345 +msgid "Your registration can not be processed." +msgstr "A regisztrációját nem lehet feldolgozni." + +#: src/Module/Register.php:344 +msgid "You have to leave a request note for the admin." +msgstr "Hagynia kell egy kérelmi jegyzetet az adminisztrátornak." + +#: src/Module/Register.php:390 +msgid "Your registration is pending approval by the site owner." +msgstr "A regisztrációja jóváhagyásra vár az oldal tulajdonosától." + +#: src/Module/RemoteFollow.php:67 +msgid "The provided profile link doesn't seem to be valid" +msgstr "A megadott profilhivatkozás nem tűnik érvényesnek" + +#: src/Module/RemoteFollow.php:105 +#, php-format +msgid "" +"Enter your Webfinger address (user@domain.tld) or profile URL here. If this " +"isn't supported by your system, you have to subscribe to %s" +" or %s directly on your system." +msgstr "Adja meg itt a WebFinger-címét (felhasználó@tartomány.tld) vagy a profil URL-jét. Ha ezt nem támogatja a rendszere, akkor fel kell iratkoznia a(z) %s vagy a(z) %s címre közvetlenül a rendszerén." + +#: src/Module/Search/Index.php:54 +msgid "Only logged in users are permitted to perform a search." +msgstr "Csak bejelentkezett felhasználóknak engedélyezett a keresés végrehajtása." + +#: src/Module/Search/Index.php:76 +msgid "Only one search per minute is permitted for not logged in users." +msgstr "Percenként csak egy keresés engedélyezett a nem bejelentkezett felhasználóknak." + +#: src/Module/Search/Index.php:192 +#, php-format +msgid "Items tagged with: %s" +msgstr "Ezzel címkézett elemek: %s" + +#: src/Module/Search/Saved.php:45 +msgid "Search term was not saved." +msgstr "A keresési kifejezés nem lett elmentve." + +#: src/Module/Search/Saved.php:48 +msgid "Search term already saved." +msgstr "A keresési kifejezés már el van mentve." + +#: src/Module/Search/Saved.php:54 +msgid "Search term was not removed." +msgstr "A keresési kifejezés nem lett eltávolítva." + +#: src/Module/Security/Login.php:105 +msgid "Create a New Account" +msgstr "Új fiók létrehozása" + +#: src/Module/Security/Login.php:130 +msgid "Your OpenID: " +msgstr "Az Ön OpenID-ja: " + +#: src/Module/Security/Login.php:133 +msgid "" +"Please enter your username and password to add the OpenID to your existing " +"account." +msgstr "Adja meg a felhasználónevét és a jelszavát, hogy hozzáadja az OpenID azonosítóját a meglévő fiókjához." + +#: src/Module/Security/Login.php:135 +msgid "Or login using OpenID: " +msgstr "Vagy bejelentkezés OpenID használatával: " + +#: src/Module/Security/Login.php:149 +msgid "Password: " +msgstr "Jelszó: " + +#: src/Module/Security/Login.php:150 +msgid "Remember me" +msgstr "Emlékezzen rám" + +#: src/Module/Security/Login.php:159 +msgid "Forgot your password?" +msgstr "Elfelejtette a jelszavát?" + +#: src/Module/Security/Login.php:162 +msgid "Website Terms of Service" +msgstr "Weboldal használati feltételei" + +#: src/Module/Security/Login.php:163 +msgid "terms of service" +msgstr "használati feltételek" + +#: src/Module/Security/Login.php:165 +msgid "Website Privacy Policy" +msgstr "Weboldal adatvédelmi irányelvei" + +#: src/Module/Security/Login.php:166 +msgid "privacy policy" +msgstr "adatvédelmi irányelv" + +#: src/Module/Security/Logout.php:61 +msgid "Logged out." +msgstr "Kijelentkezve." + +#: src/Module/Security/OpenID.php:54 +msgid "OpenID protocol error. No ID returned" +msgstr "OpenID protokollhiba. Nem lett azonosító visszaadva" + +#: src/Module/Security/OpenID.php:92 +msgid "" +"Account not found. Please login to your existing account to add the OpenID " +"to it." +msgstr "A fiók nem található. Jelentkezzen be a meglévő fiókjába, hogy hozzáadja az OpenID-t ahhoz." + +#: src/Module/Security/OpenID.php:94 +msgid "" +"Account not found. Please register a new account or login to your existing " +"account to add the OpenID to it." +msgstr "A fiók nem található. Regisztráljon új fiókot vagy jelentkezzen be a meglévő fiókjába, hogy hozzáadja az OpenID-t ahhoz." + +#: src/Module/Security/TwoFactor/Recovery.php:60 +#, php-format +msgid "Remaining recovery codes: %d" +msgstr "Hátralévő visszaszerzési kódok: %d" + +#: src/Module/Security/TwoFactor/Recovery.php:64 +#: src/Module/Security/TwoFactor/Verify.php:75 +#: src/Module/Settings/TwoFactor/Verify.php:82 +msgid "Invalid code, please retry." +msgstr "Érvénytelen kód, próbálja újra." + +#: src/Module/Security/TwoFactor/Recovery.php:83 +msgid "Two-factor recovery" +msgstr "Kétlépcsős visszaszerzés" + +#: src/Module/Security/TwoFactor/Recovery.php:84 +msgid "" +"

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

" +msgstr "

Megadhatja az egyszeri visszaszerzési kódjai egyikét abban az esetben, ha elvesztette a hozzáférést a mobil eszközéhez.

" + +#: src/Module/Security/TwoFactor/Recovery.php:85 +#: src/Module/Security/TwoFactor/Verify.php:98 +#, php-format +msgid "Don’t have your phone? Enter a two-factor recovery code" +msgstr "Nincs meg a telefonja? Adjon meg egy kétlépcsős visszaszerzési kódot" + +#: src/Module/Security/TwoFactor/Recovery.php:86 +msgid "Please enter a recovery code" +msgstr "Adjon meg egy visszaszerzési kódot" + +#: src/Module/Security/TwoFactor/Recovery.php:87 +msgid "Submit recovery code and complete login" +msgstr "Visszaszerzési kód elküldése és a bejelentkezés befejezése" + +#: src/Module/Security/TwoFactor/Verify.php:95 +msgid "" +"

Open the two-factor authentication app on your device to get an " +"authentication code and verify your identity.

" +msgstr "

Nyissa meg a kétlépcsős hitelesítés alkalmazást az eszközén, hogy megkapjon egy hitelesítő kódot és ellenőrizze a személyazonosságát.

" + +#: src/Module/Security/TwoFactor/Verify.php:99 +#: src/Module/Settings/TwoFactor/Verify.php:141 +msgid "Please enter a code from your authentication app" +msgstr "Adjon meg egy kódot a hitelesítő alkalmazásából" + +#: src/Module/Security/TwoFactor/Verify.php:100 +msgid "This is my two-factor authenticator app device" +msgstr "Ez az én kétlépcsős hitelesítő alkalmazás eszközöm" + +#: src/Module/Security/TwoFactor/Verify.php:101 +msgid "Verify code and complete login" +msgstr "Kód ellenőrzése és a bejelentkezés befejezése" + +#: src/Module/Settings/Delegation.php:53 +msgid "Delegation successfully granted." +msgstr "A meghatalmazás sikeresen megadva." + +#: src/Module/Settings/Delegation.php:55 +msgid "Parent user not found, unavailable or password doesn't match." +msgstr "A fölérendelt felhasználó nem található, nem érhető el vagy a jelszó nem egyezik." + +#: src/Module/Settings/Delegation.php:59 +msgid "Delegation successfully revoked." +msgstr "A meghatalmazás sikeresen visszavonva." + +#: src/Module/Settings/Delegation.php:81 +#: src/Module/Settings/Delegation.php:103 +msgid "" +"Delegated administrators can view but not change delegation permissions." +msgstr "A meghatalmazott adminisztrátorok megtekinthetik, de nem változtathatják meg a meghatalmazás jogosultságait." + +#: src/Module/Settings/Delegation.php:95 +msgid "Delegate user not found." +msgstr "A meghatalmazott felhasználó nem található." + +#: src/Module/Settings/Delegation.php:143 +msgid "No parent user" +msgstr "Nincs fölérendelt felhasználó" + +#: src/Module/Settings/Delegation.php:154 +#: src/Module/Settings/Delegation.php:165 +msgid "Parent User" +msgstr "Fölérendelt felhasználó" + +#: src/Module/Settings/Delegation.php:162 +msgid "Additional Accounts" +msgstr "További fiókok" + +#: src/Module/Settings/Delegation.php:163 +msgid "" +"Register additional accounts that are automatically connected to your " +"existing account so you can manage them from this account." +msgstr "További fiókok regisztrálása, amelyek automatikusan hozzá vannak kapcsolva a meglévő fiókjához, így ebből a fiókból kezelheti azokat." + +#: src/Module/Settings/Delegation.php:164 +msgid "Register an additional account" +msgstr "További fiók regisztrálása" + +#: src/Module/Settings/Delegation.php:168 +msgid "" +"Parent users have total control about this account, including the account " +"settings. Please double check whom you give this access." +msgstr "A fölérendelt felhasználóknak teljes ellenőrzése van ezen fiók fölött, beleértve a fiók beállításait is. Ellenőrizze még egyszer, hogy kinek ad hozzáférést." + +#: src/Module/Settings/Delegation.php:172 +msgid "Delegates" +msgstr "Meghatalmazottak" + +#: src/Module/Settings/Delegation.php:174 +msgid "" +"Delegates are able to manage all aspects of this account/page except for " +"basic account settings. Please do not delegate your personal account to " +"anybody that you do not trust completely." +msgstr "A meghatalmazottak képesek ezen fiókot vagy oldalt minden szempontból kezelni, kivéve az alapvető fiókbeállításokat. Ne hatalmazzon meg senki mást a személyes fiókja kezeléséhez, akiben nem bízik meg teljes mértékben." + +#: src/Module/Settings/Delegation.php:175 +msgid "Existing Page Delegates" +msgstr "Meglévő oldalmeghatalmazottak" + +#: src/Module/Settings/Delegation.php:177 +msgid "Potential Delegates" +msgstr "Lehetséges meghatalmazottak" + +#: src/Module/Settings/Delegation.php:180 +msgid "Add" +msgstr "Hozzáadás" + +#: src/Module/Settings/Delegation.php:181 +msgid "No entries." +msgstr "Nincsenek bejegyzések." + +#: src/Module/Settings/Display.php:105 +msgid "The theme you chose isn't available." +msgstr "A választott téma nem érhető el." + +#: src/Module/Settings/Display.php:142 +#, php-format +msgid "%s - (Unsupported)" +msgstr "%s – (nem támogatott)" + +#: src/Module/Settings/Display.php:188 +msgid "Display Settings" +msgstr "Megjelenítési beállítások" + +#: src/Module/Settings/Display.php:190 +msgid "General Theme Settings" +msgstr "Általános témabeállítások" + +#: src/Module/Settings/Display.php:191 +msgid "Custom Theme Settings" +msgstr "Egyéni témabeállítások" + +#: src/Module/Settings/Display.php:192 +msgid "Content Settings" +msgstr "Tartalombeállítások" + +#: src/Module/Settings/Display.php:193 view/theme/duepuntozero/config.php:70 +#: view/theme/frio/config.php:161 view/theme/quattro/config.php:72 +#: view/theme/vier/config.php:120 +msgid "Theme settings" +msgstr "Témabeállítások" + +#: src/Module/Settings/Display.php:194 +msgid "Calendar" +msgstr "Naptár" + +#: src/Module/Settings/Display.php:200 +msgid "Display Theme:" +msgstr "Megjelenítés témája:" + +#: src/Module/Settings/Display.php:201 +msgid "Mobile Theme:" +msgstr "Mobil téma:" + +#: src/Module/Settings/Display.php:204 +msgid "Number of items to display per page:" +msgstr "Oldalanként megjelenítendő elemek száma:" + +#: src/Module/Settings/Display.php:204 src/Module/Settings/Display.php:205 +msgid "Maximum of 100 items" +msgstr "Legfeljebb 100 elem" + +#: src/Module/Settings/Display.php:205 +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:206 +msgid "Update browser every xx seconds" +msgstr "Böngésző frissítése N másodpercenként" + +#: src/Module/Settings/Display.php:206 +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:207 +msgid "Automatic updates only at the top of the post stream pages" +msgstr "Automatikus frissítések csak a bejegyzésfolyam oldalainak tetejénél" + +#: src/Module/Settings/Display.php:207 +msgid "" +"Auto update may add new posts at the top of the post stream pages, which can" +" affect the scroll position and perturb normal reading if it happens " +"anywhere else the top of the page." +msgstr "Az automatikus frissítés új bejegyzéseket adhat a bejegyzésfolyam oldalainak tetejéhez, amely hatással lehet a görgetési pozícióra és megzavarhatja a normál olvasást, ha az oldal tetejének bármely részén történik." + +#: src/Module/Settings/Display.php:208 +msgid "Don't show emoticons" +msgstr "Ne jelenítsen meg hangulatjeleket" + +#: src/Module/Settings/Display.php:208 +msgid "" +"Normally emoticons are replaced with matching symbols. This setting disables" +" this behaviour." +msgstr "Általában a hangulatjelek ki lesznek cserélve a megfelelő szimbólumokkal. Ez a beállítás letiltja ezt a viselkedést." + +#: src/Module/Settings/Display.php:209 +msgid "Infinite scroll" +msgstr "Végtelen görgetés" + +#: src/Module/Settings/Display.php:209 +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:210 +msgid "Disable Smart Threading" +msgstr "Intelligens szálkezelés letiltása" + +#: src/Module/Settings/Display.php:210 +msgid "Disable the automatic suppression of extraneous thread indentation." +msgstr "A nem odatartozó szálbehúzások automatikus elnyomásának letiltása." + +#: src/Module/Settings/Display.php:211 +msgid "Hide the Dislike feature" +msgstr "A nem tetszik funkció elrejtése" + +#: src/Module/Settings/Display.php:211 +msgid "Hides the Dislike button and dislike reactions on posts and comments." +msgstr "Elrejti a nem tetszik gombot és a nem tetszik reakciókat a bejegyzéseknél és a hozzászólásoknál." + +#: src/Module/Settings/Display.php:212 +msgid "Display the resharer" +msgstr "Az újramegosztó megjelenítése" + +#: src/Module/Settings/Display.php:212 +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:213 +msgid "Stay local" +msgstr "Maradjon helyi" + +#: src/Module/Settings/Display.php:213 +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:215 +msgid "Beginning of week:" +msgstr "A hét kezdete:" + +#: src/Module/Settings/Profile/Index.php:85 +msgid "Profile Name is required." +msgstr "A profil neve kötelező." + +#: src/Module/Settings/Profile/Index.php:137 +msgid "Profile couldn't be updated." +msgstr "A profilt nem sikerült frissíteni." + +#: src/Module/Settings/Profile/Index.php:187 +#: src/Module/Settings/Profile/Index.php:207 +msgid "Label:" +msgstr "Címke:" + +#: src/Module/Settings/Profile/Index.php:188 +#: src/Module/Settings/Profile/Index.php:208 +msgid "Value:" +msgstr "Érték:" + +#: src/Module/Settings/Profile/Index.php:198 +#: src/Module/Settings/Profile/Index.php:218 +msgid "Field Permissions" +msgstr "Mező jogosultságai" + +#: src/Module/Settings/Profile/Index.php:199 +#: src/Module/Settings/Profile/Index.php:219 +msgid "(click to open/close)" +msgstr "(kattintson a megnyitáshoz vagy bezáráshoz)" + +#: src/Module/Settings/Profile/Index.php:205 +msgid "Add a new profile field" +msgstr "Új profilmező hozzáadása" + +#: src/Module/Settings/Profile/Index.php:235 +msgid "Profile Actions" +msgstr "Profilműveletek" + +#: src/Module/Settings/Profile/Index.php:236 +msgid "Edit Profile Details" +msgstr "Profil részleteinek szerkesztése" + +#: src/Module/Settings/Profile/Index.php:238 +msgid "Change Profile Photo" +msgstr "Profilfénykép megváltoztatása" + +#: src/Module/Settings/Profile/Index.php:243 +msgid "Profile picture" +msgstr "Profilfénykép" + +#: src/Module/Settings/Profile/Index.php:244 +msgid "Location" +msgstr "Hely" + +#: src/Module/Settings/Profile/Index.php:245 src/Util/Temporal.php:93 +#: src/Util/Temporal.php:95 +msgid "Miscellaneous" +msgstr "Egyebek" + +#: src/Module/Settings/Profile/Index.php:246 +msgid "Custom Profile Fields" +msgstr "Egyéni profilmezők" + +#: src/Module/Settings/Profile/Index.php:248 src/Module/Welcome.php:58 +msgid "Upload Profile Photo" +msgstr "Profilfénykép feltöltése" + +#: src/Module/Settings/Profile/Index.php:252 +msgid "Display name:" +msgstr "Megjelenített név:" + +#: src/Module/Settings/Profile/Index.php:255 +msgid "Street Address:" +msgstr "Utca, házszám:" + +#: src/Module/Settings/Profile/Index.php:256 +msgid "Locality/City:" +msgstr "Helység vagy város:" + +#: src/Module/Settings/Profile/Index.php:257 +msgid "Region/State:" +msgstr "Régió vagy állam:" + +#: src/Module/Settings/Profile/Index.php:258 +msgid "Postal/Zip Code:" +msgstr "Irányítószám:" + +#: src/Module/Settings/Profile/Index.php:259 +msgid "Country:" +msgstr "Ország:" + +#: src/Module/Settings/Profile/Index.php:261 +msgid "XMPP (Jabber) address:" +msgstr "XMPP (Jabber) cím:" + +#: src/Module/Settings/Profile/Index.php:261 +msgid "" +"The XMPP address will be propagated to your contacts so that they can follow" +" you." +msgstr "Az XMPP-cím továbbításra kerül a partnereinek, hogy követni tudják Önt." + +#: src/Module/Settings/Profile/Index.php:262 +msgid "Homepage URL:" +msgstr "Honlap URL:" + +#: src/Module/Settings/Profile/Index.php:263 +msgid "Public Keywords:" +msgstr "Nyilvános kulcsszavak:" + +#: src/Module/Settings/Profile/Index.php:263 +msgid "(Used for suggesting potential friends, can be seen by others)" +msgstr "(Lehetséges ismerősök ajánlásához lesz használva, mások is láthatják)" + +#: src/Module/Settings/Profile/Index.php:264 +msgid "Private Keywords:" +msgstr "Személyes kulcsszavak:" + +#: src/Module/Settings/Profile/Index.php:264 +msgid "(Used for searching profiles, never shown to others)" +msgstr "(Profilok kereséséhez lesz használva, sosem látható másoknak)" + +#: src/Module/Settings/Profile/Index.php:265 +#, php-format +msgid "" +"

Custom fields appear on your profile page.

\n" +"\t\t\t\t

You can use BBCodes in the field values.

\n" +"\t\t\t\t

Reorder by dragging the field title.

\n" +"\t\t\t\t

Empty the label field to remove a custom field.

\n" +"\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.

" +msgstr "

Az egyéni mezők a profiloldalán jelennek meg.

\n\t\t\t\t

Használhat BBCode formázásokat a mező értékeiben.

\n\t\t\t\t

Átrendezheti a mező címének húzásával.

\n\t\t\t\t

Törölje ki a címkemezőt egy egyéni mező eltávolításához.

\n\t\t\t\t

A nem nyilvános mezőket csak a kijelölt Friendica partnerek vagy a kijelölt csoportban lévő Friendica partnerek láthatják.

" + +#: src/Module/Settings/Profile/Photo/Crop.php:102 +#: src/Module/Settings/Profile/Photo/Crop.php:118 +#: src/Module/Settings/Profile/Photo/Crop.php:134 +#: src/Module/Settings/Profile/Photo/Index.php:103 +#, php-format +msgid "Image size reduction [%s] failed." +msgstr "A kép méretének csökkentése [%s] sikertelen." + +#: src/Module/Settings/Profile/Photo/Crop.php:139 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Töltse újra az oldalt a Shift billentyű lenyomása közben, vagy törölje a böngésző gyorsítótárát, ha az új fénykép nem jelenik meg azonnal." + +#: src/Module/Settings/Profile/Photo/Crop.php:147 +msgid "Unable to process image" +msgstr "Nem lehet feldolgozni a képet" + +#: src/Module/Settings/Profile/Photo/Crop.php:166 +msgid "Photo not found." +msgstr "A fénykép nem található." + +#: src/Module/Settings/Profile/Photo/Crop.php:190 +msgid "Profile picture successfully updated." +msgstr "A profilfénykép sikeresen frissítve." + +#: src/Module/Settings/Profile/Photo/Crop.php:213 +#: src/Module/Settings/Profile/Photo/Crop.php:217 +msgid "Crop Image" +msgstr "Kép levágása" + +#: src/Module/Settings/Profile/Photo/Crop.php:214 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Igazítsa a kép levágását az optimális megtekintéshez." + +#: src/Module/Settings/Profile/Photo/Crop.php:216 +msgid "Use Image As Is" +msgstr "Kép használata, ahogy van" + +#: src/Module/Settings/Profile/Photo/Index.php:47 +msgid "Missing uploaded image." +msgstr "Hiányzó feltöltött kép." + +#: src/Module/Settings/Profile/Photo/Index.php:126 +msgid "Profile Picture Settings" +msgstr "Profilfénykép beállításai" + +#: src/Module/Settings/Profile/Photo/Index.php:127 +msgid "Current Profile Picture" +msgstr "Jelenlegi profilfénykép" + +#: src/Module/Settings/Profile/Photo/Index.php:128 +msgid "Upload Profile Picture" +msgstr "Profilfénykép feltöltése" + +#: src/Module/Settings/Profile/Photo/Index.php:129 +msgid "Upload Picture:" +msgstr "Fénykép feltöltése:" + +#: src/Module/Settings/Profile/Photo/Index.php:134 +msgid "or" +msgstr "vagy" + +#: src/Module/Settings/Profile/Photo/Index.php:136 +msgid "skip this step" +msgstr "ezen lépés kihagyása" + +#: src/Module/Settings/Profile/Photo/Index.php:138 +msgid "select a photo from your photo albums" +msgstr "fénykép kiválasztása a fényképalbumából" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:52 +#: src/Module/Settings/TwoFactor/Recovery.php:50 +#: src/Module/Settings/TwoFactor/Trusted.php:30 +#: src/Module/Settings/TwoFactor/Verify.php:56 +msgid "Please enter your password to access this page." +msgstr "Adja meg a jelszavát az oldal eléréséhez." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:70 +msgid "App-specific password generation failed: The description is empty." +msgstr "Az alkalmazásfüggő jelszó előállítása sikertelen: a leírás üres." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:73 +msgid "" +"App-specific password generation failed: This description already exists." +msgstr "Az alkalmazásfüggő jelszó előállítása sikertelen: a leírás már létezik." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:77 +msgid "New app-specific password generated." +msgstr "Az új alkalmazásfüggő jelszó előállítva." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:83 +msgid "App-specific passwords successfully revoked." +msgstr "Az alkalmazásfüggő jelszavak sikeresen visszavonva." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:93 +msgid "App-specific password successfully revoked." +msgstr "Az alkalmazásfüggő jelszó sikeresen visszavonva." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:114 +msgid "Two-factor app-specific passwords" +msgstr "Kétlépcsős alkalmazásfüggő jelszavak" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:116 +msgid "" +"

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.

" +msgstr "

Az alkalmazásfüggő jelszavak az Ön szokásos jelszava helyett használt véletlenszerűen előállított jelszavak, hogy hitelesítsék a fiókját az olyan harmadik féltől származó alkalmazásoknál, amelyek nem támogatják a kétlépcsős hitelesítést.

" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:117 +msgid "" +"Make sure to copy your new app-specific password now. You won’t be able to " +"see it again!" +msgstr "Győződjön meg arról, hogy lemásolta-e most az új alkalmazásfüggő jelszavát. Nem fogja tudni újra megnézni a jelszót!" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:120 +msgid "Description" +msgstr "Leírás" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:121 +msgid "Last Used" +msgstr "Legutóbb használt" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:122 +msgid "Revoke" +msgstr "Visszavonás" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:123 +msgid "Revoke All" +msgstr "Összes visszavonása" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:126 +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 "Ha új alkalmazásfüggő jelszót állít elő, akkor azonnal fel kell használnia. Akkor lesz megjelenítve Önnek, miután előállította azt." + +#: src/Module/Settings/TwoFactor/AppSpecific.php:127 +msgid "Generate new app-specific password" +msgstr "Új alkalmazásfüggő jelszó előállítása" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:128 +msgid "Friendiqa on my Fairphone 2..." +msgstr "Friendiqa a Fairphone 2 készülékemen…" + +#: src/Module/Settings/TwoFactor/AppSpecific.php:129 +msgid "Generate" +msgstr "Előállítás" + +#: src/Module/Settings/TwoFactor/Index.php:67 +msgid "Two-factor authentication successfully disabled." +msgstr "A kétlépcsős hitelesítés sikeresen letiltva." + +#: src/Module/Settings/TwoFactor/Index.php:93 +msgid "Wrong Password" +msgstr "Hibás jelszó" + +#: src/Module/Settings/TwoFactor/Index.php:113 +msgid "" +"

Use an application on a mobile device to get two-factor authentication " +"codes when prompted on login.

" +msgstr "

Egy alkalmazás használata egy mobil eszközön, hogy megkapja a kétlépcsős hitelesítés kódjait, ha a bejelentkezéskor kérik.

" + +#: src/Module/Settings/TwoFactor/Index.php:117 +msgid "Authenticator app" +msgstr "Hitelesítő alkalmazás" + +#: src/Module/Settings/TwoFactor/Index.php:118 +msgid "Configured" +msgstr "Beállítva" + +#: src/Module/Settings/TwoFactor/Index.php:118 +msgid "Not Configured" +msgstr "Nincs beállítva" + +#: src/Module/Settings/TwoFactor/Index.php:119 +msgid "

You haven't finished configuring your authenticator app.

" +msgstr "

Nem fejezte be a hitelesítő alkalmazása beállítását.

" + +#: src/Module/Settings/TwoFactor/Index.php:120 +msgid "

Your authenticator app is correctly configured.

" +msgstr "

A hitelesítő alkalmazása megfelelően be van állítva.

" + +#: src/Module/Settings/TwoFactor/Index.php:122 +msgid "Recovery codes" +msgstr "Visszaszerzési kódok" + +#: src/Module/Settings/TwoFactor/Index.php:123 +msgid "Remaining valid codes" +msgstr "Hátralévő érvényes kódok" + +#: src/Module/Settings/TwoFactor/Index.php:125 +msgid "" +"

These one-use codes can replace an authenticator app code in case you " +"have lost access to it.

" +msgstr "

Ezek az egyszer használható kódok helyettesíthetnek egy hitelesítő alkalmazás kódot abban az esetben, ha elveszíti a hozzáférést ahhoz.

" + +#: src/Module/Settings/TwoFactor/Index.php:127 +msgid "App-specific passwords" +msgstr "Alkalmazásfüggő jelszavak" + +#: src/Module/Settings/TwoFactor/Index.php:128 +msgid "Generated app-specific passwords" +msgstr "Előállított alkalmazásfüggő jelszavak" + +#: src/Module/Settings/TwoFactor/Index.php:130 +msgid "" +"

These randomly generated passwords allow you to authenticate on apps not " +"supporting two-factor authentication.

" +msgstr "

Ezek a véletlenszerűen előállított jelszavak lehetővé teszik, hogy olyan alkalmazásoknál hitelesítsen, amelyek nem támogatják a kétlépcsős hitelesítést.

" + +#: src/Module/Settings/TwoFactor/Index.php:133 +msgid "Current password:" +msgstr "Jelenlegi jelszó:" + +#: src/Module/Settings/TwoFactor/Index.php:133 +msgid "" +"You need to provide your current password to change two-factor " +"authentication settings." +msgstr "Meg kell adnia a jelenlegi jelszavát a kétlépcsős hitelesítési beállítások megváltoztatásához." + +#: src/Module/Settings/TwoFactor/Index.php:134 +msgid "Enable two-factor authentication" +msgstr "Kétlépcsős hitelesítés engedélyezése" + +#: src/Module/Settings/TwoFactor/Index.php:135 +msgid "Disable two-factor authentication" +msgstr "Kétlépcsős hitelesítés letiltása" + +#: src/Module/Settings/TwoFactor/Index.php:136 +msgid "Show recovery codes" +msgstr "Visszaszerzési kódok megjelenítése" + +#: src/Module/Settings/TwoFactor/Index.php:137 +msgid "Manage app-specific passwords" +msgstr "Alkalmazásfüggő jelszavak kezelése" + +#: src/Module/Settings/TwoFactor/Index.php:138 +msgid "Manage trusted browsers" +msgstr "Megbízható böngészők kezelése" + +#: src/Module/Settings/TwoFactor/Index.php:139 +msgid "Finish app configuration" +msgstr "Alkalmazás beállításának befejezése" + +#: src/Module/Settings/TwoFactor/Recovery.php:66 +msgid "New recovery codes successfully generated." +msgstr "Az új visszaszerzési kódok sikeresen előállítva." + +#: src/Module/Settings/TwoFactor/Recovery.php:92 +msgid "Two-factor recovery codes" +msgstr "Kétlépcsős visszaszerzési kódok" + +#: src/Module/Settings/TwoFactor/Recovery.php:94 +msgid "" +"

Recovery codes can be used to access your account in the event you lose " +"access to your device and cannot receive two-factor authentication " +"codes.

Put these in a safe spot! If you lose your " +"device and don’t have the recovery codes you will lose access to your " +"account.

" +msgstr "

A visszaszerzési kódok használhatók a fiókjához való hozzáféréséhez abban az esetben, ha elveszti a hozzáférést az eszközéhez, és nem tud kétlépcsős hitelesítési kódokat fogadni.

Tegye ezeket biztonságos helyre! Ha elveszti az eszközét és nincsenek meg a visszaszerzési kódjai, akkor el fogja veszíteni a fiókjához való hozzáférést.

" + +#: src/Module/Settings/TwoFactor/Recovery.php:96 +msgid "" +"When you generate new recovery codes, you must copy the new codes. Your old " +"codes won’t work anymore." +msgstr "Ha új visszaszerzési kódokat állít elő, akkor le kell másolnia az új kódokat. A régi kódjai többé nem fognak működni." + +#: src/Module/Settings/TwoFactor/Recovery.php:97 +msgid "Generate new recovery codes" +msgstr "Új visszaszerzési kódok előállítása" + +#: src/Module/Settings/TwoFactor/Recovery.php:99 +msgid "Next: Verification" +msgstr "Következő: ellenőrzés" + +#: src/Module/Settings/TwoFactor/Trusted.php:49 +msgid "Trusted browsers successfully removed." +msgstr "A megbízható böngészők sikeresen eltávolítva." + +#: src/Module/Settings/TwoFactor/Trusted.php:59 +msgid "Trusted browser successfully removed." +msgstr "A megbízható böngésző sikeresen eltávolítva." + +#: src/Module/Settings/TwoFactor/Trusted.php:97 +msgid "Two-factor Trusted Browsers" +msgstr "Kétlépcsős megbízható böngészők" + +#: src/Module/Settings/TwoFactor/Trusted.php:98 +msgid "" +"Trusted browsers are individual browsers you chose to skip two-factor " +"authentication to access Friendica. Please use this feature sparingly, as it" +" can negate the benefit of two-factor authentication." +msgstr "A megbízható böngészők azok az egyéni böngészők, amelyeknél a kétlépcsős hitelesítés kihagyását választotta a Friendica alkalmazáshoz való hozzáféréshez. Lehetőleg mellőzze ennek a funkciónak a használatát, mivel ez megszüntetheti a kétlépcsős hitelesítés előnyeit." + +#: src/Module/Settings/TwoFactor/Trusted.php:99 +msgid "Device" +msgstr "Eszköz" + +#: src/Module/Settings/TwoFactor/Trusted.php:100 +msgid "OS" +msgstr "Operációs rendszer" + +#: src/Module/Settings/TwoFactor/Trusted.php:102 +msgid "Trusted" +msgstr "Megbízható" + +#: src/Module/Settings/TwoFactor/Trusted.php:103 +msgid "Last Use" +msgstr "Utolsó használat" + +#: src/Module/Settings/TwoFactor/Trusted.php:105 +msgid "Remove All" +msgstr "Összes eltávolítása" + +#: src/Module/Settings/TwoFactor/Verify.php:78 +msgid "Two-factor authentication successfully activated." +msgstr "A kétlépcsős hitelesítés sikeresen bekapcsolva." + +#: src/Module/Settings/TwoFactor/Verify.php:111 +#, php-format +msgid "" +"

Or you can submit the authentication settings manually:

\n" +"
\n" +"\t
Issuer
\n" +"\t
%s
\n" +"\t
Account Name
\n" +"\t
%s
\n" +"\t
Secret Key
\n" +"\t
%s
\n" +"\t
Type
\n" +"\t
Time-based
\n" +"\t
Number of digits
\n" +"\t
6
\n" +"\t
Hashing algorithm
\n" +"\t
SHA-1
\n" +"
" +msgstr "

Vagy elküldheti a hitelesítési beállításokat kézzel:

\n
\n\t
Kibocsájtó
\n\t
%s
\n\t
Fiók neve
\n\t
%s
\n\t
Titkos kulcs
\n\t
%s
\n\t
Típus
\n\t
Időalapú
\n\t
Számjegyek száma
\n\t
6
\n\t
Kivonatoló algoritmus
\n\t
SHA-1
\n
" + +#: src/Module/Settings/TwoFactor/Verify.php:131 +msgid "Two-factor code verification" +msgstr "Kétlépcsős kód ellenőrzése" + +#: src/Module/Settings/TwoFactor/Verify.php:133 +msgid "" +"

Please scan this QR Code with your authenticator app and submit the " +"provided code.

" +msgstr "

Olvassa be ezt a QR-kódot a hitelesítő alkalmazásával, és küldje el a megkapott kódot.

" + +#: src/Module/Settings/TwoFactor/Verify.php:135 +#, php-format +msgid "" +"

Or you can open the following URL in your mobile device:

%s

" +msgstr "

Vagy megnyithatja a következő URL-t a mobil eszközén:

%s

" + +#: src/Module/Settings/TwoFactor/Verify.php:142 +msgid "Verify code and enable two-factor authentication" +msgstr "Kód ellenőrzése és a kétlépcsős hitelesítés engedélyezése" + +#: src/Module/Settings/UserExport.php:69 +msgid "Export account" +msgstr "Fiók exportálása" + +#: src/Module/Settings/UserExport.php:69 +msgid "" +"Export your account info and contacts. Use this to make a backup of your " +"account and/or to move it to another server." +msgstr "Fiókinformációk és partnerek exportálása. A fiókjáról történő biztonsági mentés készítéséhez és/vagy egy másik kiszolgálóra való áthelyezéséhez használja ezt." + +#: src/Module/Settings/UserExport.php:70 +msgid "Export all" +msgstr "Összes exportálása" + +#: src/Module/Settings/UserExport.php:70 +msgid "" +"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)" +msgstr "Fiókinformációk, partnerek és az összes elem exportálása JSON-formátumban. nagyon nagy fájl is lehet, és sokáig eltarthat. A fiókja teljes biztonsági mentésének elkészítéséhez használja ezt (a fényképek nem lesznek exportálva)." + +#: src/Module/Settings/UserExport.php:71 +msgid "Export Contacts to CSV" +msgstr "Partnerek exportálása CSV-fájlba" + +#: src/Module/Settings/UserExport.php:71 +msgid "" +"Export the list of the accounts you are following as CSV file. Compatible to" +" e.g. Mastodon." +msgstr "A követett fiókok listájának exportálása CSV-fájlként. Kompatibilis például a Mastodonnal." + +#: src/Module/Special/HTTPException.php:49 +msgid "Bad Request" +msgstr "Hibás kérés" + +#: src/Module/Special/HTTPException.php:51 +msgid "Forbidden" +msgstr "Tiltott" + +#: src/Module/Special/HTTPException.php:52 +msgid "Not Found" +msgstr "Nem található" + +#: src/Module/Special/HTTPException.php:54 +msgid "Service Unavailable" +msgstr "A szolgáltatás nem érhető el" + +#: src/Module/Special/HTTPException.php:61 +msgid "" +"The server cannot or will not process the request due to an apparent client " +"error." +msgstr "A kiszolgáló nem tudja vagy nem fogja feldolgozni a kérést egy nyilvánvaló klienshiba miatt." + +#: src/Module/Special/HTTPException.php:62 +msgid "" +"Authentication is required and has failed or has not yet been provided." +msgstr "Hitelesítés szükséges, és sikertelen volt vagy még nem lett megadva." + +#: src/Module/Special/HTTPException.php:63 +msgid "" +"The request was valid, but the server is refusing action. The user might not" +" have the necessary permissions for a resource, or may need an account." +msgstr "A kérés érvényes volt, de a kiszolgáló visszautasította a műveletet. A felhasználónak talán nincsenek meg a szükséges jogosultságai egy erőforráshoz, vagy fiókra lehet szüksége." + +#: src/Module/Special/HTTPException.php:64 +msgid "" +"The requested resource could not be found but may be available in the " +"future." +msgstr "A kért erőforrás nem található, de elérhető lehet a jövőben." + +#: src/Module/Special/HTTPException.php:65 +msgid "" +"An unexpected condition was encountered and no more specific message is " +"suitable." +msgstr "Váratlan feltétel történt, és nincs konkrétabb megfelelő üzenet." + +#: src/Module/Special/HTTPException.php:66 +msgid "" +"The server is currently unavailable (because it is overloaded or down for " +"maintenance). Please try again later." +msgstr "A kiszolgáló jelenleg nem érhető el (mert túlterhelt vagy le van kapcsolva a karbantartáshoz). Próbálja újra később." + +#: src/Module/Special/HTTPException.php:76 +msgid "Stack trace:" +msgstr "Veremkiíratás:" + +#: src/Module/Special/HTTPException.php:80 +#, php-format +msgid "Exception thrown in %s:%d" +msgstr "Kivétel történt itt: %s:%d" + +#: src/Module/Tos.php:46 src/Module/Tos.php:88 +msgid "" +"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." +msgstr "A regisztrációkor, valamint a felhasználói fiók és a partnerei között történő kommunikáció biztosításához a felhasználónak biztosítania kell egy megjelenített nevet (álnevet), egy felhasználónevet (becenevet) és egy működő e-mail-címet. A nevek hozzáférhetőek lesznek a fiók profiloldalán az oldal bármely látogatója számára, még akkor is, ha más profilrészletek nem jelennek meg. Az e-mail-cím csak az interakciókkal kapcsolatos felhasználói értesítések küldéséhez lesz használva, de nem lesz láthatóan megjelenítve. A fiók felsorolása a csomópont felhasználói könyvtárában vagy a globális felhasználói könyvtárban választható, és a felhasználói beállításokban szabályozható. Ez nem szükséges a kommunikációhoz." + +#: src/Module/Tos.php:47 src/Module/Tos.php:89 +msgid "" +"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." +msgstr "Ezek az adatok a kommunikációhoz szükségesek, és átadásra kerül a kommunikációs partnerek csomópontjainak, valamint el is lesznek tárolva ott. A felhasználók megadhatnak további személyes adatokat, amelyek szintén átvitelre kerülhetnek a kommunikációs partnerek fiókjaiba." + +#: src/Module/Tos.php:48 src/Module/Tos.php:90 +#, php-format +msgid "" +"At any point in time a logged in user can export their account data from the" +" account settings. If the user " +"wants to delete their account they can do so at %1$s/removeme. The deletion of the account will " +"be permanent. Deletion of the data will also be requested from the nodes of " +"the communication partners." +msgstr "Egy bejelentkezett felhasználó bármely időpontban exportálhatja a fiókja adatait a fiók beállításaiból. Ha a felhasználó törölni szeretné a fiókját, akkor azt megteheti a %1$s/removeme oldalon. A fiók törlése végleges lesz. Az adatok törlése kérve lesz a kommunikációs partnerek csomópontjairól is." + +#: src/Module/Tos.php:51 src/Module/Tos.php:87 +msgid "Privacy Statement" +msgstr "Adatvédelmi nyilatkozat" + +#: src/Module/Welcome.php:44 +msgid "Welcome to Friendica" +msgstr "Üdvözli a Friendica!" + +#: src/Module/Welcome.php:45 +msgid "New Member Checklist" +msgstr "Új tag ellenőrzőlistája" + +#: src/Module/Welcome.php:46 +msgid "" +"We would like to offer some tips and links to help make your experience " +"enjoyable. Click any item to visit the relevant page. A link to this page " +"will be visible from your home page for two weeks after your initial " +"registration and then will quietly disappear." +msgstr "Tippeket és hivatkozásokat szeretnénk ajánlani, hogy élvezhetővé tegyük az alkalmazás használatát. Kattintson bármelyik elemre a kapcsolódó oldal megtekintéséhez. Az erre az oldalra mutató hivatkozás a kezdőlapjáról érhető el a kezdeti regisztrációt követő két héten belül, azután csendben eltűnik." + +#: src/Module/Welcome.php:48 +msgid "Getting Started" +msgstr "Kezdeti lépések" + +#: src/Module/Welcome.php:49 +msgid "Friendica Walk-Through" +msgstr "Friendica útmutató" + +#: src/Module/Welcome.php:50 +msgid "" +"On your Quick Start page - find a brief introduction to your " +"profile and network tabs, make some new connections, and find some groups to" +" join." +msgstr "A Gyors kezdés oldalon találhat egy rövid bemutatót a profil és hálózati lapokról, új kapcsolatok létesítésről, valamint találhat néhány csoportot, amelyekhez csatlakozhat." + +#: src/Module/Welcome.php:53 +msgid "Go to Your Settings" +msgstr "Ugrás a beállításaihoz" + +#: src/Module/Welcome.php:54 +msgid "" +"On your Settings page - change your initial password. Also make a " +"note of your Identity Address. This looks just like an email address - and " +"will be useful in making friends on the free social web." +msgstr "A Beállítások oldalon változtathatja meg a kezdeti jelszavát. Szintén itt talál egy megjegyzést a személyazonosság-címével kapcsolatban. Ez úgy néz ki mint egy e-mail-cím, és hasznos lesz a szabad közösségi hálón az ismerősök kereséséhez." + +#: src/Module/Welcome.php:55 +msgid "" +"Review the other settings, particularly the privacy settings. An unpublished" +" directory listing is like having an unlisted phone number. In general, you " +"should probably publish your listing - unless all of your friends and " +"potential friends know exactly how to find you." +msgstr "Vizsgálja felül az egyéb beállításokat is, különösen az adatvédelmi beállításokat. Egy nem közzétett könyvtárlistázás olyan, mint ha egy nyilvánosságra nem hozott telefonszáma lenne. Általában valószínűleg közzé kell tennie a listázását, hacsak az ismerősei és a lehetséges ismerősei nem tudják pontosan, hogy hogyan találják meg Önt." + +#: src/Module/Welcome.php:59 +msgid "" +"Upload a profile photo if you have not done so already. Studies have shown " +"that people with real photos of themselves are ten times more likely to make" +" friends than people who do not." +msgstr "Töltsön fel profilfényképet, ha ezt még nem tette meg. A tanulmányok kimutatták, hogy a saját magukról valódi fényképpel rendelkező emberek tízszer valószínűbben találnak ismerősöket mint azok az emberek, akiknek nincs profilfényképük." + +#: src/Module/Welcome.php:60 +msgid "Edit Your Profile" +msgstr "A profil szerkesztése" + +#: src/Module/Welcome.php:61 +msgid "" +"Edit your default profile to your liking. Review the " +"settings for hiding your list of friends and hiding the profile from unknown" +" visitors." +msgstr "Szerkessze az alapértelmezett profilját a kedve szerint. Vizsgálja felül a beállításokat az ismerősök listájának elrejtéséhez és a profiljának az ismeretlen látogatók elől történő elrejtéséhez." + +#: src/Module/Welcome.php:62 +msgid "Profile Keywords" +msgstr "Profil kulcsszavai" + +#: src/Module/Welcome.php:63 +msgid "" +"Set some public keywords for your profile which describe your interests. We " +"may be able to find other people with similar interests and suggest " +"friendships." +msgstr "Állítson be néhány nyilvános kulcsszót a profiljához, amely bemutatja az érdeklődési köreit. Képesek lehetünk megtalálni a hasonló érdeklődéssel rendelkező más embereket, és ajánlhatunk ismeretségeket." + +#: src/Module/Welcome.php:65 +msgid "Connecting" +msgstr "Kapcsolatépítés" + +#: src/Module/Welcome.php:67 +msgid "Importing Emails" +msgstr "E-mailek importálása" + +#: src/Module/Welcome.php:68 +msgid "" +"Enter your email access information on your Connector Settings page if you " +"wish to import and interact with friends or mailing lists from your email " +"INBOX" +msgstr "Adja meg az e-mail-címéhez való hozzáférés információt az összekötő beállításainak oldalán, ha a postafiókja beérkező üzeneteiből szeretne ismerősöket vagy levelezési listákat importálni, valamint velük kapcsolatba lépni." + +#: src/Module/Welcome.php:69 +msgid "Go to Your Contacts Page" +msgstr "Ugrás a partnerek oldalára" + +#: src/Module/Welcome.php:70 +msgid "" +"Your Contacts page is your gateway to managing friendships and connecting " +"with friends on other networks. Typically you enter their address or site " +"URL in the Add New Contact dialog." +msgstr "A partnerek oldal az átjáró az ismeretségek kezeléséhez és a más hálózatokon lévő ismerősökkel történő kapcsolatfelvételhez. Jellemzően csak be kell írnia a címüket vagy az oldal URL-jét az Új partner hozzáadása párbeszédablakba." + +#: src/Module/Welcome.php:71 +msgid "Go to Your Site's Directory" +msgstr "Ugrás az oldal könyvtárához" + +#: src/Module/Welcome.php:72 +msgid "" +"The Directory page lets you find other people in this network or other " +"federated sites. Look for a Connect or Follow link on " +"their profile page. Provide your own Identity Address if requested." +msgstr "A könyvtárak oldal lehetővé teszi más emberek keresését ezen a hálózaton vagy más föderált oldalakon. Keresse meg a Kapcsolódás vagy a Követés hivatkozást a profiloldalukon. Adja meg a saját személyazonosság-címét, ha kérik." + +#: src/Module/Welcome.php:73 +msgid "Finding New People" +msgstr "Új emberek keresése" + +#: src/Module/Welcome.php:74 +msgid "" +"On the side panel of the Contacts page are several tools to find new " +"friends. We can match people by interest, look up people by name or " +"interest, and provide suggestions based on network relationships. On a brand" +" new site, friend suggestions will usually begin to be populated within 24 " +"hours." +msgstr "A partnerek oldal oldalsávjában számos eszköz található új ismerősök kereséséhez. Találhatunk embereket az érdeklődésük szerint, kereshetünk embereket név vagy érdeklődés szerint, valamint ajánlásokat adhatunk a hálózati kapcsolatok alapján. Egy teljesen új oldalon az ismerősök ajánlásai általában 24 órán belül kezdenek megjelenni." + +#: src/Module/Welcome.php:77 +msgid "Group Your Contacts" +msgstr "Partnerek csoportosítása" + +#: src/Module/Welcome.php:78 +msgid "" +"Once you have made some friends, organize them into private conversation " +"groups from the sidebar of your Contacts page and then you can interact with" +" each group privately on your Network page." +msgstr "Miután szerezett néhány ismerőst, szervezze őket személyes beszélgetési csoportokba a partnerek oldal oldalsávján keresztül, és ezután személyes módon léphet kapcsolatba minden egyes csoporttal a hálózatok oldalon." + +#: src/Module/Welcome.php:80 +msgid "Why Aren't My Posts Public?" +msgstr "Miért nem nyilvánosak a bejegyzéseim?" + +#: src/Module/Welcome.php:81 +msgid "" +"Friendica respects your privacy. By default, your posts will only show up to" +" people you've added as friends. For more information, see the help section " +"from the link above." +msgstr "A Friendica tiszteletben tartja a magánszférát. Alapértelmezetten a bejegyzései csak azoknak az embereknek jelennek meg, akiket ismerősként felvett. További információkért nézze meg a súgószakaszt a fenti hivatkozáson keresztül." + +#: src/Module/Welcome.php:83 +msgid "Getting Help" +msgstr "Segítség kérése" + +#: src/Module/Welcome.php:84 +msgid "Go to the Help Section" +msgstr "Ugrás a súgószakaszhoz" + +#: src/Module/Welcome.php:85 +msgid "" +"Our help pages may be consulted for detail on other program" +" features and resources." +msgstr "A súgó oldalaink további részleteket közölhetnek a program egyéb funkcióiról és erőforrásairól." + +#: src/Object/EMail/ItemCCEMail.php:39 +#, php-format +msgid "" +"This message was sent to you by %s, a member of the Friendica social " +"network." +msgstr "Ezt az üzenetet %s, a Friendica közösségi hálózatának tagja küldte Önnek." + +#: src/Object/EMail/ItemCCEMail.php:41 +#, php-format +msgid "You may visit them online at %s" +msgstr "Meglátogathatja őket az interneten ezen a címen: %s" + +#: src/Object/EMail/ItemCCEMail.php:42 +msgid "" +"Please contact the sender by replying to this post if you do not wish to " +"receive these messages." +msgstr "Vegye fel a kapcsolatot a küldővel erre a bejegyzésre válaszolva, ha nem szeretné megkapni ezeket az üzeneteket." + +#: src/Object/EMail/ItemCCEMail.php:46 +#, php-format +msgid "%s posted an update." +msgstr "%s frissítést küldött." + +#: src/Object/Post.php:148 +msgid "This entry was edited" +msgstr "Ezt a bejegyzést szerkesztették" + +#: src/Object/Post.php:176 +msgid "Private Message" +msgstr "Személyes üzenet" + +#: src/Object/Post.php:192 src/Object/Post.php:194 +msgid "Edit" +msgstr "Szerkesztés" + +#: src/Object/Post.php:214 +msgid "Pinned item" +msgstr "Kitűzött elem" + +#: src/Object/Post.php:218 +msgid "Delete globally" +msgstr "Törlés globálisan" + +#: src/Object/Post.php:218 +msgid "Remove locally" +msgstr "Eltávolítás helyileg" + +#: src/Object/Post.php:234 +#, php-format +msgid "Block %s" +msgstr "%s tiltása" + +#: src/Object/Post.php:239 +msgid "Save to folder" +msgstr "Mentés mappába" + +#: src/Object/Post.php:273 +msgid "I will attend" +msgstr "Részt veszek" + +#: src/Object/Post.php:273 +msgid "I will not attend" +msgstr "Nem veszek részt" + +#: src/Object/Post.php:273 +msgid "I might attend" +msgstr "Talán részt veszek" + +#: src/Object/Post.php:303 +msgid "Ignore thread" +msgstr "Szál mellőzése" + +#: src/Object/Post.php:304 +msgid "Unignore thread" +msgstr "Szál mellőzésének megszüntetése" + +#: src/Object/Post.php:305 +msgid "Toggle ignore status" +msgstr "Mellőzési állapot átváltása" + +#: src/Object/Post.php:317 +msgid "Pin" +msgstr "Kitűzés" + +#: src/Object/Post.php:318 +msgid "Unpin" +msgstr "Kitűzés megszüntetése" + +#: src/Object/Post.php:319 +msgid "Toggle pin status" +msgstr "Kitűzés állapotának átváltása" + +#: src/Object/Post.php:322 +msgid "Pinned" +msgstr "Kitűzve" + +#: src/Object/Post.php:329 +msgid "Add star" +msgstr "Csillag hozzáadása" + +#: src/Object/Post.php:330 +msgid "Remove star" +msgstr "Csillag eltávolítása" + +#: src/Object/Post.php:331 +msgid "Toggle star status" +msgstr "Csillagállapot átváltása" + +#: src/Object/Post.php:338 +msgid "Add tag" +msgstr "Címke hozzáadása" + +#: src/Object/Post.php:351 +msgid "Quote share this" +msgstr "Idézett megosztás" + +#: src/Object/Post.php:351 +msgid "Quote Share" +msgstr "Idéző megosztás" + +#: src/Object/Post.php:354 +msgid "Reshare this" +msgstr "Újra megosztás" + +#: src/Object/Post.php:354 +msgid "Reshare" +msgstr "Újra megosztás" + +#: src/Object/Post.php:355 +msgid "Cancel your Reshare" +msgstr "Újra megosztás megszakítása" + +#: src/Object/Post.php:355 +msgid "Unshare" +msgstr "Megosztás megszüntetése" + +#: src/Object/Post.php:400 +#, php-format +msgid "%s (Received %s)" +msgstr "%s (fogadva: %s)" + +#: src/Object/Post.php:405 +msgid "Comment this item on your system" +msgstr "Hozzászólás az elemhez a saját rendszerén" + +#: src/Object/Post.php:405 +msgid "Remote comment" +msgstr "Távoli hozzászólás" + +#: src/Object/Post.php:421 +msgid "Pushed" +msgstr "Felküldve" + +#: src/Object/Post.php:421 +msgid "Pulled" +msgstr "Lekérve" + +#: src/Object/Post.php:455 +msgid "to" +msgstr "ide:" + +#: src/Object/Post.php:456 +msgid "via" +msgstr "ezen keresztül:" + +#: src/Object/Post.php:457 +msgid "Wall-to-Wall" +msgstr "Falról-falra" + +#: src/Object/Post.php:458 +msgid "via Wall-To-Wall:" +msgstr "falról-falra szolgáltatáson keresztül:" + +#: src/Object/Post.php:496 +#, php-format +msgid "Reply to %s" +msgstr "Válasz erre: %s" + +#: src/Object/Post.php:499 +msgid "More" +msgstr "Több" + +#: src/Object/Post.php:517 +msgid "Notifier task is pending" +msgstr "Az értesítőfeladat függőben van" + +#: src/Object/Post.php:518 +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:519 +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:520 +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:521 +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:541 +#, 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:542 +msgid "Show more" +msgstr "Több megjelenítése" + +#: src/Object/Post.php:543 +msgid "Show fewer" +msgstr "Kevesebb megjelenítése" + +#: src/Protocol/Diaspora.php:3434 +msgid "Attachments:" +msgstr "Mellékletek:" + +#: src/Protocol/OStatus.php:1758 +#, php-format +msgid "%s is now following %s." +msgstr "%s mostantól követi %s partnert." + +#: src/Protocol/OStatus.php:1759 +msgid "following" +msgstr "követés" + +#: src/Protocol/OStatus.php:1762 +#, php-format +msgid "%s stopped following %s." +msgstr "%s leállította %s követését." + +#: src/Protocol/OStatus.php:1763 +msgid "stopped following" +msgstr "követés leállítva" + +#: src/Render/FriendicaSmartyEngine.php:52 +msgid "The folder view/smarty3/ must be writable by webserver." +msgstr "A „view/smarty3/” mappának írhatónak kell lennie a webkiszolgáló által." + +#: src/Repository/ProfileField.php:275 +msgid "Hometown:" +msgstr "Szülőváros:" + +#: src/Repository/ProfileField.php:276 +msgid "Marital Status:" +msgstr "Családi állapot:" + +#: src/Repository/ProfileField.php:277 +msgid "With:" +msgstr "Ezzel:" + +#: src/Repository/ProfileField.php:278 +msgid "Since:" +msgstr "Ekkortól:" + +#: src/Repository/ProfileField.php:279 +msgid "Sexual Preference:" +msgstr "Szexuális irányultság:" + +#: src/Repository/ProfileField.php:280 +msgid "Political Views:" +msgstr "Politikai nézetek:" + +#: src/Repository/ProfileField.php:281 +msgid "Religious Views:" +msgstr "Vallási néztek:" + +#: src/Repository/ProfileField.php:282 +msgid "Likes:" +msgstr "Kedvelések:" + +#: src/Repository/ProfileField.php:283 +msgid "Dislikes:" +msgstr "Nem kedvelések:" + +#: src/Repository/ProfileField.php:284 +msgid "Title/Description:" +msgstr "Cím vagy leírás:" + +#: src/Repository/ProfileField.php:286 +msgid "Musical interests" +msgstr "Zenei érdeklődések" + +#: src/Repository/ProfileField.php:287 +msgid "Books, literature" +msgstr "Könyvek, irodalom" + +#: src/Repository/ProfileField.php:288 +msgid "Television" +msgstr "Televízió" + +#: src/Repository/ProfileField.php:289 +msgid "Film/dance/culture/entertainment" +msgstr "Film, tánc, kultúra, szórakozás" + +#: src/Repository/ProfileField.php:290 +msgid "Hobbies/Interests" +msgstr "Hobbik, érdeklődések" + +#: src/Repository/ProfileField.php:291 +msgid "Love/romance" +msgstr "Szerelem, romantika" + +#: src/Repository/ProfileField.php:292 +msgid "Work/employment" +msgstr "Munka, foglalkoztatás" + +#: src/Repository/ProfileField.php:293 +msgid "School/education" +msgstr "Iskola, oktatás" + +#: src/Repository/ProfileField.php:294 +msgid "Contact information and Social Networks" +msgstr "Partnerinformációk és közösségi hálózatok" + +#: src/Security/Authentication.php:210 +msgid "Login failed." +msgstr "Bejelentkezés sikertelen." + +#: src/Security/Authentication.php:251 +msgid "Login failed. Please check your credentials." +msgstr "Bejelentkezés sikertelen. Ellenőrizze a hitelesítési adatait." + +#: src/Security/Authentication.php:370 +#, php-format +msgid "Welcome %s" +msgstr "Üdvözöljük, %s!" + +#: src/Security/Authentication.php:371 +msgid "Please upload a profile photo." +msgstr "Töltsön fel egy profilfényképet." + +#: src/Util/EMailer/MailBuilder.php:259 +msgid "Friendica Notification" +msgstr "Friendica értesítés" + +#: src/Util/EMailer/NotifyMailBuilder.php:78 +#: src/Util/EMailer/SystemMailBuilder.php:54 +#, php-format +msgid "%1$s, %2$s Administrator" +msgstr "%1$s, a(z) %2$s adminisztrátora" + +#: src/Util/EMailer/NotifyMailBuilder.php:80 +#: src/Util/EMailer/SystemMailBuilder.php:56 +#, php-format +msgid "%s Administrator" +msgstr "A(z) %s adminisztrátora" + +#: src/Util/EMailer/NotifyMailBuilder.php:193 +#: src/Util/EMailer/NotifyMailBuilder.php:217 +#: src/Util/EMailer/SystemMailBuilder.php:101 +#: src/Util/EMailer/SystemMailBuilder.php:118 +msgid "thanks" +msgstr "köszönet" + +#: src/Util/Temporal.php:167 +msgid "YYYY-MM-DD or MM-DD" +msgstr "YYYY-MM-DD vagy MM-DD" + +#: src/Util/Temporal.php:314 +msgid "never" +msgstr "soha" + +#: src/Util/Temporal.php:321 +msgid "less than a second ago" +msgstr "kevesebb mint egy másodperce" + +#: src/Util/Temporal.php:329 +msgid "year" +msgstr "év" + +#: src/Util/Temporal.php:329 +msgid "years" +msgstr "év" + +#: src/Util/Temporal.php:330 +msgid "months" +msgstr "hónap" + +#: src/Util/Temporal.php:331 +msgid "weeks" +msgstr "hét" + +#: src/Util/Temporal.php:332 +msgid "days" +msgstr "nap" + +#: src/Util/Temporal.php:333 +msgid "hour" +msgstr "óra" + +#: src/Util/Temporal.php:333 +msgid "hours" +msgstr "óra" + +#: src/Util/Temporal.php:334 +msgid "minute" +msgstr "perc" + +#: src/Util/Temporal.php:334 +msgid "minutes" +msgstr "perc" + +#: src/Util/Temporal.php:335 +msgid "second" +msgstr "másodperc" + +#: src/Util/Temporal.php:335 +msgid "seconds" +msgstr "másodperc" + +#: src/Util/Temporal.php:345 +#, php-format +msgid "in %1$d %2$s" +msgstr "%1$d %2$s múlva" + +#: src/Util/Temporal.php:348 +#, php-format +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s óta" + +#: src/Worker/Delivery.php:529 +msgid "(no subject)" +msgstr "(nincs tárgy)" + +#: view/theme/duepuntozero/config.php:52 +msgid "default" +msgstr "alapértelmezett" + +#: view/theme/duepuntozero/config.php:53 +msgid "greenzero" +msgstr "zöld nulla" + +#: view/theme/duepuntozero/config.php:54 +msgid "purplezero" +msgstr "lila nulla" + +#: view/theme/duepuntozero/config.php:55 +msgid "easterbunny" +msgstr "húsvéti nyúl" + +#: view/theme/duepuntozero/config.php:56 +msgid "darkzero" +msgstr "sötét nulla" + +#: view/theme/duepuntozero/config.php:57 +msgid "comix" +msgstr "comix" + +#: view/theme/duepuntozero/config.php:58 +msgid "slackr" +msgstr "slackr" + +#: view/theme/duepuntozero/config.php:71 +msgid "Variations" +msgstr "Variációk" + +#: view/theme/frio/config.php:142 +msgid "Light (Accented)" +msgstr "Világos (hangsúlyos)" + +#: view/theme/frio/config.php:143 +msgid "Dark (Accented)" +msgstr "Sötét (hangsúlyos)" + +#: view/theme/frio/config.php:144 +msgid "Black (Accented)" +msgstr "Fekete (hangsúlyos)" + +#: view/theme/frio/config.php:156 +msgid "Note" +msgstr "Jegyzet" + +#: view/theme/frio/config.php:156 +msgid "Check image permissions if all users are allowed to see the image" +msgstr "Ellenőrizze a kép jogosultságait, hogy minden felhasználó képes-e megtekinteni a képet." + +#: view/theme/frio/config.php:162 +msgid "Custom" +msgstr "Egyéni" + +#: view/theme/frio/config.php:163 +msgid "Legacy" +msgstr "Örökölt" + +#: view/theme/frio/config.php:164 +msgid "Accented" +msgstr "Hangsúlyos" + +#: view/theme/frio/config.php:165 +msgid "Select color scheme" +msgstr "Színséma kiválasztása" + +#: view/theme/frio/config.php:166 +msgid "Select scheme accent" +msgstr "Sémahangsúly kiválasztása" + +#: view/theme/frio/config.php:166 +msgid "Blue" +msgstr "Kék" + +#: view/theme/frio/config.php:166 +msgid "Red" +msgstr "Piros" + +#: view/theme/frio/config.php:166 +msgid "Purple" +msgstr "Lila" + +#: view/theme/frio/config.php:166 +msgid "Green" +msgstr "Zöld" + +#: view/theme/frio/config.php:166 +msgid "Pink" +msgstr "Rózsaszín" + +#: view/theme/frio/config.php:167 +msgid "Copy or paste schemestring" +msgstr "Sémakarakterlánc másolása vagy beillesztése" + +#: view/theme/frio/config.php:167 +msgid "" +"You can copy this string to share your theme with others. Pasting here " +"applies the schemestring" +msgstr "Lemásolhatja ezt a karakterláncot, hogy megossza a témáját másokkal. Ide beillesztve alkalmazza a sémakarakterláncot" + +#: view/theme/frio/config.php:168 +msgid "Navigation bar background color" +msgstr "Navigációs sáv háttérszíne" + +#: view/theme/frio/config.php:169 +msgid "Navigation bar icon color " +msgstr "Navigációs sáv ikonszíne " + +#: view/theme/frio/config.php:170 +msgid "Link color" +msgstr "Hivatkozás színe" + +#: view/theme/frio/config.php:171 +msgid "Set the background color" +msgstr "Háttérszín beállítása" + +#: view/theme/frio/config.php:172 +msgid "Content background opacity" +msgstr "Tartalom hátterének átlátszatlansága" + +#: view/theme/frio/config.php:173 +msgid "Set the background image" +msgstr "A háttérkép beállítása" + +#: view/theme/frio/config.php:174 +msgid "Background image style" +msgstr "Háttérkép stílusa" + +#: view/theme/frio/config.php:179 +msgid "Login page background image" +msgstr "Bejelentkezési oldal háttérképe" + +#: view/theme/frio/config.php:183 +msgid "Login page background color" +msgstr "Bejelentkezési oldal háttérszíne" + +#: view/theme/frio/config.php:183 +msgid "Leave background image and color empty for theme defaults" +msgstr "Hagyja üresen a háttérképet és színt a téma alapértelmezettjéhez" + +#: view/theme/frio/php/Image.php:40 +msgid "Top Banner" +msgstr "Felső reklámcsík" + +#: view/theme/frio/php/Image.php:40 +msgid "" +"Resize image to the width of the screen and show background color below on " +"long pages." +msgstr "Kép átméretezése a képernyő szélességéhez, és a lenti háttérszín megjelenítése hosszú oldalakon." + +#: view/theme/frio/php/Image.php:41 +msgid "Full screen" +msgstr "Teljes képernyő" + +#: view/theme/frio/php/Image.php:41 +msgid "" +"Resize image to fill entire screen, clipping either the right or the bottom." +msgstr "Kép átméretezése a teljes képernyő kitöltéséhez, levágva a jobb szélét vagy az alját." + +#: view/theme/frio/php/Image.php:42 +msgid "Single row mosaic" +msgstr "Egysoros mozaik" + +#: view/theme/frio/php/Image.php:42 +msgid "" +"Resize image to repeat it on a single row, either vertical or horizontal." +msgstr "Kép átméretezése az egy sorban való ismétléshez, függőlegesen vagy vízszintesen." + +#: view/theme/frio/php/Image.php:43 +msgid "Mosaic" +msgstr "Mozaik" + +#: view/theme/frio/php/Image.php:43 +msgid "Repeat image to fill the screen." +msgstr "Kép ismétlése a képernyő kitöltéséhez." + +#: view/theme/frio/php/default.php:81 view/theme/frio/php/standard.php:40 +msgid "Skip to main content" +msgstr "Kihagyás a fő tartalomhoz" + +#: view/theme/frio/php/default.php:152 view/theme/frio/php/standard.php:75 +msgid "Back to top" +msgstr "Vissza a tetejére" + +#: view/theme/frio/theme.php:208 +msgid "Guest" +msgstr "Vendég" + +#: view/theme/frio/theme.php:211 +msgid "Visitor" +msgstr "Látogató" + +#: view/theme/quattro/config.php:73 +msgid "Alignment" +msgstr "Igazítás" + +#: view/theme/quattro/config.php:73 +msgid "Left" +msgstr "Balra" + +#: view/theme/quattro/config.php:73 +msgid "Center" +msgstr "Középre" + +#: view/theme/quattro/config.php:74 +msgid "Color scheme" +msgstr "Színséma" + +#: view/theme/quattro/config.php:75 +msgid "Posts font size" +msgstr "Bejegyzések betűmérete" + +#: view/theme/quattro/config.php:76 +msgid "Textareas font size" +msgstr "Szövegdobozok betűmérete" + +#: view/theme/vier/config.php:75 +msgid "Comma separated list of helper forums" +msgstr "Segítő fórumok vesszővel elválasztott listája" + +#: view/theme/vier/config.php:115 +msgid "don't show" +msgstr "ne jelenítse meg" + +#: view/theme/vier/config.php:115 +msgid "show" +msgstr "megjelenítés" + +#: view/theme/vier/config.php:121 +msgid "Set style" +msgstr "Stílus beállítása" + +#: view/theme/vier/config.php:122 +msgid "Community Pages" +msgstr "Közösségi oldalak" + +#: view/theme/vier/config.php:123 view/theme/vier/theme.php:125 +msgid "Community Profiles" +msgstr "Közösségi profilok" + +#: view/theme/vier/config.php:124 +msgid "Help or @NewHere ?" +msgstr "Súgó vagy @NewHere?" + +#: view/theme/vier/config.php:125 view/theme/vier/theme.php:296 +msgid "Connect Services" +msgstr "Szolgáltatások hozzákapcsolása" + +#: view/theme/vier/config.php:126 +msgid "Find Friends" +msgstr "Ismerősök keresése" + +#: view/theme/vier/config.php:127 view/theme/vier/theme.php:152 +msgid "Last users" +msgstr "Utolsó felhasználók" + +#: view/theme/vier/theme.php:211 +msgid "Quick Start" +msgstr "Gyors kezdés" diff --git a/view/lang/hu/strings.php b/view/lang/hu/strings.php index 5ebb91935..9cef94c36 100644 --- a/view/lang/hu/strings.php +++ b/view/lang/hu/strings.php @@ -6,70 +6,855 @@ function string_plural_select_hu($n){ return intval($n != 1); }} ; -$a->strings["Miscellaneous"] = "Egyebek"; -$a->strings["Birthday:"] = "Születésnap:"; -$a->strings["Age: "] = "Életkor: "; -$a->strings["%d year old"] = [ - 0 => "%d éves", - 1 => "%d éves", +$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [ + 0 => "A napi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva.", + 1 => "A napi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva.", ]; -$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD vagy MM-DD"; -$a->strings["never"] = "soha"; -$a->strings["less than a second ago"] = "kevesebb mint egy másodperce"; -$a->strings["year"] = "év"; -$a->strings["years"] = "év"; +$a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [ + 0 => "A heti %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva.", + 1 => "A heti %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva.", +]; +$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "A havi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva."; +$a->strings["Profile Photos"] = "Profilfényképek"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s megbökte őt: %2\$s"; +$a->strings["event"] = "esemény"; +$a->strings["status"] = "állapot"; +$a->strings["photo"] = "fénykép"; +$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s megjelölte %2\$s %3\$s vele: %4\$s"; +$a->strings["Select"] = "Kiválasztás"; +$a->strings["Delete"] = "Törlés"; +$a->strings["View %s's profile @ %s"] = "%s profiljának megtekintése ezen: %s"; +$a->strings["Categories:"] = "Kategóriák:"; +$a->strings["Filed under:"] = "Iktatva itt:"; +$a->strings["%s from %s"] = "%s tőle: %s"; +$a->strings["View in context"] = "Megtekintés környezetben"; +$a->strings["Please wait"] = "Kis türelmet"; +$a->strings["remove"] = "eltávolítás"; +$a->strings["Delete Selected Items"] = "Kijelölt elemek törlése"; +$a->strings["You had been addressed (%s)."] = "Önt megszólították (%s)."; +$a->strings["You are following %s."] = "Ön követi őt: %s."; +$a->strings["Tagged"] = "Megjelölve"; +$a->strings["%s reshared this."] = "%s újra megosztotta ezt."; +$a->strings["Reshared"] = "Újra megosztva"; +$a->strings["Reshared by %s <%s>"] = "%s <%s> újra megosztotta"; +$a->strings["%s is participating in this thread."] = "%s részt vesz ebben a szálban."; +$a->strings["Stored"] = "Tárolt"; +$a->strings["Global"] = "Globális"; +$a->strings["Relayed"] = "Továbbítva"; +$a->strings["Relayed by %s <%s>"] = "%s <%s> továbbította"; +$a->strings["Fetched"] = "Lekérve"; +$a->strings["Fetched because of %s <%s>"] = "Lekérve %s <%s> miatt"; +$a->strings["Follow Thread"] = "Szál követése"; +$a->strings["View Status"] = "Állapot megtekintése"; +$a->strings["View Profile"] = "Profil megtekintése"; +$a->strings["View Photos"] = "Fényképek megtekintése"; +$a->strings["Network Posts"] = "Hálózati bejegyzések"; +$a->strings["View Contact"] = "Partner megtekintése"; +$a->strings["Send PM"] = "Személyes üzenet küldése"; +$a->strings["Block"] = "Tiltás"; +$a->strings["Ignore"] = "Mellőzés"; +$a->strings["Languages"] = "Nyelvek"; +$a->strings["Poke"] = "Megbökés"; +$a->strings["Connect/Follow"] = "Kapcsolódás vagy követés"; +$a->strings["%s likes this."] = "%s kedveli ezt."; +$a->strings["%s doesn't like this."] = "%s nem kedveli ezt."; +$a->strings["%s attends."] = "%s részt vesz."; +$a->strings["%s doesn't attend."] = "%s nem vesz részt."; +$a->strings["%s attends maybe."] = "%s talán részt vesz."; +$a->strings["and"] = "és"; +$a->strings["and %d other people"] = "és %d más személy"; +$a->strings["%2\$d people like this"] = "%2\$d személy kedveli ezt"; +$a->strings["%s like this."] = "%s kedveli ezt."; +$a->strings["%2\$d people don't like this"] = "%2\$d személy nem kedveli ezt"; +$a->strings["%s don't like this."] = "%s nem kedveli ezt."; +$a->strings["%2\$d people attend"] = "%2\$d személy részt vesz"; +$a->strings["%s attend."] = "%s részt vesz."; +$a->strings["%2\$d people don't attend"] = "%2\$d személy nem vesz részt"; +$a->strings["%s don't attend."] = "%s nem vesz részt."; +$a->strings["%2\$d people attend maybe"] = "%2\$d személy talán részt vesz"; +$a->strings["%s attend maybe."] = "%s talán részt vesz."; +$a->strings["%2\$d people reshared this"] = "%2\$d személy újra megosztotta ezt"; +$a->strings["Visible to everybody"] = "Látható mindenkinek"; +$a->strings["Please enter a image/video/audio/webpage URL:"] = "Írjon be egy kép, videó, hang vagy weboldal URL-t:"; +$a->strings["Tag term:"] = "Címkézési kifejezés:"; +$a->strings["Save to Folder:"] = "Mentés mappába:"; +$a->strings["Where are you right now?"] = "Hol van most éppen?"; +$a->strings["Delete item(s)?"] = "Törli az elemeket?"; +$a->strings["New Post"] = "Új bejegyzés"; +$a->strings["Share"] = "Megosztás"; +$a->strings["Loading..."] = "Betöltés…"; +$a->strings["Upload photo"] = "Fénykép feltöltése"; +$a->strings["upload photo"] = "fénykép feltöltése"; +$a->strings["Attach file"] = "Fájl csatolása"; +$a->strings["attach file"] = "fájl csatolása"; +$a->strings["Bold"] = "Félkövér"; +$a->strings["Italic"] = "Dőlt"; +$a->strings["Underline"] = "Aláhúzott"; +$a->strings["Quote"] = "Idézet"; +$a->strings["Code"] = "Kód"; +$a->strings["Image"] = "Kép"; +$a->strings["Link"] = "Hivatkozás"; +$a->strings["Link or Media"] = "Hivatkozás vagy média"; +$a->strings["Video"] = "Videó"; +$a->strings["Set your location"] = "Az Ön helyének beállítása"; +$a->strings["set location"] = "hely beállítása"; +$a->strings["Clear browser location"] = "Böngésző helyének törlése"; +$a->strings["clear location"] = "hely törlése"; +$a->strings["Set title"] = "Cím beállítása"; +$a->strings["Categories (comma-separated list)"] = "Kategóriák (vesszővel elválasztott lista)"; +$a->strings["Permission settings"] = "Jogosultsági beállítások"; +$a->strings["Permissions"] = "Jogosultságok"; +$a->strings["Public post"] = "Nyilvános bejegyzés"; +$a->strings["Preview"] = "Előnézet"; +$a->strings["Cancel"] = "Mégse"; +$a->strings["Message"] = "Üzenet"; +$a->strings["Browser"] = "Böngésző"; +$a->strings["Open Compose page"] = "Írás oldal megnyitása"; +$a->strings["[Friendica:Notify]"] = "[Friendica: értesítés]"; +$a->strings["%s New mail received at %s"] = "%s Új levél érkezett ekkor: %s"; +$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s személyes üzenetet küldött ekkor: %2\$s."; +$a->strings["a private message"] = "egy személyes üzenetet"; +$a->strings["%1\$s sent you %2\$s."] = "%1\$s küldött Önnek %2\$s."; +$a->strings["Please visit %s to view and/or reply to your private messages."] = "Látogassa meg a(z) %s oldalt a személyes üzenete megtekintéséhez és/vagy megválaszolásához."; +$a->strings["%1\$s replied to you on %2\$s's %3\$s %4\$s"] = "%1\$s válaszolt Önnek egy %2\$s által megosztott %3\$s kapcsán: %4\$s"; +$a->strings["%1\$s tagged you on %2\$s's %3\$s %4\$s"] = "%1\$s bejelölte Önt egy %2\$s által megosztott %3\$s kapcsán: %4\$s"; +$a->strings["%1\$s commented on %2\$s's %3\$s %4\$s"] = "%1\$s hozzászólt egy %2\$s által megosztott %3\$s kapcsán: %4\$s"; +$a->strings["%1\$s replied to you on your %2\$s %3\$s"] = "%1\$s válaszolt Önnek egy vele megosztott %2\$s kapcsán: %3\$s"; +$a->strings["%1\$s tagged you on your %2\$s %3\$s"] = "%1\$s bejelölte Önt egy vele megosztott %2\$s kapcsán: %3\$s"; +$a->strings["%1\$s commented on your %2\$s %3\$s"] = "%1\$s hozzászólt egy vele megosztott %2\$s kapcsán: %3\$s"; +$a->strings["%1\$s replied to you on their %2\$s %3\$s"] = "%1\$s válaszolt Önnek egy saját %2\$s kapcsán: %3\$s"; +$a->strings["%1\$s tagged you on their %2\$s %3\$s"] = "%1\$s bejelölte Önt egy saját %2\$s kapcsán: %3\$s"; +$a->strings["%1\$s commented on their %2\$s %3\$s"] = "%1\$s hozzászólt egy saját %2\$s kapcsán: %3\$s"; +$a->strings["%s %s tagged you"] = "%s %s bejelölte Önt"; +$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s bejelölte Önt itt: %2\$s"; +$a->strings["%1\$s Comment to conversation #%2\$d by %3\$s"] = "%1\$s Hozzászólás a #%2\$d beszélgetéshez %3\$s által"; +$a->strings["%s commented on an item/conversation you have been following."] = "%s hozzászólt egy olyan elemhez vagy beszélgetéshez, amelyet Ön követ."; +$a->strings["Please visit %s to view and/or reply to the conversation."] = "Látogassa meg a %s oldalt a beszélgetés megtekintéséhez és/vagy megválaszolásához."; +$a->strings["%s %s posted to your profile wall"] = "%s %s bejegyzést írt az Ön profilfalára"; +$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s bejegyzést írt az Ön profilfalára itt: %2\$s"; +$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s bejegyzést írt [url=%2\$s]az Ön falára[/url]"; +$a->strings["%s %s shared a new post"] = "%s %s megosztott egy új bejegyzést"; +$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s megosztott egy új bejegyzést itt: %2\$s"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]megosztott egy bejegyzést[/url]."; +$a->strings["%s %s shared a post from %s"] = "%s %s megosztott egy %s által közzétett bejegyzést"; +$a->strings["%1\$s shared a post from %2\$s at %3\$s"] = "%1\$s megosztott egy %2\$s által közzétett bejegyzést itt: %3\$s"; +$a->strings["%1\$s [url=%2\$s]shared a post[/url] from %3\$s."] = "%1\$s [url=%2\$s]megosztott egy %3\$s által közzétett bejegyzést[/url]."; +$a->strings["%1\$s %2\$s poked you"] = "%1\$s %2\$s megbökte Önt"; +$a->strings["%1\$s poked you at %2\$s"] = "%1\$s megbökte Önt itt: %2\$s"; +$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]megbökte Önt[/url]."; +$a->strings["%s %s tagged your post"] = "%s %s bejelölte az Ön bejegyzését"; +$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s bejelölte az Ön bejegyzését itt: %2\$s"; +$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s bejelölte [url=%2\$s]az Ön bejegyzését[/url]"; +$a->strings["%s Introduction received"] = "%s Bemutatkozás érkezett"; +$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Kapott egy %1\$s által elküldött bemutatkozását itt: %2\$s"; +$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Kapott egy %2\$s által elküldött [url=%1\$s]bemutatkozást[/url]."; +$a->strings["You may visit their profile at %s"] = "Meglátogathatja a profilját itt: %s"; +$a->strings["Please visit %s to approve or reject the introduction."] = "Látogassa meg a(z) %s oldalt a bemutatkozás jóváhagyásához vagy visszautasításához."; +$a->strings["%s A new person is sharing with you"] = "%s Egy új személy megoszt Önnel"; +$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s megoszt Önnel itt: %2\$s"; +$a->strings["%s You have a new follower"] = "%s Van egy új követője"; +$a->strings["You have a new follower at %2\$s : %1\$s"] = "Van egy új követője, %1\$s itt: %2\$s"; +$a->strings["%s Friend suggestion received"] = "%s Ismerősajánlás érkezett"; +$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Kapott egy %1\$s által elküldött ismerősajánlást itt: %2\$s"; +$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Kapott egy %3\$s által elküldött [url=%1\$s]ismerősajánlást[/url] %2\$s partnerhez."; +$a->strings["Name:"] = "Név:"; +$a->strings["Photo:"] = "Fénykép:"; +$a->strings["Please visit %s to approve or reject the suggestion."] = "Látogassa meg a(z) %s oldalt az ajánlás jóváhagyásához vagy visszautasításához."; +$a->strings["%s Connection accepted"] = "%s Kapcsolat elfogadva"; +$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "%1\$s elfogadta a kapcsolódási kérését itt: %2\$s"; +$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s elfogadta a [url=%1\$s]kapcsolódási kérését[/url]."; +$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Önök most már kölcsönösen ismerősök, és korlátozások nélkül megoszthatják az állapotfrissítéseiket, fényképeiket és az e-mail-címüket egymással."; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Látogassa meg a(z) %s oldalt, ha bármilyen változtatást szeretne tenni ebben a kapcsolatban."; +$a->strings["'%1\$s' has chosen to accept you a fan, which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "%1\$s úgy döntött, hogy elfogadja Önt rajongóként, ami korlátozza a kommunikáció néhány formáját, mint például a személyes üzenet küldését és néhány profil-interakciót. Ha ez egy híres ember vagy egy közösségi oldal, akkor ezek a beállítások automatikusan alkalmazva lettek."; +$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "%1\$s dönthet úgy, hogy kiterjeszti ezt egy kétirányú vagy egy megengedőbb kapcsolattá a jövőben."; +$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Látogassa meg a(z) %s oldalt, ha bármilyen változtatást szeretne tenni ebben a kapcsolatban."; +$a->strings["[Friendica System Notify]"] = "[Friendica rendszerértesítés]"; +$a->strings["registration request"] = "regisztrációs kérés"; +$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Kapott egy regisztrációs kérést %1\$s partnertől itt: %2\$s"; +$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Kapott egy %2\$s által elküldött [url=%1\$s]regisztrációs kérést[/url]."; +$a->strings["Full Name:\t%s\nSite Location:\t%s\nLogin Name:\t%s (%s)"] = "Teljes név:\t%s\nOldal címe:\t%s\nBejelentkezési név:\t%s (%s)"; +$a->strings["Please visit %s to approve or reject the request."] = "Látogassa meg a(z) %s oldalt a kérés jóváhagyásához vagy visszautasításához."; +$a->strings["Permission denied."] = "Hozzáférés megtagadva."; +$a->strings["Authorize application connection"] = "Alkalmazáskapcsolat felhatalmazása"; +$a->strings["Return to your app and insert this Securty Code:"] = "Térjen vissza az alkalmazásához, és szúrja be ezt a biztonsági kódot:"; +$a->strings["Please login to continue."] = "Jelentkezzen be a folytatáshoz."; +$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Szeretné felhatalmazni ezt az alkalmazást, hogy hozzáférjen a bejegyzéseihez és a partnereihez, és/vagy új bejegyzéseket hozzon létre Önnek?"; +$a->strings["Yes"] = "Igen"; +$a->strings["No"] = "Nem"; +$a->strings["Access denied."] = "Hozzáférés megtagadva."; +$a->strings["User not found."] = "A felhasználó nem található."; +$a->strings["Access to this profile has been restricted."] = "A profilhoz való hozzáférés korlátozva lett."; +$a->strings["Events"] = "Események"; +$a->strings["View"] = "Nézet"; +$a->strings["Previous"] = "Előző"; +$a->strings["Next"] = "Következő"; +$a->strings["today"] = "ma"; $a->strings["month"] = "hónap"; -$a->strings["months"] = "hónap"; $a->strings["week"] = "hét"; -$a->strings["weeks"] = "hét"; $a->strings["day"] = "nap"; -$a->strings["days"] = "nap"; -$a->strings["hour"] = "óra"; -$a->strings["hours"] = "óra"; -$a->strings["minute"] = "perc"; -$a->strings["minutes"] = "perc"; -$a->strings["second"] = "másodperc"; -$a->strings["seconds"] = "másodperc"; -$a->strings["in %1\$d %2\$s"] = "%1\$d %2\$s múlva"; -$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s óta"; -$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, a(z) %2\$s adminisztrátora"; -$a->strings["%s Administrator"] = "A(z) %s adminisztrátora"; -$a->strings["thanks"] = "köszönet"; -$a->strings["Friendica Notification"] = "Friendica értesítés"; +$a->strings["list"] = "lista"; +$a->strings["User not found"] = "A felhasználó nem található"; +$a->strings["This calendar format is not supported"] = "Ez a naptárformátum nem támogatott"; +$a->strings["No exportable data found"] = "Nem található exportálható adat"; +$a->strings["calendar"] = "naptár"; +$a->strings["Profile not found."] = "A profil nem található."; +$a->strings["Contact not found."] = "A partner nem található."; +$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Ez olyan esetekben történhet, ha mindkét személy kéri a partnert, és az már jóvá lett hagyva."; +$a->strings["Response from remote site was not understood."] = "A távoli oldalról érkező válasz nem volt értelmezhető."; +$a->strings["Unexpected response from remote site: "] = "Váratlan válasz a távoli oldaltól: "; +$a->strings["Confirmation completed successfully."] = "A megerősítés sikeresen befejeződött."; +$a->strings["Temporary failure. Please wait and try again."] = "Átmeneti hiba. Várjon és próbálja újra."; +$a->strings["Introduction failed or was revoked."] = "A bemutatkozás sikertelen vagy visszavonták."; +$a->strings["Remote site reported: "] = "A távoli oldal jelentette: "; +$a->strings["No user record found for '%s' "] = "Nem található felhasználó-rekord ehhez: „%s” "; +$a->strings["Our site encryption key is apparently messed up."] = "Az oldal titkosítási kulcsunk nyilvánvalóan el lett rontva."; +$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Üres oldal URL lett megadva vagy az URL-t nem tudtuk visszafejteni."; +$a->strings["Contact record was not found for you on our site."] = "A partner rekordja nem található Önnek a mi oldalunkon."; +$a->strings["Site public key not available in contact record for URL %s."] = "Az oldal nyilvános kulcsa nem érhető el a partner rekordjában a(z) %s URL-hez."; +$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Az rendszere által szolgáltatott azonosító kettőzve van a mi rendszerünkön. Működnie kell, ha megpróbálja újra."; +$a->strings["Unable to set your contact credentials on our system."] = "Nem lehet beállítani a partnere hitelesítési adatait a mi rendszerünkön."; +$a->strings["Unable to update your contact profile details on our system"] = "Nem lehet frissíteni a partnere profiljának részleteit a mi rendszerünkön"; +$a->strings["%1\$s welcomes %2\$s"] = "%1\$s üdvözli őt: %2\$s"; +$a->strings["This introduction has already been accepted."] = "Ez a bemutatkozás már el lett fogadva."; +$a->strings["Profile location is not valid or does not contain profile information."] = "A profil helye nem érvényes vagy nem tartalmaz profilinformációkat."; +$a->strings["Warning: profile location has no identifiable owner name."] = "Figyelmeztetés: a profil helyének nincs azonosítható tulajdonosneve."; +$a->strings["Warning: profile location has no profile photo."] = "Figyelmeztetés: a profil helyének nincs profilfényképe."; +$a->strings["%d required parameter was not found at the given location"] = [ + 0 => "%d szükséges paraméter nem található a megadott helyen", + 1 => "%d szükséges paraméter nem található a megadott helyen", +]; +$a->strings["Introduction complete."] = "A bemutatkozás befejeződött."; +$a->strings["Unrecoverable protocol error."] = "Helyrehozhatatlan protokollhiba."; +$a->strings["Profile unavailable."] = "A profil nem érhető el."; +$a->strings["%s has received too many connection requests today."] = "%s túl sok kapcsolódási kérést kapott ma."; +$a->strings["Spam protection measures have been invoked."] = "A kéretlen adatok elleni védekezési intézkedések meghívásra kerültek."; +$a->strings["Friends are advised to please try again in 24 hours."] = "Az ismerősöknek azt javasoljuk, hogy próbálják újra 24 óra múlva."; +$a->strings["Invalid locator"] = "Érvénytelen kereső"; +$a->strings["You have already introduced yourself here."] = "Ön már bemutatkozott itt."; +$a->strings["Apparently you are already friends with %s."] = "Úgy tűnik, hogy Ön és %s már ismerősök."; +$a->strings["Invalid profile URL."] = "Érvénytelen profil URL."; +$a->strings["Disallowed profile URL."] = "Nem engedélyezett profil URL."; +$a->strings["Blocked domain"] = "Tiltott tartomány"; +$a->strings["Failed to update contact record."] = "Nem sikerült frissíteni a partner rekordját."; +$a->strings["Your introduction has been sent."] = "A bemutatkozása el lett küldve."; +$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "A távoli feliratkozást nem lehet elvégezni az Ön hálózatánál. Iratkozzon fel közvetlenül a saját rendszerén."; +$a->strings["Please login to confirm introduction."] = "Jelentkezzen be a bemutatkozás megerősítéséhez."; +$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Hibás személyazonosság van jelenleg bejelentkezve. Jelentkezzen be ebbe a profilba."; +$a->strings["Confirm"] = "Megerősítés"; +$a->strings["Hide this contact"] = "A partner elrejtése"; +$a->strings["Welcome home %s."] = "Üdvözöljük itthon, %s!"; +$a->strings["Please confirm your introduction/connection request to %s."] = "Erősítse meg a bemutatkozását vagy a kapcsolódási kérését ehhez: %s."; +$a->strings["Public access denied."] = "Nyilvános hozzáférés megtagadva."; +$a->strings["Friend/Connection Request"] = "Ismerős- vagy kapcsolódási kérés"; +$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system (for example it doesn't work with Diaspora), you have to subscribe to %s directly on your system"] = "Adja meg itt a WebFinger-címét (felhasználó@tartomány.tld) vagy a profil URL-jét. Ha ezt nem támogatja a rendszere (például nem működik a Diaspora hálózatával), akkor fel kell iratkoznia a(z) %s címre közvetlenül a rendszerén."; +$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica node and join us today."] = "Ha még nem tagja a szabad közösségi hálónak, akkor kövesse ezt a hivatkozást egy nyilvános Friendica csomópont kereséséhez, és csatlakozzon hozzánk még ma."; +$a->strings["Your Webfinger address or profile URL:"] = "A WebFinger-címe vagy profil URL-je:"; +$a->strings["Please answer the following:"] = "Válaszoljon a következőre:"; +$a->strings["Submit Request"] = "Kérés elküldése"; +$a->strings["%s knows you"] = "%s ismeri Önt"; +$a->strings["Add a personal note:"] = "Személyes jegyzet hozzáadása:"; +$a->strings["The requested item doesn't exist or has been deleted."] = "A kért elem nem létezik vagy törölték."; +$a->strings["The feed for this item is unavailable."] = "Ennek az elemnek a hírforrása nem érhető el."; +$a->strings["Item not found"] = "Az elem nem található"; +$a->strings["Edit post"] = "Bejegyzés szerkesztése"; +$a->strings["Save"] = "Mentés"; +$a->strings["Insert web link"] = "Webhivatkozás beszúrása"; +$a->strings["web link"] = "webhivatkozás"; +$a->strings["Insert video link"] = "Videohivatkozás beszúrása"; +$a->strings["video link"] = "videohivatkozás"; +$a->strings["Insert audio link"] = "Hanghivatkozás beszúrása"; +$a->strings["audio link"] = "hanghivatkozás"; +$a->strings["CC: email addresses"] = "Másolat: e-mail-címek"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Példa: bob@example.com, mary@example.com"; +$a->strings["Event can not end before it has started."] = "Az esemény nem fejeződhet be, mielőtt elkezdődött volna."; +$a->strings["Event title and start time are required."] = "Az esemény címe és a kezdési idő kötelező."; +$a->strings["Create New Event"] = "Új esemény létrehozása"; +$a->strings["Event details"] = "Esemény részletei"; +$a->strings["Starting date and Title are required."] = "A kezdési dátum és a cím kötelező."; +$a->strings["Event Starts:"] = "Esemény kezdete:"; +$a->strings["Required"] = "Kötelező"; +$a->strings["Finish date/time is not known or not relevant"] = "A befejezési dátum vagy idő nem ismert vagy nem fontos"; +$a->strings["Event Finishes:"] = "Esemény befejezése:"; +$a->strings["Adjust for viewer timezone"] = "Igazítás a néző időzónájához"; +$a->strings["Description:"] = "Leírás:"; +$a->strings["Location:"] = "Hely:"; +$a->strings["Title:"] = "Cím:"; +$a->strings["Share this event"] = "Az esemény megosztása"; +$a->strings["Submit"] = "Elküldés"; +$a->strings["Basic"] = "Alap"; +$a->strings["Advanced"] = "Speciális"; +$a->strings["Failed to remove event"] = "Nem sikerült eltávolítani az eseményt"; +$a->strings["Photos"] = "Fényképek"; +$a->strings["Upload"] = "Feltöltés"; +$a->strings["Files"] = "Fájlok"; +$a->strings["You already added this contact."] = "Már hozzáadta ezt a partnert."; +$a->strings["The network type couldn't be detected. Contact can't be added."] = "A hálózat típusát nem sikerült felismerni. A partnert nem lehet hozzáadni."; +$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "A Diaspora támogatása nincs engedélyezve. A partnert nem lehet hozzáadni."; +$a->strings["OStatus support is disabled. Contact can't be added."] = "Az OStatus támogatása le van tiltva. A partnert nem lehet hozzáadni."; +$a->strings["Your Identity Address:"] = "Az Ön személyazonosság-címe:"; +$a->strings["Profile URL"] = "Profil URL"; +$a->strings["Tags:"] = "Címkék:"; +$a->strings["Status Messages and Posts"] = "Állapotüzenetek és bejegyzések"; +$a->strings["The contact could not be added."] = "A partnert nem sikerült hozzáadni."; +$a->strings["Unable to locate original post."] = "Nem lehet megtalálni az eredeti bejegyzést."; +$a->strings["Empty post discarded."] = "Az üres bejegyzés elvetve."; +$a->strings["Post updated."] = "Bejegyzés frissítve."; +$a->strings["Item wasn't stored."] = "Az elem nem lett eltárolva."; +$a->strings["Item couldn't be fetched."] = "Az elemet nem sikerült lekérni."; +$a->strings["Item not found."] = "Az elem nem található."; +$a->strings["No valid account found."] = "Nem található érvényes fiók."; +$a->strings["Password reset request issued. Check your email."] = "A jelszó-visszaállítási kérés el lett küldve. Nézze meg a leveleit."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tKedves %1\$s!\n\t\t\tNemrég kérés érkezett a „%2\$s” oldalról a fiókja jelszavának\n\t\tvisszaállítására. A kérés megerősítése érdekében kattintson a lenti\n\t\tellenőrző hivatkozásra, vagy illessze be a webböngészője címsávjába.\n\n\t\tHa NEM Ön kérte ezt a változtatást, akkor NE kövesse a megadott\n\t\thivatkozást, illetve hagyja figyelmen kívül és/vagy törölje ezt az\n\t\te-mailt. A kérés hamarosan le fog járni.\n\n\t\tA jelszava nem lesz megváltoztatva, hacsak nem tudjuk ellenőrizni, hogy\n\t\tÖn indította ezt a kérést."; +$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tKövesse ezt a hivatkozást a személyazonossága ellenőrzéséhez:\n\n\t\t%1\$s\n\n\t\tEzután kapni fog egy követő üzenetet, amely az új jelszavát tartalmazza.\n\t\tA jelszót a fiókja beállításainak oldalán változtathatja meg, miután bejelentkezett.\n\n\t\tA bejelentkezés részletei a következők:\n\n\t\tOldal címe:\t%2\$s\n\t\tBejelentkezési név:\t%3\$s"; +$a->strings["Password reset requested at %s"] = "Jelszó-visszaállítás kérve itt: %s"; +$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "A kérést nem sikerült ellenőrizni (lehet, hogy korábban már elküldte). A jelszó-visszaállítás sikertelen."; +$a->strings["Request has expired, please make a new one."] = "A kérés lejárt, készítsen egy újat."; +$a->strings["Forgot your Password?"] = "Elfelejtette a jelszavát?"; +$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Adja meg az e-mail-címét, és küldje el a jelszó-visszaállítás kéréséhez. Azután nézze meg a postafiókját a további utasításokért."; +$a->strings["Nickname or Email: "] = "Becenév vagy e-mail-cím: "; +$a->strings["Reset"] = "Visszaállítás"; +$a->strings["Password Reset"] = "Jelszó visszaállítása"; +$a->strings["Your password has been reset as requested."] = "A jelszava vissza lett állítva a kérés alapján."; +$a->strings["Your new password is"] = "Az új jelszava"; +$a->strings["Save or copy your new password - and then"] = "Mentse el vagy másolja le az új jelszavát – majd"; +$a->strings["click here to login"] = "kattintson ide a bejelentkezéshez"; +$a->strings["Your password may be changed from the Settings page after successful login."] = "A jelszava megváltoztatható a Beállítások oldalon, miután sikeresen bejelentkezett."; +$a->strings["Your password has been reset."] = "A jelszava vissza lett állítva."; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "\n\t\t\tKedves %1\$s!\n\t\t\t\tA jelszava vissza lett állítva a kérés alapján. Őrizze meg ezt az\n\t\t\tinformációt a feljegyzéséhez (vagy változtassa meg a jelszót azonnal\n\t\t\tvalami olyanra, amelyre emlékezni fog).\n\t\t"; +$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\tA bejelentkezés részletei a következők:\n\n\t\t\tOldal címe:\t%1\$s\n\t\t\tBejelentkezési név:\t%2\$s\n\t\t\tJelszó:\t%3\$s\n\n\t\t\tMegváltoztathatja a jelszót a fiókbeállítások oldalon, miután bejelentkezett.\n\t\t"; +$a->strings["Your password has been changed at %s"] = "A jelszava meg lett változtatva itt: %s"; +$a->strings["No keywords to match. Please add keywords to your profile."] = "Nincs illesztendő kulcsszó. Adjon kulcsszavakat a profiljához."; +$a->strings["No matches"] = "Nincs találat"; +$a->strings["Profile Match"] = "Profilegyezés"; +$a->strings["New Message"] = "Új üzenet"; +$a->strings["No recipient selected."] = "Nincs címzett kiválasztva."; +$a->strings["Unable to locate contact information."] = "Nem lehet megtalálni a partner információit."; +$a->strings["Message could not be sent."] = "Az üzenetet nem sikerült elküldeni."; +$a->strings["Message collection failure."] = "Üzenet-összegyűjtési hiba."; +$a->strings["Discard"] = "Elvetés"; +$a->strings["Messages"] = "Üzenetek"; +$a->strings["Conversation not found."] = "A beszélgetés nem található."; +$a->strings["Message was not deleted."] = "Az üzenet nem lett törölve."; +$a->strings["Conversation was not removed."] = "A beszélgetés nem lett eltávolítva."; +$a->strings["Please enter a link URL:"] = "Írjon be egy hivatkozás URL-t:"; +$a->strings["Send Private Message"] = "Személyes üzenet küldése"; +$a->strings["To:"] = "Címzett:"; +$a->strings["Subject:"] = "Tárgy:"; +$a->strings["Your message:"] = "Az üzenete:"; +$a->strings["No messages."] = "Nincsenek üzenetek."; +$a->strings["Message not available."] = "Az üzenet nem érhető el."; +$a->strings["Delete message"] = "Üzenet törlése"; +$a->strings["D, d M Y - g:i A"] = "Y. M. j., D. – H:i"; +$a->strings["Delete conversation"] = "Beszélgetés törlése"; +$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Nem érhető el biztonságos kommunikáció. Esetleg válaszolhat a küldő profiloldaláról."; +$a->strings["Send Reply"] = "Válasz küldése"; +$a->strings["Unknown sender - %s"] = "Ismeretlen küldő – %s"; +$a->strings["You and %s"] = "Ön és %s"; +$a->strings["%s and You"] = "%s és Ön"; +$a->strings["%d message"] = [ + 0 => "%d üzenet", + 1 => "%d üzenet", +]; +$a->strings["Personal Notes"] = "Személyes jegyzetek"; +$a->strings["Personal notes are visible only by yourself."] = "A személyes jegyzetek csak az Ön számára láthatók."; +$a->strings["Subscribing to OStatus contacts"] = "Feliratkozás az OStatus partnerekre"; +$a->strings["No contact provided."] = "Nincs partner megadva."; +$a->strings["Couldn't fetch information for contact."] = "Nem sikerült lekérni a partner információit."; +$a->strings["Couldn't fetch friends for contact."] = "Nem sikerült lekérni a partner ismerőseit."; +$a->strings["Done"] = "Kész"; +$a->strings["success"] = "sikeres"; +$a->strings["failed"] = "sikertelen"; +$a->strings["ignored"] = "mellőzve"; +$a->strings["Keep this window open until done."] = "Tartsa nyitva ezt az ablakot, amíg el nem készül."; +$a->strings["Photo Albums"] = "Fényképalbumok"; +$a->strings["Recent Photos"] = "Legutóbbi fényképek"; +$a->strings["Upload New Photos"] = "Új fényképek feltöltése"; +$a->strings["everybody"] = "mindenki"; +$a->strings["Contact information unavailable"] = "A partner információi nem érhetők el"; +$a->strings["Album not found."] = "Az album nem található."; +$a->strings["Album successfully deleted"] = "Az album sikeresen törölve"; +$a->strings["Album was empty."] = "Az album üres volt."; +$a->strings["Failed to delete the photo."] = "Nem sikerült törölni a fényképet."; +$a->strings["a photo"] = "egy fényképen"; +$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s meg lett jelölve %2\$s %3\$s által"; +$a->strings["Image exceeds size limit of %s"] = "A kép meghaladja a beállított %s méretkorlátot"; +$a->strings["Image upload didn't complete, please try again"] = "A kép feltöltése nem fejeződött be, próbálja újra"; +$a->strings["Image file is missing"] = "A képfájl hiányzik"; +$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "A kiszolgáló jelenleg nem tud új fájlfeltöltést fogadni, vegye fel a kapcsolatot a rendszergazdával"; +$a->strings["Image file is empty."] = "A képfájl üres."; +$a->strings["Unable to process image."] = "Nem lehet feldolgozni a képet."; +$a->strings["Image upload failed."] = "A kép feltöltése sikertelen."; +$a->strings["No photos selected"] = "Nincsenek fényképek kijelölve"; +$a->strings["Access to this item is restricted."] = "Az elemhez való hozzáférés korlátozott."; +$a->strings["Upload Photos"] = "Fényképek feltöltése"; +$a->strings["New album name: "] = "Új album neve: "; +$a->strings["or select existing album:"] = "vagy meglévő album kiválasztása:"; +$a->strings["Do not show a status post for this upload"] = "Ne jelenítsen meg állapotbejegyzést ehhez a feltöltéshez"; +$a->strings["Do you really want to delete this photo album and all its photos?"] = "Valóban törölni szeretné ezt a fényképalbumot és az összes fényképét?"; +$a->strings["Delete Album"] = "Album törlése"; +$a->strings["Edit Album"] = "Album szerkesztése"; +$a->strings["Drop Album"] = "Album eldobása"; +$a->strings["Show Newest First"] = "Legújabb megjelenítése először"; +$a->strings["Show Oldest First"] = "Legrégebbi megjelenítése először"; +$a->strings["View Photo"] = "Fénykép megtekintése"; +$a->strings["Permission denied. Access to this item may be restricted."] = "Hozzáférés megtagadva. Az elemhez való hozzáférés korlátozva lehet."; +$a->strings["Photo not available"] = "A fénykép nem érhető el"; +$a->strings["Do you really want to delete this photo?"] = "Valóban törölni szeretné ezt a fényképet?"; +$a->strings["Delete Photo"] = "Fénykép törlése"; +$a->strings["View photo"] = "Fénykép megtekintése"; +$a->strings["Edit photo"] = "Fénykép szerkesztése"; +$a->strings["Delete photo"] = "Fénykép törlése"; +$a->strings["Use as profile photo"] = "Használat profilfényképként"; +$a->strings["Private Photo"] = "Személyes fénykép"; +$a->strings["View Full Size"] = "Teljes méret megtekintése"; +$a->strings["Tags: "] = "Címkék: "; +$a->strings["[Select tags to remove]"] = "[Eltávolítandó címkék kiválasztása]"; +$a->strings["New album name"] = "Új album neve"; +$a->strings["Caption"] = "Felirat"; +$a->strings["Add a Tag"] = "Címke hozzáadása"; +$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Példa: @bob, @Barbara_Jensen, @jim@example.com, #Budapest, #kemping"; +$a->strings["Do not rotate"] = "Ne forgassa el"; +$a->strings["Rotate CW (right)"] = "Forgatás jobbra"; +$a->strings["Rotate CCW (left)"] = "Forgatás balra"; +$a->strings["This is you"] = "Ez Ön"; +$a->strings["Comment"] = "Hozzászólás"; +$a->strings["Like"] = "Tetszik"; +$a->strings["I like this (toggle)"] = "Ezt kedvelem (átváltás)"; +$a->strings["Dislike"] = "Nem tetszik"; +$a->strings["I don't like this (toggle)"] = "Ezt nem kedvelem (átváltás)"; +$a->strings["Map"] = "Térkép"; +$a->strings["View Album"] = "Album megtekintése"; +$a->strings["{0} wants to be your friend"] = "{0} az ismerőse szeretne lenni"; +$a->strings["{0} requested registration"] = "{0} regisztrációt kért"; +$a->strings["{0} and %d others requested registration"] = "{0} és még %d személy regisztrációt kért"; +$a->strings["Bad Request."] = "Hibás kérés."; +$a->strings["User deleted their account"] = "A felhasználó törölte a fiókját"; +$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "Az Ön Friendica csomópontján egy felhasználó törölte a fiókját. Győződjön meg arról, hogy az adatai el lettek-e távolítva a biztonsági mentésekből."; +$a->strings["The user id is %d"] = "A felhasználó-azonosító %d"; +$a->strings["Remove My Account"] = "Saját fiók eltávolítása"; +$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Ez teljesen el fogja távolítani a fiókját. Miután ez megtörtént, nem lesz visszaállítható."; +$a->strings["Please enter your password for verification:"] = "Adja meg a jelszavát az ellenőrzéshez:"; +$a->strings["Resubscribing to OStatus contacts"] = "Újrafeliratkozás az OStatus partnerekre"; +$a->strings["Error"] = [ + 0 => "Hiba", + 1 => "Hibák", +]; +$a->strings["Missing some important data!"] = "Néhány fontos adat hiányzik!"; +$a->strings["Update"] = "Frissítés"; +$a->strings["Failed to connect with email account using the settings provided."] = "Nem sikerült kapcsolódni a megadott beállításokat használó e-mail-fiókkal."; +$a->strings["Contact CSV file upload error"] = "Partner CSV-fájl feltöltési hiba"; +$a->strings["Importing Contacts done"] = "A partnerek importálása kész"; +$a->strings["Relocate message has been send to your contacts"] = "Az áthelyezési üzenet el lett küldve a partnereknek"; +$a->strings["Passwords do not match."] = "A jelszavak nem egyeznek."; +$a->strings["Password update failed. Please try again."] = "A jelszó frissítése sikertelen. Próbálja újra."; +$a->strings["Password changed."] = "A jelszó megváltoztatva."; +$a->strings["Password unchanged."] = "A jelszó nincs megváltoztatva."; +$a->strings["Please use a shorter name."] = "Használjon rövidebb nevet."; +$a->strings["Name too short."] = "A név túl rövid."; +$a->strings["Wrong Password."] = "Hibás jelszó."; +$a->strings["Invalid email."] = "Érvénytelen e-mail-cím."; +$a->strings["Cannot change to that email."] = "Nem lehet megváltoztatni arra az e-mail-címre."; +$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "A személyes fórumnak nincsenek adatvédelmi jogosultságai. Alapértelmezett adatvédelmi csoport használata."; +$a->strings["Private forum has no privacy permissions and no default privacy group."] = "A személyes fórumnak nincsenek adatvédelmi jogosultságai és nincs alapértelmezett adatvédelmi csoportja."; +$a->strings["Settings were not updated."] = "A beállítások nem lettek frissítve."; +$a->strings["Connected Apps"] = "Kapcsolt alkalmazások"; +$a->strings["Name"] = "Név"; +$a->strings["Home Page"] = "Kezdőlap"; +$a->strings["Created"] = "Létrehozva"; +$a->strings["Remove authorization"] = "Felhatalmazás eltávolítása"; +$a->strings["No Addon settings configured"] = "Nincsenek bővítménybeállítások meghatározva"; +$a->strings["Addon Settings"] = "Bővítménybeállítások"; +$a->strings["Additional Features"] = "További funkciók"; +$a->strings["Save Settings"] = "Beállítások mentése"; +$a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora (Socialhome, Hubzilla)"; +$a->strings["enabled"] = "engedélyezve"; +$a->strings["disabled"] = "letiltva"; +$a->strings["Built-in support for %s connectivity is %s"] = "A(z) %s összekapcsolhatóságának beépített támogatása %s"; +$a->strings["OStatus (GNU Social)"] = "OStatus (GNU Social)"; +$a->strings["Email access is disabled on this site."] = "Az e-mailes hozzáférés le van tiltva ezen az oldalon."; +$a->strings["None"] = "Nincs"; +$a->strings["Social Networks"] = "Közösségi hálózatok"; +$a->strings["General Social Media Settings"] = "Általános közösségimédia-beállítások"; +$a->strings["Accept only top level posts by contacts you follow"] = "Csak felső szintű bejegyzések elfogadása azoktól a partnerektől, akiket követ"; +$a->strings["The system does an auto completion of threads when a comment arrives. This has got the side effect that you can receive posts that had been started by a non-follower but had been commented by someone you follow. This setting deactivates this behaviour. When activated, you strictly only will receive posts from people you really do follow."] = "A rendszer elvégezi a szálak automatikus kiegészítést, ha egy hozzászólás érkezik. Ennek az a mellékhatása, hogy olyan bejegyzéseket is kaphat, amelyeket egy nem követő indított el, de valaki olyan szólt hozzá, akit Ön követ. Ez a beállítás kikapcsolja ezt a viselkedést. Ha be van kapcsolva, akkor szigorúan csak olyan emberektől fog bejegyzéseket kapni, akiket valóban követ."; +$a->strings["Disable Content Warning"] = "Tartalomfigyelmeztetés letiltása"; +$a->strings["Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This disables the automatic collapsing and sets the content warning as the post title. Doesn't affect any other content filtering you eventually set up."] = "Például a Mastodon vagy a Pleroma hálózatán lévő felhasználók képesek egy olyan tartalomfigyelmeztetési mezőt beállítani, amely alapértelmezetten összecsukja a bejegyzéseiket. Ez letiltja az automatikus összecsukást, és beállítja a tartalomfigyelmeztetést a bejegyzés címeként. Nincs hatással semmilyen más tartalomszűrésre, amelyet végül beállított."; +$a->strings["Disable intelligent shortening"] = "Intelligens rövidítés letiltása"; +$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Általában a rendszer megpróbálja megkeresni a legjobb hivatkozást a rövidített bejegyzésekhez történő hozzáadáshoz. Ha ez a beállítás engedélyezve van, akkor minden egyes rövidített bejegyzés mindig az eredeti Friendica bejegyzésre fog mutatni."; +$a->strings["Attach the link title"] = "A hivatkozás címének csatolása"; +$a->strings["When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that share feed content."] = "Ha be van kapcsolva, akkor a csatolt hivatkozás címe címként lesz hozzáadva a Diaspora hálózatra küldött bejegyzéseknél. Ez többnyire az olyan „távoli önmaga” partnerekkel hasznos, amelyek megosztják a hírforrás tartalmát."; +$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Bármely GNU Social (OStatus) követő vagy megemlítő automatikus követése"; +$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Ha üzenetet kap egy ismeretlen OStatus felhasználótól, akkor ez a beállítás dönti el, hogy mit kell tenni. Ha be van jelölve, akkor új partner lesz létrehozva minden egyes ismeretlen felhasználóhoz."; +$a->strings["Default group for OStatus contacts"] = "Alapértelmezett csoport az OStatus partnerekhez"; +$a->strings["Your legacy GNU Social account"] = "Az örökölt GNU Social fiókja"; +$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "Ha megadja itt a régi GNU Social vagy Statusnet fiókja nevét (felhasználó@tartomány.tld formátumban), akkor a partnerei automatikusan hozzá lesznek adva. A mező ki lesz ürítve, ha elkészült."; +$a->strings["Repair OStatus subscriptions"] = "OStatus feliratkozások javítása"; +$a->strings["Email/Mailbox Setup"] = "E-mail vagy postafiók-beállítások"; +$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Ha e-mailes partnerekkel szeretne kommunikálni ezen szolgáltatás használatával (opcionális), akkor adja meg, hogy hogyan kell kapcsolódni a postafiókjához."; +$a->strings["Last successful email check:"] = "Legutóbbi sikeres e-mail-ellenőrzés:"; +$a->strings["IMAP server name:"] = "IMAP-kiszolgáló neve:"; +$a->strings["IMAP port:"] = "IMAP port:"; +$a->strings["Security:"] = "Biztonság:"; +$a->strings["Email login name:"] = "E-mail bejelentkezési neve:"; +$a->strings["Email password:"] = "E-mail jelszava:"; +$a->strings["Reply-to address:"] = "Válaszcím:"; +$a->strings["Send public posts to all email contacts:"] = "Nyilvános bejegyzések küldése az összes e-mail partnernek:"; +$a->strings["Action after import:"] = "Importálás utáni művelet:"; +$a->strings["Mark as seen"] = "Megjelölés olvasottként"; +$a->strings["Move to folder"] = "Áthelyezés mappába"; +$a->strings["Move to folder:"] = "Áthelyezés mappába:"; +$a->strings["Unable to find your profile. Please contact your admin."] = "Nem található a profilja. Vegye fel a kapcsolatot a rendszergazdával."; +$a->strings["Account Types"] = "Fióktípusok"; +$a->strings["Personal Page Subtypes"] = "Személyes oldal altípusai"; +$a->strings["Community Forum Subtypes"] = "Közösségi fórum altípusai"; +$a->strings["Personal Page"] = "Személyes oldal"; +$a->strings["Account for a personal profile."] = "Egy személyes profil fiókja."; +$a->strings["Organisation Page"] = "Szervezeti oldal"; +$a->strings["Account for an organisation that automatically approves contact requests as \"Followers\"."] = "Egy szervezet fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például a „követőket”."; +$a->strings["News Page"] = "Hírek oldal"; +$a->strings["Account for a news reflector that automatically approves contact requests as \"Followers\"."] = "Egy hírportál fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például a „követőket”."; +$a->strings["Community Forum"] = "Közösségi fórum"; +$a->strings["Account for community discussions."] = "Közösségi beszélgetések fiókja."; +$a->strings["Normal Account Page"] = "Normál fiókoldal"; +$a->strings["Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."] = "Egy szokásos személyes profil fiókja, amely az „ismerősök” és a „követők” kézi jóváhagyását igényli."; +$a->strings["Soapbox Page"] = "Szappantartó oldal"; +$a->strings["Account for a public profile that automatically approves contact requests as \"Followers\"."] = "Egy nyilvános profil fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például a „követőket”."; +$a->strings["Public Forum"] = "Nyilvános fórum"; +$a->strings["Automatically approves all contact requests."] = "Automatikusan jóváhagyja az összes partnerkérést."; +$a->strings["Automatic Friend Page"] = "Automatikus ismerős oldal"; +$a->strings["Account for a popular profile that automatically approves contact requests as \"Friends\"."] = "Egy népszerű profil fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például az „ismerősöket”."; +$a->strings["Private Forum [Experimental]"] = "Személyes fórum [kísérleti]"; +$a->strings["Requires manual approval of contact requests."] = "A partnerkérések kézi jóváhagyását igényli."; +$a->strings["OpenID:"] = "OpenID:"; +$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Kihagyható) Lehetővé teszi ezen OpenID számára, hogy bejelentkezzen ebbe a fiókba."; +$a->strings["Publish your profile in your local site directory?"] = "Közzéteszi a profilját a helyi oldal könyvtárában?"; +$a->strings["Your profile will be published in this node's local directory. Your profile details may be publicly visible depending on the system settings."] = "A profilja közzé lesz téve ennek a csomópontnak a helyi könyvtárában. A profilrészletei esetleg nyilvánosan láthatóak lehetnek a rendszerbeállításoktól függően."; +$a->strings["Your profile will also be published in the global friendica directories (e.g. %s)."] = "A profilja közzé lesz téve a globális Friendica könyvtárakban is (például itt: %s)."; +$a->strings["Your Identity Address is '%s' or '%s'."] = "Az Ön személyazonosság-címe „%s” vagy „%s”."; +$a->strings["Account Settings"] = "Fiókbeállítások"; +$a->strings["Password Settings"] = "Jelszóbeállítások"; +$a->strings["New Password:"] = "Új jelszó:"; +$a->strings["Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:)."] = "Az engedélyezett karakterek az a-z, A-Z, 0-9 tartományokban lévők és a különleges karakterek, kivéve az üres karaktereket, ékezetes betűket és a kettőspontot (:)."; +$a->strings["Confirm:"] = "Megerősítés:"; +$a->strings["Leave password fields blank unless changing"] = "Hagyja üresen a jelszómezőket, különben megváltozik"; +$a->strings["Current Password:"] = "Jelenlegi jelszó:"; +$a->strings["Your current password to confirm the changes"] = "A jelenlegi jelszava a változtatások megerősítéséhez"; +$a->strings["Password:"] = "Jelszó:"; +$a->strings["Your current password to confirm the changes of the email address"] = "A jelenlegi jelszava az e-mail-címe megváltoztatásának megerősítéséhez"; +$a->strings["Delete OpenID URL"] = "OpenID URL törlése"; +$a->strings["Basic Settings"] = "Alapvető beállítások"; +$a->strings["Full Name:"] = "Teljes név:"; +$a->strings["Email Address:"] = "E-mail-cím:"; +$a->strings["Your Timezone:"] = "Az Ön időzónája:"; +$a->strings["Your Language:"] = "Az Ön nyelve:"; +$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Annak a nyelvnek a beállítása, amelyet a Friendica felületének megjelenítéséhez és a levelek küldéséhez használunk"; +$a->strings["Default Post Location:"] = "Alapértelmezett bejegyzésküldési hely:"; +$a->strings["Use Browser Location:"] = "Böngésző helyének használata:"; +$a->strings["Security and Privacy Settings"] = "Biztonsági és adatvédelmi beállítások"; +$a->strings["Maximum Friend Requests/Day:"] = "Legtöbb ismerőskérés naponta:"; +$a->strings["(to prevent spam abuse)"] = "(a levélszeméttel való visszaélés elkerüléséhez)"; +$a->strings["Allow your profile to be searchable globally?"] = "Engedélyezi, hogy a profilja globálisan kereshető legyen?"; +$a->strings["Activate this setting if you want others to easily find and follow you. Your profile will be searchable on remote systems. This setting also determines whether Friendica will inform search engines that your profile should be indexed or not."] = "Akkor kapcsolja be ezt a beállítást, ha azt szeretné, hogy mások egyszerűen megtalálják és kövessék Önt. A profilja kereshető lesz a távoli rendszereken. Ez a beállítás azt is meghatározza, hogy a Friendica tájékoztatja-e a keresőmotorokat arról, hogy a profilját indexelni kell-e vagy sem."; +$a->strings["Hide your contact/friend list from viewers of your profile?"] = "Elrejti a partnerlistáját vagy ismerőslistáját a profilja megtekintői elől?"; +$a->strings["A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list."] = "A partnereinek listája a profiloldalán van megjelenítve. Kapcsolja be ezt a beállítást, hogy letiltsa a partnerlistája megjelenítését."; +$a->strings["Hide your profile details from anonymous viewers?"] = "Elrejti a profilja részleteit a névtelen megtekintők elől?"; +$a->strings["Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Your public posts and replies will still be accessible by other means."] = "A névtelen látogatók csak azt profilfényképét, megjelenített nevét és becenevét láthatják, amelyet a profiloldalán használ. A nyilvános bejegyzései és válaszai továbbra is elérhetők lesznek más eszközökkel."; +$a->strings["Make public posts unlisted"] = "Nyilvános bejegyzések felsorolatlanná tétele"; +$a->strings["Your public posts will not appear on the community pages or in search results, nor be sent to relay servers. However they can still appear on public feeds on remote servers."] = "A nyilvános bejegyzései nem fognak megjelenni a közösségi oldalakon vagy a keresési találatokban, és nem lesznek elküldve az átjátszó kiszolgálóknak. Azonban továbbra is megjelenhetnek a nyilvános hírforrásokban a távoli kiszolgálókon."; +$a->strings["Make all posted pictures accessible"] = "Az összes beküldött fénykép elérhetővé tétele"; +$a->strings["This option makes every posted picture accessible via the direct link. This is a workaround for the problem that most other networks can't handle permissions on pictures. Non public pictures still won't be visible for the public on your photo albums though."] = "Ez a beállítás elérhetővé tesz minden egyes beküldött fényképet a közvetlen hivatkozáson keresztül. Ez egy kerülőmegoldás arra a problémára, hogy a legtöbb más hálózat nem tudja kezelni a fényképek jogosultságait. A nem nyilvános fényképek továbbra sem lesznek láthatóak a nyilvánosság számára a fényképalbumán keresztül."; +$a->strings["Allow friends to post to your profile page?"] = "Engedélyezi az ismerősöknek, hogy beküldjenek a profiloldalára?"; +$a->strings["Your contacts may write posts on your profile wall. These posts will be distributed to your contacts"] = "A partnerei bejegyzéseket írhatnak az Ön profilfalára. Ezek a bejegyzések továbbítva lesznek a partnereinek."; +$a->strings["Allow friends to tag your posts?"] = "Engedélyezi az ismerőseinek, hogy címkézzék a bejegyzéseit?"; +$a->strings["Your contacts can add additional tags to your posts."] = "A partnerei további címkéket adhatnak a bejegyzéseihez."; +$a->strings["Permit unknown people to send you private mail?"] = "Engedélyt ad ismeretlen embereknek, hogy személyes levelet küldjenek Önnek?"; +$a->strings["Friendica network users may send you private messages even if they are not in your contact list."] = "A Friendica hálózat felhasználói akkor is küldhetnek Önnek személyes üzeneteket, ha nincsenek a partnerlistáján."; +$a->strings["Maximum private messages per day from unknown people:"] = "Legtöbb személyes üzenet naponta az ismeretlen emberektől:"; +$a->strings["Default Post Permissions"] = "Alapértelmezett bejegyzés-jogosultságok"; +$a->strings["Expiration settings"] = "Lejárati jogosultságok"; +$a->strings["Automatically expire posts after this many days:"] = "Bejegyzések automatikus lejárata ennyi nap után:"; +$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Ha üres, akkor a bejegyzések nem járnak le. A lejárt bejegyzések törölve lesznek."; +$a->strings["Expire posts"] = "Bejegyzések lejárata"; +$a->strings["When activated, posts and comments will be expired."] = "Ha be van kapcsolva, akkor a bejegyzések és a hozzászólások le fognak járni."; +$a->strings["Expire personal notes"] = "Személyes jegyzetek lejárata"; +$a->strings["When activated, the personal notes on your profile page will be expired."] = "Ha be van kapcsolva, akkor a profiloldalán lévő személyes jegyzetek le fognak járni."; +$a->strings["Expire starred posts"] = "Csillagozott bejegyzések lejárata"; +$a->strings["Starring posts keeps them from being expired. That behaviour is overwritten by this setting."] = "A bejegyzések csillagozása megakadályozza azok lejáratát. Ez a viselkedés felülírható ezzel a beállítással."; +$a->strings["Expire photos"] = "Fényképek lejárata"; +$a->strings["When activated, photos will be expired."] = "Ha be van kapcsolva, akkor a fényképek le fognak járni."; +$a->strings["Only expire posts by others"] = "Csak a másoktól származó bejegyzések lejárata"; +$a->strings["When activated, your own posts never expire. Then the settings above are only valid for posts you received."] = "Ha be van kapcsolva, akkor a saját bejegyzései sosem járnak le. Ekkor a fenti beállítás csak azokra a bejegyzésekre érvényes, amelyeket megkap."; +$a->strings["Notification Settings"] = "Értesítési beállítások"; +$a->strings["Send a notification email when:"] = "Értesítési e-mail küldése a következő esetekben:"; +$a->strings["You receive an introduction"] = "Egy bemutatkozást fogad"; +$a->strings["Your introductions are confirmed"] = "A bemutatkozásait jóváhagyták"; +$a->strings["Someone writes on your profile wall"] = "Valaki ír a profilfalára"; +$a->strings["Someone writes a followup comment"] = "Valaki egy követő hozzászólást ír"; +$a->strings["You receive a private message"] = "Személyes üzenetet kap"; +$a->strings["You receive a friend suggestion"] = "Ismerősajánlást kap"; +$a->strings["You are tagged in a post"] = "Bejelölték egy bejegyzésben"; +$a->strings["You are poked/prodded/etc. in a post"] = "Megbökték, megdöfték, stb. egy bejegyzésben"; +$a->strings["Activate desktop notifications"] = "Asztali értesítések bekapcsolása"; +$a->strings["Show desktop popup on new notifications"] = "Felugró üzenet megjelenítése az asztalon új értesítések esetén."; +$a->strings["Text-only notification emails"] = "Csak szöveges értesítési e-mailek"; +$a->strings["Send text only notification emails, without the html part"] = "Csak szöveges értesítési e-mailek küldése a HTML rész nélkül."; +$a->strings["Show detailled notifications"] = "Részletes értesítések megjelenítése"; +$a->strings["Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed."] = "Alapértelmezetten az értesítések elemenként egyetlen értesítésbe vannak összevonva. Ha engedélyezve van, akkor minden értesítés megjelenik."; +$a->strings["Show notifications of ignored contacts"] = "Figyelmen kívül hagyott partnerek értesítéseinek megjelenítése"; +$a->strings["You don't see posts from ignored contacts. But you still see their comments. This setting controls if you want to still receive regular notifications that are caused by ignored contacts or not."] = "Nem látja a figyelmen kívül hagyott partnerektől érkező bejegyzéseket. Viszont továbbra is látja a hozzászólásaikat. Ez a beállítás azt vezérli, hogy továbbra is szeretne-e olyan normál értesítéseket kapni vagy sem, amelyeket figyelmen kívül hagyott partnerek okoznak."; +$a->strings["Advanced Account/Page Type Settings"] = "Speciális fióktípus vagy oldaltípus beállítások"; +$a->strings["Change the behaviour of this account for special situations"] = "A fiók viselkedésének megváltoztatása bizonyos helyzetekre."; +$a->strings["Import Contacts"] = "Partnerek importálása"; +$a->strings["Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account."] = "Töltsön fel egy olyan CSV-fájlt, amely a követett fiókok kezelőjét tartalmazza az első oszlopban, ahogy a régi fiókból exportálta."; +$a->strings["Upload File"] = "Fájl feltöltése"; +$a->strings["Relocate"] = "Áthelyezés"; +$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Ha áthelyezte ezt a profilt egy másik kiszolgálóról, és néhány partnere nem kapta meg a frissítéseket, akkor próbálja meg megnyomni ezt a gombot."; +$a->strings["Resend relocate message to contacts"] = "Áthelyezési üzenet küldése a partnereknek"; +$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nem érhetők el javaslatok. Ha ez egy új oldal, akkor próbálja újra 24 óra múlva."; +$a->strings["Friend Suggestions"] = "Ismerős javaslatok"; +$a->strings["Remove Item Tag"] = "Elem címkéjének eltávolítása"; +$a->strings["Select a tag to remove: "] = "Eltávolítandó címke kiválasztása: "; +$a->strings["Remove"] = "Eltávolítás"; +$a->strings["User imports on closed servers can only be done by an administrator."] = "A lezárt kiszolgálókon történő felhasználó-importálásokat csak egy adminisztrátor végezheti el."; +$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Ez az oldal túllépte a fiókregisztrációk naponta megengedett számát. Próbálja újra holnap."; +$a->strings["Import"] = "Importálás"; +$a->strings["Move account"] = "Fiók áthelyezése"; +$a->strings["You can import an account from another Friendica server."] = "Importálhat egy fiókot egy másik Friendica kiszolgálóról."; +$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Exportálnia kell a fiókját a régi kiszolgálóról, és fel kell töltenie ide. Itt újra létre fogjuk hozni a régi fiókját az összes partnerével. Megpróbáljuk tájékoztatni az ismerőseit arról is, hogy átköltözött ide."; +$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Ez a funkció kísérleti. Nem tudunk partnereket importálni az OStatus hálózatból (GNU Social/Statusnet) vagy Diaspora hálózatból."; +$a->strings["Account file"] = "Fiókfájl"; +$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "A fiókja exportálásához menjen a „Beállítások → Személyes adatok exportálása” oldalra, és válassza a „Fiók exportálása” lehetőséget."; +$a->strings["You aren't following this contact."] = "Ön nem követi ezt a partnert."; +$a->strings["Unfollowing is currently not supported by your network."] = "A követés megszüntetését jelenleg nem támogatja a hálózata."; +$a->strings["Disconnect/Unfollow"] = "Leválasztás vagy követés megszüntetése"; +$a->strings["No videos selected"] = "Nincsenek videók kiválasztva"; +$a->strings["View Video"] = "Videó megtekintése"; +$a->strings["Recent Videos"] = "Legutóbbi videók"; +$a->strings["Upload New Videos"] = "Új videók feltöltése"; +$a->strings["Invalid request."] = "Érvénytelen kérés."; +$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Elnézést, talán a feltöltése nagyobb annál, amit a PHP beállítása megenged"; +$a->strings["Or - did you try to upload an empty file?"] = "Vagy – egy üres fájlt próbált meg feltölteni?"; +$a->strings["File exceeds size limit of %s"] = "A fájl meghaladja a beállított %s méretkorlátot"; +$a->strings["File upload failed."] = "A fájl feltöltése sikertelen."; +$a->strings["Wall Photos"] = "Falfényképek"; +$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "A(z) %s napi falüzeneteinek száma túllépve. Az üzenet sikertelen."; +$a->strings["Unable to check your home location."] = "Nem lehet ellenőrizni az otthona helyét."; +$a->strings["No recipient."] = "Nincs címzett."; +$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Ha azt szeretné, hogy %s válaszoljon, ellenőrizze, hogy az Ön oldalán lévő adatvédelmi beállítások lehetővé teszik-e az ismeretlen küldőktől származó személyes leveleket."; +$a->strings["No system theme config value set."] = "Nincs rendszertéma beállítási érték megadva."; $a->strings["You must be logged in to use addons. "] = "Bejelentkezve kell lennie a bővítmények használatához."; -$a->strings["Method not allowed for this module. Allowed method(s): %s"] = "A módszer nem engedélyezett ennél a modulnál. Az engedélyezett módszerek: %s"; -$a->strings["Page not found."] = "Az oldal nem található."; $a->strings["Delete this item?"] = "Törli ezt az elemet?"; $a->strings["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."] = "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."; $a->strings["toggle mobile"] = "váltás mobilra"; -$a->strings["(no subject)"] = "(nincs tárgy)"; -$a->strings["Record not found"] = "A rekord nem található"; -$a->strings["Friend Suggestion"] = "Ismerősajánlás"; -$a->strings["Friend/Connect Request"] = "Ismerős vagy kapcsolódási kérés"; -$a->strings["New Follower"] = "Új követő"; -$a->strings["%s created a new post"] = "%s létrehozott egy új bejegyzést"; -$a->strings["%s commented on %s's post"] = "%s hozzászólt %s bejegyzéséhez"; -$a->strings["%s liked %s's post"] = "%s kedvelte %s bejegyzését"; -$a->strings["%s disliked %s's post"] = "%s nem kedvelte %s bejegyzését"; -$a->strings["%s is attending %s's event"] = "%s részt vesz %s eseményén"; -$a->strings["%s is not attending %s's event"] = "%s nem vesz részt %s eseményén"; -$a->strings["%s may attending %s's event"] = "%s talán részt vesz %s eseményén"; -$a->strings["%s is now friends with %s"] = "%s és %s mostantól ismerősök"; -$a->strings["The database version had been set to %s."] = "Az adatbázis verziója %s értékre lett állítva."; -$a->strings["The post update is at version %d, it has to be at %d to safely drop the tables."] = "A bejegyzésfrissítés %d. verziónál van. %d. verziónál kell lennie a táblák biztonságos eldobásához."; -$a->strings["No unused tables found."] = "Nem találhatók nem használt táblák."; -$a->strings["These tables are not used for friendica and will be deleted when you execute \"dbstructure drop -e\":"] = "Ezek a táblák nincsenek használatban a Friendica programnál, és törölve lesznek, ha lefuttatja a „dbstructure drop -e” parancsot:"; -$a->strings["There are no tables on MyISAM or InnoDB with the Antelope file format."] = "Nincsenek Antelope fájlformátummal rendelkező táblák MyISAM vagy InnoDB motorokon."; -$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nHiba (%d) történt az adatbázis frissítése során:\n%s\n"; -$a->strings["Errors encountered performing database changes: "] = "Hibák történtek az adatbázis változtatásainak végrehajtásakor: "; -$a->strings["Another database update is currently running."] = "Egy másik adatbázis-frissítés is fut jelenleg."; -$a->strings["%s: Database update"] = "%s: adatbázis-frissítés"; -$a->strings["%s: updating %s table."] = "%s: a(z) %s tábla frissítése."; -$a->strings["Friendica can't display this page at the moment, please contact the administrator."] = "A Friendica jelenleg nem tudja megjeleníteni ezt az oldalt. Vegye fel a kapcsolatot a rendszergazdával."; -$a->strings["template engine cannot be registered without a name."] = "a sablonmotort nem lehet regisztrálni név nélkül."; -$a->strings["template engine is not registered!"] = "a sablonmotor nincs regisztrálva!"; -$a->strings["Yourself"] = "Önmaga"; +$a->strings["Method not allowed for this module. Allowed method(s): %s"] = "A módszer nem engedélyezett ennél a modulnál. Az engedélyezett módszerek: %s"; +$a->strings["Page not found."] = "Az oldal nem található."; +$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Az űrlap biztonsági tokenje nem volt helyes. Ez valószínűleg azért történt, mert az űrlapot túl hosszan tartották nyitva (>3 óra), mielőtt elküldték volna."; +$a->strings["All contacts"] = "Összes partner"; $a->strings["Followers"] = "Követők"; +$a->strings["Following"] = "Követés"; +$a->strings["Mutual friends"] = "Kölcsönösen ismerősök"; +$a->strings["Common"] = "Közös"; +$a->strings["Addon not found"] = "A bővítmény nem található"; +$a->strings["Addon already enabled"] = "A bővítmény már engedélyezve van"; +$a->strings["Addon already disabled"] = "A bővítmény már le van tiltva"; +$a->strings["Could not find any unarchived contact entry for this URL (%s)"] = "Nem sikerült találni egyetlen archiválatlan partnerbejegyzést sem erről az URL-ről (%s)"; +$a->strings["The contact entries have been archived"] = "A partnerbejegyzések archiválva lettek"; +$a->strings["Could not find any contact entry for this URL (%s)"] = "Nem sikerült találni egyetlen partnerbejegyzést sem erről az URL-ről (%s)"; +$a->strings["The contact has been blocked from the node"] = "A partner tiltva lett a csomópontról"; +$a->strings["Post update version number has been set to %s."] = "A bejegyzésfrissítés verziószáma erre lett beállítva: %s."; +$a->strings["Check for pending update actions."] = "Függőben lévő frissítési műveletek ellenőrzése."; +$a->strings["Done."] = "Kész."; +$a->strings["Execute pending post updates."] = "Függőben lévő bejegyzésfrissítések végrehajtása."; +$a->strings["All pending post updates are done."] = "Az összes függőben lévő bejegyzésfrissítés kész."; +$a->strings["Enter user nickname: "] = "Felhasználó becenevének megadása: "; +$a->strings["Enter new password: "] = "Új jelszó megadása: "; +$a->strings["Enter user name: "] = "Felhasználónév megadása: "; +$a->strings["Enter user email address: "] = "Felhasználó e-mail-címének megadása: "; +$a->strings["Enter a language (optional): "] = "Nyelv megadása (elhagyható): "; +$a->strings["User is not pending."] = "A felhasználó nincs függőben."; +$a->strings["User has already been marked for deletion."] = "A felhasználó már meg lett jelölve törlésre."; +$a->strings["Type \"yes\" to delete %s"] = "Írja be a „yes” szót %s törléséhez"; +$a->strings["Deletion aborted."] = "Törlés megszakítva."; +$a->strings["Enter category: "] = "Kategória megadása: "; +$a->strings["Enter key: "] = "Kulcs megadása: "; +$a->strings["Enter value: "] = "Érték megadása: "; +$a->strings["newer"] = "soha"; +$a->strings["older"] = "régebbi"; +$a->strings["Frequently"] = "Gyakran"; +$a->strings["Hourly"] = "Óránként"; +$a->strings["Twice daily"] = "Naponta kétszer"; +$a->strings["Daily"] = "Naponta"; +$a->strings["Weekly"] = "Hetente"; +$a->strings["Monthly"] = "Havonta"; +$a->strings["DFRN"] = "DFRN"; +$a->strings["OStatus"] = "OStatus"; +$a->strings["RSS/Atom"] = "RSS/Atom"; +$a->strings["Email"] = "E-mail"; +$a->strings["Diaspora"] = "Diaspora"; +$a->strings["Zot!"] = "Zot!"; +$a->strings["LinkedIn"] = "LinkedIn"; +$a->strings["XMPP/IM"] = "XMPP/IM"; +$a->strings["MySpace"] = "MySpace"; +$a->strings["Google+"] = "Google+"; +$a->strings["pump.io"] = "pump.io"; +$a->strings["Twitter"] = "Twitter"; +$a->strings["Discourse"] = "Discourse"; +$a->strings["Diaspora Connector"] = "Diaspora összekötő"; +$a->strings["GNU Social Connector"] = "GNU Social összekötő"; +$a->strings["ActivityPub"] = "ActivityPub"; +$a->strings["pnut"] = "pnut"; +$a->strings["%s (via %s)"] = "%s (ezen keresztül: %s)"; +$a->strings["General Features"] = "Általános funkciók"; +$a->strings["Photo Location"] = "Fénykép helye"; +$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "A fénykép metaadatai általában ki vannak törölve. Ez kinyeri a helyet (ha meg van adva) a metaadatok törlése előtt, és hivatkozást készít rá egy térképen."; +$a->strings["Trending Tags"] = "Népszerű címkék"; +$a->strings["Show a community page widget with a list of the most popular tags in recent public posts."] = "Egy közösségi oldal felületi elem megjelenítése a legutóbbi nyilvános bejegyzésekben lévő legnépszerűbb címkék listájával."; +$a->strings["Post Composition Features"] = "Bejegyzés-összeállítási funkciók"; +$a->strings["Auto-mention Forums"] = "Fórumok automatikus említése"; +$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Említés hozzáadása vagy eltávolítása, ha egy fórumoldalt kiválasztanak vagy megszüntetik a kiválasztását az ACL ablakokban."; +$a->strings["Explicit Mentions"] = "Közvetlen említések"; +$a->strings["Add explicit mentions to comment box for manual control over who gets mentioned in replies."] = "Közvetlen említések hozzáadása a hozzászólásmezőhöz kézi vezérléssel, hogy ki lesz megemlítve a válaszokban."; +$a->strings["Post/Comment Tools"] = "Bejegyzés és hozzászólás eszközök"; +$a->strings["Post Categories"] = "Bejegyzéskategóriák"; +$a->strings["Add categories to your posts"] = "Kategóriák hozzáadása a bejegyzéseihez."; +$a->strings["Advanced Profile Settings"] = "Speciális profilbeállítások"; +$a->strings["List Forums"] = "Fórumok felsorolása"; +$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Nyilvános közösségi fórumok megjelenítése a látogatóknak a speciális profiloldalon."; +$a->strings["Tag Cloud"] = "Címkefelhő"; +$a->strings["Provide a personal tag cloud on your profile page"] = "Személyes címkefelhő biztosítása a profiloldalán."; +$a->strings["Display Membership Date"] = "Tagsági dátum megjelenítése"; +$a->strings["Display membership date in profile"] = "Tagsági dátum megjelenítése a profilban."; +$a->strings["Forums"] = "Fórumok"; +$a->strings["External link to forum"] = "Külső hivatkozás a fórumhoz"; +$a->strings["show less"] = "kevesebb megjelenítése"; +$a->strings["show more"] = "több megjelenítése"; +$a->strings["Nothing new here"] = "Semmi új nincs itt"; +$a->strings["Go back"] = "Vissza"; +$a->strings["Clear notifications"] = "Értesítések törlése"; +$a->strings["@name, !forum, #tags, content"] = "@név, !fórum, #címkék, tartalom"; +$a->strings["Logout"] = "Kijelentkezés"; +$a->strings["End this session"] = "Munkamenet befejezése"; +$a->strings["Login"] = "Bejelentkezés"; +$a->strings["Sign in"] = "Bejelentkezés"; +$a->strings["Status"] = "Állapot"; +$a->strings["Your posts and conversations"] = "Az Ön bejegyzései és beszélgetései"; +$a->strings["Profile"] = "Profil"; +$a->strings["Your profile page"] = "Az Ön profiloldala"; +$a->strings["Your photos"] = "Az Ön fényképei"; +$a->strings["Videos"] = "Videók"; +$a->strings["Your videos"] = "Az Ön videói"; +$a->strings["Your events"] = "Az Ön eseményei"; +$a->strings["Personal notes"] = "Személyes jegyzetek"; +$a->strings["Your personal notes"] = "Az Ön személyes jegyzetei"; +$a->strings["Home"] = "Kezdőlap"; +$a->strings["Register"] = "Regisztráció"; +$a->strings["Create an account"] = "Fiók létrehozása"; +$a->strings["Help"] = "Súgó"; +$a->strings["Help and documentation"] = "Súgó és dokumentáció"; +$a->strings["Apps"] = "Alkalmazások"; +$a->strings["Addon applications, utilities, games"] = "Bővítményalkalmazások, segédprogramok és játékok"; +$a->strings["Search"] = "Keresés"; +$a->strings["Search site content"] = "Oldaltartalom keresése"; +$a->strings["Full Text"] = "Teljes szöveg"; +$a->strings["Tags"] = "Címkék"; +$a->strings["Contacts"] = "Partnerek"; +$a->strings["Community"] = "Közösség"; +$a->strings["Conversations on this and other servers"] = "Beszélgetések ezen és más kiszolgálókon"; +$a->strings["Events and Calendar"] = "Események és naptár"; +$a->strings["Directory"] = "Könyvtár"; +$a->strings["People directory"] = "Emberek könyvtár"; +$a->strings["Information"] = "Információk"; +$a->strings["Information about this friendica instance"] = "Információk erről a Friendica példányról"; +$a->strings["Terms of Service"] = "Használati feltételek"; +$a->strings["Terms of Service of this Friendica instance"] = "Ezen Friendica példány használati feltételei"; +$a->strings["Network"] = "Hálózat"; +$a->strings["Conversations from your friends"] = "Ismerősökkel való beszélgetések"; +$a->strings["Introductions"] = "Bemutatkozások"; +$a->strings["Friend Requests"] = "Ismerőskérések"; +$a->strings["Notifications"] = "Értesítések"; +$a->strings["See all notifications"] = "Összes értesítés megtekintése"; +$a->strings["Mark all system notifications seen"] = "Összes rendszerértesítés megjelölése olvasottként"; +$a->strings["Private mail"] = "Személyes levél"; +$a->strings["Inbox"] = "Beérkezett üzenetek"; +$a->strings["Outbox"] = "Elküldött üzenetek"; +$a->strings["Accounts"] = "Fiókok"; +$a->strings["Manage other pages"] = "Más oldalak kezelése"; +$a->strings["Settings"] = "Beállítások"; +$a->strings["Account settings"] = "Fiókbeállítások"; +$a->strings["Manage/edit friends and contacts"] = "Ismerősök és partnerek kezelése vagy szerkesztése"; +$a->strings["Admin"] = "Adminisztráció"; +$a->strings["Site setup and configuration"] = "Oldal beállítása és konfigurálás"; +$a->strings["Navigation"] = "Navigáció"; +$a->strings["Site map"] = "Oldaltérkép"; +$a->strings["Embedding disabled"] = "A beágyazás letiltva"; +$a->strings["Embedded content"] = "Beágyazott tartalom"; +$a->strings["first"] = "első"; +$a->strings["prev"] = "előző"; +$a->strings["next"] = "következő"; +$a->strings["last"] = "utolsó"; +$a->strings["Image/photo"] = "Kép vagy fénykép"; +$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; +$a->strings["Link to source"] = "Hivatkozás a forráshoz"; +$a->strings["Click to open/close"] = "Kattintson a megnyitáshoz vagy bezáráshoz"; +$a->strings["$1 wrote:"] = "$1 írta:"; +$a->strings["Encrypted content"] = "Titkosított tartalom"; +$a->strings["Invalid source protocol"] = "Érvénytelen forrásprotokoll"; +$a->strings["Invalid link protocol"] = "Érvénytelen hivatkozási protokoll"; +$a->strings["Loading more entries..."] = "További bejegyzések betöltése…"; +$a->strings["The end"] = "Vége"; +$a->strings["Follow"] = "Követés"; +$a->strings["Add New Contact"] = "Új partner hozzáadása"; +$a->strings["Enter address or web location"] = "Cím vagy webhely megadása"; +$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Példa: bob@example.com, http://example.com/barbara"; +$a->strings["Connect"] = "Kapcsolódás"; +$a->strings["%d invitation available"] = [ + 0 => "%d meghívás érhető el", + 1 => "%d meghívás érhető el", +]; +$a->strings["Find People"] = "Emberek keresése"; +$a->strings["Enter name or interest"] = "Név vagy érdeklődés beírása"; +$a->strings["Examples: Robert Morgenstein, Fishing"] = "Példák: Szabó János, Halászat"; +$a->strings["Find"] = "Keresés"; +$a->strings["Similar Interests"] = "Hasonló érdeklődések"; +$a->strings["Random Profile"] = "Véletlen profil"; +$a->strings["Invite Friends"] = "Ismerősök meghívása"; +$a->strings["Global Directory"] = "Globális könyvtár"; +$a->strings["Local Directory"] = "Helyi könyvtár"; +$a->strings["Groups"] = "Csoportok"; +$a->strings["Everyone"] = "Mindenki"; +$a->strings["Relationships"] = "Kapcsolatok"; +$a->strings["All Contacts"] = "Összes partner"; +$a->strings["Protocols"] = "Protokollok"; +$a->strings["All Protocols"] = "Összes protokoll"; +$a->strings["Saved Folders"] = "Mentett mappák"; +$a->strings["Everything"] = "Minden"; +$a->strings["Categories"] = "Kategóriák"; +$a->strings["%d contact in common"] = [ + 0 => "%d partner közös", + 1 => "%d partner közös", +]; +$a->strings["Archives"] = "Archívumok"; +$a->strings["Persons"] = "Személyek"; +$a->strings["Organisations"] = "Szervezetek"; +$a->strings["News"] = "Hírek"; +$a->strings["All"] = "Összes"; +$a->strings["Export"] = "Exportálás"; +$a->strings["Export calendar as ical"] = "Naptár exportálása iCal-ként"; +$a->strings["Export calendar as csv"] = "Naptár exportálása CSV-ként"; +$a->strings["No contacts"] = "Nincsenek partnerek"; +$a->strings["%d Contact"] = [ + 0 => "%d partner", + 1 => "%d partner", +]; +$a->strings["View Contacts"] = "Partnerek megtekintése"; +$a->strings["Remove term"] = "Kifejezés eltávolítása"; +$a->strings["Saved Searches"] = "Mentett keresések"; +$a->strings["Trending Tags (last %d hour)"] = [ + 0 => "Népszerű címkék (legutóbbi %d óra)", + 1 => "Népszerű címkék (legutóbbi %d óra)", +]; +$a->strings["More Trending Tags"] = "További népszerű címkék"; +$a->strings["Yourself"] = "Önmaga"; $a->strings["Mutuals"] = "Kölcsönösen ismerősök"; $a->strings["Post to Email"] = "Beküldés e-mailbe"; $a->strings["Public"] = "Nyilvános"; @@ -78,18 +863,68 @@ $a->strings["Limited/Private"] = "Korlátozott vagy személyes"; $a->strings["This content will be shown only to the people in the first box, to the exception of the people mentioned in the second box. It won't appear anywhere public."] = "Ez a tartalom csak az első mezőben lévő embereknek fog megjelenni, kivéve a második mezőben említett embereknek. Nem jelenik meg sehol sem nyilvánosan."; $a->strings["Show to:"] = "Megjelenítés nekik:"; $a->strings["Except to:"] = "Kivéve nekik:"; -$a->strings["CC: email addresses"] = "Másolat: e-mail-címek"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Példa: bob@example.com, mary@example.com"; $a->strings["Connectors"] = "Összekötők"; -$a->strings["Updates from version %s are not supported. Please update at least to version 2021.01 and wait until the postupdate finished version 1383."] = "A korábbi %s verzióról való frissítések nem támogatottak. Frissítsen legalább a 2021.01-es verzióra, és várja meg, amíg a bejegyzésfrissítés befejezi az 1383-as verziót."; -$a->strings["Updates from postupdate version %s are not supported. Please update at least to version 2021.01 and wait until the postupdate finished version 1383."] = "A korábbi %s bejegyzésfrissítési verzióról való frissítések nem támogatottak. Frissítsen legalább a 2021.01-es verzióra, és várja meg, amíg a bejegyzésfrissítés befejezi az 1383-as verziót."; -$a->strings["%s: executing pre update %d"] = "%s: %d előfrissítés végrehajtása"; -$a->strings["%s: executing post update %d"] = "%s: %d bejegyzésfrissítés végrehajtása"; -$a->strings["Update %s failed. See error logs."] = "A(z) %s frissítés sikertelen. Nézze meg a hibanaplókat."; -$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\t\tA Friendica fejlesztői nemrég kiadták a(z) %s frissítést, de amikor\n\t\t\t\tmegpróbáltam telepíteni, valami nagyon elromlott.\n\t\t\t\tEzt hamarosan javítani kell, és én nem tudom egyedül elvégezni.\n\t\t\t\tVegye fel a kapcsolatot egy Friendica fejlesztővel, ha egyedül nem\n\t\t\t\ttud nekem segíteni. Az adatbázisunk érvénytelen lehet."; -$a->strings["The error message is\\n[pre]%s[/pre]"] = "A hibaüzenet a következő:\\n[pre]%s[/pre]"; -$a->strings["[Friendica Notify] Database update"] = "[Friendica értesítés] Adatbázis-frissítés"; -$a->strings["\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s."] = "\n\t\t\t\t\tA Friendica adatbázisa sikeresen frissítve lett: %s → %s."; +$a->strings["The database configuration file \"config/local.config.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "A „config/local.config.php” adatbázis-beállítófájlt nem sikerült írni. Használja a mellékelt szöveget egy beállítófájl létrehozásához a webkiszolgáló gyökerében."; +$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Lehet, hogy kézzel kell importálnia a „database.sql” fájlt phpMyAdmin vagy MySQL használatával."; +$a->strings["Please see the file \"doc/INSTALL.md\"."] = "Nézze meg a „doc/INSTALL.md” fájlt."; +$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nem sikerült megtalálni a PHP parancssori verzióját a webkiszolgáló PATH környezeti változójában."; +$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'"] = "Ha nincs telepítve a PHP parancssori verziója a kiszolgálóján, akkor nem lesz képes futtatni a háttérfeldolgozást. Nézze meg a Setup the worker szakaszt a dokumentációban (angol nyelven)."; +$a->strings["PHP executable path"] = "PHP végrehajtható útvonala"; +$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "A teljes útvonal megadása a PHP végrehajthatóhoz. Ezt üresen hagyhatja a telepítés folytatásához."; +$a->strings["Command line PHP"] = "Parancssori PHP"; +$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "A PHP végrehajtható nem a PHP parancssori bináris (lehet cgi-fgci verzió)"; +$a->strings["Found PHP version: "] = "Megtalált PHP-verzió: "; +$a->strings["PHP cli binary"] = "PHP parancssori bináris"; +$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "A rendszerén lévő PHP parancssori verziójában a „register_argc_argv” nincs engedélyezve."; +$a->strings["This is required for message delivery to work."] = "Ez ahhoz szükséges, hogy az üzenetkézbesítés működjön."; +$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Hiba: az „openssl_pkey_new” függvény ezen a rendszeren nem képes titkosítási kulcsokat előállítani"; +$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Ha Windows alatt fut, akkor nézze meg a „http://www.php.net/manual/en/openssl.installation.php” dokumentációt."; +$a->strings["Generate encryption keys"] = "Titkosítási kulcsok előállítása"; +$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Hiba: az Apache webkiszolgáló mod-rewrite modulja szükséges, de nincs telepítve."; +$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite modul"; +$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Hiba: a PDO vagy a MySQLi PHP-modul szükséges, de nincs telepítve."; +$a->strings["Error: The MySQL driver for PDO is not installed."] = "Hiba: a PDO-hoz szükséges MySQL illesztőprogram nincs telepítve."; +$a->strings["PDO or MySQLi PHP module"] = "PDO vagy MySQLi PHP-modul"; +$a->strings["Error, XML PHP module required but not installed."] = "Hiba: az XML PHP-modul szükséges, de nincs telepítve."; +$a->strings["XML PHP module"] = "XML PHP-modul"; +$a->strings["libCurl PHP module"] = "libCurl PHP-modul"; +$a->strings["Error: libCURL PHP module required but not installed."] = "Hiba: az libCURL PHP-modul szükséges, de nincs telepítve."; +$a->strings["GD graphics PHP module"] = "GD grafikai PHP-modul"; +$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Hiba: a JPEG támogatással rendelkező GD grafikai PHP-modul szükséges, de nincs telepítve."; +$a->strings["OpenSSL PHP module"] = "OpenSSL PHP-modul"; +$a->strings["Error: openssl PHP module required but not installed."] = "Hiba: az OpenSSL PHP-modul szükséges, de nincs telepítve."; +$a->strings["mb_string PHP module"] = "mb_string PHP-modul"; +$a->strings["Error: mb_string PHP module required but not installed."] = "Hiba: az mb_string PHP-modul szükséges, de nincs telepítve."; +$a->strings["iconv PHP module"] = "iconv PHP-modul"; +$a->strings["Error: iconv PHP module required but not installed."] = "Hiba: az iconv PHP-modul szükséges, de nincs telepítve."; +$a->strings["POSIX PHP module"] = "POSIX PHP-modul"; +$a->strings["Error: POSIX PHP module required but not installed."] = "Hiba: a POSIX PHP-modul szükséges, de nincs telepítve."; +$a->strings["Program execution functions"] = "Programvégrehajtási funkciók"; +$a->strings["Error: Program execution functions (proc_open) required but not enabled."] = "Hiba: a programvégrehajtási funkciók (proc_open) szükségesek, de nincsenek engedélyezve."; +$a->strings["JSON PHP module"] = "JSON PHP-modul"; +$a->strings["Error: JSON PHP module required but not installed."] = "Hiba: a JSON PHP-modul szükséges, de nincs telepítve."; +$a->strings["File Information PHP module"] = "Fájlinformációk PHP-modul"; +$a->strings["Error: File Information PHP module required but not installed."] = "Hiba: a fájlinformációk PHP-modul szükséges, de nincs telepítve."; +$a->strings["The web installer needs to be able to create a file called \"local.config.php\" in the \"config\" folder of your web server and it is unable to do so."] = "A webes telepítőnek képesnek kell lennie létrehozni egy „local.config.php” nevű fájlt a webkiszolgáló „config” mappájában, és ezt nem lehet megtenni."; +$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Ez leggyakrabban jogosultsági beállítás, mivel előfordulhat, hogy a webkiszolgáló nem képes fájlokat írni a mappájába, annak ellenére, hogy Ön tud."; +$a->strings["At the end of this procedure, we will give you a text to save in a file named local.config.php in your Friendica \"config\" folder."] = "Ezen eljárás végén adni fogunk Önnek egy szöveget, hogy elmentse egy „local.config.php” nevű fájlba a Friendica „config” mappájában."; +$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"doc/INSTALL.md\" for instructions."] = "Alternatívaként kihagyhatja ezt az eljárást, és végezhet kézi telepítést. Az utasításokért nézze meg a „doc/INSTALL.txt” fájlt."; +$a->strings["config/local.config.php is writable"] = "a config/local.config.php írható"; +$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "A Friendica a Smarty3 sablonmotort használja a webes nézetei megjelenítéséhez. A Smarty3 lefordítja a sablonokat PHP-ra a megjelenítés felgyorsításához."; +$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "A lefordított sablonok tárolása érdekében a webkiszolgálónak írási hozzáférésre van szüksége a Friendica felső szintű mappája alatti „view/smarty3/” könyvtárhoz."; +$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Biztosítsa, hogy a webkiszolgálót futtató felhasználónak (például www-data) legyen írási hozzáférése ehhez a mappához."; +$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Megjegyzés: biztonsági intézkedésként csak a „view/smarty3/” mappához kell írási hozzáférést adnia a webkiszolgálónak, nem azokhoz a sablonfájlokhoz (.tpl), amelyeket tartalmaz."; +$a->strings["view/smarty3 is writable"] = "A „view/smarty3” írható"; +$a->strings["Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-dist to .htaccess."] = "Úgy tűnik, hogy a .htaccess fájlban lévő URL átírás nem működik. Győződjön meg arról, hogy lemásolta-e a .htaccess-dist fájlt .htaccess néven."; +$a->strings["In some circumstances (like running inside containers), you can skip this error."] = "Bizonyos körülmények között (például konténereken belül való futtatáskor) átugorhatja ezt a hibát."; +$a->strings["Error message from Curl when fetching"] = "Hibaüzenet a cURL-től a lekéréskor"; +$a->strings["Url rewrite is working"] = "Az URL átírás működik"; +$a->strings["ImageMagick PHP extension is not installed"] = "Az ImageMagick PHP-kiterjesztés nincs telepítve"; +$a->strings["ImageMagick PHP extension is installed"] = "Az ImageMagick PHP-kiterjesztés telepítve van"; +$a->strings["ImageMagick supports GIF"] = "Az ImageMagick támogatja a GIF-et"; +$a->strings["Database already in use."] = "Az adatbázis már használatban van."; +$a->strings["Could not connect to database."] = "Nem sikerült kapcsolódni az adatbázishoz."; $a->strings["Monday"] = "Hétfő"; $a->strings["Tuesday"] = "Kedd"; $a->strings["Wednesday"] = "Szerda"; @@ -139,67 +974,18 @@ $a->strings["finger"] = "fogdosás"; $a->strings["fingered"] = "megfogdosva"; $a->strings["rebuff"] = "elutasítás"; $a->strings["rebuffed"] = "elutasítva"; -$a->strings["The database configuration file \"config/local.config.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "A „config/local.config.php” adatbázis-beállítófájlt nem sikerült írni. Használja a mellékelt szöveget egy beállítófájl létrehozásához a webkiszolgáló gyökerében."; -$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Lehet, hogy kézzel kell importálnia a „database.sql” fájlt phpMyAdmin vagy MySQL használatával."; -$a->strings["Please see the file \"doc/INSTALL.md\"."] = "Nézze meg a „doc/INSTALL.md” fájlt."; -$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Nem sikerült megtalálni a PHP parancssori verzióját a webkiszolgáló PATH környezeti változójában."; -$a->strings["If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'"] = "Ha nincs telepítve a PHP parancssori verziója a kiszolgálóján, akkor nem lesz képes futtatni a háttérfeldolgozást. Nézze meg a Setup the worker szakaszt a dokumentációban (angol nyelven)."; -$a->strings["PHP executable path"] = "PHP végrehajtható útvonala"; -$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "A teljes útvonal megadása a PHP végrehajthatóhoz. Ezt üresen hagyhatja a telepítés folytatásához."; -$a->strings["Command line PHP"] = "Parancssori PHP"; -$a->strings["PHP executable is not the php cli binary (could be cgi-fgci version)"] = "A PHP végrehajtható nem a PHP parancssori bináris (lehet cgi-fgci verzió)"; -$a->strings["Found PHP version: "] = "Megtalált PHP-verzió: "; -$a->strings["PHP cli binary"] = "PHP parancssori bináris"; -$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "A rendszerén lévő PHP parancssori verziójában a „register_argc_argv” nincs engedélyezve."; -$a->strings["This is required for message delivery to work."] = "Ez ahhoz szükséges, hogy az üzenetkézbesítés működjön."; -$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Hiba: az „openssl_pkey_new” függvény ezen a rendszeren nem képes titkosítási kulcsokat előállítani"; -$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Ha Windows alatt fut, akkor nézze meg a „http://www.php.net/manual/en/openssl.installation.php” dokumentációt."; -$a->strings["Generate encryption keys"] = "Titkosítási kulcsok előállítása"; -$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Hiba: az Apache webkiszolgáló mod-rewrite modulja szükséges, de nincs telepítve."; -$a->strings["Apache mod_rewrite module"] = "Apache mod_rewrite modul"; -$a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "Hiba: a PDO vagy a MySQLi PHP-modul szükséges, de nincs telepítve."; -$a->strings["Error: The MySQL driver for PDO is not installed."] = "Hiba: a PDO-hoz szükséges MySQL illesztőprogram nincs telepítve."; -$a->strings["PDO or MySQLi PHP module"] = "PDO vagy MySQLi PHP-modul"; -$a->strings["Error, XML PHP module required but not installed."] = "Hiba: az XML PHP-modul szükséges, de nincs telepítve."; -$a->strings["XML PHP module"] = "XML PHP-modul"; -$a->strings["libCurl PHP module"] = "libCurl PHP-modul"; -$a->strings["Error: libCURL PHP module required but not installed."] = "Hiba: az libCURL PHP-modul szükséges, de nincs telepítve."; -$a->strings["GD graphics PHP module"] = "GD grafikai PHP-modul"; -$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Hiba: a JPEG támogatással rendelkező GD grafikai PHP-modul szükséges, de nincs telepítve."; -$a->strings["OpenSSL PHP module"] = "OpenSSL PHP-modul"; -$a->strings["Error: openssl PHP module required but not installed."] = "Hiba: az OpenSSL PHP-modul szükséges, de nincs telepítve."; -$a->strings["mb_string PHP module"] = "mb_string PHP-modul"; -$a->strings["Error: mb_string PHP module required but not installed."] = "Hiba: az mb_string PHP-modul szükséges, de nincs telepítve."; -$a->strings["iconv PHP module"] = "iconv PHP-modul"; -$a->strings["Error: iconv PHP module required but not installed."] = "Hiba: az iconv PHP-modul szükséges, de nincs telepítve."; -$a->strings["POSIX PHP module"] = "POSIX PHP-modul"; -$a->strings["Error: POSIX PHP module required but not installed."] = "Hiba: a POSIX PHP-modul szükséges, de nincs telepítve."; -$a->strings["Program execution functions"] = "Programvégrehajtási funkciók"; -$a->strings["Error: Program execution functions required but not enabled."] = "Hiba: a programvégrehajtási funkciók szükségesek, de nincsenek engedélyezve."; -$a->strings["JSON PHP module"] = "JSON PHP-modul"; -$a->strings["Error: JSON PHP module required but not installed."] = "Hiba: a JSON PHP-modul szükséges, de nincs telepítve."; -$a->strings["File Information PHP module"] = "Fájlinformációk PHP-modul"; -$a->strings["Error: File Information PHP module required but not installed."] = "Hiba: a fájlinformációk PHP-modul szükséges, de nincs telepítve."; -$a->strings["The web installer needs to be able to create a file called \"local.config.php\" in the \"config\" folder of your web server and it is unable to do so."] = "A webes telepítőnek képesnek kell lennie létrehozni egy „local.config.php” nevű fájlt a webkiszolgáló „config” mappájában, és ezt nem lehet megtenni."; -$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "Ez leggyakrabban jogosultsági beállítás, mivel előfordulhat, hogy a webkiszolgáló nem képes fájlokat írni a mappájába, annak ellenére, hogy Ön tud."; -$a->strings["At the end of this procedure, we will give you a text to save in a file named local.config.php in your Friendica \"config\" folder."] = "Ezen eljárás végén adni fogunk Önnek egy szöveget, hogy elmentse egy „local.config.php” nevű fájlba a Friendica „config” mappájában."; -$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"doc/INSTALL.md\" for instructions."] = "Alternatívaként kihagyhatja ezt az eljárást, és végezhet kézi telepítést. Az utasításokért nézze meg a „doc/INSTALL.txt” fájlt."; -$a->strings["config/local.config.php is writable"] = "a config/local.config.php írható"; -$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "A Friendica a Smarty3 sablonmotort használja a webes nézetei megjelenítéséhez. A Smarty3 lefordítja a sablonokat PHP-ra a megjelenítés felgyorsításához."; -$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "A lefordított sablonok tárolása érdekében a webkiszolgálónak írási hozzáférésre van szüksége a Friendica felső szintű mappája alatti „view/smarty3/” könyvtárhoz."; -$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Biztosítsa, hogy a webkiszolgálót futtató felhasználónak (például www-data) legyen írási hozzáférése ehhez a mappához."; -$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "Megjegyzés: biztonsági intézkedésként csak a „view/smarty3/” mappához kell írási hozzáférést adnia a webkiszolgálónak, nem azokhoz a sablonfájlokhoz (.tpl), amelyeket tartalmaz."; -$a->strings["view/smarty3 is writable"] = "A „view/smarty3” írható"; -$a->strings["Url rewrite in .htaccess seems not working. Make sure you copied .htaccess-dist to .htaccess."] = "Úgy tűnik, hogy a .htaccess fájlban lévő URL átírás nem működik. Győződjön meg arról, hogy lemásolta-e a .htaccess-dist fájlt .htaccess néven."; -$a->strings["In some circumstances (like running inside containers), you can skip this error."] = "Bizonyos körülmények között (például konténereken belül való futtatáskor) átugorhatja ezt a hibát."; -$a->strings["Error message from Curl when fetching"] = "Hibaüzenet a cURL-től a lekéréskor"; -$a->strings["Url rewrite is working"] = "Az URL átírás működik"; -$a->strings["ImageMagick PHP extension is not installed"] = "Az ImageMagick PHP-kiterjesztés nincs telepítve"; -$a->strings["ImageMagick PHP extension is installed"] = "Az ImageMagick PHP-kiterjesztés telepítve van"; -$a->strings["ImageMagick supports GIF"] = "Az ImageMagick támogatja a GIF-et"; -$a->strings["Database already in use."] = "Az adatbázis már használatban van."; -$a->strings["Could not connect to database."] = "Nem sikerült kapcsolódni az adatbázishoz."; +$a->strings["Friendica can't display this page at the moment, please contact the administrator."] = "A Friendica jelenleg nem tudja megjeleníteni ezt az oldalt. Vegye fel a kapcsolatot a rendszergazdával."; +$a->strings["template engine cannot be registered without a name."] = "a sablonmotort nem lehet regisztrálni név nélkül."; +$a->strings["template engine is not registered!"] = "a sablonmotor nincs regisztrálva!"; +$a->strings["Updates from version %s are not supported. Please update at least to version 2021.01 and wait until the postupdate finished version 1383."] = "A korábbi %s verzióról való frissítések nem támogatottak. Frissítsen legalább a 2021.01-es verzióra, és várja meg, amíg a bejegyzésfrissítés befejezi az 1383-as verziót."; +$a->strings["Updates from postupdate version %s are not supported. Please update at least to version 2021.01 and wait until the postupdate finished version 1383."] = "A korábbi %s bejegyzésfrissítési verzióról való frissítések nem támogatottak. Frissítsen legalább a 2021.01-es verzióra, és várja meg, amíg a bejegyzésfrissítés befejezi az 1383-as verziót."; +$a->strings["%s: executing pre update %d"] = "%s: %d előfrissítés végrehajtása"; +$a->strings["%s: executing post update %d"] = "%s: %d bejegyzésfrissítés végrehajtása"; +$a->strings["Update %s failed. See error logs."] = "A(z) %s frissítés sikertelen. Nézze meg a hibanaplókat."; +$a->strings["\n\t\t\t\tThe friendica developers released update %s recently,\n\t\t\t\tbut when I tried to install it, something went terribly wrong.\n\t\t\t\tThis needs to be fixed soon and I can't do it alone. Please contact a\n\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."] = "\n\t\t\t\tA Friendica fejlesztői nemrég kiadták a(z) %s frissítést, de amikor\n\t\t\t\tmegpróbáltam telepíteni, valami nagyon elromlott.\n\t\t\t\tEzt hamarosan javítani kell, és én nem tudom egyedül elvégezni.\n\t\t\t\tVegye fel a kapcsolatot egy Friendica fejlesztővel, ha egyedül nem\n\t\t\t\ttud nekem segíteni. Az adatbázisunk érvénytelen lehet."; +$a->strings["The error message is\\n[pre]%s[/pre]"] = "A hibaüzenet a következő:\\n[pre]%s[/pre]"; +$a->strings["[Friendica Notify] Database update"] = "[Friendica értesítés] Adatbázis-frissítés"; +$a->strings["\n\t\t\t\t\tThe friendica database was successfully updated from %s to %s."] = "\n\t\t\t\t\tA Friendica adatbázisa sikeresen frissítve lett: %s → %s."; $a->strings["Error decoding account file"] = "Hiba a fiókfájl dekódolásakor"; $a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Hiba! Nincsenek verzióadatok a fájlban! Ez nem Friendica fiókfájl?"; $a->strings["User '%s' already exists on this server!"] = "„%s” felhasználó már létezik ezen a kiszolgálón!"; @@ -210,785 +996,215 @@ $a->strings["%d contact not imported"] = [ ]; $a->strings["User profile creation error"] = "Felhasználóiprofil-létrehozási hiba"; $a->strings["Done. You can now login with your username and password"] = "Kész. Most már bejelentkezhet a felhasználónevével és a jelszavával."; -$a->strings["Access denied."] = "Hozzáférés megtagadva."; -$a->strings["Permission denied."] = "Hozzáférés megtagadva."; -$a->strings["Contact not found."] = "A partner nem található."; -$a->strings["Suggested contact not found."] = "Az ajánlott partner nem található."; -$a->strings["Friend suggestion sent."] = "Az ismerősajánlás elküldve."; -$a->strings["Suggest Friends"] = "Ismerősök ajánlása"; -$a->strings["Suggest a friend for %s"] = "Ismerős ajánlása %s számára"; -$a->strings["Submit"] = "Elküldés"; -$a->strings["Bad Request"] = "Hibás kérés"; +$a->strings["The database version had been set to %s."] = "Az adatbázis verziója %s értékre lett állítva."; +$a->strings["The post update is at version %d, it has to be at %d to safely drop the tables."] = "A bejegyzésfrissítés %d. verziónál van. %d. verziónál kell lennie a táblák biztonságos eldobásához."; +$a->strings["No unused tables found."] = "Nem találhatók nem használt táblák."; +$a->strings["These tables are not used for friendica and will be deleted when you execute \"dbstructure drop -e\":"] = "Ezek a táblák nincsenek használatban a Friendica programnál, és törölve lesznek, ha lefuttatja a „dbstructure drop -e” parancsot:"; +$a->strings["There are no tables on MyISAM or InnoDB with the Antelope file format."] = "Nincsenek Antelope fájlformátummal rendelkező táblák MyISAM vagy InnoDB motorokon."; +$a->strings["\nError %d occurred during database update:\n%s\n"] = "\nHiba (%d) történt az adatbázis frissítése során:\n%s\n"; +$a->strings["Errors encountered performing database changes: "] = "Hibák történtek az adatbázis változtatásainak végrehajtásakor: "; +$a->strings["Another database update is currently running."] = "Egy másik adatbázis-frissítés is fut jelenleg."; +$a->strings["%s: Database update"] = "%s: adatbázis-frissítés"; +$a->strings["%s: updating %s table."] = "%s: a(z) %s tábla frissítése."; +$a->strings["Record not found"] = "A rekord nem található"; +$a->strings["Unprocessable Entity"] = "Feldolgozhatatlan entitás"; $a->strings["Unauthorized"] = "Nem engedélyezett"; -$a->strings["Forbidden"] = "Tiltott"; -$a->strings["Not Found"] = "Nem található"; +$a->strings["Token is not authorized with a valid user or is missing a required scope"] = "A token nincs felhatalmazva egy érvényes felhasználóval, vagy hiányzik a szükséges hatókör"; $a->strings["Internal Server Error"] = "Belső kiszolgálóhiba"; -$a->strings["Service Unavailable"] = "A szolgáltatás nem érhető el"; -$a->strings["The server cannot or will not process the request due to an apparent client error."] = "A kiszolgáló nem tudja vagy nem fogja feldolgozni a kérést egy nyilvánvaló klienshiba miatt."; -$a->strings["Authentication is required and has failed or has not yet been provided."] = "Hitelesítés szükséges, és sikertelen volt vagy még nem lett megadva."; -$a->strings["The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account."] = "A kérés érvényes volt, de a kiszolgáló visszautasította a műveletet. A felhasználónak talán nincsenek meg a szükséges jogosultságai egy erőforráshoz, vagy fiókra lehet szüksége."; -$a->strings["The requested resource could not be found but may be available in the future."] = "A kért erőforrás nem található, de elérhető lehet a jövőben."; -$a->strings["An unexpected condition was encountered and no more specific message is suitable."] = "Váratlan feltétel történt, és nincs konkrétabb megfelelő üzenet."; -$a->strings["The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later."] = "A kiszolgáló jelenleg nem érhető el (mert túlterhelt vagy le van kapcsolva a karbantartáshoz). Próbálja újra később."; -$a->strings["Go back"] = "Vissza"; -$a->strings["Stack trace:"] = "Veremkiíratás:"; -$a->strings["Exception thrown in %s:%d"] = "Kivétel történt itt: %s:%d"; -$a->strings["Item was not removed"] = "Az elem nem lett eltávolítva"; -$a->strings["Item was not deleted"] = "Az elem nem lett törölve"; -$a->strings["You must be logged in to use this module"] = "Bejelentkezve kell lennie a modul használatához"; -$a->strings["Save to Folder:"] = "Mentés mappába:"; -$a->strings["- select -"] = "– válasszon –"; -$a->strings["Save"] = "Mentés"; -$a->strings["API endpoint \"%s\" is not implemented"] = "A(z) „%s” API-végpont nincs megvalósítva"; -$a->strings["The API endpoint is currently not implemented but might be in the future."] = "Az API-végpont jelenleg nincs megvalósítva, de ez változhat a jövőben."; -$a->strings["Contact not found"] = "A partner nem található"; -$a->strings["User not found"] = "A felhasználó nem található"; -$a->strings["Profile not found"] = "A profil nem található"; -$a->strings["Error while sending poke, please retry."] = "Hiba a bökés küldése során. Próbálja újra."; -$a->strings["You must be logged in to use this module."] = "Bejelentkezve kell lennie a modul használatához."; -$a->strings["Poke/Prod"] = "Bökés vagy döfés"; -$a->strings["poke, prod or do other things to somebody"] = "bökés, döfés vagy egyéb dolgok művelése valakivel"; -$a->strings["Choose what you wish to do to recipient"] = "Válassza ki, hogy mit szeretne tenni a címzettel"; -$a->strings["Make this post private"] = "A bejegyzés személyessé tétele"; -$a->strings["Loading..."] = "Betöltés…"; -$a->strings["Contact update failed."] = "A partner frissítése sikertelen."; -$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "FIGYELMEZTETÉS: ez erősen speciális, és ha hibás információkat ad meg, akkor a partnerrel való kommunikációi esetleg nem működnek többé."; -$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Használja a böngésző „Vissza” gombját most, ha nem biztos abban, hogy mit kell tenni ezen az oldalon."; -$a->strings["Return to contact editor"] = "Visszatérés a partnerszerkesztőhöz"; -$a->strings["Name"] = "Név"; -$a->strings["Account Nickname"] = "Fiók beceneve"; -$a->strings["@Tagname - overrides Name/Nickname"] = "@Címkenév – felülbírálja a nevet vagy a becenevet"; -$a->strings["Account URL"] = "Fiók URL"; -$a->strings["Account URL Alias"] = "Fiók URL álneve"; -$a->strings["Friend Request URL"] = "Ismerőskérési URL"; -$a->strings["Friend Confirm URL"] = "Ismerősmegerősítési URL"; -$a->strings["Notification Endpoint URL"] = "Értesítésvégpont URL"; -$a->strings["Poll/Feed URL"] = "Lekérés vagy hírforrás URL"; -$a->strings["New photo from this URL"] = "Új fénykép erről az URL-ről"; -$a->strings["Invalid contact."] = "Érvénytelen partner."; -$a->strings["No known contacts."] = "Nincsenek ismert partnerek."; -$a->strings["No common contacts."] = "Nincsenek közös partnerek."; -$a->strings["Follower (%s)"] = [ - 0 => "Követő (%s)", - 1 => "Követők (%s)", -]; -$a->strings["Following (%s)"] = [ - 0 => "Követés (%s)", - 1 => "Követés (%s)", -]; -$a->strings["Mutual friend (%s)"] = [ - 0 => "Kölcsönösen ismerősök (%s)", - 1 => "Kölcsönösen ismerősök (%s)", -]; -$a->strings["These contacts both follow and are followed by %s."] = "Ezeket a partnereket %s követi és ők is követik őt."; -$a->strings["Common contact (%s)"] = [ - 0 => "Közös partner (%s)", - 1 => "Közös partnerek (%s)", -]; -$a->strings["Both %s and yourself have publicly interacted with these contacts (follow, comment or likes on public posts)."] = "%s és Ön is nyilvánosan kapcsolatba léptek ezekkel a partnerekkel (követés, hozzászólás vagy kedvelések a nyilvános bejegyzéseknél)."; -$a->strings["Contact (%s)"] = [ - 0 => "Partner (%s)", - 1 => "Partnerek (%s)", -]; -$a->strings["Installed addons/apps:"] = "Telepített bővítmények vagy alkalmazások:"; -$a->strings["No installed addons/apps"] = "Nincsenek telepített bővítmények vagy alkalmazások"; -$a->strings["Read about the Terms of Service of this node."] = "Olvassa el ennek a csomópontnak a használati feltételeit."; -$a->strings["On this server the following remote servers are blocked."] = "Ezen a kiszolgálón a következő távoli kiszolgálók vannak tiltva."; -$a->strings["Blocked domain"] = "Tiltott tartomány"; -$a->strings["Reason for the block"] = "A tiltás oka"; -$a->strings["This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s."] = "Ez egy %s verziójú Friendica, amely a %s helyen fut a weben. Az adatbázis verziója %s, a bejegyzésfrissítés verziója %s."; -$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "Látogassa meg a Friendi.ca oldalt, hogy többet tudjon meg a Friendica projektről."; -$a->strings["Bug reports and issues: please visit"] = "Hibák és problémák jelentéséhez látogassa meg"; -$a->strings["the bugtracker at github"] = "a GitHubon lévő hibakövetőt"; -$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Javaslatokat, dicséretet és egyebeket az „info” kukac friendi pont ca címre küldhet."; -$a->strings["Could not create group."] = "Nem sikerült létrehozni a csoportot."; -$a->strings["Group not found."] = "A csoport nem található."; -$a->strings["Group name was not changed."] = "A csoport neve nem változott meg."; -$a->strings["Unknown group."] = "Ismeretlen csoport."; -$a->strings["Contact is deleted."] = "A partner törölve."; -$a->strings["Unable to add the contact to the group."] = "Nem lehet hozzáadni a partnert a csoporthoz."; -$a->strings["Contact successfully added to group."] = "A partner sikeresen hozzáadva a csoporthoz."; -$a->strings["Unable to remove the contact from the group."] = "Nem lehet eltávolítani a partnert a csoportból."; -$a->strings["Contact successfully removed from group."] = "A partner sikeresen eltávolítva a csoportból."; -$a->strings["Unknown group command."] = "Ismeretlen csoportparancs."; -$a->strings["Bad request."] = "Hibás kérés."; -$a->strings["Save Group"] = "Csoport mentése"; -$a->strings["Filter"] = "Szűrő"; -$a->strings["Create a group of contacts/friends."] = "Partnerek vagy ismerősök csoportjának létrehozása."; -$a->strings["Group Name: "] = "Csoport neve: "; -$a->strings["Contacts not in any group"] = "Egyetlen csoportban sem lévő partnerek"; -$a->strings["Unable to remove group."] = "Nem lehet eltávolítani a csoportot."; -$a->strings["Delete Group"] = "Csoport törlése"; -$a->strings["Edit Group Name"] = "Csoport nevének szerkesztése"; -$a->strings["Members"] = "Tagok"; -$a->strings["All Contacts"] = "Összes partner"; -$a->strings["Group is empty"] = "A csoport üres"; -$a->strings["Remove contact from group"] = "Partner eltávolítása a csoportból"; -$a->strings["Click on a contact to add or remove."] = "Kattintson egy partnerre a hozzáadáshoz vagy eltávolításhoz."; -$a->strings["Add contact to group"] = "Partner hozzáadása a csoporthoz"; -$a->strings["Notifications"] = "Értesítések"; -$a->strings["Method Not Allowed."] = "A módszer nem engedélyezett."; -$a->strings["Welcome to %s"] = "Üdvözli a(z) %s!"; -$a->strings["People Search - %s"] = "Emberek keresése – %s"; -$a->strings["Forum Search - %s"] = "Fórum keresése – %s"; -$a->strings["No matches"] = "Nincs találat"; -$a->strings["Show Ignored Requests"] = "Mellőzött kérések megjelenítése"; -$a->strings["Hide Ignored Requests"] = "Mellőzött kérések elrejtése"; -$a->strings["Notification type:"] = "Értesítés típusa:"; -$a->strings["Suggested by:"] = "Ajánlotta:"; -$a->strings["Profile URL"] = "Profil URL"; +$a->strings["Friend Suggestion"] = "Ismerősajánlás"; +$a->strings["Friend/Connect Request"] = "Ismerős vagy kapcsolódási kérés"; +$a->strings["New Follower"] = "Új követő"; +$a->strings["%s created a new post"] = "%s létrehozott egy új bejegyzést"; +$a->strings["%s commented on %s's post"] = "%s hozzászólt %s bejegyzéséhez"; +$a->strings["%s liked %s's post"] = "%s kedvelte %s bejegyzését"; +$a->strings["%s disliked %s's post"] = "%s nem kedvelte %s bejegyzését"; +$a->strings["%s is attending %s's event"] = "%s részt vesz %s eseményén"; +$a->strings["%s is not attending %s's event"] = "%s nem vesz részt %s eseményén"; +$a->strings["%s may attending %s's event"] = "%s talán részt vesz %s eseményén"; +$a->strings["%s is now friends with %s"] = "%s és %s mostantól ismerősök"; +$a->strings["Legacy module file not found: %s"] = "Az örökölt modulfájl nem található: %s"; +$a->strings["UnFollow"] = "Követés megszüntetése"; +$a->strings["Drop Contact"] = "Partner eldobása"; $a->strings["Approve"] = "Jóváhagyás"; -$a->strings["Ignore"] = "Mellőzés"; -$a->strings["Discard"] = "Elvetés"; -$a->strings["Claims to be known to you: "] = "Azt állítja, hogy Ön ismeri: "; -$a->strings["Yes"] = "Igen"; -$a->strings["No"] = "Nem"; -$a->strings["Shall your connection be bidirectional or not?"] = "Legyen a kapcsolata kétirányú vagy sem?"; -$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "%s ismerősként való elfogadása lehetővé teszi %s számára, hogy feliratkozzon a bejegyzéseire, és Ön is frissítéseket fog kapni tőle a hírforrásában."; -$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "%s feliratkozóként való elfogadása lehetővé teszi számára, hogy feliratkozzon a bejegyzéseire, de Ön nem fog frissítéseket kapni tőle a hírforrásában."; -$a->strings["Friend"] = "Ismerős"; -$a->strings["Subscriber"] = "Feliratkozó"; -$a->strings["Location:"] = "Hely:"; -$a->strings["About:"] = "Névjegy:"; -$a->strings["Tags:"] = "Címkék:"; -$a->strings["Hide this contact from others"] = "A partner elrejtése mások elől"; -$a->strings["Network:"] = "Hálózat:"; -$a->strings["No introductions."] = "Nincsenek bemutatkozások."; -$a->strings["No more %s notifications."] = "Nincs több %s értesítés."; -$a->strings["Network Notifications"] = "Hálózati értesítések"; -$a->strings["System Notifications"] = "Rendszerértesítések"; -$a->strings["Personal Notifications"] = "Személyes értesítések"; -$a->strings["Home Notifications"] = "Saját értesítések"; -$a->strings["Show unread"] = "Olvasatlanok megjelenítése"; -$a->strings["Show all"] = "Összes megjelenítése"; -$a->strings["You must be logged in to show this page."] = "Bejelentkezve kell lennie az oldal megtekintéséhez."; -$a->strings["Wrong type \"%s\", expected one of: %s"] = "Hibás típus: „%s”, a következők egyike várt: %s"; -$a->strings["Model not found"] = "A modell nem található"; -$a->strings["Remote privacy information not available."] = "A távoli adatvédelmi információk nem érhetők el."; -$a->strings["Visible to:"] = "Látható nekik:"; -$a->strings["A Decentralized Social Network"] = "Egy decentralizált közösségi hálózat"; -$a->strings["Please login to continue."] = "Jelentkezzen be a folytatáshoz."; -$a->strings["You don't have access to administration pages."] = "Nincs hozzáférése az adminisztrációs oldalakhoz."; -$a->strings["Submanaged account can't access the administration pages. Please log back in as the main account."] = "Az alkezelt fiókok nem férhetnek hozzá az adminisztrációs oldalakhoz. Jelentkezzen vissza a fő fiókkal."; -$a->strings["Information"] = "Információk"; -$a->strings["Overview"] = "Áttekintő"; -$a->strings["Federation Statistics"] = "Föderációs statisztikák"; -$a->strings["Configuration"] = "Beállítás"; -$a->strings["Site"] = "Oldal"; -$a->strings["Users"] = "Felhasználók"; -$a->strings["Addons"] = "Bővítmények"; -$a->strings["Themes"] = "Témák"; -$a->strings["Additional features"] = "További funkciók"; -$a->strings["Terms of Service"] = "Használati feltételek"; -$a->strings["Database"] = "Adatbázis"; -$a->strings["DB updates"] = "Adatbázis-frissítések"; -$a->strings["Inspect Deferred Workers"] = "Elhalasztott feldolgozók vizsgálata"; -$a->strings["Inspect worker Queue"] = "Feldolgozó várakozási sorának vizsgálata"; -$a->strings["Tools"] = "Eszközök"; -$a->strings["Contact Blocklist"] = "Partnertiltólista"; -$a->strings["Server Blocklist"] = "Kiszolgáló-tiltólista"; -$a->strings["Delete Item"] = "Elem törlése"; -$a->strings["Logs"] = "Naplók"; -$a->strings["View Logs"] = "Naplók megtekintése"; -$a->strings["Diagnostics"] = "Diagnosztika"; -$a->strings["PHP Info"] = "PHP-információk"; -$a->strings["probe address"] = "Cím szondázása"; -$a->strings["check webfinger"] = "WebFinger ellenőrzése"; -$a->strings["Item Source"] = "Elem forrása"; -$a->strings["Babel"] = "Babel"; -$a->strings["ActivityPub Conversion"] = "ActivityPub beszélgetés"; -$a->strings["Admin"] = "Adminisztráció"; -$a->strings["Addon Features"] = "Bővítményszolgáltatások"; -$a->strings["User registrations waiting for confirmation"] = "Megerősítésre váró felhasználói regisztrációk"; -$a->strings["User not found."] = "A felhasználó nem található."; -$a->strings["%s's timeline"] = "%s idővonala"; -$a->strings["%s's posts"] = "%s bejegyzései"; -$a->strings["%s's comments"] = "%s hozzászólásai"; -$a->strings["Access to this profile has been restricted."] = "A profilhoz való hozzáférés korlátozva lett."; -$a->strings["No contacts."] = "Nincsenek partnerek."; -$a->strings["Profile not found."] = "A profil nem található."; -$a->strings["You're currently viewing your profile as %s Cancel"] = "A profilját jelenleg %s nevében nézi Mégse"; -$a->strings["Full Name:"] = "Teljes név:"; -$a->strings["Member since:"] = "Ekkortól tag:"; -$a->strings["j F, Y"] = "Y. F j."; -$a->strings["j F"] = "F j."; -$a->strings["Description:"] = "Leírás:"; -$a->strings["XMPP:"] = "XMPP:"; -$a->strings["Homepage:"] = "Honlap:"; -$a->strings["Forums:"] = "Fórumok:"; -$a->strings["Profile"] = "Profil"; -$a->strings["View profile as:"] = "Profil megtekintése másként:"; -$a->strings["Basic"] = "Alap"; -$a->strings["Advanced"] = "Speciális"; -$a->strings["Edit profile"] = "Profil szerkesztése"; -$a->strings["View as"] = "Megtekintés másként"; -$a->strings["Only parent users can create additional accounts."] = "Csak fölérendelt felhasználók hozhatnak létre további fiókokat."; -$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Ez az oldal túllépte a fiókregisztrációk naponta megengedett számát. Próbálja újra holnap."; -$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"."] = "Kitöltheti ezt az űrlapot OpenID használatán keresztül is az OpenID azonosítója megadásával és „Regisztráció” gombra kattintva (nem kötelező)."; -$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Ha nem ismeri az OpenID-t, akkor hagyja a mezőt üresen, és töltse ki a többi elemet."; -$a->strings["Your OpenID (optional): "] = "Az Ön OpenID-ja (opcionális): "; -$a->strings["Include your profile in member directory?"] = "Felveszi a profilját a tagkönyvtárba?"; -$a->strings["Note for the admin"] = "Jegyzet az adminisztrátornak"; -$a->strings["Leave a message for the admin, why you want to join this node"] = "Hagyjon üzenetet az adminisztrátornak, hogy miért szeretne ehhez a csomóponthoz csatlakozni"; -$a->strings["Required"] = "Kötelező"; -$a->strings["Membership on this site is by invitation only."] = "Ezen az oldalon a tagság csak meghívás alapján van."; -$a->strings["Your invitation code: "] = "A meghívási kódja: "; -$a->strings["Registration"] = "Regisztráció"; -$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "A teljes neve (például Kovács János, valódi vagy valódinak látszó): "; -$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Az e-mail-címe (a kezdeti információk ide lesznek elküldve, szóval ennek létező címnek kell lennie):"; -$a->strings["Please repeat your e-mail address:"] = "Ismételje meg az e-mail-címét:"; -$a->strings["New Password:"] = "Új jelszó:"; -$a->strings["Leave empty for an auto generated password."] = "Hagyja üresen egy automatikusan előállított jelszóhoz."; -$a->strings["Confirm:"] = "Megerősítés:"; -$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"."] = "Válasszon profilbecenevet. Ennek betűvel kell kezdődnie. Ezután a profilcíme ezen az oldalon „becenév@%s” lesz."; -$a->strings["Choose a nickname: "] = "Becenév választása: "; -$a->strings["Register"] = "Regisztráció"; -$a->strings["Import"] = "Importálás"; -$a->strings["Import your profile to this friendica instance"] = "A profilja importálása erre a Friendica példányra"; -$a->strings["Note: This node explicitly contains adult content"] = "Megjegyzés: ez a csomópont kifejezetten tartalmaz felnőtt tartalmat"; -$a->strings["Parent Password:"] = "Fölérendelt jelszó:"; -$a->strings["Please enter the password of the parent account to legitimize your request."] = "Adja meg a fölérendelt fiók jelszavát a kérése törvényesítéséhez."; -$a->strings["Password doesn't match."] = "A jelszó nem egyezik."; -$a->strings["Please enter your password."] = "Adja meg a jelszavát."; -$a->strings["You have entered too much information."] = "Túl sok információt adott meg."; -$a->strings["Please enter the identical mail address in the second field."] = "Adja meg a megegyező e-mail-címet a második mezőben."; -$a->strings["The additional account was created."] = "A további fiók létre lett hozva."; -$a->strings["Registration successful. Please check your email for further instructions."] = "A regisztráció sikerült. Nézze meg a postafiókját a további utasításokért."; -$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Nem sikerült elküldeni az e-mail üzenetet. Itt vannak a fiók részletei:
Bejelentkezés: %s
Jelszó: %s

A jelszavát bejelentkezés után változtathatja meg."; -$a->strings["Registration successful."] = "A regisztráció sikerült."; -$a->strings["Your registration can not be processed."] = "A regisztrációját nem lehet feldolgozni."; -$a->strings["You have to leave a request note for the admin."] = "Hagynia kell egy kérelmi jegyzetet az adminisztrátornak."; -$a->strings["Your registration is pending approval by the site owner."] = "A regisztrációja jóváhagyásra vár az oldal tulajdonosától."; -$a->strings["%d contact edited."] = [ - 0 => "%d partner szerkesztve.", - 1 => "%d partner szerkesztve.", -]; -$a->strings["Could not access contact record."] = "Nem sikerült hozzáférni a partner rekordjához."; -$a->strings["Failed to update contact record."] = "Nem sikerült frissíteni a partner rekordját."; -$a->strings["Follow"] = "Követés"; -$a->strings["Unfollow"] = "Követés megszüntetése"; -$a->strings["Message"] = "Üzenet"; -$a->strings["Contact has been blocked"] = "A partner tiltva lett"; -$a->strings["Contact has been unblocked"] = "A partner tiltása fel lett oldva"; -$a->strings["Contact has been ignored"] = "A partner figyelmen kívül lett hagyva"; -$a->strings["Contact has been unignored"] = "A partner figyelmen kívül hagyása fel lett oldva"; -$a->strings["Contact has been archived"] = "A partner archiválva lett"; -$a->strings["Contact has been unarchived"] = "A partner archiválása meg lett szüntetve"; -$a->strings["Drop contact"] = "Partner eldobása"; -$a->strings["Do you really want to delete this contact?"] = "Valóban törölni szeretné ezt a partnert?"; -$a->strings["Cancel"] = "Mégse"; -$a->strings["Contact has been removed."] = "A partner el lett távolítva."; -$a->strings["You are mutual friends with %s"] = "Ön kölcsönösen ismerős %s partnerrel"; -$a->strings["You are sharing with %s"] = "Ön megoszt %s partnerrel"; -$a->strings["%s is sharing with you"] = "%s megoszt Önnel"; -$a->strings["Private communications are not available for this contact."] = "A személyes kommunikációk nem érhetők el ennél a partnernél."; -$a->strings["Never"] = "Soha"; -$a->strings["(Update was not successful)"] = "(a frissítés nem volt sikeres)"; -$a->strings["(Update was successful)"] = "(a frissítés sikeres volt)"; -$a->strings["Suggest friends"] = "Ismerősök ajánlása"; -$a->strings["Network type: %s"] = "Hálózat típusa: %s"; -$a->strings["Communications lost with this contact!"] = "A kommunikációk megszakadtak ezzel a partnerrel!"; -$a->strings["Fetch further information for feeds"] = "További információk lekérése a hírforrásokhoz"; -$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "Információk lekérése a hírforrás eleméből, mint például előnézeti képek, cím és előzetes. Akkor kapcsolhatja be ezt, ha a hírforrás nem tartalmaz sok szöveget. A kulcsszavak a hírforrás elemében lévő metafejlécéből lesznek kiszedve, és kettős keresztes címkékként lesznek beküldve."; -$a->strings["Disabled"] = "Letiltva"; -$a->strings["Fetch information"] = "Információk lekérése"; -$a->strings["Fetch keywords"] = "Kulcsszavak lekérése"; -$a->strings["Fetch information and keywords"] = "Információk és kulcsszavak lekérése"; -$a->strings["No mirroring"] = "Nincs tükrözés"; -$a->strings["Mirror as forwarded posting"] = "Tükrözés továbbított beküldésként"; -$a->strings["Mirror as my own posting"] = "Tükrözés saját beküldésként"; -$a->strings["Native reshare"] = "Natív újra megosztás"; -$a->strings["Contact Information / Notes"] = "Partner információ vagy jegyzetek"; -$a->strings["Contact Settings"] = "Partnerbeállítások"; -$a->strings["Contact"] = "Partner"; -$a->strings["Their personal note"] = "A személyes jegyzeteik"; -$a->strings["Edit contact notes"] = "Partner jegyzeteinek szerkesztése"; -$a->strings["Visit %s's profile [%s]"] = "%s profiljának megtekintése [%s]"; -$a->strings["Block/Unblock contact"] = "Partner tiltása vagy tiltásának feloldása"; -$a->strings["Ignore contact"] = "Partner mellőzése"; -$a->strings["View conversations"] = "Beszélgetések megtekintése"; -$a->strings["Last update:"] = "Utolsó frissítés:"; -$a->strings["Update public posts"] = "Nyilvános bejegyzések frissítése"; -$a->strings["Update now"] = "Frissítés most"; -$a->strings["Unblock"] = "Tiltás feloldása"; -$a->strings["Block"] = "Tiltás"; -$a->strings["Unignore"] = "Mellőzés feloldása"; -$a->strings["Currently blocked"] = "Jelenleg tiltva"; -$a->strings["Currently ignored"] = "Jelenleg mellőzve"; -$a->strings["Currently archived"] = "Jelenleg archiválva"; -$a->strings["Awaiting connection acknowledge"] = "Várakozás a kapcsolat nyugtázására"; -$a->strings["Replies/likes to your public posts may still be visible"] = "A nyilvános bejegyzéseire adott válaszok vagy kedvelések továbbra is láthatóak lehetnek."; -$a->strings["Notification for new posts"] = "Értesítés új bejegyzéseknél"; -$a->strings["Send a notification of every new post of this contact"] = "Értesítés küldése a partner minden új bejegyzéséről."; -$a->strings["Keyword Deny List"] = "Kulcsszavas tiltólista"; -$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Kulcsszavak vesszővel elválasztott listája, amelyeket nem szabad kettős keresztes címkékké átalakítani, ha az „Információk és kulcsszavak lekérése” ki van jelölve."; -$a->strings["Actions"] = "Műveletek"; -$a->strings["Status"] = "Állapot"; -$a->strings["Mirror postings from this contact"] = "Beküldés tükrözése ettől a partnertől"; -$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "A partner megjelölése távoli önmagaként. Ezt azt fogja okozni, hogy a Friendica újraküldi az ettől a partnertől származó új bejegyzéseket."; -$a->strings["Show all contacts"] = "Összes partner megjelenítése"; -$a->strings["Pending"] = "Függőben"; -$a->strings["Only show pending contacts"] = "Csak a függőben lévő partnerek megjelenítése"; -$a->strings["Blocked"] = "Tiltva"; -$a->strings["Only show blocked contacts"] = "Csak a tiltott partnerek megjelenítése"; -$a->strings["Ignored"] = "Mellőzve"; -$a->strings["Only show ignored contacts"] = "Csak a mellőzött partnerek megjelenítése"; -$a->strings["Archived"] = "Archiválva"; -$a->strings["Only show archived contacts"] = "Csak az archivált partnerek megjelenítése"; -$a->strings["Hidden"] = "Rejtett"; -$a->strings["Only show hidden contacts"] = "Csak a rejtett partnerek megjelenítése"; -$a->strings["Groups"] = "Csoportok"; -$a->strings["Organize your contact groups"] = "Partnercsoportok szervezése"; -$a->strings["Following"] = "Követés"; -$a->strings["Mutual friends"] = "Kölcsönösen ismerősök"; -$a->strings["Contacts"] = "Partnerek"; -$a->strings["Search your contacts"] = "Partnerek keresése"; -$a->strings["Results for: %s"] = "Találatok erre: %s"; -$a->strings["Find"] = "Keresés"; -$a->strings["Update"] = "Frissítés"; -$a->strings["Archive"] = "Archiválás"; -$a->strings["Unarchive"] = "Archiválás megszüntetése"; -$a->strings["Delete"] = "Törlés"; -$a->strings["Batch Actions"] = "Tömeges műveletek"; -$a->strings["Conversations started by this contact"] = "A partner által elkezdett beszélgetések"; -$a->strings["Posts and Comments"] = "Bejegyzések és hozzászólások"; -$a->strings["Status Messages and Posts"] = "Állapotüzenetek és bejegyzések"; -$a->strings["Profile Details"] = "Profil részletei"; -$a->strings["View all known contacts"] = "Összes ismert partner megtekintése"; -$a->strings["Advanced Contact Settings"] = "Speciális partnerbeállítások"; -$a->strings["Mutual Friendship"] = "Kölcsönös ismeretség"; -$a->strings["is a fan of yours"] = "az Ön rajongója"; -$a->strings["you are a fan of"] = "Ön rajong érte:"; -$a->strings["Pending outgoing contact request"] = "Függőben lévő kimenő partnerkérés"; -$a->strings["Pending incoming contact request"] = "Függőben lévő bejövő partnerkérés"; -$a->strings["This is you"] = "Ez Ön"; -$a->strings["Refetch contact data"] = "Partneradatok ismételt lekérése"; -$a->strings["Toggle Blocked status"] = "Tiltott állapot átváltása"; -$a->strings["Toggle Ignored status"] = "Mellőzött állapot átváltása"; -$a->strings["Toggle Archive status"] = "Archiválási állapot átváltása"; -$a->strings["Delete contact"] = "Partner törlése"; -$a->strings["Source URL"] = "Forrás URL"; -$a->strings["Item not found."] = "Az elem nem található."; -$a->strings["Source input"] = "Forrás bevitele"; -$a->strings["BBCode::toPlaintext"] = "BBCode::toPlaintext"; -$a->strings["BBCode::convert (raw HTML)"] = "BBCode::convert (nyers HTML)"; -$a->strings["BBCode::convert (hex)"] = "BBCode::convert (hexa)"; -$a->strings["BBCode::convert"] = "BBCode::convert"; -$a->strings["BBCode::convert => HTML::toBBCode"] = "BBCode::convert => HTML::toBBCode"; -$a->strings["BBCode::toMarkdown"] = "BBCode::toMarkdown"; -$a->strings["BBCode::toMarkdown => Markdown::convert (raw HTML)"] = "BBCode::toMarkdown => Markdown::convert (nyers HTML)"; -$a->strings["BBCode::toMarkdown => Markdown::convert"] = "BBCode::toMarkdown => Markdown::convert"; -$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = "BBCode::toMarkdown => Markdown::toBBCode"; -$a->strings["BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"] = "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"; -$a->strings["Item Body"] = "Elem törzse"; -$a->strings["Item Tags"] = "Elem címkéi"; -$a->strings["PageInfo::appendToBody"] = "PageInfo::appendToBody"; -$a->strings["PageInfo::appendToBody => BBCode::convert (raw HTML)"] = "PageInfo::appendToBody => BBCode::convert (nyers HTML)"; -$a->strings["PageInfo::appendToBody => BBCode::convert"] = "PageInfo::appendToBody => BBCode::convert"; -$a->strings["Source input (Diaspora format)"] = "Forrás bevitele (Diaspora formátum)"; -$a->strings["Source input (Markdown)"] = "Forrás bevitele (Markdown)"; -$a->strings["Markdown::convert (raw HTML)"] = "Markdown::convert (nyers HTML)"; -$a->strings["Markdown::convert"] = "Markdown::convert"; -$a->strings["Markdown::toBBCode"] = "Markdown::toBBCode"; -$a->strings["Raw HTML input"] = "Nyers HTML bevitel"; -$a->strings["HTML Input"] = "HTML bevitel"; -$a->strings["HTML Purified (raw)"] = "HTML megtisztítva (nyers)"; -$a->strings["HTML Purified (hex)"] = "HTML megtisztítva (hexa)"; -$a->strings["HTML Purified"] = "HTML megtisztítva"; -$a->strings["HTML::toBBCode"] = "HTML::toBBCode"; -$a->strings["HTML::toBBCode => BBCode::convert"] = "HTML::toBBCode => BBCode::convert"; -$a->strings["HTML::toBBCode => BBCode::convert (raw HTML)"] = "HTML::toBBCode => BBCode::convert (nyers HTML)"; -$a->strings["HTML::toBBCode => BBCode::toPlaintext"] = "HTML::toBBCode => BBCode::toPlaintext"; -$a->strings["HTML::toMarkdown"] = "HTML::toMarkdown"; -$a->strings["HTML::toPlaintext"] = "HTML::toPlaintext"; -$a->strings["HTML::toPlaintext (compact)"] = "HTML::toPlaintext (tömör)"; -$a->strings["Decoded post"] = "Dekódolt bejegyzés"; -$a->strings["Post array before expand entities"] = "A bejegyzéstömb az entitások kiterjesztése előtt"; -$a->strings["Post converted"] = "Bejegyzés átalakítva"; -$a->strings["Converted body"] = "Átalakított törzs"; -$a->strings["Error"] = [ - 0 => "Hiba", - 1 => "Hibák", -]; -$a->strings["Twitter addon is absent from the addon/ folder."] = "A Twitter bővítmény hiányzik az „addon/” mappából."; -$a->strings["Babel Diagnostic"] = "Babel diagnosztika"; -$a->strings["Source text"] = "Forrásszöveg"; -$a->strings["BBCode"] = "BBCode"; -$a->strings["Diaspora"] = "Diaspora"; -$a->strings["Markdown"] = "Markdown"; -$a->strings["HTML"] = "HTML"; -$a->strings["Twitter Source / Tweet URL (requires API key)"] = "Twitter forrás vagy Tweet URL (API-kulcsot igényel)"; -$a->strings["Only logged in users are permitted to perform a probing."] = "Csak bejelentkezett felhasználóknak engedélyezett a szondázás végrehajtása."; -$a->strings["Public access denied."] = "Nyilvános hozzáférés megtagadva."; -$a->strings["Webfinger Diagnostic"] = "WebFinger diagnosztika"; -$a->strings["Lookup address:"] = "Keresési cím:"; +$a->strings["Organisation"] = "Szervezet"; +$a->strings["Forum"] = "Fórum"; +$a->strings["Connect URL missing."] = "A kapcsolódási URL hiányzik."; +$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "A partnert nem sikerült hozzáadni. Ellenőrizze a hozzá tartozó hálózat hitelesítési adatait a Beállítások → Közösségi hálózatok oldalon."; +$a->strings["This site is not configured to allow communications with other networks."] = "Ez az oldal nem úgy lett beállítva, hogy lehetővé tegye a kommunikációkat más hálózatokkal."; +$a->strings["No compatible communication protocols or feeds were discovered."] = "Nem lettek megfelelő kommunikációs protokollok vagy hírforrások felfedezve."; +$a->strings["The profile address specified does not provide adequate information."] = "A megadott profilcím nem biztosít elegendő információt."; +$a->strings["An author or name was not found."] = "Egy szerző vagy név nem található."; +$a->strings["No browser URL could be matched to this address."] = "Egyetlen böngésző URL-t sem sikerült illeszteni ehhez a címhez."; +$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Nem lehet illeszteni @-stílusú személyazonosság-címet egy ismert protokollal vagy e-mailes partnerrel."; +$a->strings["Use mailto: in front of address to force email check."] = "Használja a mailto: előtagot a cím előtt az e-mail-ellenőrzés kényszerítéséhez."; +$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "A megadott profilcím egy olyan hálózathoz tartozik, amely le lett tiltva ezen az oldalon."; +$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Korlátozott profil. Ez a személy nem lesz képes közvetlen vagy személyes értesítéseket fogadni Öntől."; +$a->strings["Unable to retrieve contact information."] = "Nem lehet lekérni a partner információit."; $a->strings["l F d, Y \\@ g:i A"] = "Y. F j., l, H:i"; -$a->strings["Time Conversion"] = "Időátalakítás"; -$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "A Friendica ezt a szolgáltatást az ismeretlen időzónákban lévő más hálózatokkal és ismerősökkel történő események megosztásához biztosítja."; -$a->strings["UTC time: %s"] = "UTC idő: %s"; -$a->strings["Current timezone: %s"] = "Jelenlegi időzóna: %s"; -$a->strings["Converted localtime: %s"] = "Átalakított helyi idő: %s"; -$a->strings["Please select your timezone:"] = "Válassza ki az időzónáját:"; -$a->strings["Formatted"] = "Formázott"; -$a->strings["Source"] = "Forrás"; -$a->strings["Activity"] = "Tevékenység"; -$a->strings["Object data"] = "Objektum adatai"; -$a->strings["Result Item"] = "Eredményelem"; -$a->strings["Source activity"] = "Forrástevékenység"; -$a->strings["Probe Diagnostic"] = "Szondázási diagnosztika"; -$a->strings["Output"] = "Kimenet"; -$a->strings["Lookup address"] = "Keresési cím"; -$a->strings["Please enter a post body."] = "Adjon meg egy bejegyzéstörzset."; -$a->strings["This feature is only available with the frio theme."] = "Ez a funkció csak a frio témával érhető el."; -$a->strings["Compose new personal note"] = "Új személyes jegyzet írása"; -$a->strings["Compose new post"] = "Új bejegyzés írása"; -$a->strings["Visibility"] = "Láthatóság"; -$a->strings["Bold"] = "Félkövér"; -$a->strings["Italic"] = "Dőlt"; -$a->strings["Underline"] = "Aláhúzott"; -$a->strings["Quote"] = "Idézet"; -$a->strings["Code"] = "Kód"; -$a->strings["Image"] = "Kép"; -$a->strings["Link"] = "Hivatkozás"; -$a->strings["Link or Media"] = "Hivatkozás vagy média"; -$a->strings["Please enter a image/video/audio/webpage URL:"] = "Írjon be egy kép, videó, hang vagy weboldal URL-t:"; -$a->strings["Preview"] = "Előnézet"; -$a->strings["Set your location"] = "Az Ön helyének beállítása"; -$a->strings["Clear the location"] = "A hely törlése"; -$a->strings["Location services are unavailable on your device"] = "A helymeghatározó szolgáltatások nem érhetők el az Ön eszközén"; -$a->strings["Location services are disabled. Please check the website's permissions on your device"] = "A helymeghatározó szolgáltatások le vannak tiltva. Ellenőrizze a weboldal jogosultságait az Ön eszközén"; -$a->strings["Please wait"] = "Kis türelmet"; -$a->strings["Set title"] = "Cím beállítása"; -$a->strings["Categories (comma-separated list)"] = "Kategóriák (vesszővel elválasztott lista)"; -$a->strings["Unable to follow this item."] = "Nem lehet követni ezt az elemet."; -$a->strings["System down for maintenance"] = "A rendszer le van kapcsolva a karbantartáshoz"; -$a->strings["This Friendica node is currently in maintenance mode, either automatically because it is self-updating or manually by the node administrator. This condition should be temporary, please come back in a few minutes."] = "Ez a Friendica csomópont jelenleg karbantartási módban van, vagy automatikusan, mert épp önmagát frissíti, vagy kézileg a csomópont adminisztrátora által. Ennek az állapotnak átmenetinek kell lennie, jöjjön vissza néhány perc múlva."; -$a->strings["Switch between your accounts"] = "Váltás a fiókjai között"; -$a->strings["Manage your accounts"] = "Fiókok kezelése"; -$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Váltás a különböző személyazonosságok vagy közösségi és csoportoldalak között, amelyek megosztják a fiókja részleteit, vagy amelyeket „kezelés” jogosultságokkal ruházott fel"; -$a->strings["Select an identity to manage: "] = "A kezelendő személyazonosság kiválasztása: "; -$a->strings["Login"] = "Bejelentkezés"; -$a->strings["This page is missing a url parameter."] = "Erről az oldalról hiányzik egy URL paraméter."; -$a->strings["The post was created"] = "A bejegyzés létrejött"; -$a->strings["Local Community"] = "Helyi közösség"; -$a->strings["Posts from local users on this server"] = "Bejegyzések a kiszolgálón lévő helyi felhasználóktól"; -$a->strings["Global Community"] = "Globális közösség"; -$a->strings["Posts from users of the whole federated network"] = "Bejegyzések a teljes föderált hálózat felhasználóitól"; -$a->strings["Own Contacts"] = "Saját partnerek"; -$a->strings["Include"] = "Tartalmazás"; -$a->strings["Hide"] = "Elrejtés"; -$a->strings["No results."] = "Nincs találat."; -$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "Ez a közösségi folyam megjeleníti az összes nyilvános bejegyzést, amelyet ez a csomópont megkapott. Előfordulhat, hogy azok nem tükrözik ezen csomópont felhasználóinak véleményét."; -$a->strings["Community option not available."] = "A közösségi beállítás nem érhető el."; -$a->strings["Not available."] = "Nem érhető el."; -$a->strings["No such group"] = "Nincs ilyen csoport"; -$a->strings["Group: %s"] = "Csoport: %s"; -$a->strings["Latest Activity"] = "Legutóbbi tevékenység"; -$a->strings["Sort by latest activity"] = "Rendezés a legutóbbi tevékenység szerint"; -$a->strings["Latest Posts"] = "Legutóbbi bejegyzések"; -$a->strings["Sort by post received date"] = "Rendezés a bejegyzés érkezési dátuma szerint"; -$a->strings["Personal"] = "Személyes"; -$a->strings["Posts that mention or involve you"] = "Bejegyzések, amelyek említik vagy tartalmazzák Önt"; -$a->strings["Starred"] = "Csillagozott"; -$a->strings["Favourite Posts"] = "Kedvenc bejegyzések"; -$a->strings["Friendica Communications Server - Setup"] = "Friendica kommunikációs kiszolgáló – Beállítás"; -$a->strings["System check"] = "Rendszerellenőrzés"; -$a->strings["Requirement not satisfied"] = "A követelmény nincs kielégítve"; -$a->strings["Optional requirement not satisfied"] = "A választható követelmény nincs kielégítve"; -$a->strings["OK"] = "Rendben"; -$a->strings["Next"] = "Következő"; -$a->strings["Check again"] = "Ellenőrzés újra"; -$a->strings["No SSL policy, links will track page SSL state"] = "Nincs SSL irányelv, a hivatkozások követik az oldal SSL állapotát"; -$a->strings["Force all links to use SSL"] = "Az összes hivatkozás kényszerítése SSL használatára"; -$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Önaláírt tanúsítvány, SSL használata csak helyi hivatkozásoknál (nem ajánlott)"; -$a->strings["Base settings"] = "Alapvető beállítások"; -$a->strings["SSL link policy"] = "SSL-hivatkozás irányelve"; -$a->strings["Determines whether generated links should be forced to use SSL"] = "Meghatározza, hogy az előállított hivatkozásokat kényszeríteni kell-e SSL használatára."; -$a->strings["Host name"] = "Gépnév"; -$a->strings["Overwrite this field in case the determinated hostname isn't right, otherweise leave it as is."] = "Írja felül ezt a mezőt abban az esetben, ha a felismert gépnév nem helyes, egyébként hagyja úgy, ahogy van."; -$a->strings["Base path to installation"] = "Alap útvonal a telepítéshez"; -$a->strings["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."] = "Ha a rendszer nem tudja felismerni a helyes útvonalat a telepítéshez, akkor itt adja meg a helyes útvonalat. Ezt a beállítást csak akkor kell megadni, ha korlátozott rendszert és a webgyökérre mutató szimbolikus hivatkozásokat használ."; -$a->strings["Sub path of the URL"] = "Az URL alútvonala"; -$a->strings["Overwrite this field in case the sub path determination isn't right, otherwise leave it as is. Leaving this field blank means the installation is at the base URL without sub path."] = "Írja felül ezt a mezőt abban az esetben, ha az alútvonal felismerése nem helyes, egyébként hagyja úgy, ahogy van. A mező üresen hagyása azt jelenti, hogy a telepítés az alap útvonalon van alútvonal nélkül."; -$a->strings["Database connection"] = "Adatbázis-kapcsolat"; -$a->strings["In order to install Friendica we need to know how to connect to your database."] = "A Friendica telepítése érdekében tudnunk kell, hogy hogyan kell kapcsolódni az adatbázisához."; -$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vegye fel a kapcsolatot a tárhelyszolgáltatóval vagy az oldal adminisztrátorával, ha kérdései vannak ezekkel a beállításokkal kapcsolatban."; -$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "A lent megadott adatbázisnak már léteznie kell. Ha még nem létezik, akkor hozza létre a folytatás előtt."; -$a->strings["Database Server Name"] = "Adatbázis-kiszolgáló neve"; -$a->strings["Database Login Name"] = "Adatbázis bejelentkezési neve"; -$a->strings["Database Login Password"] = "Adatbázis bejelentkezési jelszava"; -$a->strings["For security reasons the password must not be empty"] = "Biztonsági okokból a jelszó nem lehet üres"; -$a->strings["Database Name"] = "Adatbázis neve"; -$a->strings["Please select a default timezone for your website"] = "Válasszon egy alapértelmezett időzónát a weboldalához"; -$a->strings["Site settings"] = "Oldalbeállítások"; -$a->strings["Site administrator email address"] = "Oldal adminisztrátorának e-mail-címe"; -$a->strings["Your account email address must match this in order to use the web admin panel."] = "A fiókja e-mail-címének egyeznie kell ezzel a webes adminisztrátori panel használata érdekében."; -$a->strings["System Language:"] = "Rendszer nyelve:"; -$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Az alapértelmezett nyelv beállítása a Friendica telepítésnek felületéhez és az e-mailek küldéséhez."; -$a->strings["Your Friendica site database has been installed."] = "A Friendica oldalának adatbázisa telepítve lett."; -$a->strings["Installation finished"] = "A telepítés befejeződött"; -$a->strings["

What next

"] = "

Mi következik?

"; -$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "FONTOS: be kell állítania [kézzel] egy ütemezett feladatot a feldolgozóhoz."; -$a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = "Menjen az új Friendica csomópont regisztrációs oldalára, és regisztráljon új felhasználóként. Ne felejtse el ugyanazt az e-mail-címet használni, mint amelyet adminisztrátori e-mail-címként adott meg. Ez lehetővé fogja tenni az oldal adminisztrátori paneljére történő belépést."; -$a->strings["No profile"] = "Nincs profil"; -$a->strings["Credits"] = "Köszönetnyilvánítás"; -$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "A Friendica egy közösségi projekt, amely nem lehetne lehetséges a sok ember segítsége nélkül. Itt van azok listája, akik közreműködtek a kódban vagy a Friendica fordításában. Köszönet mindannyiuknak!"; -$a->strings["Search term was not saved."] = "A keresési kifejezés nem lett elmentve."; -$a->strings["Search term already saved."] = "A keresési kifejezés már el van mentve."; -$a->strings["Search term was not removed."] = "A keresési kifejezés nem lett eltávolítva."; -$a->strings["Only logged in users are permitted to perform a search."] = "Csak bejelentkezett felhasználóknak engedélyezett a keresés végrehajtása."; -$a->strings["Only one search per minute is permitted for not logged in users."] = "Percenként csak egy keresés engedélyezett a nem bejelentkezett felhasználóknak."; -$a->strings["Search"] = "Keresés"; -$a->strings["Items tagged with: %s"] = "Ezzel címkézett elemek: %s"; -$a->strings["Profile unavailable."] = "A profil nem érhető el."; -$a->strings["Invalid locator"] = "Érvénytelen kereső"; -$a->strings["The provided profile link doesn't seem to be valid"] = "A megadott profilhivatkozás nem tűnik érvényesnek"; -$a->strings["Remote subscription can't be done for your network. Please subscribe directly on your system."] = "A távoli feliratkozást nem lehet elvégezni az Ön hálózatánál. Iratkozzon fel közvetlenül a saját rendszerén."; -$a->strings["Friend/Connection Request"] = "Ismerős- vagy kapcsolódási kérés"; -$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system, you have to subscribe to %s or %s directly on your system."] = "Adja meg itt a WebFinger-címét (felhasználó@tartomány.tld) vagy a profil URL-jét. Ha ezt nem támogatja a rendszere, akkor fel kell iratkoznia a(z) %s vagy a(z) %s címre közvetlenül a rendszerén."; -$a->strings["If you are not yet a member of the free social web, follow this link to find a public Friendica node and join us today."] = "Ha még nem tagja a szabad közösségi hálónak, akkor kövesse ezt a hivatkozást egy nyilvános Friendica csomópont kereséséhez, és csatlakozzon hozzánk még ma."; -$a->strings["Your Webfinger address or profile URL:"] = "A WebFinger-címe vagy profil URL-je:"; -$a->strings["Please answer the following:"] = "Válaszoljon a következőre:"; -$a->strings["Submit Request"] = "Kérés elküldése"; -$a->strings["Total invitation limit exceeded."] = "Az összes meghívás korlátja túllépve."; -$a->strings["%s : Not a valid email address."] = "%s: nem érvényes e-mail-cím."; -$a->strings["Please join us on Friendica"] = "Csatlakozzon hozzánk a Friendica hálózatán"; -$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "A meghíváskorlát túllépve. Vegye fel a kapcsolatot az oldal adminisztrátorával."; -$a->strings["%s : Message delivery failed."] = "%s: az üzenetkézbesítés sikertelen."; -$a->strings["%d message sent."] = [ - 0 => "%d üzenet elküldve.", - 1 => "%d üzenet elküldve.", +$a->strings["Starts:"] = "Kezdődik:"; +$a->strings["Finishes:"] = "Befejeződik:"; +$a->strings["all-day"] = "egész nap"; +$a->strings["Sept"] = "Szept"; +$a->strings["No events to display"] = "Nincsenek megjelenítendő események"; +$a->strings["l, F j"] = "F j., l"; +$a->strings["Edit event"] = "Esemény szerkesztése"; +$a->strings["Duplicate event"] = "Esemény kettőzése"; +$a->strings["Delete event"] = "Esemény törlése"; +$a->strings["D g:i A"] = "D H:i"; +$a->strings["g:i A"] = "H:i"; +$a->strings["Show map"] = "Térkép megjelenítése"; +$a->strings["Hide map"] = "Térkép elrejtése"; +$a->strings["%s's birthday"] = "%s születésnapja"; +$a->strings["Happy Birthday %s"] = "Boldog születésnapot, %s"; +$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Egy ilyen névvel rendelkező törölt csoport újraéledt. Lehet, hogy a meglévő elemjogosultságok alkalmazva lesznek erre a csoportra és bármely jövőbeli tagjaira. Ha ez nem az, amit szeretett volna, akkor hozzon létre egy másik csoportot eltérő névvel."; +$a->strings["Default privacy group for new contacts"] = "Alapértelmezett adatvédelmi csoport az új partnerekhez"; +$a->strings["Everybody"] = "Mindenki"; +$a->strings["edit"] = "szerkesztés"; +$a->strings["add"] = "hozzáadás"; +$a->strings["Edit group"] = "Csoport szerkesztése"; +$a->strings["Contacts not in any group"] = "Egyetlen csoportban sem lévő partnerek"; +$a->strings["Create a new group"] = "Új csoport létrehozása"; +$a->strings["Group Name: "] = "Csoport neve: "; +$a->strings["Edit groups"] = "Csoportok szerkesztése"; +$a->strings["Detected languages in this post:\\n%s"] = "A bejegyzésben felismert nyelvek:\\n%s"; +$a->strings["activity"] = "tevékenység"; +$a->strings["comment"] = "hozzászólás"; +$a->strings["post"] = "bejegyzés"; +$a->strings["Content warning: %s"] = "Tartalom figyelmeztetés: %s"; +$a->strings["bytes"] = "bájt"; +$a->strings["View on separate page"] = "Megtekintés külön oldalon"; +$a->strings["[no subject]"] = "[nincs tárgy]"; +$a->strings["Edit profile"] = "Profil szerkesztése"; +$a->strings["Change profile photo"] = "Profilfénykép megváltoztatása"; +$a->strings["Homepage:"] = "Honlap:"; +$a->strings["About:"] = "Névjegy:"; +$a->strings["XMPP:"] = "XMPP:"; +$a->strings["Unfollow"] = "Követés megszüntetése"; +$a->strings["Atom feed"] = "Atom hírforrás"; +$a->strings["Network:"] = "Hálózat:"; +$a->strings["g A l F d"] = "F j., l, H"; +$a->strings["F d"] = "F j."; +$a->strings["[today]"] = "[ma]"; +$a->strings["Birthday Reminders"] = "Születésnapi emlékeztető"; +$a->strings["Birthdays this week:"] = "Születésnapok ezen a héten:"; +$a->strings["[No description]"] = "[Nincs leírás]"; +$a->strings["Event Reminders"] = "Eseményemlékeztetők"; +$a->strings["Upcoming events the next 7 days:"] = "Közelgő események a következő 7 napon:"; +$a->strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s üdvözli őt: %2\$s"; +$a->strings["Database storage failed to update %s"] = "Az adatbázis-tároló nem tudta frissíteni ezt: %s"; +$a->strings["Database storage failed to insert data"] = "Az adatbázis-tároló nem tudta beszúrni az adatokat"; +$a->strings["Filesystem storage failed to create \"%s\". Check you write permissions."] = "A fájlrendszer-tároló nem tudta létrehozni ezt: „%s”. Ellenőrizze az írási jogosultságait."; +$a->strings["Filesystem storage failed to save data to \"%s\". Check your write permissions"] = "A fájlrendszer-tároló nem tudta elmenteni az adatokat ide: „%s”. Ellenőrizze az írási jogosultságait."; +$a->strings["Storage base path"] = "Tároló alapútvonala"; +$a->strings["Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree"] = "Az a mappa, ahova a feltöltött fájlok mentve lesznek. A legnagyobb biztonság érdekében ennek a webkiszolgáló mappafáján kívüli útvonalnak kell lennie."; +$a->strings["Enter a valid existing folder"] = "Adjon meg egy érvényes, létező mappát"; +$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "SÚLYOS HIBA: a biztonsági kulcsok előállítása nem sikerült."; +$a->strings["Login failed"] = "Bejelentkezés sikertelen"; +$a->strings["Not enough information to authenticate"] = "Nincs elegendő információ a hitelesítéshez"; +$a->strings["Password can't be empty"] = "A jelszó nem lehet üres"; +$a->strings["Empty passwords are not allowed."] = "Az üres jelszavak nem megengedettek."; +$a->strings["The new password has been exposed in a public data dump, please choose another."] = "Az új jelszót közzétették egy nyilvános adattárban. Válasszon egy másikat."; +$a->strings["The password can't contain accentuated letters, white spaces or colons (:)"] = "A jelszó nem tartalmazhat ékezetes betűket, üres karaktereket vagy kettőspontot (:)"; +$a->strings["Passwords do not match. Password unchanged."] = "A jelszavak nem egyeznek. A jelszó változatlan maradt."; +$a->strings["An invitation is required."] = "Egy meghívás szükséges."; +$a->strings["Invitation could not be verified."] = "A meghívást nem sikerült ellenőrizni."; +$a->strings["Invalid OpenID url"] = "Érvénytelen OpenID URL"; +$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Problémába ütköztünk a megadott OpenID-val történő bejelentkezés közben. Ellenőrizze az azonosító helyesírását."; +$a->strings["The error message was:"] = "A hibaüzenet ez volt:"; +$a->strings["Please enter the required information."] = "Adja meg a szükséges információkat."; +$a->strings["system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values."] = "A system.username_min_length (%s) és a system.username_max_length (%s) kizárják egymást, értékek felcserélése."; +$a->strings["Username should be at least %s character."] = [ + 0 => "A felhasználónévnek legalább %s karakternek kell lennie.", + 1 => "A felhasználónévnek legalább %s karakternek kell lennie.", ]; -$a->strings["You have no more invitations available"] = "Nincs több elérhető meghívása"; -$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Látogassa meg a %s oldalt azon nyilvános oldalak listájáért, amelyekhez csatlakozhat. A egyéb oldalakon lévő Friendica-tagok mindegyike tud egymással kapcsolódni, valamint számos más közösségi hálózat tagjaival is."; -$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "A meghívás elfogadásához látogasson el és regisztráljon a(z) %s címen vagy bármely más nyilvános Friendica weboldalon."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "A Friendica oldalak mindegyike össze van kapcsolva, hogy egy hatalmas, fokozott magánszféra-védelemmel ellátott közösségi hálót hozzanak létre, amelyet a tagjai birtokolnak és vezérelnek. A tagok képesek sok hagyományos közösségi hálózathoz is kapcsolódni. Nézze meg a(z) %s oldalt azon alternatív Friendica oldalak listájáért, amelyekhez csatlakozhat."; -$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Elnézést kérünk. Ez a rendszer jelenleg nem úgy van beállítva, hogy más nyilvános oldalakhoz kapcsolódjon vagy tagokat hívjon meg."; -$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "A Friendica oldalak mindegyike össze van kapcsolva, hogy egy hatalmas, fokozott magánszféra-védelemmel ellátott közösségi hálót hozzanak létre, amelyet a tagjai birtokolnak és vezérelnek. A tagok képesek sok hagyományos közösségi hálózathoz is kapcsolódni."; -$a->strings["To accept this invitation, please visit and register at %s."] = "A meghívás elfogadásához látogasson el és regisztráljon a(z) %s címen."; -$a->strings["Send invitations"] = "Meghívások küldése"; -$a->strings["Enter email addresses, one per line:"] = "Adja meg az e-mail-címeket, soronként egyet:"; -$a->strings["Your message:"] = "Az üzenete:"; -$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Szeretettel meghívom Önt, hogy csatlakozzon hozzám és más közeli ismerősökhöz a Friendica hálózatán – és segítsen nekünk egy jobb közösségi hálót létrehozni."; -$a->strings["You will need to supply this invitation code: \$invite_code"] = "Meg kell majd adnia ezt a meghívási kódot: \$invite_code"; -$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Miután regisztrált, lépjen velem kapcsolatba a profiloldalamon keresztül itt:"; -$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "A Friendica projekttel kapcsolatos további információkért, valamint hogy miért tartjuk ezt fontosnak, látogasson el a https://friendi.ca/ oldalra."; -$a->strings["No entries (some entries may be hidden)."] = "Nincsenek bejegyzések (néhány bejegyzés rejtve lehet)."; -$a->strings["Global Directory"] = "Globális könyvtár"; -$a->strings["Find on this site"] = "Keresés ezen az oldalon"; -$a->strings["Results for:"] = "Találat erre:"; -$a->strings["Site Directory"] = "Oldal könyvtára"; -$a->strings["View Profile"] = "Profil megtekintése"; -$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."] = "A regisztrációkor, valamint a felhasználói fiók és a partnerei között történő kommunikáció biztosításához a felhasználónak biztosítania kell egy megjelenített nevet (álnevet), egy felhasználónevet (becenevet) és egy működő e-mail-címet. A nevek hozzáférhetőek lesznek a fiók profiloldalán az oldal bármely látogatója számára, még akkor is, ha más profilrészletek nem jelennek meg. Az e-mail-cím csak az interakciókkal kapcsolatos felhasználói értesítések küldéséhez lesz használva, de nem lesz láthatóan megjelenítve. A fiók felsorolása a csomópont felhasználói könyvtárában vagy a globális felhasználói könyvtárban választható, és a felhasználói beállításokban szabályozható. Ez nem szükséges a kommunikációhoz."; -$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."] = "Ezek az adatok a kommunikációhoz szükségesek, és átadásra kerül a kommunikációs partnerek csomópontjainak, valamint el is lesznek tárolva ott. A felhasználók megadhatnak további személyes adatokat, amelyek szintén átvitelre kerülhetnek a kommunikációs partnerek fiókjaiba."; -$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."] = "Egy bejelentkezett felhasználó bármely időpontban exportálhatja a fiókja adatait a fiók beállításaiból. Ha a felhasználó törölni szeretné a fiókját, akkor azt megteheti a %1\$s/removeme oldalon. A fiók törlése végleges lesz. Az adatok törlése kérve lesz a kommunikációs partnerek csomópontjairól is."; -$a->strings["Privacy Statement"] = "Adatvédelmi nyilatkozat"; -$a->strings["Welcome to Friendica"] = "Üdvözli a Friendica!"; -$a->strings["New Member Checklist"] = "Új tag ellenőrzőlistája"; -$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Tippeket és hivatkozásokat szeretnénk ajánlani, hogy élvezhetővé tegyük az alkalmazás használatát. Kattintson bármelyik elemre a kapcsolódó oldal megtekintéséhez. Az erre az oldalra mutató hivatkozás a kezdőlapjáról érhető el a kezdeti regisztrációt követő két héten belül, azután csendben eltűnik."; -$a->strings["Getting Started"] = "Kezdeti lépések"; -$a->strings["Friendica Walk-Through"] = "Friendica útmutató"; -$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "A Gyors kezdés oldalon találhat egy rövid bemutatót a profil és hálózati lapokról, új kapcsolatok létesítésről, valamint találhat néhány csoportot, amelyekhez csatlakozhat."; -$a->strings["Settings"] = "Beállítások"; -$a->strings["Go to Your Settings"] = "Ugrás a beállításaihoz"; -$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "A Beállítások oldalon változtathatja meg a kezdeti jelszavát. Szintén itt talál egy megjegyzést a személyazonosság-címével kapcsolatban. Ez úgy néz ki mint egy e-mail-cím, és hasznos lesz a szabad közösségi hálón az ismerősök kereséséhez."; -$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Vizsgálja felül az egyéb beállításokat is, különösen az adatvédelmi beállításokat. Egy nem közzétett könyvtárlistázás olyan, mint ha egy nyilvánosságra nem hozott telefonszáma lenne. Általában valószínűleg közzé kell tennie a listázását, hacsak az ismerősei és a lehetséges ismerősei nem tudják pontosan, hogy hogyan találják meg Önt."; -$a->strings["Upload Profile Photo"] = "Profilfénykép feltöltése"; -$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Töltsön fel profilfényképet, ha ezt még nem tette meg. A tanulmányok kimutatták, hogy a saját magukról valódi fényképpel rendelkező emberek tízszer valószínűbben találnak ismerősöket mint azok az emberek, akiknek nincs profilfényképük."; -$a->strings["Edit Your Profile"] = "A profil szerkesztése"; -$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Szerkessze az alapértelmezett profilját a kedve szerint. Vizsgálja felül a beállításokat az ismerősök listájának elrejtéséhez és a profiljának az ismeretlen látogatók elől történő elrejtéséhez."; -$a->strings["Profile Keywords"] = "Profil kulcsszavai"; -$a->strings["Set some public keywords for your profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Állítson be néhány nyilvános kulcsszót a profiljához, amely bemutatja az érdeklődési köreit. Képesek lehetünk megtalálni a hasonló érdeklődéssel rendelkező más embereket, és ajánlhatunk ismeretségeket."; -$a->strings["Connecting"] = "Kapcsolatépítés"; -$a->strings["Importing Emails"] = "E-mailek importálása"; -$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Adja meg az e-mail-címéhez való hozzáférés információt az összekötő beállításainak oldalán, ha a postafiókja beérkező üzeneteiből szeretne ismerősöket vagy levelezési listákat importálni, valamint velük kapcsolatba lépni."; -$a->strings["Go to Your Contacts Page"] = "Ugrás a partnerek oldalára"; -$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "A partnerek oldal az átjáró az ismeretségek kezeléséhez és a más hálózatokon lévő ismerősökkel történő kapcsolatfelvételhez. Jellemzően csak be kell írnia a címüket vagy az oldal URL-jét az Új partner hozzáadása párbeszédablakba."; -$a->strings["Go to Your Site's Directory"] = "Ugrás az oldal könyvtárához"; -$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "A könyvtárak oldal lehetővé teszi más emberek keresését ezen a hálózaton vagy más föderált oldalakon. Keresse meg a Kapcsolódás vagy a Követés hivatkozást a profiloldalukon. Adja meg a saját személyazonosság-címét, ha kérik."; -$a->strings["Finding New People"] = "Új emberek keresése"; -$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "A partnerek oldal oldalsávjában számos eszköz található új ismerősök kereséséhez. Találhatunk embereket az érdeklődésük szerint, kereshetünk embereket név vagy érdeklődés szerint, valamint ajánlásokat adhatunk a hálózati kapcsolatok alapján. Egy teljesen új oldalon az ismerősök ajánlásai általában 24 órán belül kezdenek megjelenni."; -$a->strings["Group Your Contacts"] = "Partnerek csoportosítása"; -$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Miután szerezett néhány ismerőst, szervezze őket személyes beszélgetési csoportokba a partnerek oldal oldalsávján keresztül, és ezután személyes módon léphet kapcsolatba minden egyes csoporttal a hálózatok oldalon."; -$a->strings["Why Aren't My Posts Public?"] = "Miért nem nyilvánosak a bejegyzéseim?"; -$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "A Friendica tiszteletben tartja a magánszférát. Alapértelmezetten a bejegyzései csak azoknak az embereknek jelennek meg, akiket ismerősként felvett. További információkért nézze meg a súgószakaszt a fenti hivatkozáson keresztül."; -$a->strings["Getting Help"] = "Segítség kérése"; -$a->strings["Go to the Help Section"] = "Ugrás a súgószakaszhoz"; -$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "A súgó oldalaink további részleteket közölhetnek a program egyéb funkcióiról és erőforrásairól."; -$a->strings["The theme you chose isn't available."] = "A választott téma nem érhető el."; -$a->strings["No special theme for mobile devices"] = "Nincs különleges téma a mobil eszközökhöz"; -$a->strings["%s - (Unsupported)"] = "%s – (nem támogatott)"; -$a->strings["%s - (Experimental)"] = "%s – (kísérleti)"; -$a->strings["Display Settings"] = "Megjelenítési beállítások"; -$a->strings["Save Settings"] = "Beállítások mentése"; -$a->strings["General Theme Settings"] = "Általános témabeállítások"; -$a->strings["Custom Theme Settings"] = "Egyéni témabeállítások"; -$a->strings["Content Settings"] = "Tartalombeállítások"; -$a->strings["Theme settings"] = "Témabeállítások"; -$a->strings["Calendar"] = "Naptár"; -$a->strings["Display Theme:"] = "Megjelenítés témája:"; -$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["Automatic updates only at the top of the post stream pages"] = "Automatikus frissítések csak a bejegyzésfolyam oldalainak tetejénél"; -$a->strings["Auto update may add new posts at the top of the post stream pages, which can affect the scroll position and perturb normal reading if it happens anywhere else the top of the page."] = "Az automatikus frissítés új bejegyzéseket adhat a bejegyzésfolyam oldalainak tetejéhez, amely hatással lehet a görgetési pozícióra és megzavarhatja a normál olvasást, ha az oldal tetejének bármely részén történik."; -$a->strings["Don't show emoticons"] = "Ne jelenítsen meg hangulatjeleket"; -$a->strings["Normally emoticons are replaced with matching symbols. This setting disables this behaviour."] = "Általában a hangulatjelek ki lesznek cserélve a megfelelő szimbólumokkal. Ez a beállítás letiltja ezt a viselkedést."; -$a->strings["Infinite scroll"] = "Végtelen görgetés"; -$a->strings["Automatic fetch new items when reaching the page end."] = "Új elemek automatikus lekérése az oldal végének elérésekor."; -$a->strings["Disable Smart Threading"] = "Intelligens szálkezelés letiltása"; -$a->strings["Disable the automatic suppression of extraneous thread indentation."] = "A nem odatartozó szálbehúzások automatikus elnyomásának letiltása."; -$a->strings["Hide the Dislike feature"] = "A nem tetszik funkció elrejtése"; -$a->strings["Hides the Dislike button and dislike reactions on posts and comments."] = "Elrejti a nem tetszik gombot és a nem tetszik reakciókat a bejegyzéseknél és a hozzászólásoknál."; -$a->strings["Display the resharer"] = "Az újramegosztó megjelenítése"; -$a->strings["Display the first resharer as icon and text on a reshared item."] = "Az első újramegosztó megjelenítése ikonként és szövegként egy újra megosztott elemnél."; -$a->strings["Stay local"] = "Maradjon helyi"; -$a->strings["Don't go to a remote system when following a contact link."] = "Ne menjen távoli rendszerre, ha egy partnerhivatkozást követ."; -$a->strings["Beginning of week:"] = "A hét kezdete:"; -$a->strings["Please enter your password to access this page."] = "Adja meg a jelszavát az oldal eléréséhez."; -$a->strings["Two-factor authentication successfully activated."] = "A kétlépcsős hitelesítés sikeresen bekapcsolva."; -$a->strings["Invalid code, please retry."] = "Érvénytelen kód, próbálja újra."; -$a->strings["

Or you can submit the authentication settings manually:

\n
\n\t
Issuer
\n\t
%s
\n\t
Account Name
\n\t
%s
\n\t
Secret Key
\n\t
%s
\n\t
Type
\n\t
Time-based
\n\t
Number of digits
\n\t
6
\n\t
Hashing algorithm
\n\t
SHA-1
\n
"] = "

Vagy elküldheti a hitelesítési beállításokat kézzel:

\n
\n\t
Kibocsájtó
\n\t
%s
\n\t
Fiók neve
\n\t
%s
\n\t
Titkos kulcs
\n\t
%s
\n\t
Típus
\n\t
Időalapú
\n\t
Számjegyek száma
\n\t
6
\n\t
Kivonatoló algoritmus
\n\t
SHA-1
\n
"; -$a->strings["Two-factor code verification"] = "Kétlépcsős kód ellenőrzése"; -$a->strings["Help"] = "Súgó"; -$a->strings["

Please scan this QR Code with your authenticator app and submit the provided code.

"] = "

Olvassa be ezt a QR-kódot a hitelesítő alkalmazásával, és küldje el a megkapott kódot.

"; -$a->strings["

Or you can open the following URL in your mobile device:

%s

"] = "

Vagy megnyithatja a következő URL-t a mobil eszközén:

%s

"; -$a->strings["Please enter a code from your authentication app"] = "Adjon meg egy kódot a hitelesítő alkalmazásából"; -$a->strings["Verify code and enable two-factor authentication"] = "Kód ellenőrzése és a kétlépcsős hitelesítés engedélyezése"; -$a->strings["Two-factor authentication successfully disabled."] = "A kétlépcsős hitelesítés sikeresen letiltva."; -$a->strings["Wrong Password"] = "Hibás jelszó"; -$a->strings["Two-factor authentication"] = "Kétlépcsős hitelesítés"; -$a->strings["

Use an application on a mobile device to get two-factor authentication codes when prompted on login.

"] = "

Egy alkalmazás használata egy mobil eszközön, hogy megkapja a kétlépcsős hitelesítés kódjait, ha a bejelentkezéskor kérik.

"; -$a->strings["Authenticator app"] = "Hitelesítő alkalmazás"; -$a->strings["Configured"] = "Beállítva"; -$a->strings["Not Configured"] = "Nincs beállítva"; -$a->strings["

You haven't finished configuring your authenticator app.

"] = "

Nem fejezte be a hitelesítő alkalmazása beállítását.

"; -$a->strings["

Your authenticator app is correctly configured.

"] = "

A hitelesítő alkalmazása megfelelően be van állítva.

"; -$a->strings["Recovery codes"] = "Visszaszerzési kódok"; -$a->strings["Remaining valid codes"] = "Hátralévő érvényes kódok"; -$a->strings["

These one-use codes can replace an authenticator app code in case you have lost access to it.

"] = "

Ezek az egyszer használható kódok helyettesíthetnek egy hitelesítő alkalmazás kódot abban az esetben, ha elveszíti a hozzáférést ahhoz.

"; -$a->strings["App-specific passwords"] = "Alkalmazásfüggő jelszavak"; -$a->strings["Generated app-specific passwords"] = "Előállított alkalmazásfüggő jelszavak"; -$a->strings["

These randomly generated passwords allow you to authenticate on apps not supporting two-factor authentication.

"] = "

Ezek a véletlenszerűen előállított jelszavak lehetővé teszik, hogy olyan alkalmazásoknál hitelesítsen, amelyek nem támogatják a kétlépcsős hitelesítést.

"; -$a->strings["Current password:"] = "Jelenlegi jelszó:"; -$a->strings["You need to provide your current password to change two-factor authentication settings."] = "Meg kell adnia a jelenlegi jelszavát a kétlépcsős hitelesítési beállítások megváltoztatásához."; -$a->strings["Enable two-factor authentication"] = "Kétlépcsős hitelesítés engedélyezése"; -$a->strings["Disable two-factor authentication"] = "Kétlépcsős hitelesítés letiltása"; -$a->strings["Show recovery codes"] = "Visszaszerzési kódok megjelenítése"; -$a->strings["Manage app-specific passwords"] = "Alkalmazásfüggő jelszavak kezelése"; -$a->strings["Manage trusted browsers"] = "Megbízható böngészők kezelése"; -$a->strings["Finish app configuration"] = "Alkalmazás beállításának befejezése"; -$a->strings["App-specific password generation failed: The description is empty."] = "Az alkalmazásfüggő jelszó előállítása sikertelen: a leírás üres."; -$a->strings["App-specific password generation failed: This description already exists."] = "Az alkalmazásfüggő jelszó előállítása sikertelen: a leírás már létezik."; -$a->strings["New app-specific password generated."] = "Az új alkalmazásfüggő jelszó előállítva."; -$a->strings["App-specific passwords successfully revoked."] = "Az alkalmazásfüggő jelszavak sikeresen visszavonva."; -$a->strings["App-specific password successfully revoked."] = "Az alkalmazásfüggő jelszó sikeresen visszavonva."; -$a->strings["Two-factor app-specific passwords"] = "Kétlépcsős alkalmazásfüggő jelszavak"; -$a->strings["

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.

"] = "

Az alkalmazásfüggő jelszavak az Ön szokásos jelszava helyett használt véletlenszerűen előállított jelszavak, hogy hitelesítsék a fiókját az olyan harmadik féltől származó alkalmazásoknál, amelyek nem támogatják a kétlépcsős hitelesítést.

"; -$a->strings["Make sure to copy your new app-specific password now. You won’t be able to see it again!"] = "Győződjön meg arról, hogy lemásolta-e most az új alkalmazásfüggő jelszavát. Nem fogja tudni újra megnézni a jelszót!"; -$a->strings["Description"] = "Leírás"; -$a->strings["Last Used"] = "Legutóbb használt"; -$a->strings["Revoke"] = "Visszavonás"; -$a->strings["Revoke All"] = "Összes visszavonása"; -$a->strings["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."] = "Ha új alkalmazásfüggő jelszót állít elő, akkor azonnal fel kell használnia. Akkor lesz megjelenítve Önnek, miután előállította azt."; -$a->strings["Generate new app-specific password"] = "Új alkalmazásfüggő jelszó előállítása"; -$a->strings["Friendiqa on my Fairphone 2..."] = "Friendiqa a Fairphone 2 készülékemen…"; -$a->strings["Generate"] = "Előállítás"; -$a->strings["New recovery codes successfully generated."] = "Az új visszaszerzési kódok sikeresen előállítva."; -$a->strings["Two-factor recovery codes"] = "Kétlépcsős visszaszerzési kódok"; -$a->strings["

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe spot! If you lose your device and don’t have the recovery codes you will lose access to your account.

"] = "

A visszaszerzési kódok használhatók a fiókjához való hozzáféréséhez abban az esetben, ha elveszti a hozzáférést az eszközéhez, és nem tud kétlépcsős hitelesítési kódokat fogadni.

Tegye ezeket biztonságos helyre! Ha elveszti az eszközét és nincsenek meg a visszaszerzési kódjai, akkor el fogja veszíteni a fiókjához való hozzáférést.

"; -$a->strings["When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore."] = "Ha új visszaszerzési kódokat állít elő, akkor le kell másolnia az új kódokat. A régi kódjai többé nem fognak működni."; -$a->strings["Generate new recovery codes"] = "Új visszaszerzési kódok előállítása"; -$a->strings["Next: Verification"] = "Következő: ellenőrzés"; -$a->strings["Trusted browsers successfully removed."] = "A megbízható böngészők sikeresen eltávolítva."; -$a->strings["Trusted browser successfully removed."] = "A megbízható böngésző sikeresen eltávolítva."; -$a->strings["Two-factor Trusted Browsers"] = "Kétlépcsős megbízható böngészők"; -$a->strings["Trusted browsers are individual browsers you chose to skip two-factor authentication to access Friendica. Please use this feature sparingly, as it can negate the benefit of two-factor authentication."] = "A megbízható böngészők azok az egyéni böngészők, amelyeknél a kétlépcsős hitelesítés kihagyását választotta a Friendica alkalmazáshoz való hozzáféréshez. Lehetőleg mellőzze ennek a funkciónak a használatát, mivel ez megszüntetheti a kétlépcsős hitelesítés előnyeit."; -$a->strings["Device"] = "Eszköz"; -$a->strings["OS"] = "Operációs rendszer"; -$a->strings["Browser"] = "Böngésző"; -$a->strings["Trusted"] = "Megbízható"; -$a->strings["Last Use"] = "Utolsó használat"; -$a->strings["Remove"] = "Eltávolítás"; -$a->strings["Remove All"] = "Összes eltávolítása"; -$a->strings["Profile Photos"] = "Profilfényképek"; -$a->strings["Image size reduction [%s] failed."] = "A kép méretének csökkentése [%s] sikertelen."; -$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Töltse újra az oldalt a Shift billentyű lenyomása közben, vagy törölje a böngésző gyorsítótárát, ha az új fénykép nem jelenik meg azonnal."; -$a->strings["Unable to process image"] = "Nem lehet feldolgozni a képet"; -$a->strings["Photo not found."] = "A fénykép nem található."; -$a->strings["Profile picture successfully updated."] = "A profilfénykép sikeresen frissítve."; -$a->strings["Crop Image"] = "Kép levágása"; -$a->strings["Please adjust the image cropping for optimum viewing."] = "Igazítsa a kép levágását az optimális megtekintéshez."; -$a->strings["Use Image As Is"] = "Kép használata, ahogy van"; -$a->strings["Missing uploaded image."] = "Hiányzó feltöltött kép."; -$a->strings["Image exceeds size limit of %s"] = "A kép meghaladja a beállított %s méretkorlátot"; -$a->strings["Unable to process image."] = "Nem lehet feldolgozni a képet."; -$a->strings["Image upload failed."] = "A kép feltöltése sikertelen."; -$a->strings["Profile Picture Settings"] = "Profilfénykép beállításai"; -$a->strings["Current Profile Picture"] = "Jelenlegi profilfénykép"; -$a->strings["Upload Profile Picture"] = "Profilfénykép feltöltése"; -$a->strings["Upload Picture:"] = "Fénykép feltöltése:"; -$a->strings["Upload"] = "Feltöltés"; -$a->strings["or"] = "vagy"; -$a->strings["skip this step"] = "ezen lépés kihagyása"; -$a->strings["select a photo from your photo albums"] = "fénykép kiválasztása a fényképalbumából"; -$a->strings["Profile Name is required."] = "A profil neve kötelező."; -$a->strings["Profile couldn't be updated."] = "A profilt nem sikerült frissíteni."; -$a->strings["Label:"] = "Címke:"; -$a->strings["Value:"] = "Érték:"; -$a->strings["Field Permissions"] = "Mező jogosultságai"; -$a->strings["(click to open/close)"] = "(kattintson a megnyitáshoz vagy bezáráshoz)"; -$a->strings["Add a new profile field"] = "Új profilmező hozzáadása"; -$a->strings["Profile Actions"] = "Profilműveletek"; -$a->strings["Edit Profile Details"] = "Profil részleteinek szerkesztése"; -$a->strings["Change Profile Photo"] = "Profilfénykép megváltoztatása"; -$a->strings["Profile picture"] = "Profilfénykép"; -$a->strings["Location"] = "Hely"; -$a->strings["Custom Profile Fields"] = "Egyéni profilmezők"; -$a->strings["Display name:"] = "Megjelenített név:"; -$a->strings["Street Address:"] = "Utca, házszám:"; -$a->strings["Locality/City:"] = "Helység vagy város:"; -$a->strings["Region/State:"] = "Régió vagy állam:"; -$a->strings["Postal/Zip Code:"] = "Irányítószám:"; -$a->strings["Country:"] = "Ország:"; -$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) cím:"; -$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Az XMPP-cím továbbításra kerül a partnereinek, hogy követni tudják Önt."; -$a->strings["Homepage URL:"] = "Honlap URL:"; -$a->strings["Public Keywords:"] = "Nyilvános kulcsszavak:"; -$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Lehetséges ismerősök ajánlásához lesz használva, mások is láthatják)"; -$a->strings["Private Keywords:"] = "Személyes kulcsszavak:"; -$a->strings["(Used for searching profiles, never shown to others)"] = "(Profilok kereséséhez lesz használva, sosem látható másoknak)"; -$a->strings["

Custom fields appear on your profile page.

\n\t\t\t\t

You can use BBCodes in the field values.

\n\t\t\t\t

Reorder by dragging the field title.

\n\t\t\t\t

Empty the label field to remove a custom field.

\n\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.

"] = "

Az egyéni mezők a profiloldalán jelennek meg.

\n\t\t\t\t

Használhat BBCode formázásokat a mező értékeiben.

\n\t\t\t\t

Átrendezheti a mező címének húzásával.

\n\t\t\t\t

Törölje ki a címkemezőt egy egyéni mező eltávolításához.

\n\t\t\t\t

A nem nyilvános mezőket csak a kijelölt Friendica partnerek vagy a kijelölt csoportban lévő Friendica partnerek láthatják.

"; -$a->strings["Delegation successfully granted."] = "A meghatalmazás sikeresen megadva."; -$a->strings["Parent user not found, unavailable or password doesn't match."] = "A fölérendelt felhasználó nem található, nem érhető el vagy a jelszó nem egyezik."; -$a->strings["Delegation successfully revoked."] = "A meghatalmazás sikeresen visszavonva."; -$a->strings["Delegated administrators can view but not change delegation permissions."] = "A meghatalmazott adminisztrátorok megtekinthetik, de nem változtathatják meg a meghatalmazás jogosultságait."; -$a->strings["Delegate user not found."] = "A meghatalmazott felhasználó nem található."; -$a->strings["No parent user"] = "Nincs fölérendelt felhasználó"; -$a->strings["Parent User"] = "Fölérendelt felhasználó"; -$a->strings["Additional Accounts"] = "További fiókok"; -$a->strings["Register additional accounts that are automatically connected to your existing account so you can manage them from this account."] = "További fiókok regisztrálása, amelyek automatikusan hozzá vannak kapcsolva a meglévő fiókjához, így ebből a fiókból kezelheti azokat."; -$a->strings["Register an additional account"] = "További fiók regisztrálása"; -$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "A fölérendelt felhasználóknak teljes ellenőrzése van ezen fiók fölött, beleértve a fiók beállításait is. Ellenőrizze még egyszer, hogy kinek ad hozzáférést."; -$a->strings["Manage Accounts"] = "Fiókok kezelése"; -$a->strings["Delegates"] = "Meghatalmazottak"; -$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "A meghatalmazottak képesek ezen fiókot vagy oldalt minden szempontból kezelni, kivéve az alapvető fiókbeállításokat. Ne hatalmazzon meg senki mást a személyes fiókja kezeléséhez, akiben nem bízik meg teljes mértékben."; -$a->strings["Existing Page Delegates"] = "Meglévő oldalmeghatalmazottak"; -$a->strings["Potential Delegates"] = "Lehetséges meghatalmazottak"; -$a->strings["Add"] = "Hozzáadás"; -$a->strings["No entries."] = "Nincsenek bejegyzések."; -$a->strings["Export account"] = "Fiók exportálása"; -$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Fiókinformációk és partnerek exportálása. A fiókjáról történő biztonsági mentés készítéséhez és/vagy egy másik kiszolgálóra való áthelyezéséhez használja ezt."; -$a->strings["Export all"] = "Összes exportálása"; -$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)"] = "Fiókinformációk, partnerek és az összes elem exportálása JSON-formátumban. nagyon nagy fájl is lehet, és sokáig eltarthat. A fiókja teljes biztonsági mentésének elkészítéséhez használja ezt (a fényképek nem lesznek exportálva)."; -$a->strings["Export Contacts to CSV"] = "Partnerek exportálása CSV-fájlba"; -$a->strings["Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon."] = "A követett fiókok listájának exportálása CSV-fájlként. Kompatibilis például a Mastodonnal."; -$a->strings["Export personal data"] = "Személyes adatok exportálása"; -$a->strings["Lock feature %s"] = "%s funkció zárolása"; -$a->strings["Manage Additional Features"] = "További funkciók kezelése"; +$a->strings["Username should be at most %s character."] = [ + 0 => "A felhasználónévnek legfeljebb %s karakternek kell lennie.", + 1 => "A felhasználónévnek legfeljebb %s karakternek kell lennie.", +]; +$a->strings["That doesn't appear to be your full (First Last) name."] = "Úgy tűnik, hogy ez nem a teljes neve (vezetéknév és keresztnév)."; +$a->strings["Your email domain is not among those allowed on this site."] = "Az e-mail tartománya nem tartozik azok közé, amelyek megengedettek ezen az oldalon."; +$a->strings["Not a valid email address."] = "Nem érvényes e-mail-cím."; +$a->strings["The nickname was blocked from registration by the nodes admin."] = "A becenevet a csomópont adminisztrátora tiltotta a regisztrációtól."; +$a->strings["Cannot use that email."] = "Nem lehet használni azt az e-mail-címet."; +$a->strings["Your nickname can only contain a-z, 0-9 and _."] = "A becenév csak a-z, 0-9 és _ karaktereket tartalmazhat."; +$a->strings["Nickname is already registered. Please choose another."] = "A becenév már regisztrálva van. Válasszon egy másikat."; +$a->strings["An error occurred during registration. Please try again."] = "Hiba történt a regisztráció során. Próbálja újra."; +$a->strings["An error occurred creating your default profile. Please try again."] = "Hiba történt az alapértelmezett profil létrehozásakor. Próbálja újra."; +$a->strings["An error occurred creating your self contact. Please try again."] = "Hiba történt a saját partnere létrehozásakor. Próbálja újra."; +$a->strings["Friends"] = "Ismerősök"; +$a->strings["An error occurred creating your default contact group. Please try again."] = "Hiba történt az alapértelmezett partnercsoport létrehozásakor. Próbálja újra."; +$a->strings["\n\t\tDear %1\$s,\n\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\tKedves %1\$s!\n\t\t\tA(z) %2\$s adminisztrátora beállított egy fiókot Önnek."; +$a->strings["\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%1\$s\n\t\tLogin Name:\t\t%2\$s\n\t\tPassword:\t\t%3\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\t\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\tThank you and welcome to %4\$s."] = "\n\t\tA bejelentkezés részletei a következők:\n\n\t\tOldal címe:\t%1\$s\n\t\tBejelentkezési név:\t\t%2\$s\n\t\tJelszó:\t\t%3\$s\n\n\t\tA jelszavát a fiókja „Beállítások” oldalán változtathatja meg, miután\n\t\tbejelentkezett.\n\n\t\tSzánjon pár percet a többi fiókbeállítás felülvizsgálatára is azon az oldalon.\n\n\t\tÉrdemes lehet néhány alapvető információt is hozzáadnia az\n\t\talapértelmezett profiljához (a „Profilok” oldalon), azért hogy más\n\t\temberek egyszerűen megtalálják Önt.\n\n\t\tAzt ajánljuk, hogy állítsa be a teljes nevét, adjon hozzá\n\t\tprofilfényképet, adjon hozzá néhány profil „kulcsszót” (nagyon hasznos\n\t\túj ismerősök kereséséhez), valamint talán azt, hogy mely országban él,\n\t\tha nem szeretne annál pontosabbat megadni.\n\n\t\tTeljes mértékben tiszteletben tartjuk az adatvédelemmel kapcsolatos\n\t\tjogát, és ezen elemek egyike sem kötelező. Ha még új itt, és senkit\n\t\tsem ismer, akkor ezek segíthetnek Önnek néhány új és érdekes\n\t\tismerőst találni.\n\n\t\tHa bármikor törölni szeretné a fiókját, akkor megteheti azt a\n\t\tkövetkező címen: %1\$s/removeme\n\n\t\t\tKöszönjük, és üdvözöljük a %4\$s oldalon."; +$a->strings["Registration details for %s"] = "Regisztrációs részletek ehhez: %s"; +$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%4\$s\n\t\t\tPassword:\t\t%5\$s\n\t\t"] = "\n\t\t\tKedves %1\$s!\n\t\t\t\tKöszönjük, hogy regisztrált itt: %2\$s. A fiókja adminisztrátori jóváhagyásra vár.\n\n\t\t\tA bejelentkezés részletei a következők:\n\n\t\t\tOldal címe:\t%3\$s\n\t\t\tBejelentkezési név:\t\t%4\$s\n\t\t\tJelszó:\t\t%5\$s\n\t\t"; +$a->strings["Registration at %s"] = "Regisztráció itt: %s"; +$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t\t"] = "\n\t\t\t\tKedves %1\$s!\n\t\t\t\tKöszönjük, hogy regisztrált itt: %2\$s. A fiókja létrejött.\n\t\t\t"; +$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = "\n\t\t\tA bejelentkezés részletei a következők:\n\n\t\t\tOldal címe:\t%3\$s\n\t\t\tBejelentkezési név:\t\t%1\$s\n\t\t\tJelszó:\t\t%5\$s\n\n\t\t\tA jelszavát a fiókja „Beállítások” oldalán változtathatja meg, miután\n\t\t\tbejelentkezett.\n\n\t\t\tSzánjon pár percet a többi fiókbeállítás felülvizsgálatára is azon az oldalon.\n\n\t\t\tÉrdemes lehet néhány alapvető információt is hozzáadnia az\n\t\t\talapértelmezett profiljához (a „Profilok” oldalon), azért hogy más\n\t\t\temberek egyszerűen megtalálják Önt.\n\n\t\t\tAzt ajánljuk, hogy állítsa be a teljes nevét, adjon hozzá\n\t\t\tprofilfényképet, adjon hozzá néhány profil „kulcsszót” (nagyon hasznos\n\t\t\túj ismerősök kereséséhez), valamint talán azt, hogy mely országban él,\n\t\t\tha nem szeretne annál pontosabbat megadni.\n\n\t\t\tTeljes mértékben tiszteletben tartjuk az adatvédelemmel kapcsolatos\n\t\t\tjogát, és ezen elemek egyike sem kötelező. Ha még új itt, és senkit\n\t\t\tsem ismer, akkor ezek segíthetnek Önnek néhány új és érdekes\n\t\t\tismerőst találni.\n\n\t\t\tHa bármikor törölni szeretné a fiókját, akkor megteheti azt a\n\t\t\tkövetkező címen: %3\$s/removeme\n\n\t\t\tKöszönjük, és üdvözöljük a %2\$s oldalon."; +$a->strings["Addon not found."] = "A bővítmény nem található."; +$a->strings["Addon %s disabled."] = "A(z) „%s” bővítmény letiltva."; +$a->strings["Addon %s enabled."] = "A(z) „%s” bővítmény engedélyezve."; +$a->strings["Disable"] = "Letiltás"; +$a->strings["Enable"] = "Engedélyezés"; +$a->strings["Administration"] = "Adminisztráció"; +$a->strings["Addons"] = "Bővítmények"; +$a->strings["Toggle"] = "Átváltás"; +$a->strings["Author: "] = "Szerző: "; +$a->strings["Maintainer: "] = "Karbantartó: "; +$a->strings["Addons reloaded"] = "Bővítmények újratöltve"; +$a->strings["Addon %s failed to install."] = "A(z) „%s” bővítmény telepítése sikertelen."; +$a->strings["Reload active addons"] = "Bekapcsolt bővítmények újratöltése"; +$a->strings["There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"] = "Jelenleg nem érhetők el bővítmények az Ön csomópontján. A hivatalos bővítménytároló megtalálható a %1\$s oldalon, és esetleg egyéb érdekes bővítményeket is találhat a %2\$s címen elérhető nyílt bővítményjegyzékben."; +$a->strings["List of all users"] = "Összes felhasználó listája"; +$a->strings["Active"] = "Aktív"; +$a->strings["List of active accounts"] = "Aktív fiókok listája"; +$a->strings["Pending"] = "Függőben"; +$a->strings["List of pending registrations"] = "Függőben lévő regisztrációk listája"; +$a->strings["Blocked"] = "Tiltva"; +$a->strings["List of blocked users"] = "Tiltott felhasználók listája"; +$a->strings["Deleted"] = "Törölve"; +$a->strings["List of pending user deletions"] = "Függőben lévő felhasználó-törlések listája"; +$a->strings["Private Forum"] = "Személyes fórum"; +$a->strings["Relay"] = "Továbbítás"; +$a->strings["%s contact unblocked"] = [ + 0 => "%s partner tiltása feloldva", + 1 => "%s partner tiltása feloldva", +]; +$a->strings["Remote Contact Blocklist"] = "Távoli partnerek tiltólistája"; +$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "Ez az oldal lehetővé teszi, hogy megakadályozzon egy távoli partnertől származó minden üzenetet, amely elérné a csomópontját."; +$a->strings["Block Remote Contact"] = "Távoli partner tiltása"; +$a->strings["select all"] = "összes kijelölése"; +$a->strings["select none"] = "kijelölés törlése"; +$a->strings["Unblock"] = "Tiltás feloldása"; +$a->strings["No remote contact is blocked from this node."] = "Nincs olyan távoli partner, aki tiltva lenne erről a csomópontról."; +$a->strings["Blocked Remote Contacts"] = "Tiltott távoli partnerek"; +$a->strings["Block New Remote Contact"] = "Új távoli partner tiltása"; +$a->strings["Photo"] = "Fénykép"; +$a->strings["Reason"] = "Indok"; +$a->strings["%s total blocked contact"] = [ + 0 => "összesen %s tiltott partner", + 1 => "összesen %s tiltott partner", +]; +$a->strings["URL of the remote contact to block."] = "A tiltandó távoli partner URL-je."; +$a->strings["Block Reason"] = "Tiltás oka"; +$a->strings["Server domain pattern added to blocklist."] = "A tiltólistához hozzáadott kiszolgáló tartománymintája."; +$a->strings["Blocked server domain pattern"] = "Tiltott kiszolgálótartomány-minta"; +$a->strings["Reason for the block"] = "A tiltás oka"; +$a->strings["Delete server domain pattern"] = "Kiszolgálótartomány-minta törlése"; +$a->strings["Check to delete this entry from the blocklist"] = "Jelölje be a bejegyzés tiltólistából való törléséhez"; +$a->strings["Server Domain Pattern Blocklist"] = "Kiszolgálótartomány-minta tiltólistája"; +$a->strings["This page can be used to define a blocklist of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it."] = "Ez az oldal használható a föderált hálózatból származó azon kiszolgálótartomány-minták tiltólistájának meghatározásához, amelyeknek nem engedélyezett kapcsolatba lépniük az Ön csomópontjával. Minden egyes tartománymintához meg kell adnia az indokot is, hogy miért tiltja azt."; +$a->strings["The list of blocked server domain patterns will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = "A tiltott kiszolgálótartomány-minták listája nyilvánosan elérhetővé lesz téve a /friendica oldalon, azért hogy a kommunikációs problémákat kivizsgáló felhasználók és emberek egyszerűen megtalálják az okot."; +$a->strings["

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

\n
    \n\t
  • *: Any number of characters
  • \n\t
  • ?: Any single character
  • \n\t
  • [<char1><char2>...]: char1 or char2
  • \n
"] = "

A kiszolgálótartomány-minta szintaxisa kis- és nagybetűkre nem érzékeny parancsértelmező helyettesítő karakter, amely a következő különleges karaktereket tartalmazza:

\n
    \n\t
  • *: bármennyi számú karakter
  • \n\t
  • ?: bármilyen önálló karakter
  • \n\t
  • [<karakter1><karakter2>...]: karakter1 vagy karakter2
  • \n
"; +$a->strings["Add new entry to block list"] = "Új bejegyzés hozzáadása a tiltólistához"; +$a->strings["Server Domain Pattern"] = "Kiszolgálótartomány-minta"; +$a->strings["The domain pattern of the new server to add to the block list. Do not include the protocol."] = "A tiltólistához hozzáadandó új kiszolgáló tartományának mintája. Ne tegye bele a protokollt."; +$a->strings["Block reason"] = "Tiltás oka"; +$a->strings["The reason why you blocked this server domain pattern."] = "Az ok, amiért kitiltotta ezt a kiszolgálótartomány-mintát."; +$a->strings["Add Entry"] = "Bejegyzés hozzáadása"; +$a->strings["Save changes to the blocklist"] = "Változtatások mentése a tiltólistába"; +$a->strings["Current Entries in the Blocklist"] = "Jelenlegi bejegyzések a tiltólistán"; +$a->strings["Delete entry from blocklist"] = "Bejegyzés törlése a tiltólistáról"; +$a->strings["Delete entry from blocklist?"] = "Törli a bejegyzést a tiltólistáról?"; $a->strings["Update has been marked successful"] = "A frissítés sikeresen meg lett jelölve"; $a->strings["Database structure update %s was successfully applied."] = "A(z) %s adatbázisszerkezet-frissítés sikeresen alkalmazva."; $a->strings["Executing of database structure update %s failed with error: %s"] = "A(z) %s adatbázisszerkezet-frissítés végrehajtása meghiúsult ezzel a hibával: %s"; @@ -1002,69 +1218,21 @@ $a->strings["Failed Updates"] = "Sikertelen frissítések"; $a->strings["This does not include updates prior to 1139, which did not return a status."] = "Ez nem tartalmazza az 1139 előtti frissítéseket, amelyek nem adtak vissza állapotot."; $a->strings["Mark success (if update was manually applied)"] = "Megjelölés sikeresként (ha a frissítés kézzel lett alkalmazva)"; $a->strings["Attempt to execute this update step automatically"] = "Próbálja meg automatikusan végrehajtani ezt a frissítési lépést"; -$a->strings["Addon not found."] = "A bővítmény nem található."; -$a->strings["Addon %s disabled."] = "A(z) „%s” bővítmény letiltva."; -$a->strings["Addon %s enabled."] = "A(z) „%s” bővítmény engedélyezve."; -$a->strings["Disable"] = "Letiltás"; -$a->strings["Enable"] = "Engedélyezés"; -$a->strings["Administration"] = "Adminisztráció"; -$a->strings["Toggle"] = "Átváltás"; -$a->strings["Author: "] = "Szerző: "; -$a->strings["Maintainer: "] = "Karbantartó: "; -$a->strings["Addons reloaded"] = "Bővítmények újratöltve"; -$a->strings["Addon %s failed to install."] = "A(z) „%s” bővítmény telepítése sikertelen."; -$a->strings["Reload active addons"] = "Bekapcsolt bővítmények újratöltése"; -$a->strings["There are currently no addons available on your node. You can find the official addon repository at %1\$s and might find other interesting addons in the open addon registry at %2\$s"] = "Jelenleg nem érhetők el bővítmények az Ön csomópontján. A hivatalos bővítménytároló megtalálható a %1\$s oldalon, és esetleg egyéb érdekes bővítményeket is találhat a %2\$s címen elérhető nyílt bővítményjegyzékben."; -$a->strings["Error trying to open %1\$s log file.\\r\\n
Check to see if file %1\$s exist and is readable."] = "Hiba a(z) %1\$s naplófájl megnyitási kísérlete során.\\r\\n
Ellenőrizze, hogy a(z) „%1\$s” fájl létezik-e és olvasható-e."; -$a->strings["Couldn't open %1\$s log file.\\r\\n
Check to see if file %1\$s is readable."] = "Nem sikerült megnyitni a(z) %1\$s naplófájlt.\\r\\n
Ellenőrizze, hogy a(z) „%1\$s” fájl olvasható-e."; -$a->strings["The logfile '%s' is not writable. No logging possible"] = "A(z) „%s” naplófájl nem írható. A naplózás nem lehetséges."; -$a->strings["PHP log currently enabled."] = "A PHP-naplózás jelenleg engedélyezve van."; -$a->strings["PHP log currently disabled."] = "A PHP-naplózás jelenleg le van tiltva."; -$a->strings["Clear"] = "Törlés"; -$a->strings["Enable Debugging"] = "Hibakeresés engedélyezése"; -$a->strings["Log file"] = "Naplófájl"; -$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Írhatónak kell lennie a webkiszolgáló által. Relatívan kell megadni a Friendica felső szintű könyvtárához képest."; -$a->strings["Log level"] = "Naplózási szint"; -$a->strings["PHP logging"] = "PHP-naplózás"; -$a->strings["To temporarily enable logging of PHP errors and warnings you can prepend the following to the index.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "A PHP hibák és figyelmeztetések naplózásának átmeneti engedélyezéséhez beszúrhatja a következőket a telepítése index.php fájljának elejére. Az „error_log” sorban beállított fájlnév relatív a Friendica felső szintű könyvtárához képest, és írhatónak kell lennie a webkiszolgáló által. A „log_errors” és a „display_errors” beállítások „1” értéke a beállítások engedélyezéséhez kell. Állítsa „0” értékre a letiltásukhoz."; -$a->strings["Inspect Deferred Worker Queue"] = "Elhalasztott feldolgozó várakozási sorának vizsgálata"; -$a->strings["This page lists the deferred worker jobs. This are jobs that couldn't be executed at the first time."] = "Ez az oldal az elhalasztott feldolgozó feladatokat sorolja fel. Ezek azok a feladatok, amelyeket nem sikerült végrehajtani első alkalommal."; -$a->strings["Inspect Worker Queue"] = "Feldolgozó várakozási sorának vizsgálata"; -$a->strings["This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install."] = "Ez az oldal a jelenleg sorba állított feldolgozó feladatokat sorolja fel. Ezeket a feladatokat a feldolgozó cron-feladata kezeli, amelyet a telepítés során állított be."; -$a->strings["ID"] = "Azonosító"; -$a->strings["Job Parameters"] = "Feladat paraméterei"; -$a->strings["Created"] = "Létrehozva"; -$a->strings["Priority"] = "Prioritás"; -$a->strings["Template engine (%s) error: %s"] = "Sablonmotor (%s) hiba: %s"; -$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"] = "Az adatbázisa még mindig MyISAM táblákkal fut. Meg kell változtatnia a motor típusát InnoDB-re. Mivel a Friendica a jövőben olyan funkciókat fog használni, amely csak InnoDB használatával érhető el, ezért meg kell változtatnia! Nézze meg ezt az útmutatót, amely hasznos lehet a táblamotorok átalakításához. Használhatja a Friendica telepítésének php bin/console.php dbstructure toinnodb parancsát is az automatikus átalakításhoz.
"; -$a->strings["Your DB still runs with InnoDB tables in the Antelope file format. You should change the file format to Barracuda. Friendica is using features that are not provided by the Antelope format. See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"] = "Az adatbázisa még mindig Antelope fájlformátumban lévő InnoDB táblákkal fut. Meg kell változtatnia a fájlformátumot Barracudára. A Friendica olyan funkciókat használ, amelyeket az Antelope fájlformátum nem biztosít. Nézze meg ezt az útmutatót, amely hasznos lehet a táblamotorok átalakításához. Használhatja a Friendica telepítésének php bin/console.php dbstructure toinnodb parancsát is az automatikus átalakításhoz.
"; -$a->strings["Your table_definition_cache is too low (%d). This can lead to the database error \"Prepared statement needs to be re-prepared\". Please set it at least to %d. See here for more information.
"] = "A table_definition_cache értéke túl alacsony (%d). Ez a „Prepared statement needs to be re-prepared” adatbázishibához vezethet. Állítsa legalább %d értékre. További információkért nézze meg ezt.
"; -$a->strings["There is a new version of Friendica available for download. Your current version is %1\$s, upstream version is %2\$s"] = "Elérhető a Friendica új verziója a letöltéshez. A jelenlegi verziója %1\$s, a távoli verzió %2\$s."; -$a->strings["The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear."] = "Az adatbázis frissítése sikertelen. Futtassa a „php bin/console.php dbstructure update” parancsot a parancssorból, és nézze meg a hibákat, amelyek esetleg megjelennek."; -$a->strings["The last update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear. (Some of the errors are possibly inside the logfile.)"] = "A legutóbbi frissítés sikertelen. Futtassa a „php bin/console.php dbstructure update” parancsot a parancssorból, és nézze meg a hibákat, amelyek esetleg megjelennek (néhány hiba valószínűleg a naplófájlban lesz)."; -$a->strings["The worker was never executed. Please check your database structure!"] = "A feldolgozó sosem lett végrehajtva. Ellenőrizze az adatbázis szerkezetét!"; -$a->strings["The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings."] = "Az utolsó feldolgozó-végrehajtás ideje %s volt (UTC szerint). Ez régebbi mint egy óra. Ellenőrizze a cron-feladat beállításait."; -$a->strings["Friendica's configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your config from .htconfig.php. See the Config help page for help with the transition."] = "A Friendica beállításai most a „config/local.config.php” fájlban vannak eltárolva. Másolja le a „config/local-sample.config.php” fájlt, és helyezze át a beállításokat a .htconfig.php fájlból. Az átvitelhez való segítségért nézze meg a beállítások súgóoldalát."; -$a->strings["Friendica's configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your config from config/local.ini.php. See the Config help page for help with the transition."] = "A Friendica beállításai most a „config/local.config.php” fájlban vannak eltárolva. Másolja le a „config/local-sample.config.php” fájlt, és helyezze át a beállításokat a config/local.ini.php fájlból. Az átvitelhez való segítségért nézze meg a beállítások súgóoldalát."; -$a->strings["%s is not reachable on your system. This is a severe configuration issue that prevents server to server communication. See the installation page for help."] = "A %s nem érhető el a rendszeréről. Ez súlyos beállítási probléma, amely megakadályozza a kiszolgálók közti kommunikációt. Nézze meg a telepítési oldalt a segítségért."; -$a->strings["The logfile '%s' is not usable. No logging possible (error: '%s')"] = "A(z) „%s” naplófájl nem használható. Nem lehetséges a naplózás (hiba: „%s”)."; -$a->strings["The debug logfile '%s' is not usable. No logging possible (error: '%s')"] = "A(z) „%s” hibakeresési naplófájl nem használható. Nem lehetséges a naplózás (hiba: „%s”)."; -$a->strings["Friendica's system.basepath was updated from '%s' to '%s'. Please remove the system.basepath from your db to avoid differences."] = "A Friendica „system.basepath” beállítása frissítve lett „%s” értékről „%s” értékre. Távolítsa el a „system.basepath” beállítást az adatbázisából az eltérések elkerüléséhez."; -$a->strings["Friendica's current system.basepath '%s' is wrong and the config file '%s' isn't used."] = "A Friendica jelenlegi „system.basepath” értéke („%s”) hibás, és a(z) „%s” beállítófájl nincs használva."; -$a->strings["Friendica's current system.basepath '%s' is not equal to the config file '%s'. Please fix your configuration."] = "A Friendica jelenlegi „system.basepath” értéke („%s”) nem azonos a(z) „%s” beállítófájlban lévővel. Javítsa a beállításokat."; -$a->strings["Normal Account"] = "Normál fiók"; -$a->strings["Automatic Follower Account"] = "Automatikusan követő fiók"; -$a->strings["Public Forum Account"] = "Nyilvános fórum fiók"; -$a->strings["Automatic Friend Account"] = "Automatikus ismerős fiók"; -$a->strings["Blog Account"] = "Blog fiók"; -$a->strings["Private Forum Account"] = "Személyes fórumfiók"; -$a->strings["Message queues"] = "Üzenet várakozási sorai"; -$a->strings["Server Settings"] = "Kiszolgálóbeállítások"; -$a->strings["Summary"] = "Összefoglaló"; -$a->strings["Registered users"] = "Regisztrált felhasználók"; -$a->strings["Pending registrations"] = "Függőben lévő regisztrációk"; -$a->strings["Version"] = "Verzió"; -$a->strings["Active addons"] = "Bekapcsolt bővítmények"; +$a->strings["Lock feature %s"] = "%s funkció zárolása"; +$a->strings["Manage Additional Features"] = "További funkciók kezelése"; +$a->strings["Other"] = "Egyéb"; +$a->strings["unknown"] = "ismeretlen"; +$a->strings["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."] = "Ez az oldal néhány számadatot nyújt a föderált közösségi hálózat azon ismert részéhez, amelynek része az Ön Friendica csomópontja. Ezek a számok nem teljesek, hanem csak a hálózat azon részét tükrözik, amelyről a csomópontja tud."; +$a->strings["Federation Statistics"] = "Föderációs statisztikák"; +$a->strings["Currently this node is aware of %d nodes with %d registered users from the following platforms:"] = "Jelenleg erről a csomópontról %d csomópontnak van tudomása %d regisztrált felhasználóval a következő platformokról:"; +$a->strings["Item marked for deletion."] = "Az elem megjelölve törlésre."; +$a->strings["Delete Item"] = "Elem törlése"; +$a->strings["Delete this Item"] = "Az elem törlése"; +$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = "Ezen az oldalon törölhet egy elemet a csomópontjáról. Ha az elem egy felső szintű beküldés, akkor a teljes szál törlésre fog kerülni."; +$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = "Tudnia kell az elem GUID értékét. Ezt megtalálhatja például a megjelenített URL-re tekintve. A http://example.com/display/123456 utolsó része a GUID, itt az 123456."; +$a->strings["GUID"] = "GUID"; +$a->strings["The GUID of the item you want to delete."] = "Annak az elemnek GUID értéke, amelyet törölni szeretne."; +$a->strings["Item Source"] = "Elem forrása"; $a->strings["Item Guid"] = "Elem GUID értéke"; $a->strings["Item Id"] = "Elemazonosító"; $a->strings["Item URI"] = "Elem URI"; @@ -1075,15 +1243,34 @@ $a->strings["Term"] = "Kifejezés"; $a->strings["URL"] = "URL"; $a->strings["Mention"] = "Említés"; $a->strings["Implicit Mention"] = "Implicit említés"; -$a->strings["Item marked for deletion."] = "Az elem megjelölve törlésre."; -$a->strings["Delete this Item"] = "Az elem törlése"; -$a->strings["On this page you can delete an item from your node. If the item is a top level posting, the entire thread will be deleted."] = "Ezen az oldalon törölhet egy elemet a csomópontjáról. Ha az elem egy felső szintű beküldés, akkor a teljes szál törlésre fog kerülni."; -$a->strings["You need to know the GUID of the item. You can find it e.g. by looking at the display URL. The last part of http://example.com/display/123456 is the GUID, here 123456."] = "Tudnia kell az elem GUID értékét. Ezt megtalálhatja például a megjelenített URL-re tekintve. A http://example.com/display/123456 utolsó része a GUID, itt az 123456."; -$a->strings["GUID"] = "GUID"; -$a->strings["The GUID of the item you want to delete."] = "Annak az elemnek GUID értéke, amelyet törölni szeretne."; +$a->strings["Source"] = "Forrás"; +$a->strings["The logfile '%s' is not writable. No logging possible"] = "A(z) „%s” naplófájl nem írható. A naplózás nem lehetséges."; +$a->strings["PHP log currently enabled."] = "A PHP-naplózás jelenleg engedélyezve van."; +$a->strings["PHP log currently disabled."] = "A PHP-naplózás jelenleg le van tiltva."; +$a->strings["Logs"] = "Naplók"; +$a->strings["Clear"] = "Törlés"; +$a->strings["Enable Debugging"] = "Hibakeresés engedélyezése"; +$a->strings["Log file"] = "Naplófájl"; +$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "Írhatónak kell lennie a webkiszolgáló által. Relatívan kell megadni a Friendica felső szintű könyvtárához képest."; +$a->strings["Log level"] = "Naplózási szint"; +$a->strings["PHP logging"] = "PHP-naplózás"; +$a->strings["To temporarily enable logging of PHP errors and warnings you can prepend the following to the index.php file of your installation. The filename set in the 'error_log' line is relative to the friendica top-level directory and must be writeable by the web server. The option '1' for 'log_errors' and 'display_errors' is to enable these options, set to '0' to disable them."] = "A PHP hibák és figyelmeztetések naplózásának átmeneti engedélyezéséhez beszúrhatja a következőket a telepítése index.php fájljának elejére. Az „error_log” sorban beállított fájlnév relatív a Friendica felső szintű könyvtárához képest, és írhatónak kell lennie a webkiszolgáló által. A „log_errors” és a „display_errors” beállítások „1” értéke a beállítások engedélyezéséhez kell. Állítsa „0” értékre a letiltásukhoz."; +$a->strings["Error trying to open %1\$s log file.\\r\\n
Check to see if file %1\$s exist and is readable."] = "Hiba a(z) %1\$s naplófájl megnyitási kísérlete során.\\r\\n
Ellenőrizze, hogy a(z) „%1\$s” fájl létezik-e és olvasható-e."; +$a->strings["Couldn't open %1\$s log file.\\r\\n
Check to see if file %1\$s is readable."] = "Nem sikerült megnyitni a(z) %1\$s naplófájlt.\\r\\n
Ellenőrizze, hogy a(z) „%1\$s” fájl olvasható-e."; +$a->strings["View Logs"] = "Naplók megtekintése"; +$a->strings["Inspect Deferred Worker Queue"] = "Elhalasztott feldolgozó várakozási sorának vizsgálata"; +$a->strings["This page lists the deferred worker jobs. This are jobs that couldn't be executed at the first time."] = "Ez az oldal az elhalasztott feldolgozó feladatokat sorolja fel. Ezek azok a feladatok, amelyeket nem sikerült végrehajtani első alkalommal."; +$a->strings["Inspect Worker Queue"] = "Feldolgozó várakozási sorának vizsgálata"; +$a->strings["This page lists the currently queued worker jobs. These jobs are handled by the worker cronjob you've set up during install."] = "Ez az oldal a jelenleg sorba állított feldolgozó feladatokat sorolja fel. Ezeket a feladatokat a feldolgozó cron-feladata kezeli, amelyet a telepítés során állított be."; +$a->strings["ID"] = "Azonosító"; +$a->strings["Command"] = "Parancs"; +$a->strings["Job Parameters"] = "Feladat paraméterei"; +$a->strings["Priority"] = "Prioritás"; $a->strings["Can not parse base url. Must have at least ://"] = "Nem lehet feldolgozni az alap URL-t. Legalább :// értékkel kell rendelkeznie."; $a->strings["Relocation started. Could take a while to complete."] = "Az áthelyezés elkezdődött. Eltarthat egy ideig, mire befejeződik."; $a->strings["Invalid storage backend setting value."] = "Érvénytelen tároló-háttérprogram beállítási érték."; +$a->strings["No special theme for mobile devices"] = "Nincs különleges téma a mobil eszközökhöz"; +$a->strings["%s - (Experimental)"] = "%s – (kísérleti)"; $a->strings["No community page for local users"] = "Nincs közösségi oldal a helyi felhasználókhoz"; $a->strings["No community page"] = "Nincs közösségi oldal"; $a->strings["Public postings from users of this site"] = "Nyilvános beküldések ezen oldal felhasználóitól"; @@ -1093,6 +1280,9 @@ $a->strings["Multi user instance"] = "Többfelhasználós példány"; $a->strings["Closed"] = "Lezárva"; $a->strings["Requires approval"] = "Jóváhagyást igényel"; $a->strings["Open"] = "Nyitott"; +$a->strings["No SSL policy, links will track page SSL state"] = "Nincs SSL irányelv, a hivatkozások követik az oldal SSL állapotát"; +$a->strings["Force all links to use SSL"] = "Az összes hivatkozás kényszerítése SSL használatára"; +$a->strings["Self-signed certificate, use SSL for local links only (discouraged)"] = "Önaláírt tanúsítvány, SSL használata csak helyi hivatkozásoknál (nem ajánlott)"; $a->strings["Don't check"] = "Ne ellenőrizze"; $a->strings["check the stable version"] = "a stabil verzió ellenőrzése"; $a->strings["check the development version"] = "a fejlesztői verzió ellenőrzése"; @@ -1100,14 +1290,19 @@ $a->strings["none"] = "nincs"; $a->strings["Local contacts"] = "Helyi partnerek"; $a->strings["Interactors"] = "Interaktorok"; $a->strings["Database (legacy)"] = "Adatbázis (örökölt)"; +$a->strings["Site"] = "Oldal"; $a->strings["General Information"] = "Általános információk"; $a->strings["Republish users to directory"] = "Felhasználók újra közzé tétele a könyvtárba"; +$a->strings["Registration"] = "Regisztráció"; $a->strings["File upload"] = "Fájlfeltöltés"; $a->strings["Policies"] = "Irányelvek"; $a->strings["Auto Discovered Contact Directory"] = "Automatikusan felfedezett partnerkönyvtár"; $a->strings["Performance"] = "Teljesítmény"; $a->strings["Worker"] = "Feldolgozó"; $a->strings["Message Relay"] = "Üzenettovábbítás"; +$a->strings["Use the command \"console relay\" in the command line to add or remove relays."] = "Használja a „console relay” parancsot a parancssorban a továbbítók hozzáadásához vagy eltávolításához."; +$a->strings["The system is not subscribed to any relays at the moment."] = "A rendszer jelenleg nincs feliratkozva semmilyen továbbítóra sem."; +$a->strings["The system is currently subscribed to the following relays:"] = "A rendszer jelenleg a következő továbbítókra van feliratkozva:"; $a->strings["Relocate Instance"] = "Példány áthelyezése"; $a->strings["Warning! Advanced function. Could make this server unreachable."] = "Figyelmeztetés! Speciális funkció. Elérhetetlenné teheti a kiszolgálót."; $a->strings["Site name"] = "Oldal neve"; @@ -1128,6 +1323,8 @@ $a->strings["System theme"] = "Rendszer témája"; $a->strings["Default system theme - may be over-ridden by user profiles - Change default theme settings"] = "Alapértelmezett rendszertéma – a felhasználói profilok felülbírálhatják – alapértelmezett témabeállítások megváltoztatása."; $a->strings["Mobile system theme"] = "Mobilrendszer témája"; $a->strings["Theme for mobile devices"] = "Téma a mobil eszközökhöz."; +$a->strings["SSL link policy"] = "SSL-hivatkozás irányelve"; +$a->strings["Determines whether generated links should be forced to use SSL"] = "Meghatározza, hogy az előállított hivatkozásokat kényszeríteni kell-e SSL használatára."; $a->strings["Force SSL"] = "SSL kényszerítése"; $a->strings["Force all Non-SSL requests to SSL - Attention: on some systems it could lead to endless loops."] = "Az összes nem SSL kérés SSL-re kényszerítése – Figyelem: néhány rendszeren végtelen hurkokat eredményezhet."; $a->strings["Hide help entry from navigation menu"] = "Súgó bejegyzés elrejtése a navigációs menüből"; @@ -1255,15 +1452,12 @@ $a->strings["New base url"] = "Új alap URL"; $a->strings["Change base url for this server. Sends relocate message to all Friendica and Diaspora* contacts of all users."] = "A kiszolgáló alap URL-ének megváltoztatása. Áthelyezési üzenetet küld az összes felhasználó minden Friendica és Diaspora* partnerének."; $a->strings["RINO Encryption"] = "RINO titkosítás"; $a->strings["Encryption layer between nodes."] = "Titkosítási réteg a csomópontok között."; +$a->strings["Disabled"] = "Letiltva"; $a->strings["Enabled"] = "Engedélyezve"; $a->strings["Maximum number of parallel workers"] = "Párhuzamos feldolgozók legnagyobb száma"; $a->strings["On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d."] = "Osztott tárhelyszolgáltatóknál állítsa ezt %d értékre. Nagyobb rendszereknél érdemes a számot %d értékre állítani. Az alapértelmezett érték %d."; $a->strings["Enable fastlane"] = "Prioritásos sor engedélyezése"; $a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "Ha engedélyezve van, akkor a prioritásos sor mechanizmus további feldolgozót indít, ha a magasabb prioritással rendelkező folyamatokat blokkolják az alacsonyabb prioritású folyamatok."; -$a->strings["Use relay servers"] = "Továbbító kiszolgálók használata"; -$a->strings["Enables the receiving of public posts from relay servers. They will be included in the search, subscribed tags and on the global community page."] = "Engedélyezi a továbbító kiszolgálókról érkező nyilvános bejegyzések fogadását. Ezek fel lesznek véve a keresésbe, a feliratkozott címkékbe és a globális közösségi oldalra."; -$a->strings["\"Social Relay\" server"] = "„Közösségi továbbító” kiszolgáló"; -$a->strings["Address of the \"Social Relay\" server where public posts should be send to. For example %s. ActivityRelay servers are administrated via the \"console relay\" command line command."] = "Annak a „közösségi továbbító” kiszolgálónak a címe, ahová a nyilvános bejegyzéseket küldeni kell. Például %s. A tevékenység-továbbító kiszolgálók a „console relay” parancssori parancson keresztül vannak adminisztrálva."; $a->strings["Direct relay transfer"] = "Közvetlen továbbító-átvitel"; $a->strings["Enables the direct transfer to other servers without using the relay servers"] = "Engedélyezi a más kiszolgálókra való közvetlen átvitelt a továbbító kiszolgálók használata nélkül."; $a->strings["Relay scope"] = "Továbbítás hatóköre"; @@ -1277,46 +1471,47 @@ $a->strings["Comma separated list of tags that are rejected."] = "Címkék vessz $a->strings["Allow user tags"] = "Felhasználói címkék engedélyezése"; $a->strings["If enabled, the tags from the saved searches will used for the \"tags\" subscription in addition to the \"relay_server_tags\"."] = "Ha engedélyezve van, akkor a mentett keresésekből származó címkék lesznek használva a „címkék” feliratkozásnál a „relay_server_tags” címkéken kívül."; $a->strings["Start Relocation"] = "Áthelyezés indítása"; -$a->strings["Server domain pattern added to blocklist."] = "A tiltólistához hozzáadott kiszolgáló tartománymintája."; -$a->strings["Blocked server domain pattern"] = "Tiltott kiszolgálótartomány-minta"; -$a->strings["Delete server domain pattern"] = "Kiszolgálótartomány-minta törlése"; -$a->strings["Check to delete this entry from the blocklist"] = "Jelölje be a bejegyzés tiltólistából való törléséhez"; -$a->strings["Server Domain Pattern Blocklist"] = "Kiszolgálótartomány-minta tiltólistája"; -$a->strings["This page can be used to define a blocklist of server domain patterns from the federated network that are not allowed to interact with your node. For each domain pattern you should also provide the reason why you block it."] = "Ez az oldal használható a föderált hálózatból származó azon kiszolgálótartomány-minták tiltólistájának meghatározásához, amelyeknek nem engedélyezett kapcsolatba lépniük az Ön csomópontjával. Minden egyes tartománymintához meg kell adnia az indokot is, hogy miért tiltja azt."; -$a->strings["The list of blocked server domain patterns will be made publically available on the /friendica page so that your users and people investigating communication problems can find the reason easily."] = "A tiltott kiszolgálótartomány-minták listája nyilvánosan elérhetővé lesz téve a /friendica oldalon, azért hogy a kommunikációs problémákat kivizsgáló felhasználók és emberek egyszerűen megtalálják az okot."; -$a->strings["

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

\n
    \n\t
  • *: Any number of characters
  • \n\t
  • ?: Any single character
  • \n\t
  • [<char1><char2>...]: char1 or char2
  • \n
"] = "

A kiszolgálótartomány-minta szintaxisa kis- és nagybetűkre nem érzékeny parancsértelmező helyettesítő karakter, amely a következő különleges karaktereket tartalmazza:

\n
    \n\t
  • *: bármennyi számú karakter
  • \n\t
  • ?: bármilyen önálló karakter
  • \n\t
  • [<karakter1><karakter2>...]: karakter1 vagy karakter2
  • \n
"; -$a->strings["Add new entry to block list"] = "Új bejegyzés hozzáadása a tiltólistához"; -$a->strings["Server Domain Pattern"] = "Kiszolgálótartomány-minta"; -$a->strings["The domain pattern of the new server to add to the block list. Do not include the protocol."] = "A tiltólistához hozzáadandó új kiszolgáló tartományának mintája. Ne tegye bele a protokollt."; -$a->strings["Block reason"] = "Tiltás oka"; -$a->strings["The reason why you blocked this server domain pattern."] = "Az ok, amiért kitiltotta ezt a kiszolgálótartomány-mintát."; -$a->strings["Add Entry"] = "Bejegyzés hozzáadása"; -$a->strings["Save changes to the blocklist"] = "Változtatások mentése a tiltólistába"; -$a->strings["Current Entries in the Blocklist"] = "Jelenlegi bejegyzések a tiltólistán"; -$a->strings["Delete entry from blocklist"] = "Bejegyzés törlése a tiltólistáról"; -$a->strings["Delete entry from blocklist?"] = "Törli a bejegyzést a tiltólistáról?"; -$a->strings["The contact has been blocked from the node"] = "A partner tiltva lett a csomópontról"; -$a->strings["Could not find any contact entry for this URL (%s)"] = "Nem sikerült találni egyetlen partnerbejegyzést sem erről az URL-ről (%s)"; -$a->strings["%s contact unblocked"] = [ - 0 => "%s partner tiltása feloldva", - 1 => "%s partner tiltása feloldva", -]; -$a->strings["Remote Contact Blocklist"] = "Távoli partnerek tiltólistája"; -$a->strings["This page allows you to prevent any message from a remote contact to reach your node."] = "Ez az oldal lehetővé teszi, hogy megakadályozzon egy távoli partnertől származó minden üzenetet, amely elérné a csomópontját."; -$a->strings["Block Remote Contact"] = "Távoli partner tiltása"; -$a->strings["select all"] = "összes kijelölése"; -$a->strings["select none"] = "kijelölés törlése"; -$a->strings["No remote contact is blocked from this node."] = "Nincs olyan távoli partner, aki tiltva lenne erről a csomópontról."; -$a->strings["Blocked Remote Contacts"] = "Tiltott távoli partnerek"; -$a->strings["Block New Remote Contact"] = "Új távoli partner tiltása"; -$a->strings["Photo"] = "Fénykép"; -$a->strings["Reason"] = "Indok"; -$a->strings["%s total blocked contact"] = [ - 0 => "összesen %s tiltott partner", - 1 => "összesen %s tiltott partner", -]; -$a->strings["URL of the remote contact to block."] = "A tiltandó távoli partner URL-je."; -$a->strings["Block Reason"] = "Tiltás oka"; +$a->strings["Template engine (%s) error: %s"] = "Sablonmotor (%s) hiba: %s"; +$a->strings["Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"] = "Az adatbázisa még mindig MyISAM táblákkal fut. Meg kell változtatnia a motor típusát InnoDB-re. Mivel a Friendica a jövőben olyan funkciókat fog használni, amely csak InnoDB használatával érhető el, ezért meg kell változtatnia! Nézze meg ezt az útmutatót, amely hasznos lehet a táblamotorok átalakításához. Használhatja a Friendica telepítésének php bin/console.php dbstructure toinnodb parancsát is az automatikus átalakításhoz.
"; +$a->strings["Your DB still runs with InnoDB tables in the Antelope file format. You should change the file format to Barracuda. Friendica is using features that are not provided by the Antelope format. See here for a guide that may be helpful converting the table engines. You may also use the command php bin/console.php dbstructure toinnodb of your Friendica installation for an automatic conversion.
"] = "Az adatbázisa még mindig Antelope fájlformátumban lévő InnoDB táblákkal fut. Meg kell változtatnia a fájlformátumot Barracudára. A Friendica olyan funkciókat használ, amelyeket az Antelope fájlformátum nem biztosít. Nézze meg ezt az útmutatót, amely hasznos lehet a táblamotorok átalakításához. Használhatja a Friendica telepítésének php bin/console.php dbstructure toinnodb parancsát is az automatikus átalakításhoz.
"; +$a->strings["Your table_definition_cache is too low (%d). This can lead to the database error \"Prepared statement needs to be re-prepared\". Please set it at least to %d. See here for more information.
"] = "A table_definition_cache értéke túl alacsony (%d). Ez a „Prepared statement needs to be re-prepared” adatbázishibához vezethet. Állítsa legalább %d értékre. További információkért nézze meg ezt.
"; +$a->strings["There is a new version of Friendica available for download. Your current version is %1\$s, upstream version is %2\$s"] = "Elérhető a Friendica új verziója a letöltéshez. A jelenlegi verziója %1\$s, a távoli verzió %2\$s."; +$a->strings["The database update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear."] = "Az adatbázis frissítése sikertelen. Futtassa a „php bin/console.php dbstructure update” parancsot a parancssorból, és nézze meg a hibákat, amelyek esetleg megjelennek."; +$a->strings["The last update failed. Please run \"php bin/console.php dbstructure update\" from the command line and have a look at the errors that might appear. (Some of the errors are possibly inside the logfile.)"] = "A legutóbbi frissítés sikertelen. Futtassa a „php bin/console.php dbstructure update” parancsot a parancssorból, és nézze meg a hibákat, amelyek esetleg megjelennek (néhány hiba valószínűleg a naplófájlban lesz)."; +$a->strings["The worker was never executed. Please check your database structure!"] = "A feldolgozó sosem lett végrehajtva. Ellenőrizze az adatbázis szerkezetét!"; +$a->strings["The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings."] = "Az utolsó feldolgozó-végrehajtás ideje %s volt (UTC szerint). Ez régebbi mint egy óra. Ellenőrizze a cron-feladat beállításait."; +$a->strings["Friendica's configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your config from .htconfig.php. See the Config help page for help with the transition."] = "A Friendica beállításai most a „config/local.config.php” fájlban vannak eltárolva. Másolja le a „config/local-sample.config.php” fájlt, és helyezze át a beállításokat a .htconfig.php fájlból. Az átvitelhez való segítségért nézze meg a beállítások súgóoldalát."; +$a->strings["Friendica's configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your config from config/local.ini.php. See the Config help page for help with the transition."] = "A Friendica beállításai most a „config/local.config.php” fájlban vannak eltárolva. Másolja le a „config/local-sample.config.php” fájlt, és helyezze át a beállításokat a config/local.ini.php fájlból. Az átvitelhez való segítségért nézze meg a beállítások súgóoldalát."; +$a->strings["%s is not reachable on your system. This is a severe configuration issue that prevents server to server communication. See the installation page for help."] = "A %s nem érhető el a rendszeréről. Ez súlyos beállítási probléma, amely megakadályozza a kiszolgálók közti kommunikációt. Nézze meg a telepítési oldalt a segítségért."; +$a->strings["The logfile '%s' is not usable. No logging possible (error: '%s')"] = "A(z) „%s” naplófájl nem használható. Nem lehetséges a naplózás (hiba: „%s”)."; +$a->strings["The debug logfile '%s' is not usable. No logging possible (error: '%s')"] = "A(z) „%s” hibakeresési naplófájl nem használható. Nem lehetséges a naplózás (hiba: „%s”)."; +$a->strings["Friendica's system.basepath was updated from '%s' to '%s'. Please remove the system.basepath from your db to avoid differences."] = "A Friendica „system.basepath” beállítása frissítve lett „%s” értékről „%s” értékre. Távolítsa el a „system.basepath” beállítást az adatbázisából az eltérések elkerüléséhez."; +$a->strings["Friendica's current system.basepath '%s' is wrong and the config file '%s' isn't used."] = "A Friendica jelenlegi „system.basepath” értéke („%s”) hibás, és a(z) „%s” beállítófájl nincs használva."; +$a->strings["Friendica's current system.basepath '%s' is not equal to the config file '%s'. Please fix your configuration."] = "A Friendica jelenlegi „system.basepath” értéke („%s”) nem azonos a(z) „%s” beállítófájlban lévővel. Javítsa a beállításokat."; +$a->strings["Normal Account"] = "Normál fiók"; +$a->strings["Automatic Follower Account"] = "Automatikusan követő fiók"; +$a->strings["Public Forum Account"] = "Nyilvános fórum fiók"; +$a->strings["Automatic Friend Account"] = "Automatikus ismerős fiók"; +$a->strings["Blog Account"] = "Blog fiók"; +$a->strings["Private Forum Account"] = "Személyes fórumfiók"; +$a->strings["Message queues"] = "Üzenet várakozási sorai"; +$a->strings["Server Settings"] = "Kiszolgálóbeállítások"; +$a->strings["Summary"] = "Összefoglaló"; +$a->strings["Registered users"] = "Regisztrált felhasználók"; +$a->strings["Pending registrations"] = "Függőben lévő regisztrációk"; +$a->strings["Version"] = "Verzió"; +$a->strings["Active addons"] = "Bekapcsolt bővítmények"; +$a->strings["Theme %s disabled."] = "A(z) „%s” téma letiltva."; +$a->strings["Theme %s successfully enabled."] = "A(z) „%s” téma sikeresen engedélyezve."; +$a->strings["Theme %s failed to install."] = "A(z) „%s” téma telepítése sikertelen."; +$a->strings["Screenshot"] = "Képernyőkép"; +$a->strings["Themes"] = "Témák"; +$a->strings["Unknown theme."] = "Ismeretlen téma."; +$a->strings["Themes reloaded"] = "Témák újratöltve"; +$a->strings["Reload active themes"] = "Bekapcsolt témák újratöltése"; +$a->strings["No themes found on the system. They should be placed in %1\$s"] = "Nem találhatók témák a rendszeren. A témákat a %1\$s könyvtárba kell elhelyezni."; +$a->strings["[Experimental]"] = "[Kísérleti]"; +$a->strings["[Unsupported]"] = "[Nem támogatott]"; $a->strings["Display Terms of Service"] = "Használati feltételek megjelenítése"; $a->strings["Enable the Terms of Service page. If this is enabled a link to the terms will be added to the registration form and the general information page."] = "A használati feltételek oldal engedélyezése. Ha ez engedélyezve van, akkor a használati feltételekre mutató hivatkozás hozzá lesz adva a regisztrációs űrlaphoz és az általános információk oldalához."; $a->strings["Display Privacy Statement"] = "Adatvédelmi nyilatkozatok megjelenítése"; @@ -1324,17 +1519,6 @@ $a->strings["Show some informations regarding the needed information to operate $a->strings["Privacy Statement Preview"] = "Adatvédelmi nyilatkozat előnézete"; $a->strings["The Terms of Service"] = "A használati feltételek"; $a->strings["Enter the Terms of Service for your node here. You can use BBCode. Headers of sections should be [h2] and below."] = "Itt adja meg a csomópontja használati feltételeit. Használhat BBCode formázást is. A szakaszok címeinek [h2] vagy az alattiaknak kell lenniük."; -$a->strings["Other"] = "Egyéb"; -$a->strings["unknown"] = "ismeretlen"; -$a->strings["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."] = "Ez az oldal néhány számadatot nyújt a föderált közösségi hálózat azon ismert részéhez, amelynek része az Ön Friendica csomópontja. Ezek a számok nem teljesek, hanem csak a hálózat azon részét tükrözik, amelyről a csomópontja tud."; -$a->strings["Currently this node is aware of %d nodes with %d registered users from the following platforms:"] = "Jelenleg erről a csomópontról %d csomópontnak van tudomása %d regisztrált felhasználóval a következő platformokról:"; -$a->strings["New User"] = "Új felhasználó"; -$a->strings["Add User"] = "Felhasználó hozzáadása"; -$a->strings["Name of the new user."] = "Az új felhasználó neve."; -$a->strings["Nickname"] = "Becenév"; -$a->strings["Nickname of the new user."] = "Az új felhasználó beceneve."; -$a->strings["Email"] = "E-mail"; -$a->strings["Email address of the new user."] = "Az új felhasználó e-mail-címe."; $a->strings["%s user blocked"] = [ 0 => "%s felhasználó tiltva", 1 => "%s felhasználó tiltva", @@ -1361,10 +1545,17 @@ $a->strings["%s user unblocked"] = [ 1 => "%s felhasználó tiltása feloldva", ]; $a->strings["User \"%s\" unblocked"] = "„%s” felhasználó tiltása feloldva"; -$a->strings["User waiting for permanent deletion"] = "Végleges törlésre váró felhasználó"; -$a->strings["Permanent deletion"] = "Végleges törlés"; $a->strings["Blocked Users"] = "Tiltott felhasználók"; +$a->strings["New User"] = "Új felhasználó"; +$a->strings["Add User"] = "Felhasználó hozzáadása"; +$a->strings["Name of the new user."] = "Az új felhasználó neve."; +$a->strings["Nickname"] = "Becenév"; +$a->strings["Nickname of the new user."] = "Az új felhasználó beceneve."; +$a->strings["Email address of the new user."] = "Az új felhasználó e-mail-címe."; $a->strings["Users awaiting permanent deletion"] = "Végleges törlésre váró felhasználók"; +$a->strings["Permanent deletion"] = "Végleges törlés"; +$a->strings["Users"] = "Felhasználók"; +$a->strings["User waiting for permanent deletion"] = "Végleges törlésre váró felhasználó"; $a->strings["%s user approved"] = [ 0 => "%s felhasználó jóváhagyva", 1 => "%s felhasználó jóváhagyva", @@ -1380,382 +1571,766 @@ $a->strings["Request date"] = "Kérés dátuma"; $a->strings["No registrations."] = "Nincsenek regisztrációk."; $a->strings["Note from the user"] = "Jegyzet a felhasználótól"; $a->strings["Deny"] = "Elutasítás"; -$a->strings["All"] = "Összes"; -$a->strings["List of all users"] = "Összes felhasználó listája"; -$a->strings["Active"] = "Aktív"; -$a->strings["List of active accounts"] = "Aktív fiókok listája"; -$a->strings["List of pending registrations"] = "Függőben lévő regisztrációk listája"; -$a->strings["List of blocked users"] = "Tiltott felhasználók listája"; -$a->strings["Deleted"] = "Törölve"; -$a->strings["List of pending user deletions"] = "Függőben lévő felhasználó-törlések listája"; -$a->strings["Normal Account Page"] = "Normál fiókoldal"; -$a->strings["Soapbox Page"] = "Szappantartó oldal"; -$a->strings["Public Forum"] = "Nyilvános fórum"; -$a->strings["Automatic Friend Page"] = "Automatikus ismerős oldal"; -$a->strings["Private Forum"] = "Személyes fórum"; -$a->strings["Personal Page"] = "Személyes oldal"; -$a->strings["Organisation Page"] = "Szervezeti oldal"; -$a->strings["News Page"] = "Hírek oldal"; -$a->strings["Community Forum"] = "Közösségi fórum"; -$a->strings["Relay"] = "Továbbítás"; -$a->strings["Theme %s disabled."] = "A(z) „%s” téma letiltva."; -$a->strings["Theme %s successfully enabled."] = "A(z) „%s” téma sikeresen engedélyezve."; -$a->strings["Theme %s failed to install."] = "A(z) „%s” téma telepítése sikertelen."; -$a->strings["Screenshot"] = "Képernyőkép"; -$a->strings["Themes reloaded"] = "Témák újratöltve"; -$a->strings["Reload active themes"] = "Bekapcsolt témák újratöltése"; -$a->strings["No themes found on the system. They should be placed in %1\$s"] = "Nem találhatók témák a rendszeren. A témákat a %1\$s könyvtárba kell elhelyezni."; -$a->strings["[Experimental]"] = "[Kísérleti]"; -$a->strings["[Unsupported]"] = "[Nem támogatott]"; -$a->strings["Unknown theme."] = "Ismeretlen téma."; -$a->strings["Item was not found."] = "Az elem nem található."; +$a->strings["Missing parameters"] = "Hiányzó paraméterek"; +$a->strings["Only starting posts can be bookmarked"] = "Csak a kezdeti bejegyzéseket lehet könyvjelzőzni"; +$a->strings["Only starting posts can be muted"] = "Csak a kezdeti bejegyzéseket lehet némítani"; +$a->strings["Only starting posts can be pinned"] = "Csak a kezdeti bejegyzéseket lehet kitűzni"; +$a->strings["Posts from %s can't be shared"] = "%s bejegyzéseit nem lehet megosztani"; +$a->strings["Only starting posts can be unbookmarked"] = "Csak a kezdeti bejegyzéseket lehet kivenni a könyvjelzőkből"; +$a->strings["Only starting posts can be unmuted"] = "Csak a kezdeti bejegyzéseket némítását lehet megszüntetni"; +$a->strings["Posts from %s can't be unshared"] = "%s bejegyzéseinek megosztását nem lehet visszavonni"; +$a->strings["Contact not found"] = "A partner nem található"; +$a->strings["Profile not found"] = "A profil nem található"; $a->strings["No installed applications."] = "Nincsenek telepített alkalmazások."; $a->strings["Applications"] = "Alkalmazások"; -$a->strings["Help:"] = "Súgó:"; -$a->strings["Photos"] = "Fényképek"; -$a->strings["Photo Albums"] = "Fényképalbumok"; -$a->strings["Videos"] = "Videók"; -$a->strings["Events"] = "Események"; -$a->strings["Events and Calendar"] = "Események és naptár"; -$a->strings["Personal Notes"] = "Személyes jegyzetek"; +$a->strings["Item was not found."] = "Az elem nem található."; +$a->strings["You don't have access to administration pages."] = "Nincs hozzáférése az adminisztrációs oldalakhoz."; +$a->strings["Submanaged account can't access the administration pages. Please log back in as the main account."] = "Az alkezelt fiókok nem férhetnek hozzá az adminisztrációs oldalakhoz. Jelentkezzen vissza a fő fiókkal."; +$a->strings["Overview"] = "Áttekintő"; +$a->strings["Configuration"] = "Beállítás"; +$a->strings["Additional features"] = "További funkciók"; +$a->strings["Database"] = "Adatbázis"; +$a->strings["DB updates"] = "Adatbázis-frissítések"; +$a->strings["Inspect Deferred Workers"] = "Elhalasztott feldolgozók vizsgálata"; +$a->strings["Inspect worker Queue"] = "Feldolgozó várakozási sorának vizsgálata"; +$a->strings["Tools"] = "Eszközök"; +$a->strings["Contact Blocklist"] = "Partnertiltólista"; +$a->strings["Server Blocklist"] = "Kiszolgáló-tiltólista"; +$a->strings["Diagnostics"] = "Diagnosztika"; +$a->strings["PHP Info"] = "PHP-információk"; +$a->strings["probe address"] = "Cím szondázása"; +$a->strings["check webfinger"] = "WebFinger ellenőrzése"; +$a->strings["Babel"] = "Babel"; +$a->strings["ActivityPub Conversion"] = "ActivityPub beszélgetés"; +$a->strings["Addon Features"] = "Bővítményszolgáltatások"; +$a->strings["User registrations waiting for confirmation"] = "Megerősítésre váró felhasználói regisztrációk"; +$a->strings["API endpoint %s %s is not implemented"] = "A(z) %s %s API-végpont nincs megvalósítva"; +$a->strings["The API endpoint is currently not implemented but might be in the future."] = "Az API-végpont jelenleg nincs megvalósítva, de ez változhat a jövőben."; +$a->strings["Profile Details"] = "Profil részletei"; $a->strings["Only You Can See This"] = "Csak Ön láthatja ezt"; $a->strings["Tips for New Members"] = "Tippek új tagoknak"; +$a->strings["People Search - %s"] = "Emberek keresése – %s"; +$a->strings["Forum Search - %s"] = "Fórum keresése – %s"; +$a->strings["Account"] = "Fiók"; +$a->strings["Two-factor authentication"] = "Kétlépcsős hitelesítés"; +$a->strings["Display"] = "Megjelenítés"; +$a->strings["Manage Accounts"] = "Fiókok kezelése"; +$a->strings["Connected apps"] = "Kapcsolt alkalmazások"; +$a->strings["Export personal data"] = "Személyes adatok exportálása"; +$a->strings["Remove account"] = "Fiók eltávolítása"; +$a->strings["This page is missing a url parameter."] = "Erről az oldalról hiányzik egy URL paraméter."; +$a->strings["The post was created"] = "A bejegyzés létrejött"; +$a->strings["%d contact edited."] = [ + 0 => "%d partner szerkesztve.", + 1 => "%d partner szerkesztve.", +]; +$a->strings["Could not access contact record."] = "Nem sikerült hozzáférni a partner rekordjához."; +$a->strings["You can't block yourself"] = "Nem tilthatja le önmagát"; +$a->strings["Contact has been blocked"] = "A partner tiltva lett"; +$a->strings["Contact has been unblocked"] = "A partner tiltása fel lett oldva"; +$a->strings["You can't ignore yourself"] = "Nem mellőzheti önmagát"; +$a->strings["Contact has been ignored"] = "A partner figyelmen kívül lett hagyva"; +$a->strings["Contact has been unignored"] = "A partner figyelmen kívül hagyása fel lett oldva"; +$a->strings["Contact has been archived"] = "A partner archiválva lett"; +$a->strings["Contact has been unarchived"] = "A partner archiválása meg lett szüntetve"; +$a->strings["Drop contact"] = "Partner eldobása"; +$a->strings["Do you really want to delete this contact?"] = "Valóban törölni szeretné ezt a partnert?"; +$a->strings["Contact has been removed."] = "A partner el lett távolítva."; +$a->strings["You are mutual friends with %s"] = "Ön kölcsönösen ismerős %s partnerrel"; +$a->strings["You are sharing with %s"] = "Ön megoszt %s partnerrel"; +$a->strings["%s is sharing with you"] = "%s megoszt Önnel"; +$a->strings["Private communications are not available for this contact."] = "A személyes kommunikációk nem érhetők el ennél a partnernél."; +$a->strings["Never"] = "Soha"; +$a->strings["(Update was not successful)"] = "(a frissítés nem volt sikeres)"; +$a->strings["(Update was successful)"] = "(a frissítés sikeres volt)"; +$a->strings["Suggest friends"] = "Ismerősök ajánlása"; +$a->strings["Network type: %s"] = "Hálózat típusa: %s"; +$a->strings["Communications lost with this contact!"] = "A kommunikációk megszakadtak ezzel a partnerrel!"; +$a->strings["Fetch further information for feeds"] = "További információk lekérése a hírforrásokhoz"; +$a->strings["Fetch information like preview pictures, title and teaser from the feed item. You can activate this if the feed doesn't contain much text. Keywords are taken from the meta header in the feed item and are posted as hash tags."] = "Információk lekérése a hírforrás eleméből, mint például előnézeti képek, cím és előzetes. Akkor kapcsolhatja be ezt, ha a hírforrás nem tartalmaz sok szöveget. A kulcsszavak a hírforrás elemében lévő metafejlécéből lesznek kiszedve, és kettős keresztes címkékként lesznek beküldve."; +$a->strings["Fetch information"] = "Információk lekérése"; +$a->strings["Fetch keywords"] = "Kulcsszavak lekérése"; +$a->strings["Fetch information and keywords"] = "Információk és kulcsszavak lekérése"; +$a->strings["No mirroring"] = "Nincs tükrözés"; +$a->strings["Mirror as forwarded posting"] = "Tükrözés továbbított beküldésként"; +$a->strings["Mirror as my own posting"] = "Tükrözés saját beküldésként"; +$a->strings["Native reshare"] = "Natív újra megosztás"; +$a->strings["Contact Information / Notes"] = "Partner információ vagy jegyzetek"; +$a->strings["Contact Settings"] = "Partnerbeállítások"; +$a->strings["Contact"] = "Partner"; +$a->strings["Their personal note"] = "A személyes jegyzeteik"; +$a->strings["Edit contact notes"] = "Partner jegyzeteinek szerkesztése"; +$a->strings["Visit %s's profile [%s]"] = "%s profiljának megtekintése [%s]"; +$a->strings["Block/Unblock contact"] = "Partner tiltása vagy tiltásának feloldása"; +$a->strings["Ignore contact"] = "Partner mellőzése"; +$a->strings["View conversations"] = "Beszélgetések megtekintése"; +$a->strings["Last update:"] = "Utolsó frissítés:"; +$a->strings["Update public posts"] = "Nyilvános bejegyzések frissítése"; +$a->strings["Update now"] = "Frissítés most"; +$a->strings["Unignore"] = "Mellőzés feloldása"; +$a->strings["Currently blocked"] = "Jelenleg tiltva"; +$a->strings["Currently ignored"] = "Jelenleg mellőzve"; +$a->strings["Currently archived"] = "Jelenleg archiválva"; +$a->strings["Awaiting connection acknowledge"] = "Várakozás a kapcsolat nyugtázására"; +$a->strings["Hide this contact from others"] = "A partner elrejtése mások elől"; +$a->strings["Replies/likes to your public posts may still be visible"] = "A nyilvános bejegyzéseire adott válaszok vagy kedvelések továbbra is láthatóak lehetnek."; +$a->strings["Notification for new posts"] = "Értesítés új bejegyzéseknél"; +$a->strings["Send a notification of every new post of this contact"] = "Értesítés küldése a partner minden új bejegyzéséről."; +$a->strings["Keyword Deny List"] = "Kulcsszavas tiltólista"; +$a->strings["Comma separated list of keywords that should not be converted to hashtags, when \"Fetch information and keywords\" is selected"] = "Kulcsszavak vesszővel elválasztott listája, amelyeket nem szabad kettős keresztes címkékké átalakítani, ha az „Információk és kulcsszavak lekérése” ki van jelölve."; +$a->strings["Actions"] = "Műveletek"; +$a->strings["Mirror postings from this contact"] = "Beküldés tükrözése ettől a partnertől"; +$a->strings["Mark this contact as remote_self, this will cause friendica to repost new entries from this contact."] = "A partner megjelölése távoli önmagaként. Ezt azt fogja okozni, hogy a Friendica újraküldi az ettől a partnertől származó új bejegyzéseket."; +$a->strings["Show all contacts"] = "Összes partner megjelenítése"; +$a->strings["Only show pending contacts"] = "Csak a függőben lévő partnerek megjelenítése"; +$a->strings["Only show blocked contacts"] = "Csak a tiltott partnerek megjelenítése"; +$a->strings["Ignored"] = "Mellőzve"; +$a->strings["Only show ignored contacts"] = "Csak a mellőzött partnerek megjelenítése"; +$a->strings["Archived"] = "Archiválva"; +$a->strings["Only show archived contacts"] = "Csak az archivált partnerek megjelenítése"; +$a->strings["Hidden"] = "Rejtett"; +$a->strings["Only show hidden contacts"] = "Csak a rejtett partnerek megjelenítése"; +$a->strings["Organize your contact groups"] = "Partnercsoportok szervezése"; +$a->strings["Search your contacts"] = "Partnerek keresése"; +$a->strings["Results for: %s"] = "Találatok erre: %s"; +$a->strings["Archive"] = "Archiválás"; +$a->strings["Unarchive"] = "Archiválás megszüntetése"; +$a->strings["Batch Actions"] = "Tömeges műveletek"; +$a->strings["Conversations started by this contact"] = "A partner által elkezdett beszélgetések"; +$a->strings["Posts and Comments"] = "Bejegyzések és hozzászólások"; +$a->strings["View all known contacts"] = "Összes ismert partner megtekintése"; +$a->strings["Advanced Contact Settings"] = "Speciális partnerbeállítások"; +$a->strings["Mutual Friendship"] = "Kölcsönös ismeretség"; +$a->strings["is a fan of yours"] = "az Ön rajongója"; +$a->strings["you are a fan of"] = "Ön rajong érte:"; +$a->strings["Pending outgoing contact request"] = "Függőben lévő kimenő partnerkérés"; +$a->strings["Pending incoming contact request"] = "Függőben lévő bejövő partnerkérés"; +$a->strings["Refetch contact data"] = "Partneradatok ismételt lekérése"; +$a->strings["Toggle Blocked status"] = "Tiltott állapot átváltása"; +$a->strings["Toggle Ignored status"] = "Mellőzött állapot átváltása"; +$a->strings["Toggle Archive status"] = "Archiválási állapot átváltása"; +$a->strings["Delete contact"] = "Partner törlése"; +$a->strings["Contact update failed."] = "A partner frissítése sikertelen."; +$a->strings["WARNING: This is highly advanced and if you enter incorrect information your communications with this contact may stop working."] = "FIGYELMEZTETÉS: ez erősen speciális, és ha hibás információkat ad meg, akkor a partnerrel való kommunikációi esetleg nem működnek többé."; +$a->strings["Please use your browser 'Back' button now if you are uncertain what to do on this page."] = "Használja a böngésző „Vissza” gombját most, ha nem biztos abban, hogy mit kell tenni ezen az oldalon."; +$a->strings["Return to contact editor"] = "Visszatérés a partnerszerkesztőhöz"; +$a->strings["Account Nickname"] = "Fiók beceneve"; +$a->strings["@Tagname - overrides Name/Nickname"] = "@Címkenév – felülbírálja a nevet vagy a becenevet"; +$a->strings["Account URL"] = "Fiók URL"; +$a->strings["Account URL Alias"] = "Fiók URL álneve"; +$a->strings["Friend Request URL"] = "Ismerőskérési URL"; +$a->strings["Friend Confirm URL"] = "Ismerősmegerősítési URL"; +$a->strings["Notification Endpoint URL"] = "Értesítésvégpont URL"; +$a->strings["Poll/Feed URL"] = "Lekérés vagy hírforrás URL"; +$a->strings["New photo from this URL"] = "Új fénykép erről az URL-ről"; +$a->strings["Invalid contact."] = "Érvénytelen partner."; +$a->strings["No known contacts."] = "Nincsenek ismert partnerek."; +$a->strings["No common contacts."] = "Nincsenek közös partnerek."; +$a->strings["Follower (%s)"] = [ + 0 => "Követő (%s)", + 1 => "Követők (%s)", +]; +$a->strings["Following (%s)"] = [ + 0 => "Követés (%s)", + 1 => "Követés (%s)", +]; +$a->strings["Mutual friend (%s)"] = [ + 0 => "Kölcsönösen ismerősök (%s)", + 1 => "Kölcsönösen ismerősök (%s)", +]; +$a->strings["These contacts both follow and are followed by %s."] = "Ezeket a partnereket %s követi és ők is követik őt."; +$a->strings["Common contact (%s)"] = [ + 0 => "Közös partner (%s)", + 1 => "Közös partnerek (%s)", +]; +$a->strings["Both %s and yourself have publicly interacted with these contacts (follow, comment or likes on public posts)."] = "%s és Ön is nyilvánosan kapcsolatba léptek ezekkel a partnerekkel (követés, hozzászólás vagy kedvelések a nyilvános bejegyzéseknél)."; +$a->strings["Contact (%s)"] = [ + 0 => "Partner (%s)", + 1 => "Partnerek (%s)", +]; +$a->strings["Error while sending poke, please retry."] = "Hiba a bökés küldése során. Próbálja újra."; +$a->strings["You must be logged in to use this module."] = "Bejelentkezve kell lennie a modul használatához."; +$a->strings["Poke/Prod"] = "Bökés vagy döfés"; +$a->strings["poke, prod or do other things to somebody"] = "bökés, döfés vagy egyéb dolgok művelése valakivel"; +$a->strings["Choose what you wish to do to recipient"] = "Válassza ki, hogy mit szeretne tenni a címzettel"; +$a->strings["Make this post private"] = "A bejegyzés személyessé tétele"; +$a->strings["Local Community"] = "Helyi közösség"; +$a->strings["Posts from local users on this server"] = "Bejegyzések a kiszolgálón lévő helyi felhasználóktól"; +$a->strings["Global Community"] = "Globális közösség"; +$a->strings["Posts from users of the whole federated network"] = "Bejegyzések a teljes föderált hálózat felhasználóitól"; +$a->strings["Own Contacts"] = "Saját partnerek"; +$a->strings["Include"] = "Tartalmazás"; +$a->strings["Hide"] = "Elrejtés"; +$a->strings["No results."] = "Nincs találat."; +$a->strings["This community stream shows all public posts received by this node. They may not reflect the opinions of this node’s users."] = "Ez a közösségi folyam megjeleníti az összes nyilvános bejegyzést, amelyet ez a csomópont megkapott. Előfordulhat, hogy azok nem tükrözik ezen csomópont felhasználóinak véleményét."; +$a->strings["Community option not available."] = "A közösségi beállítás nem érhető el."; +$a->strings["Not available."] = "Nem érhető el."; +$a->strings["No such group"] = "Nincs ilyen csoport"; +$a->strings["Group: %s"] = "Csoport: %s"; +$a->strings["Latest Activity"] = "Legutóbbi tevékenység"; +$a->strings["Sort by latest activity"] = "Rendezés a legutóbbi tevékenység szerint"; +$a->strings["Latest Posts"] = "Legutóbbi bejegyzések"; +$a->strings["Sort by post received date"] = "Rendezés a bejegyzés érkezési dátuma szerint"; +$a->strings["Personal"] = "Személyes"; +$a->strings["Posts that mention or involve you"] = "Bejegyzések, amelyek említik vagy tartalmazzák Önt"; +$a->strings["Starred"] = "Csillagozott"; +$a->strings["Favourite Posts"] = "Kedvenc bejegyzések"; +$a->strings["Credits"] = "Köszönetnyilvánítás"; +$a->strings["Friendica is a community project, that would not be possible without the help of many people. Here is a list of those who have contributed to the code or the translation of Friendica. Thank you all!"] = "A Friendica egy közösségi projekt, amely nem lehetne lehetséges a sok ember segítsége nélkül. Itt van azok listája, akik közreműködtek a kódban vagy a Friendica fordításában. Köszönet mindannyiuknak!"; +$a->strings["Formatted"] = "Formázott"; +$a->strings["Activity"] = "Tevékenység"; +$a->strings["Object data"] = "Objektum adatai"; +$a->strings["Result Item"] = "Eredményelem"; +$a->strings["Source activity"] = "Forrástevékenység"; +$a->strings["Source input"] = "Forrás bevitele"; +$a->strings["BBCode::toPlaintext"] = "BBCode::toPlaintext"; +$a->strings["BBCode::convert (raw HTML)"] = "BBCode::convert (nyers HTML)"; +$a->strings["BBCode::convert (hex)"] = "BBCode::convert (hexa)"; +$a->strings["BBCode::convert"] = "BBCode::convert"; +$a->strings["BBCode::convert => HTML::toBBCode"] = "BBCode::convert => HTML::toBBCode"; +$a->strings["BBCode::toMarkdown"] = "BBCode::toMarkdown"; +$a->strings["BBCode::toMarkdown => Markdown::convert (raw HTML)"] = "BBCode::toMarkdown => Markdown::convert (nyers HTML)"; +$a->strings["BBCode::toMarkdown => Markdown::convert"] = "BBCode::toMarkdown => Markdown::convert"; +$a->strings["BBCode::toMarkdown => Markdown::toBBCode"] = "BBCode::toMarkdown => Markdown::toBBCode"; +$a->strings["BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"] = "BBCode::toMarkdown => Markdown::convert => HTML::toBBCode"; +$a->strings["Item Body"] = "Elem törzse"; +$a->strings["Item Tags"] = "Elem címkéi"; +$a->strings["PageInfo::appendToBody"] = "PageInfo::appendToBody"; +$a->strings["PageInfo::appendToBody => BBCode::convert (raw HTML)"] = "PageInfo::appendToBody => BBCode::convert (nyers HTML)"; +$a->strings["PageInfo::appendToBody => BBCode::convert"] = "PageInfo::appendToBody => BBCode::convert"; +$a->strings["Source input (Diaspora format)"] = "Forrás bevitele (Diaspora formátum)"; +$a->strings["Source input (Markdown)"] = "Forrás bevitele (Markdown)"; +$a->strings["Markdown::convert (raw HTML)"] = "Markdown::convert (nyers HTML)"; +$a->strings["Markdown::convert"] = "Markdown::convert"; +$a->strings["Markdown::toBBCode"] = "Markdown::toBBCode"; +$a->strings["Raw HTML input"] = "Nyers HTML bevitel"; +$a->strings["HTML Input"] = "HTML bevitel"; +$a->strings["HTML Purified (raw)"] = "HTML megtisztítva (nyers)"; +$a->strings["HTML Purified (hex)"] = "HTML megtisztítva (hexa)"; +$a->strings["HTML Purified"] = "HTML megtisztítva"; +$a->strings["HTML::toBBCode"] = "HTML::toBBCode"; +$a->strings["HTML::toBBCode => BBCode::convert"] = "HTML::toBBCode => BBCode::convert"; +$a->strings["HTML::toBBCode => BBCode::convert (raw HTML)"] = "HTML::toBBCode => BBCode::convert (nyers HTML)"; +$a->strings["HTML::toBBCode => BBCode::toPlaintext"] = "HTML::toBBCode => BBCode::toPlaintext"; +$a->strings["HTML::toMarkdown"] = "HTML::toMarkdown"; +$a->strings["HTML::toPlaintext"] = "HTML::toPlaintext"; +$a->strings["HTML::toPlaintext (compact)"] = "HTML::toPlaintext (tömör)"; +$a->strings["Decoded post"] = "Dekódolt bejegyzés"; +$a->strings["Post array before expand entities"] = "A bejegyzéstömb az entitások kiterjesztése előtt"; +$a->strings["Post converted"] = "Bejegyzés átalakítva"; +$a->strings["Converted body"] = "Átalakított törzs"; +$a->strings["Twitter addon is absent from the addon/ folder."] = "A Twitter bővítmény hiányzik az „addon/” mappából."; +$a->strings["Babel Diagnostic"] = "Babel diagnosztika"; +$a->strings["Source text"] = "Forrásszöveg"; +$a->strings["BBCode"] = "BBCode"; +$a->strings["Markdown"] = "Markdown"; +$a->strings["HTML"] = "HTML"; +$a->strings["Twitter Source / Tweet URL (requires API key)"] = "Twitter forrás vagy Tweet URL (API-kulcsot igényel)"; +$a->strings["You must be logged in to use this module"] = "Bejelentkezve kell lennie a modul használatához"; +$a->strings["Source URL"] = "Forrás URL"; +$a->strings["Time Conversion"] = "Időátalakítás"; +$a->strings["Friendica provides this service for sharing events with other networks and friends in unknown timezones."] = "A Friendica ezt a szolgáltatást az ismeretlen időzónákban lévő más hálózatokkal és ismerősökkel történő események megosztásához biztosítja."; +$a->strings["UTC time: %s"] = "UTC idő: %s"; +$a->strings["Current timezone: %s"] = "Jelenlegi időzóna: %s"; +$a->strings["Converted localtime: %s"] = "Átalakított helyi idő: %s"; +$a->strings["Please select your timezone:"] = "Válassza ki az időzónáját:"; +$a->strings["Only logged in users are permitted to perform a probing."] = "Csak bejelentkezett felhasználóknak engedélyezett a szondázás végrehajtása."; +$a->strings["Probe Diagnostic"] = "Szondázási diagnosztika"; +$a->strings["Output"] = "Kimenet"; +$a->strings["Lookup address"] = "Keresési cím"; +$a->strings["Webfinger Diagnostic"] = "WebFinger diagnosztika"; +$a->strings["Lookup address:"] = "Keresési cím:"; +$a->strings["Switch between your accounts"] = "Váltás a fiókjai között"; +$a->strings["Manage your accounts"] = "Fiókok kezelése"; +$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "Váltás a különböző személyazonosságok vagy közösségi és csoportoldalak között, amelyek megosztják a fiókja részleteit, vagy amelyeket „kezelés” jogosultságokkal ruházott fel"; +$a->strings["Select an identity to manage: "] = "A kezelendő személyazonosság kiválasztása: "; +$a->strings["No entries (some entries may be hidden)."] = "Nincsenek bejegyzések (néhány bejegyzés rejtve lehet)."; +$a->strings["Find on this site"] = "Keresés ezen az oldalon"; +$a->strings["Results for:"] = "Találat erre:"; +$a->strings["Site Directory"] = "Oldal könyvtára"; +$a->strings["Item was not removed"] = "Az elem nem lett eltávolítva"; +$a->strings["Item was not deleted"] = "Az elem nem lett törölve"; +$a->strings["- select -"] = "– válasszon –"; +$a->strings["Suggested contact not found."] = "Az ajánlott partner nem található."; +$a->strings["Friend suggestion sent."] = "Az ismerősajánlás elküldve."; +$a->strings["Suggest Friends"] = "Ismerősök ajánlása"; +$a->strings["Suggest a friend for %s"] = "Ismerős ajánlása %s számára"; +$a->strings["Installed addons/apps:"] = "Telepített bővítmények vagy alkalmazások:"; +$a->strings["No installed addons/apps"] = "Nincsenek telepített bővítmények vagy alkalmazások"; +$a->strings["Read about the Terms of Service of this node."] = "Olvassa el ennek a csomópontnak a használati feltételeit."; +$a->strings["On this server the following remote servers are blocked."] = "Ezen a kiszolgálón a következő távoli kiszolgálók vannak tiltva."; +$a->strings["This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s."] = "Ez egy %s verziójú Friendica, amely a %s helyen fut a weben. Az adatbázis verziója %s, a bejegyzésfrissítés verziója %s."; +$a->strings["Please visit Friendi.ca to learn more about the Friendica project."] = "Látogassa meg a Friendi.ca oldalt, hogy többet tudjon meg a Friendica projektről."; +$a->strings["Bug reports and issues: please visit"] = "Hibák és problémák jelentéséhez látogassa meg"; +$a->strings["the bugtracker at github"] = "a GitHubon lévő hibakövetőt"; +$a->strings["Suggestions, praise, etc. - please email \"info\" at \"friendi - dot - ca"] = "Javaslatokat, dicséretet és egyebeket az „info” kukac friendi pont ca címre küldhet."; +$a->strings["Could not create group."] = "Nem sikerült létrehozni a csoportot."; +$a->strings["Group not found."] = "A csoport nem található."; +$a->strings["Group name was not changed."] = "A csoport neve nem változott meg."; +$a->strings["Unknown group."] = "Ismeretlen csoport."; +$a->strings["Contact is deleted."] = "A partner törölve."; +$a->strings["Unable to add the contact to the group."] = "Nem lehet hozzáadni a partnert a csoporthoz."; +$a->strings["Contact successfully added to group."] = "A partner sikeresen hozzáadva a csoporthoz."; +$a->strings["Unable to remove the contact from the group."] = "Nem lehet eltávolítani a partnert a csoportból."; +$a->strings["Contact successfully removed from group."] = "A partner sikeresen eltávolítva a csoportból."; +$a->strings["Unknown group command."] = "Ismeretlen csoportparancs."; +$a->strings["Bad request."] = "Hibás kérés."; +$a->strings["Save Group"] = "Csoport mentése"; +$a->strings["Filter"] = "Szűrő"; +$a->strings["Create a group of contacts/friends."] = "Partnerek vagy ismerősök csoportjának létrehozása."; +$a->strings["Unable to remove group."] = "Nem lehet eltávolítani a csoportot."; +$a->strings["Delete Group"] = "Csoport törlése"; +$a->strings["Edit Group Name"] = "Csoport nevének szerkesztése"; +$a->strings["Members"] = "Tagok"; +$a->strings["Group is empty"] = "A csoport üres"; +$a->strings["Remove contact from group"] = "Partner eltávolítása a csoportból"; +$a->strings["Click on a contact to add or remove."] = "Kattintson egy partnerre a hozzáadáshoz vagy eltávolításhoz."; +$a->strings["Add contact to group"] = "Partner hozzáadása a csoporthoz"; +$a->strings["Method Not Allowed."] = "A módszer nem engedélyezett."; +$a->strings["Help:"] = "Súgó:"; +$a->strings["Welcome to %s"] = "Üdvözli a(z) %s!"; +$a->strings["No profile"] = "Nincs profil"; +$a->strings["Friendica Communications Server - Setup"] = "Friendica kommunikációs kiszolgáló – Beállítás"; +$a->strings["System check"] = "Rendszerellenőrzés"; +$a->strings["Requirement not satisfied"] = "A követelmény nincs kielégítve"; +$a->strings["Optional requirement not satisfied"] = "A választható követelmény nincs kielégítve"; +$a->strings["OK"] = "Rendben"; +$a->strings["Check again"] = "Ellenőrzés újra"; +$a->strings["Base settings"] = "Alapvető beállítások"; +$a->strings["Host name"] = "Gépnév"; +$a->strings["Overwrite this field in case the determinated hostname isn't right, otherweise leave it as is."] = "Írja felül ezt a mezőt abban az esetben, ha a felismert gépnév nem helyes, egyébként hagyja úgy, ahogy van."; +$a->strings["Base path to installation"] = "Alap útvonal a telepítéshez"; +$a->strings["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."] = "Ha a rendszer nem tudja felismerni a helyes útvonalat a telepítéshez, akkor itt adja meg a helyes útvonalat. Ezt a beállítást csak akkor kell megadni, ha korlátozott rendszert és a webgyökérre mutató szimbolikus hivatkozásokat használ."; +$a->strings["Sub path of the URL"] = "Az URL alútvonala"; +$a->strings["Overwrite this field in case the sub path determination isn't right, otherwise leave it as is. Leaving this field blank means the installation is at the base URL without sub path."] = "Írja felül ezt a mezőt abban az esetben, ha az alútvonal felismerése nem helyes, egyébként hagyja úgy, ahogy van. A mező üresen hagyása azt jelenti, hogy a telepítés az alap útvonalon van alútvonal nélkül."; +$a->strings["Database connection"] = "Adatbázis-kapcsolat"; +$a->strings["In order to install Friendica we need to know how to connect to your database."] = "A Friendica telepítése érdekében tudnunk kell, hogy hogyan kell kapcsolódni az adatbázisához."; +$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Vegye fel a kapcsolatot a tárhelyszolgáltatóval vagy az oldal adminisztrátorával, ha kérdései vannak ezekkel a beállításokkal kapcsolatban."; +$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "A lent megadott adatbázisnak már léteznie kell. Ha még nem létezik, akkor hozza létre a folytatás előtt."; +$a->strings["Database Server Name"] = "Adatbázis-kiszolgáló neve"; +$a->strings["Database Login Name"] = "Adatbázis bejelentkezési neve"; +$a->strings["Database Login Password"] = "Adatbázis bejelentkezési jelszava"; +$a->strings["For security reasons the password must not be empty"] = "Biztonsági okokból a jelszó nem lehet üres"; +$a->strings["Database Name"] = "Adatbázis neve"; +$a->strings["Please select a default timezone for your website"] = "Válasszon egy alapértelmezett időzónát a weboldalához"; +$a->strings["Site settings"] = "Oldalbeállítások"; +$a->strings["Site administrator email address"] = "Oldal adminisztrátorának e-mail-címe"; +$a->strings["Your account email address must match this in order to use the web admin panel."] = "A fiókja e-mail-címének egyeznie kell ezzel a webes adminisztrátori panel használata érdekében."; +$a->strings["System Language:"] = "Rendszer nyelve:"; +$a->strings["Set the default language for your Friendica installation interface and to send emails."] = "Az alapértelmezett nyelv beállítása a Friendica telepítésnek felületéhez és az e-mailek küldéséhez."; +$a->strings["Your Friendica site database has been installed."] = "A Friendica oldalának adatbázisa telepítve lett."; +$a->strings["Installation finished"] = "A telepítés befejeződött"; +$a->strings["

What next

"] = "

Mi következik?

"; +$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the worker."] = "FONTOS: be kell állítania [kézzel] egy ütemezett feladatot a feldolgozóhoz."; +$a->strings["Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel."] = "Menjen az új Friendica csomópont regisztrációs oldalára, és regisztráljon új felhasználóként. Ne felejtse el ugyanazt az e-mail-címet használni, mint amelyet adminisztrátori e-mail-címként adott meg. Ez lehetővé fogja tenni az oldal adminisztrátori paneljére történő belépést."; +$a->strings["Total invitation limit exceeded."] = "Az összes meghívás korlátja túllépve."; +$a->strings["%s : Not a valid email address."] = "%s: nem érvényes e-mail-cím."; +$a->strings["Please join us on Friendica"] = "Csatlakozzon hozzánk a Friendica hálózatán"; +$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "A meghíváskorlát túllépve. Vegye fel a kapcsolatot az oldal adminisztrátorával."; +$a->strings["%s : Message delivery failed."] = "%s: az üzenetkézbesítés sikertelen."; +$a->strings["%d message sent."] = [ + 0 => "%d üzenet elküldve.", + 1 => "%d üzenet elküldve.", +]; +$a->strings["You have no more invitations available"] = "Nincs több elérhető meghívása"; +$a->strings["Visit %s for a list of public sites that you can join. Friendica members on other sites can all connect with each other, as well as with members of many other social networks."] = "Látogassa meg a %s oldalt azon nyilvános oldalak listájáért, amelyekhez csatlakozhat. A egyéb oldalakon lévő Friendica-tagok mindegyike tud egymással kapcsolódni, valamint számos más közösségi hálózat tagjaival is."; +$a->strings["To accept this invitation, please visit and register at %s or any other public Friendica website."] = "A meghívás elfogadásához látogasson el és regisztráljon a(z) %s címen vagy bármely más nyilvános Friendica weboldalon."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks. See %s for a list of alternate Friendica sites you can join."] = "A Friendica oldalak mindegyike össze van kapcsolva, hogy egy hatalmas, fokozott magánszféra-védelemmel ellátott közösségi hálót hozzanak létre, amelyet a tagjai birtokolnak és vezérelnek. A tagok képesek sok hagyományos közösségi hálózathoz is kapcsolódni. Nézze meg a(z) %s oldalt azon alternatív Friendica oldalak listájáért, amelyekhez csatlakozhat."; +$a->strings["Our apologies. This system is not currently configured to connect with other public sites or invite members."] = "Elnézést kérünk. Ez a rendszer jelenleg nem úgy van beállítva, hogy más nyilvános oldalakhoz kapcsolódjon vagy tagokat hívjon meg."; +$a->strings["Friendica sites all inter-connect to create a huge privacy-enhanced social web that is owned and controlled by its members. They can also connect with many traditional social networks."] = "A Friendica oldalak mindegyike össze van kapcsolva, hogy egy hatalmas, fokozott magánszféra-védelemmel ellátott közösségi hálót hozzanak létre, amelyet a tagjai birtokolnak és vezérelnek. A tagok képesek sok hagyományos közösségi hálózathoz is kapcsolódni."; +$a->strings["To accept this invitation, please visit and register at %s."] = "A meghívás elfogadásához látogasson el és regisztráljon a(z) %s címen."; +$a->strings["Send invitations"] = "Meghívások küldése"; +$a->strings["Enter email addresses, one per line:"] = "Adja meg az e-mail-címeket, soronként egyet:"; +$a->strings["You are cordially invited to join me and other close friends on Friendica - and help us to create a better social web."] = "Szeretettel meghívom Önt, hogy csatlakozzon hozzám és más közeli ismerősökhöz a Friendica hálózatán – és segítsen nekünk egy jobb közösségi hálót létrehozni."; +$a->strings["You will need to supply this invitation code: \$invite_code"] = "Meg kell majd adnia ezt a meghívási kódot: \$invite_code"; +$a->strings["Once you have registered, please connect with me via my profile page at:"] = "Miután regisztrált, lépjen velem kapcsolatba a profiloldalamon keresztül itt:"; +$a->strings["For more information about the Friendica project and why we feel it is important, please visit http://friendi.ca"] = "A Friendica projekttel kapcsolatos további információkért, valamint hogy miért tartjuk ezt fontosnak, látogasson el a https://friendi.ca/ oldalra."; +$a->strings["Please enter a post body."] = "Adjon meg egy bejegyzéstörzset."; +$a->strings["This feature is only available with the frio theme."] = "Ez a funkció csak a frio témával érhető el."; +$a->strings["Compose new personal note"] = "Új személyes jegyzet írása"; +$a->strings["Compose new post"] = "Új bejegyzés írása"; +$a->strings["Visibility"] = "Láthatóság"; +$a->strings["Clear the location"] = "A hely törlése"; +$a->strings["Location services are unavailable on your device"] = "A helymeghatározó szolgáltatások nem érhetők el az Ön eszközén"; +$a->strings["Location services are disabled. Please check the website's permissions on your device"] = "A helymeghatározó szolgáltatások le vannak tiltva. Ellenőrizze a weboldal jogosultságait az Ön eszközén"; +$a->strings["Unable to follow this item."] = "Nem lehet követni ezt az elemet."; +$a->strings["System down for maintenance"] = "A rendszer le van kapcsolva a karbantartáshoz"; +$a->strings["This Friendica node is currently in maintenance mode, either automatically because it is self-updating or manually by the node administrator. This condition should be temporary, please come back in a few minutes."] = "Ez a Friendica csomópont jelenleg karbantartási módban van, vagy automatikusan, mert épp önmagát frissíti, vagy kézileg a csomópont adminisztrátora által. Ennek az állapotnak átmenetinek kell lennie, jöjjön vissza néhány perc múlva."; +$a->strings["A Decentralized Social Network"] = "Egy decentralizált közösségi hálózat"; +$a->strings["Show Ignored Requests"] = "Mellőzött kérések megjelenítése"; +$a->strings["Hide Ignored Requests"] = "Mellőzött kérések elrejtése"; +$a->strings["Notification type:"] = "Értesítés típusa:"; +$a->strings["Suggested by:"] = "Ajánlotta:"; +$a->strings["Claims to be known to you: "] = "Azt állítja, hogy Ön ismeri: "; +$a->strings["Shall your connection be bidirectional or not?"] = "Legyen a kapcsolata kétirányú vagy sem?"; +$a->strings["Accepting %s as a friend allows %s to subscribe to your posts, and you will also receive updates from them in your news feed."] = "%s ismerősként való elfogadása lehetővé teszi %s számára, hogy feliratkozzon a bejegyzéseire, és Ön is frissítéseket fog kapni tőle a hírforrásában."; +$a->strings["Accepting %s as a subscriber allows them to subscribe to your posts, but you will not receive updates from them in your news feed."] = "%s feliratkozóként való elfogadása lehetővé teszi számára, hogy feliratkozzon a bejegyzéseire, de Ön nem fog frissítéseket kapni tőle a hírforrásában."; +$a->strings["Friend"] = "Ismerős"; +$a->strings["Subscriber"] = "Feliratkozó"; +$a->strings["No introductions."] = "Nincsenek bemutatkozások."; +$a->strings["No more %s notifications."] = "Nincs több %s értesítés."; +$a->strings["You must be logged in to show this page."] = "Bejelentkezve kell lennie az oldal megtekintéséhez."; +$a->strings["Network Notifications"] = "Hálózati értesítések"; +$a->strings["System Notifications"] = "Rendszerértesítések"; +$a->strings["Personal Notifications"] = "Személyes értesítések"; +$a->strings["Home Notifications"] = "Saját értesítések"; +$a->strings["Show unread"] = "Olvasatlanok megjelenítése"; +$a->strings["Show all"] = "Összes megjelenítése"; +$a->strings["Unsupported or missing response type"] = "Nem támogatott vagy hiányzó választípus"; +$a->strings["Incomplete request data"] = "Befejezetlen kérésadat"; +$a->strings["Please copy the following authentication code into your application and close this window: %s"] = "Másolja be a következő hitelesítési kódot az alkalmazásába, és zárja be ezt az ablakot: %s"; +$a->strings["Unsupported or missing grant type"] = "Nem támogatott vagy hiányzó felhatalmazástípus"; +$a->strings["Wrong type \"%s\", expected one of: %s"] = "Hibás típus: „%s”, a következők egyike várt: %s"; +$a->strings["Model not found"] = "A modell nem található"; +$a->strings["Remote privacy information not available."] = "A távoli adatvédelmi információk nem érhetők el."; +$a->strings["Visible to:"] = "Látható nekik:"; $a->strings["The Photo with id %s is not available."] = "A(z) %s azonosítóval rendelkező fénykép nem érhető el."; $a->strings["Invalid photo with id %s."] = "Érvénytelen %s azonosítóval rendelkező fénykép."; -$a->strings["everybody"] = "mindenki"; -$a->strings["Account"] = "Fiók"; -$a->strings["Display"] = "Megjelenítés"; -$a->strings["Social Networks"] = "Közösségi hálózatok"; -$a->strings["Connected apps"] = "Kapcsolt alkalmazások"; -$a->strings["Remove account"] = "Fiók eltávolítása"; -$a->strings["Logged out."] = "Kijelentkezve."; -$a->strings["OpenID protocol error. No ID returned"] = "OpenID protokollhiba. Nem lett azonosító visszaadva"; -$a->strings["Account not found. Please login to your existing account to add the OpenID to it."] = "A fiók nem található. Jelentkezzen be a meglévő fiókjába, hogy hozzáadja az OpenID-t ahhoz."; -$a->strings["Account not found. Please register a new account or login to your existing account to add the OpenID to it."] = "A fiók nem található. Regisztráljon új fiókot vagy jelentkezzen be a meglévő fiókjába, hogy hozzáadja az OpenID-t ahhoz."; -$a->strings["

Open the two-factor authentication app on your device to get an authentication code and verify your identity.

"] = "

Nyissa meg a kétlépcsős hitelesítés alkalmazást az eszközén, hogy megkapjon egy hitelesítő kódot és ellenőrizze a személyazonosságát.

"; -$a->strings["Don’t have your phone? Enter a two-factor recovery code"] = "Nincs meg a telefonja? Adjon meg egy kétlépcsős visszaszerzési kódot"; -$a->strings["This is my two-factor authenticator app device"] = "Ez az én kétlépcsős hitelesítő alkalmazás eszközöm"; -$a->strings["Verify code and complete login"] = "Kód ellenőrzése és a bejelentkezés befejezése"; -$a->strings["Remaining recovery codes: %d"] = "Hátralévő visszaszerzési kódok: %d"; -$a->strings["Two-factor recovery"] = "Kétlépcsős visszaszerzés"; -$a->strings["

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

"] = "

Megadhatja az egyszeri visszaszerzési kódjai egyikét abban az esetben, ha elvesztette a hozzáférést a mobil eszközéhez.

"; -$a->strings["Please enter a recovery code"] = "Adjon meg egy visszaszerzési kódot"; -$a->strings["Submit recovery code and complete login"] = "Visszaszerzési kód elküldése és a bejelentkezés befejezése"; +$a->strings["No contacts."] = "Nincsenek partnerek."; +$a->strings["You're currently viewing your profile as %s Cancel"] = "A profilját jelenleg %s nevében nézi Mégse"; +$a->strings["Member since:"] = "Ekkortól tag:"; +$a->strings["j F, Y"] = "Y. F j."; +$a->strings["j F"] = "F j."; +$a->strings["Birthday:"] = "Születésnap:"; +$a->strings["Age: "] = "Életkor: "; +$a->strings["%d year old"] = [ + 0 => "%d éves", + 1 => "%d éves", +]; +$a->strings["Forums:"] = "Fórumok:"; +$a->strings["View profile as:"] = "Profil megtekintése másként:"; +$a->strings["View as"] = "Megtekintés másként"; +$a->strings["%s's timeline"] = "%s idővonala"; +$a->strings["%s's posts"] = "%s bejegyzései"; +$a->strings["%s's comments"] = "%s hozzászólásai"; +$a->strings["Only parent users can create additional accounts."] = "Csak fölérendelt felhasználók hozhatnak létre további fiókokat."; +$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking \"Register\"."] = "Kitöltheti ezt az űrlapot OpenID használatán keresztül is az OpenID azonosítója megadásával és „Regisztráció” gombra kattintva (nem kötelező)."; +$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Ha nem ismeri az OpenID-t, akkor hagyja a mezőt üresen, és töltse ki a többi elemet."; +$a->strings["Your OpenID (optional): "] = "Az Ön OpenID-ja (opcionális): "; +$a->strings["Include your profile in member directory?"] = "Felveszi a profilját a tagkönyvtárba?"; +$a->strings["Note for the admin"] = "Jegyzet az adminisztrátornak"; +$a->strings["Leave a message for the admin, why you want to join this node"] = "Hagyjon üzenetet az adminisztrátornak, hogy miért szeretne ehhez a csomóponthoz csatlakozni"; +$a->strings["Membership on this site is by invitation only."] = "Ezen az oldalon a tagság csak meghívás alapján van."; +$a->strings["Your invitation code: "] = "A meghívási kódja: "; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "A teljes neve (például Kovács János, valódi vagy valódinak látszó): "; +$a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "Az e-mail-címe (a kezdeti információk ide lesznek elküldve, szóval ennek létező címnek kell lennie):"; +$a->strings["Please repeat your e-mail address:"] = "Ismételje meg az e-mail-címét:"; +$a->strings["Leave empty for an auto generated password."] = "Hagyja üresen egy automatikusan előállított jelszóhoz."; +$a->strings["Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \"nickname@%s\"."] = "Válasszon profilbecenevet. Ennek betűvel kell kezdődnie. Ezután a profilcíme ezen az oldalon „becenév@%s” lesz."; +$a->strings["Choose a nickname: "] = "Becenév választása: "; +$a->strings["Import your profile to this friendica instance"] = "A profilja importálása erre a Friendica példányra"; +$a->strings["Note: This node explicitly contains adult content"] = "Megjegyzés: ez a csomópont kifejezetten tartalmaz felnőtt tartalmat"; +$a->strings["Parent Password:"] = "Fölérendelt jelszó:"; +$a->strings["Please enter the password of the parent account to legitimize your request."] = "Adja meg a fölérendelt fiók jelszavát a kérése törvényesítéséhez."; +$a->strings["Password doesn't match."] = "A jelszó nem egyezik."; +$a->strings["Please enter your password."] = "Adja meg a jelszavát."; +$a->strings["You have entered too much information."] = "Túl sok információt adott meg."; +$a->strings["Please enter the identical mail address in the second field."] = "Adja meg a megegyező e-mail-címet a második mezőben."; +$a->strings["The additional account was created."] = "A további fiók létre lett hozva."; +$a->strings["Registration successful. Please check your email for further instructions."] = "A regisztráció sikerült. Nézze meg a postafiókját a további utasításokért."; +$a->strings["Failed to send email message. Here your accout details:
login: %s
password: %s

You can change your password after login."] = "Nem sikerült elküldeni az e-mail üzenetet. Itt vannak a fiók részletei:
Bejelentkezés: %s
Jelszó: %s

A jelszavát bejelentkezés után változtathatja meg."; +$a->strings["Registration successful."] = "A regisztráció sikerült."; +$a->strings["Your registration can not be processed."] = "A regisztrációját nem lehet feldolgozni."; +$a->strings["You have to leave a request note for the admin."] = "Hagynia kell egy kérelmi jegyzetet az adminisztrátornak."; +$a->strings["Your registration is pending approval by the site owner."] = "A regisztrációja jóváhagyásra vár az oldal tulajdonosától."; +$a->strings["The provided profile link doesn't seem to be valid"] = "A megadott profilhivatkozás nem tűnik érvényesnek"; +$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system, you have to subscribe to %s or %s directly on your system."] = "Adja meg itt a WebFinger-címét (felhasználó@tartomány.tld) vagy a profil URL-jét. Ha ezt nem támogatja a rendszere, akkor fel kell iratkoznia a(z) %s vagy a(z) %s címre közvetlenül a rendszerén."; +$a->strings["Only logged in users are permitted to perform a search."] = "Csak bejelentkezett felhasználóknak engedélyezett a keresés végrehajtása."; +$a->strings["Only one search per minute is permitted for not logged in users."] = "Percenként csak egy keresés engedélyezett a nem bejelentkezett felhasználóknak."; +$a->strings["Items tagged with: %s"] = "Ezzel címkézett elemek: %s"; +$a->strings["Search term was not saved."] = "A keresési kifejezés nem lett elmentve."; +$a->strings["Search term already saved."] = "A keresési kifejezés már el van mentve."; +$a->strings["Search term was not removed."] = "A keresési kifejezés nem lett eltávolítva."; $a->strings["Create a New Account"] = "Új fiók létrehozása"; $a->strings["Your OpenID: "] = "Az Ön OpenID-ja: "; $a->strings["Please enter your username and password to add the OpenID to your existing account."] = "Adja meg a felhasználónevét és a jelszavát, hogy hozzáadja az OpenID azonosítóját a meglévő fiókjához."; $a->strings["Or login using OpenID: "] = "Vagy bejelentkezés OpenID használatával: "; -$a->strings["Logout"] = "Kijelentkezés"; -$a->strings["Nickname or Email: "] = "Becenév vagy e-mail-cím: "; $a->strings["Password: "] = "Jelszó: "; $a->strings["Remember me"] = "Emlékezzen rám"; $a->strings["Forgot your password?"] = "Elfelejtette a jelszavát?"; -$a->strings["Password Reset"] = "Jelszó visszaállítása"; $a->strings["Website Terms of Service"] = "Weboldal használati feltételei"; $a->strings["terms of service"] = "használati feltételek"; $a->strings["Website Privacy Policy"] = "Weboldal adatvédelmi irányelvei"; $a->strings["privacy policy"] = "adatvédelmi irányelv"; -$a->strings["[no subject]"] = "[nincs tárgy]"; -$a->strings["Detected languages in this post:\\n%s"] = "A bejegyzésben felismert nyelvek:\\n%s"; -$a->strings["event"] = "esemény"; -$a->strings["photo"] = "fénykép"; -$a->strings["activity"] = "tevékenység"; -$a->strings["comment"] = [ - 0 => "hozzászólás", - 1 => "hozzászólások", +$a->strings["Logged out."] = "Kijelentkezve."; +$a->strings["OpenID protocol error. No ID returned"] = "OpenID protokollhiba. Nem lett azonosító visszaadva"; +$a->strings["Account not found. Please login to your existing account to add the OpenID to it."] = "A fiók nem található. Jelentkezzen be a meglévő fiókjába, hogy hozzáadja az OpenID-t ahhoz."; +$a->strings["Account not found. Please register a new account or login to your existing account to add the OpenID to it."] = "A fiók nem található. Regisztráljon új fiókot vagy jelentkezzen be a meglévő fiókjába, hogy hozzáadja az OpenID-t ahhoz."; +$a->strings["Remaining recovery codes: %d"] = "Hátralévő visszaszerzési kódok: %d"; +$a->strings["Invalid code, please retry."] = "Érvénytelen kód, próbálja újra."; +$a->strings["Two-factor recovery"] = "Kétlépcsős visszaszerzés"; +$a->strings["

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

"] = "

Megadhatja az egyszeri visszaszerzési kódjai egyikét abban az esetben, ha elvesztette a hozzáférést a mobil eszközéhez.

"; +$a->strings["Don’t have your phone? Enter a two-factor recovery code"] = "Nincs meg a telefonja? Adjon meg egy kétlépcsős visszaszerzési kódot"; +$a->strings["Please enter a recovery code"] = "Adjon meg egy visszaszerzési kódot"; +$a->strings["Submit recovery code and complete login"] = "Visszaszerzési kód elküldése és a bejelentkezés befejezése"; +$a->strings["

Open the two-factor authentication app on your device to get an authentication code and verify your identity.

"] = "

Nyissa meg a kétlépcsős hitelesítés alkalmazást az eszközén, hogy megkapjon egy hitelesítő kódot és ellenőrizze a személyazonosságát.

"; +$a->strings["Please enter a code from your authentication app"] = "Adjon meg egy kódot a hitelesítő alkalmazásából"; +$a->strings["This is my two-factor authenticator app device"] = "Ez az én kétlépcsős hitelesítő alkalmazás eszközöm"; +$a->strings["Verify code and complete login"] = "Kód ellenőrzése és a bejelentkezés befejezése"; +$a->strings["Delegation successfully granted."] = "A meghatalmazás sikeresen megadva."; +$a->strings["Parent user not found, unavailable or password doesn't match."] = "A fölérendelt felhasználó nem található, nem érhető el vagy a jelszó nem egyezik."; +$a->strings["Delegation successfully revoked."] = "A meghatalmazás sikeresen visszavonva."; +$a->strings["Delegated administrators can view but not change delegation permissions."] = "A meghatalmazott adminisztrátorok megtekinthetik, de nem változtathatják meg a meghatalmazás jogosultságait."; +$a->strings["Delegate user not found."] = "A meghatalmazott felhasználó nem található."; +$a->strings["No parent user"] = "Nincs fölérendelt felhasználó"; +$a->strings["Parent User"] = "Fölérendelt felhasználó"; +$a->strings["Additional Accounts"] = "További fiókok"; +$a->strings["Register additional accounts that are automatically connected to your existing account so you can manage them from this account."] = "További fiókok regisztrálása, amelyek automatikusan hozzá vannak kapcsolva a meglévő fiókjához, így ebből a fiókból kezelheti azokat."; +$a->strings["Register an additional account"] = "További fiók regisztrálása"; +$a->strings["Parent users have total control about this account, including the account settings. Please double check whom you give this access."] = "A fölérendelt felhasználóknak teljes ellenőrzése van ezen fiók fölött, beleértve a fiók beállításait is. Ellenőrizze még egyszer, hogy kinek ad hozzáférést."; +$a->strings["Delegates"] = "Meghatalmazottak"; +$a->strings["Delegates are able to manage all aspects of this account/page except for basic account settings. Please do not delegate your personal account to anybody that you do not trust completely."] = "A meghatalmazottak képesek ezen fiókot vagy oldalt minden szempontból kezelni, kivéve az alapvető fiókbeállításokat. Ne hatalmazzon meg senki mást a személyes fiókja kezeléséhez, akiben nem bízik meg teljes mértékben."; +$a->strings["Existing Page Delegates"] = "Meglévő oldalmeghatalmazottak"; +$a->strings["Potential Delegates"] = "Lehetséges meghatalmazottak"; +$a->strings["Add"] = "Hozzáadás"; +$a->strings["No entries."] = "Nincsenek bejegyzések."; +$a->strings["The theme you chose isn't available."] = "A választott téma nem érhető el."; +$a->strings["%s - (Unsupported)"] = "%s – (nem támogatott)"; +$a->strings["Display Settings"] = "Megjelenítési beállítások"; +$a->strings["General Theme Settings"] = "Általános témabeállítások"; +$a->strings["Custom Theme Settings"] = "Egyéni témabeállítások"; +$a->strings["Content Settings"] = "Tartalombeállítások"; +$a->strings["Theme settings"] = "Témabeállítások"; +$a->strings["Calendar"] = "Naptár"; +$a->strings["Display Theme:"] = "Megjelenítés témája:"; +$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["Automatic updates only at the top of the post stream pages"] = "Automatikus frissítések csak a bejegyzésfolyam oldalainak tetejénél"; +$a->strings["Auto update may add new posts at the top of the post stream pages, which can affect the scroll position and perturb normal reading if it happens anywhere else the top of the page."] = "Az automatikus frissítés új bejegyzéseket adhat a bejegyzésfolyam oldalainak tetejéhez, amely hatással lehet a görgetési pozícióra és megzavarhatja a normál olvasást, ha az oldal tetejének bármely részén történik."; +$a->strings["Don't show emoticons"] = "Ne jelenítsen meg hangulatjeleket"; +$a->strings["Normally emoticons are replaced with matching symbols. This setting disables this behaviour."] = "Általában a hangulatjelek ki lesznek cserélve a megfelelő szimbólumokkal. Ez a beállítás letiltja ezt a viselkedést."; +$a->strings["Infinite scroll"] = "Végtelen görgetés"; +$a->strings["Automatic fetch new items when reaching the page end."] = "Új elemek automatikus lekérése az oldal végének elérésekor."; +$a->strings["Disable Smart Threading"] = "Intelligens szálkezelés letiltása"; +$a->strings["Disable the automatic suppression of extraneous thread indentation."] = "A nem odatartozó szálbehúzások automatikus elnyomásának letiltása."; +$a->strings["Hide the Dislike feature"] = "A nem tetszik funkció elrejtése"; +$a->strings["Hides the Dislike button and dislike reactions on posts and comments."] = "Elrejti a nem tetszik gombot és a nem tetszik reakciókat a bejegyzéseknél és a hozzászólásoknál."; +$a->strings["Display the resharer"] = "Az újramegosztó megjelenítése"; +$a->strings["Display the first resharer as icon and text on a reshared item."] = "Az első újramegosztó megjelenítése ikonként és szövegként egy újra megosztott elemnél."; +$a->strings["Stay local"] = "Maradjon helyi"; +$a->strings["Don't go to a remote system when following a contact link."] = "Ne menjen távoli rendszerre, ha egy partnerhivatkozást követ."; +$a->strings["Beginning of week:"] = "A hét kezdete:"; +$a->strings["Profile Name is required."] = "A profil neve kötelező."; +$a->strings["Profile couldn't be updated."] = "A profilt nem sikerült frissíteni."; +$a->strings["Label:"] = "Címke:"; +$a->strings["Value:"] = "Érték:"; +$a->strings["Field Permissions"] = "Mező jogosultságai"; +$a->strings["(click to open/close)"] = "(kattintson a megnyitáshoz vagy bezáráshoz)"; +$a->strings["Add a new profile field"] = "Új profilmező hozzáadása"; +$a->strings["Profile Actions"] = "Profilműveletek"; +$a->strings["Edit Profile Details"] = "Profil részleteinek szerkesztése"; +$a->strings["Change Profile Photo"] = "Profilfénykép megváltoztatása"; +$a->strings["Profile picture"] = "Profilfénykép"; +$a->strings["Location"] = "Hely"; +$a->strings["Miscellaneous"] = "Egyebek"; +$a->strings["Custom Profile Fields"] = "Egyéni profilmezők"; +$a->strings["Upload Profile Photo"] = "Profilfénykép feltöltése"; +$a->strings["Display name:"] = "Megjelenített név:"; +$a->strings["Street Address:"] = "Utca, házszám:"; +$a->strings["Locality/City:"] = "Helység vagy város:"; +$a->strings["Region/State:"] = "Régió vagy állam:"; +$a->strings["Postal/Zip Code:"] = "Irányítószám:"; +$a->strings["Country:"] = "Ország:"; +$a->strings["XMPP (Jabber) address:"] = "XMPP (Jabber) cím:"; +$a->strings["The XMPP address will be propagated to your contacts so that they can follow you."] = "Az XMPP-cím továbbításra kerül a partnereinek, hogy követni tudják Önt."; +$a->strings["Homepage URL:"] = "Honlap URL:"; +$a->strings["Public Keywords:"] = "Nyilvános kulcsszavak:"; +$a->strings["(Used for suggesting potential friends, can be seen by others)"] = "(Lehetséges ismerősök ajánlásához lesz használva, mások is láthatják)"; +$a->strings["Private Keywords:"] = "Személyes kulcsszavak:"; +$a->strings["(Used for searching profiles, never shown to others)"] = "(Profilok kereséséhez lesz használva, sosem látható másoknak)"; +$a->strings["

Custom fields appear on your profile page.

\n\t\t\t\t

You can use BBCodes in the field values.

\n\t\t\t\t

Reorder by dragging the field title.

\n\t\t\t\t

Empty the label field to remove a custom field.

\n\t\t\t\t

Non-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.

"] = "

Az egyéni mezők a profiloldalán jelennek meg.

\n\t\t\t\t

Használhat BBCode formázásokat a mező értékeiben.

\n\t\t\t\t

Átrendezheti a mező címének húzásával.

\n\t\t\t\t

Törölje ki a címkemezőt egy egyéni mező eltávolításához.

\n\t\t\t\t

A nem nyilvános mezőket csak a kijelölt Friendica partnerek vagy a kijelölt csoportban lévő Friendica partnerek láthatják.

"; +$a->strings["Image size reduction [%s] failed."] = "A kép méretének csökkentése [%s] sikertelen."; +$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Töltse újra az oldalt a Shift billentyű lenyomása közben, vagy törölje a böngésző gyorsítótárát, ha az új fénykép nem jelenik meg azonnal."; +$a->strings["Unable to process image"] = "Nem lehet feldolgozni a képet"; +$a->strings["Photo not found."] = "A fénykép nem található."; +$a->strings["Profile picture successfully updated."] = "A profilfénykép sikeresen frissítve."; +$a->strings["Crop Image"] = "Kép levágása"; +$a->strings["Please adjust the image cropping for optimum viewing."] = "Igazítsa a kép levágását az optimális megtekintéshez."; +$a->strings["Use Image As Is"] = "Kép használata, ahogy van"; +$a->strings["Missing uploaded image."] = "Hiányzó feltöltött kép."; +$a->strings["Profile Picture Settings"] = "Profilfénykép beállításai"; +$a->strings["Current Profile Picture"] = "Jelenlegi profilfénykép"; +$a->strings["Upload Profile Picture"] = "Profilfénykép feltöltése"; +$a->strings["Upload Picture:"] = "Fénykép feltöltése:"; +$a->strings["or"] = "vagy"; +$a->strings["skip this step"] = "ezen lépés kihagyása"; +$a->strings["select a photo from your photo albums"] = "fénykép kiválasztása a fényképalbumából"; +$a->strings["Please enter your password to access this page."] = "Adja meg a jelszavát az oldal eléréséhez."; +$a->strings["App-specific password generation failed: The description is empty."] = "Az alkalmazásfüggő jelszó előállítása sikertelen: a leírás üres."; +$a->strings["App-specific password generation failed: This description already exists."] = "Az alkalmazásfüggő jelszó előállítása sikertelen: a leírás már létezik."; +$a->strings["New app-specific password generated."] = "Az új alkalmazásfüggő jelszó előállítva."; +$a->strings["App-specific passwords successfully revoked."] = "Az alkalmazásfüggő jelszavak sikeresen visszavonva."; +$a->strings["App-specific password successfully revoked."] = "Az alkalmazásfüggő jelszó sikeresen visszavonva."; +$a->strings["Two-factor app-specific passwords"] = "Kétlépcsős alkalmazásfüggő jelszavak"; +$a->strings["

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.

"] = "

Az alkalmazásfüggő jelszavak az Ön szokásos jelszava helyett használt véletlenszerűen előállított jelszavak, hogy hitelesítsék a fiókját az olyan harmadik féltől származó alkalmazásoknál, amelyek nem támogatják a kétlépcsős hitelesítést.

"; +$a->strings["Make sure to copy your new app-specific password now. You won’t be able to see it again!"] = "Győződjön meg arról, hogy lemásolta-e most az új alkalmazásfüggő jelszavát. Nem fogja tudni újra megnézni a jelszót!"; +$a->strings["Description"] = "Leírás"; +$a->strings["Last Used"] = "Legutóbb használt"; +$a->strings["Revoke"] = "Visszavonás"; +$a->strings["Revoke All"] = "Összes visszavonása"; +$a->strings["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."] = "Ha új alkalmazásfüggő jelszót állít elő, akkor azonnal fel kell használnia. Akkor lesz megjelenítve Önnek, miután előállította azt."; +$a->strings["Generate new app-specific password"] = "Új alkalmazásfüggő jelszó előállítása"; +$a->strings["Friendiqa on my Fairphone 2..."] = "Friendiqa a Fairphone 2 készülékemen…"; +$a->strings["Generate"] = "Előállítás"; +$a->strings["Two-factor authentication successfully disabled."] = "A kétlépcsős hitelesítés sikeresen letiltva."; +$a->strings["Wrong Password"] = "Hibás jelszó"; +$a->strings["

Use an application on a mobile device to get two-factor authentication codes when prompted on login.

"] = "

Egy alkalmazás használata egy mobil eszközön, hogy megkapja a kétlépcsős hitelesítés kódjait, ha a bejelentkezéskor kérik.

"; +$a->strings["Authenticator app"] = "Hitelesítő alkalmazás"; +$a->strings["Configured"] = "Beállítva"; +$a->strings["Not Configured"] = "Nincs beállítva"; +$a->strings["

You haven't finished configuring your authenticator app.

"] = "

Nem fejezte be a hitelesítő alkalmazása beállítását.

"; +$a->strings["

Your authenticator app is correctly configured.

"] = "

A hitelesítő alkalmazása megfelelően be van állítva.

"; +$a->strings["Recovery codes"] = "Visszaszerzési kódok"; +$a->strings["Remaining valid codes"] = "Hátralévő érvényes kódok"; +$a->strings["

These one-use codes can replace an authenticator app code in case you have lost access to it.

"] = "

Ezek az egyszer használható kódok helyettesíthetnek egy hitelesítő alkalmazás kódot abban az esetben, ha elveszíti a hozzáférést ahhoz.

"; +$a->strings["App-specific passwords"] = "Alkalmazásfüggő jelszavak"; +$a->strings["Generated app-specific passwords"] = "Előállított alkalmazásfüggő jelszavak"; +$a->strings["

These randomly generated passwords allow you to authenticate on apps not supporting two-factor authentication.

"] = "

Ezek a véletlenszerűen előállított jelszavak lehetővé teszik, hogy olyan alkalmazásoknál hitelesítsen, amelyek nem támogatják a kétlépcsős hitelesítést.

"; +$a->strings["Current password:"] = "Jelenlegi jelszó:"; +$a->strings["You need to provide your current password to change two-factor authentication settings."] = "Meg kell adnia a jelenlegi jelszavát a kétlépcsős hitelesítési beállítások megváltoztatásához."; +$a->strings["Enable two-factor authentication"] = "Kétlépcsős hitelesítés engedélyezése"; +$a->strings["Disable two-factor authentication"] = "Kétlépcsős hitelesítés letiltása"; +$a->strings["Show recovery codes"] = "Visszaszerzési kódok megjelenítése"; +$a->strings["Manage app-specific passwords"] = "Alkalmazásfüggő jelszavak kezelése"; +$a->strings["Manage trusted browsers"] = "Megbízható böngészők kezelése"; +$a->strings["Finish app configuration"] = "Alkalmazás beállításának befejezése"; +$a->strings["New recovery codes successfully generated."] = "Az új visszaszerzési kódok sikeresen előállítva."; +$a->strings["Two-factor recovery codes"] = "Kétlépcsős visszaszerzési kódok"; +$a->strings["

Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.

Put these in a safe spot! If you lose your device and don’t have the recovery codes you will lose access to your account.

"] = "

A visszaszerzési kódok használhatók a fiókjához való hozzáféréséhez abban az esetben, ha elveszti a hozzáférést az eszközéhez, és nem tud kétlépcsős hitelesítési kódokat fogadni.

Tegye ezeket biztonságos helyre! Ha elveszti az eszközét és nincsenek meg a visszaszerzési kódjai, akkor el fogja veszíteni a fiókjához való hozzáférést.

"; +$a->strings["When you generate new recovery codes, you must copy the new codes. Your old codes won’t work anymore."] = "Ha új visszaszerzési kódokat állít elő, akkor le kell másolnia az új kódokat. A régi kódjai többé nem fognak működni."; +$a->strings["Generate new recovery codes"] = "Új visszaszerzési kódok előállítása"; +$a->strings["Next: Verification"] = "Következő: ellenőrzés"; +$a->strings["Trusted browsers successfully removed."] = "A megbízható böngészők sikeresen eltávolítva."; +$a->strings["Trusted browser successfully removed."] = "A megbízható böngésző sikeresen eltávolítva."; +$a->strings["Two-factor Trusted Browsers"] = "Kétlépcsős megbízható böngészők"; +$a->strings["Trusted browsers are individual browsers you chose to skip two-factor authentication to access Friendica. Please use this feature sparingly, as it can negate the benefit of two-factor authentication."] = "A megbízható böngészők azok az egyéni böngészők, amelyeknél a kétlépcsős hitelesítés kihagyását választotta a Friendica alkalmazáshoz való hozzáféréshez. Lehetőleg mellőzze ennek a funkciónak a használatát, mivel ez megszüntetheti a kétlépcsős hitelesítés előnyeit."; +$a->strings["Device"] = "Eszköz"; +$a->strings["OS"] = "Operációs rendszer"; +$a->strings["Trusted"] = "Megbízható"; +$a->strings["Last Use"] = "Utolsó használat"; +$a->strings["Remove All"] = "Összes eltávolítása"; +$a->strings["Two-factor authentication successfully activated."] = "A kétlépcsős hitelesítés sikeresen bekapcsolva."; +$a->strings["

Or you can submit the authentication settings manually:

\n
\n\t
Issuer
\n\t
%s
\n\t
Account Name
\n\t
%s
\n\t
Secret Key
\n\t
%s
\n\t
Type
\n\t
Time-based
\n\t
Number of digits
\n\t
6
\n\t
Hashing algorithm
\n\t
SHA-1
\n
"] = "

Vagy elküldheti a hitelesítési beállításokat kézzel:

\n
\n\t
Kibocsájtó
\n\t
%s
\n\t
Fiók neve
\n\t
%s
\n\t
Titkos kulcs
\n\t
%s
\n\t
Típus
\n\t
Időalapú
\n\t
Számjegyek száma
\n\t
6
\n\t
Kivonatoló algoritmus
\n\t
SHA-1
\n
"; +$a->strings["Two-factor code verification"] = "Kétlépcsős kód ellenőrzése"; +$a->strings["

Please scan this QR Code with your authenticator app and submit the provided code.

"] = "

Olvassa be ezt a QR-kódot a hitelesítő alkalmazásával, és küldje el a megkapott kódot.

"; +$a->strings["

Or you can open the following URL in your mobile device:

%s

"] = "

Vagy megnyithatja a következő URL-t a mobil eszközén:

%s

"; +$a->strings["Verify code and enable two-factor authentication"] = "Kód ellenőrzése és a kétlépcsős hitelesítés engedélyezése"; +$a->strings["Export account"] = "Fiók exportálása"; +$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Fiókinformációk és partnerek exportálása. A fiókjáról történő biztonsági mentés készítéséhez és/vagy egy másik kiszolgálóra való áthelyezéséhez használja ezt."; +$a->strings["Export all"] = "Összes exportálása"; +$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)"] = "Fiókinformációk, partnerek és az összes elem exportálása JSON-formátumban. nagyon nagy fájl is lehet, és sokáig eltarthat. A fiókja teljes biztonsági mentésének elkészítéséhez használja ezt (a fényképek nem lesznek exportálva)."; +$a->strings["Export Contacts to CSV"] = "Partnerek exportálása CSV-fájlba"; +$a->strings["Export the list of the accounts you are following as CSV file. Compatible to e.g. Mastodon."] = "A követett fiókok listájának exportálása CSV-fájlként. Kompatibilis például a Mastodonnal."; +$a->strings["Bad Request"] = "Hibás kérés"; +$a->strings["Forbidden"] = "Tiltott"; +$a->strings["Not Found"] = "Nem található"; +$a->strings["Service Unavailable"] = "A szolgáltatás nem érhető el"; +$a->strings["The server cannot or will not process the request due to an apparent client error."] = "A kiszolgáló nem tudja vagy nem fogja feldolgozni a kérést egy nyilvánvaló klienshiba miatt."; +$a->strings["Authentication is required and has failed or has not yet been provided."] = "Hitelesítés szükséges, és sikertelen volt vagy még nem lett megadva."; +$a->strings["The request was valid, but the server is refusing action. The user might not have the necessary permissions for a resource, or may need an account."] = "A kérés érvényes volt, de a kiszolgáló visszautasította a műveletet. A felhasználónak talán nincsenek meg a szükséges jogosultságai egy erőforráshoz, vagy fiókra lehet szüksége."; +$a->strings["The requested resource could not be found but may be available in the future."] = "A kért erőforrás nem található, de elérhető lehet a jövőben."; +$a->strings["An unexpected condition was encountered and no more specific message is suitable."] = "Váratlan feltétel történt, és nincs konkrétabb megfelelő üzenet."; +$a->strings["The server is currently unavailable (because it is overloaded or down for maintenance). Please try again later."] = "A kiszolgáló jelenleg nem érhető el (mert túlterhelt vagy le van kapcsolva a karbantartáshoz). Próbálja újra később."; +$a->strings["Stack trace:"] = "Veremkiíratás:"; +$a->strings["Exception thrown in %s:%d"] = "Kivétel történt itt: %s:%d"; +$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."] = "A regisztrációkor, valamint a felhasználói fiók és a partnerei között történő kommunikáció biztosításához a felhasználónak biztosítania kell egy megjelenített nevet (álnevet), egy felhasználónevet (becenevet) és egy működő e-mail-címet. A nevek hozzáférhetőek lesznek a fiók profiloldalán az oldal bármely látogatója számára, még akkor is, ha más profilrészletek nem jelennek meg. Az e-mail-cím csak az interakciókkal kapcsolatos felhasználói értesítések küldéséhez lesz használva, de nem lesz láthatóan megjelenítve. A fiók felsorolása a csomópont felhasználói könyvtárában vagy a globális felhasználói könyvtárban választható, és a felhasználói beállításokban szabályozható. Ez nem szükséges a kommunikációhoz."; +$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."] = "Ezek az adatok a kommunikációhoz szükségesek, és átadásra kerül a kommunikációs partnerek csomópontjainak, valamint el is lesznek tárolva ott. A felhasználók megadhatnak további személyes adatokat, amelyek szintén átvitelre kerülhetnek a kommunikációs partnerek fiókjaiba."; +$a->strings["At any point in time a logged in user can export their account data from the account settings. If the user wants to delete their account they can do so at %1\$s/removeme. The deletion of the account will be permanent. Deletion of the data will also be requested from the nodes of the communication partners."] = "Egy bejelentkezett felhasználó bármely időpontban exportálhatja a fiókja adatait a fiók beállításaiból. Ha a felhasználó törölni szeretné a fiókját, akkor azt megteheti a %1\$s/removeme oldalon. A fiók törlése végleges lesz. Az adatok törlése kérve lesz a kommunikációs partnerek csomópontjairól is."; +$a->strings["Privacy Statement"] = "Adatvédelmi nyilatkozat"; +$a->strings["Welcome to Friendica"] = "Üdvözli a Friendica!"; +$a->strings["New Member Checklist"] = "Új tag ellenőrzőlistája"; +$a->strings["We would like to offer some tips and links to help make your experience enjoyable. Click any item to visit the relevant page. A link to this page will be visible from your home page for two weeks after your initial registration and then will quietly disappear."] = "Tippeket és hivatkozásokat szeretnénk ajánlani, hogy élvezhetővé tegyük az alkalmazás használatát. Kattintson bármelyik elemre a kapcsolódó oldal megtekintéséhez. Az erre az oldalra mutató hivatkozás a kezdőlapjáról érhető el a kezdeti regisztrációt követő két héten belül, azután csendben eltűnik."; +$a->strings["Getting Started"] = "Kezdeti lépések"; +$a->strings["Friendica Walk-Through"] = "Friendica útmutató"; +$a->strings["On your Quick Start page - find a brief introduction to your profile and network tabs, make some new connections, and find some groups to join."] = "A Gyors kezdés oldalon találhat egy rövid bemutatót a profil és hálózati lapokról, új kapcsolatok létesítésről, valamint találhat néhány csoportot, amelyekhez csatlakozhat."; +$a->strings["Go to Your Settings"] = "Ugrás a beállításaihoz"; +$a->strings["On your Settings page - change your initial password. Also make a note of your Identity Address. This looks just like an email address - and will be useful in making friends on the free social web."] = "A Beállítások oldalon változtathatja meg a kezdeti jelszavát. Szintén itt talál egy megjegyzést a személyazonosság-címével kapcsolatban. Ez úgy néz ki mint egy e-mail-cím, és hasznos lesz a szabad közösségi hálón az ismerősök kereséséhez."; +$a->strings["Review the other settings, particularly the privacy settings. An unpublished directory listing is like having an unlisted phone number. In general, you should probably publish your listing - unless all of your friends and potential friends know exactly how to find you."] = "Vizsgálja felül az egyéb beállításokat is, különösen az adatvédelmi beállításokat. Egy nem közzétett könyvtárlistázás olyan, mint ha egy nyilvánosságra nem hozott telefonszáma lenne. Általában valószínűleg közzé kell tennie a listázását, hacsak az ismerősei és a lehetséges ismerősei nem tudják pontosan, hogy hogyan találják meg Önt."; +$a->strings["Upload a profile photo if you have not done so already. Studies have shown that people with real photos of themselves are ten times more likely to make friends than people who do not."] = "Töltsön fel profilfényképet, ha ezt még nem tette meg. A tanulmányok kimutatták, hogy a saját magukról valódi fényképpel rendelkező emberek tízszer valószínűbben találnak ismerősöket mint azok az emberek, akiknek nincs profilfényképük."; +$a->strings["Edit Your Profile"] = "A profil szerkesztése"; +$a->strings["Edit your default profile to your liking. Review the settings for hiding your list of friends and hiding the profile from unknown visitors."] = "Szerkessze az alapértelmezett profilját a kedve szerint. Vizsgálja felül a beállításokat az ismerősök listájának elrejtéséhez és a profiljának az ismeretlen látogatók elől történő elrejtéséhez."; +$a->strings["Profile Keywords"] = "Profil kulcsszavai"; +$a->strings["Set some public keywords for your profile which describe your interests. We may be able to find other people with similar interests and suggest friendships."] = "Állítson be néhány nyilvános kulcsszót a profiljához, amely bemutatja az érdeklődési köreit. Képesek lehetünk megtalálni a hasonló érdeklődéssel rendelkező más embereket, és ajánlhatunk ismeretségeket."; +$a->strings["Connecting"] = "Kapcsolatépítés"; +$a->strings["Importing Emails"] = "E-mailek importálása"; +$a->strings["Enter your email access information on your Connector Settings page if you wish to import and interact with friends or mailing lists from your email INBOX"] = "Adja meg az e-mail-címéhez való hozzáférés információt az összekötő beállításainak oldalán, ha a postafiókja beérkező üzeneteiből szeretne ismerősöket vagy levelezési listákat importálni, valamint velük kapcsolatba lépni."; +$a->strings["Go to Your Contacts Page"] = "Ugrás a partnerek oldalára"; +$a->strings["Your Contacts page is your gateway to managing friendships and connecting with friends on other networks. Typically you enter their address or site URL in the Add New Contact dialog."] = "A partnerek oldal az átjáró az ismeretségek kezeléséhez és a más hálózatokon lévő ismerősökkel történő kapcsolatfelvételhez. Jellemzően csak be kell írnia a címüket vagy az oldal URL-jét az Új partner hozzáadása párbeszédablakba."; +$a->strings["Go to Your Site's Directory"] = "Ugrás az oldal könyvtárához"; +$a->strings["The Directory page lets you find other people in this network or other federated sites. Look for a Connect or Follow link on their profile page. Provide your own Identity Address if requested."] = "A könyvtárak oldal lehetővé teszi más emberek keresését ezen a hálózaton vagy más föderált oldalakon. Keresse meg a Kapcsolódás vagy a Követés hivatkozást a profiloldalukon. Adja meg a saját személyazonosság-címét, ha kérik."; +$a->strings["Finding New People"] = "Új emberek keresése"; +$a->strings["On the side panel of the Contacts page are several tools to find new friends. We can match people by interest, look up people by name or interest, and provide suggestions based on network relationships. On a brand new site, friend suggestions will usually begin to be populated within 24 hours."] = "A partnerek oldal oldalsávjában számos eszköz található új ismerősök kereséséhez. Találhatunk embereket az érdeklődésük szerint, kereshetünk embereket név vagy érdeklődés szerint, valamint ajánlásokat adhatunk a hálózati kapcsolatok alapján. Egy teljesen új oldalon az ismerősök ajánlásai általában 24 órán belül kezdenek megjelenni."; +$a->strings["Group Your Contacts"] = "Partnerek csoportosítása"; +$a->strings["Once you have made some friends, organize them into private conversation groups from the sidebar of your Contacts page and then you can interact with each group privately on your Network page."] = "Miután szerezett néhány ismerőst, szervezze őket személyes beszélgetési csoportokba a partnerek oldal oldalsávján keresztül, és ezután személyes módon léphet kapcsolatba minden egyes csoporttal a hálózatok oldalon."; +$a->strings["Why Aren't My Posts Public?"] = "Miért nem nyilvánosak a bejegyzéseim?"; +$a->strings["Friendica respects your privacy. By default, your posts will only show up to people you've added as friends. For more information, see the help section from the link above."] = "A Friendica tiszteletben tartja a magánszférát. Alapértelmezetten a bejegyzései csak azoknak az embereknek jelennek meg, akiket ismerősként felvett. További információkért nézze meg a súgószakaszt a fenti hivatkozáson keresztül."; +$a->strings["Getting Help"] = "Segítség kérése"; +$a->strings["Go to the Help Section"] = "Ugrás a súgószakaszhoz"; +$a->strings["Our help pages may be consulted for detail on other program features and resources."] = "A súgó oldalaink további részleteket közölhetnek a program egyéb funkcióiról és erőforrásairól."; +$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Ezt az üzenetet %s, a Friendica közösségi hálózatának tagja küldte Önnek."; +$a->strings["You may visit them online at %s"] = "Meglátogathatja őket az interneten ezen a címen: %s"; +$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Vegye fel a kapcsolatot a küldővel erre a bejegyzésre válaszolva, ha nem szeretné megkapni ezeket az üzeneteket."; +$a->strings["%s posted an update."] = "%s frissítést küldött."; +$a->strings["This entry was edited"] = "Ezt a bejegyzést szerkesztették"; +$a->strings["Private Message"] = "Személyes üzenet"; +$a->strings["Edit"] = "Szerkesztés"; +$a->strings["Pinned item"] = "Kitűzött elem"; +$a->strings["Delete globally"] = "Törlés globálisan"; +$a->strings["Remove locally"] = "Eltávolítás helyileg"; +$a->strings["Block %s"] = "%s tiltása"; +$a->strings["Save to folder"] = "Mentés mappába"; +$a->strings["I will attend"] = "Részt veszek"; +$a->strings["I will not attend"] = "Nem veszek részt"; +$a->strings["I might attend"] = "Talán részt veszek"; +$a->strings["Ignore thread"] = "Szál mellőzése"; +$a->strings["Unignore thread"] = "Szál mellőzésének megszüntetése"; +$a->strings["Toggle ignore status"] = "Mellőzési állapot átváltása"; +$a->strings["Pin"] = "Kitűzés"; +$a->strings["Unpin"] = "Kitűzés megszüntetése"; +$a->strings["Toggle pin status"] = "Kitűzés állapotának átváltása"; +$a->strings["Pinned"] = "Kitűzve"; +$a->strings["Add star"] = "Csillag hozzáadása"; +$a->strings["Remove star"] = "Csillag eltávolítása"; +$a->strings["Toggle star status"] = "Csillagállapot átváltása"; +$a->strings["Add tag"] = "Címke hozzáadása"; +$a->strings["Quote share this"] = "Idézett megosztás"; +$a->strings["Quote Share"] = "Idéző megosztás"; +$a->strings["Reshare this"] = "Újra megosztás"; +$a->strings["Reshare"] = "Újra megosztás"; +$a->strings["Cancel your Reshare"] = "Újra megosztás megszakítása"; +$a->strings["Unshare"] = "Megosztás megszüntetése"; +$a->strings["%s (Received %s)"] = "%s (fogadva: %s)"; +$a->strings["Comment this item on your system"] = "Hozzászólás az elemhez a saját rendszerén"; +$a->strings["Remote comment"] = "Távoli hozzászólás"; +$a->strings["Pushed"] = "Felküldve"; +$a->strings["Pulled"] = "Lekérve"; +$a->strings["to"] = "ide:"; +$a->strings["via"] = "ezen keresztül:"; +$a->strings["Wall-to-Wall"] = "Falról-falra"; +$a->strings["via Wall-To-Wall:"] = "falról-falra szolgáltatáson keresztül:"; +$a->strings["Reply to %s"] = "Válasz erre: %s"; +$a->strings["More"] = "Több"; +$a->strings["Notifier task is pending"] = "Az értesítőfeladat függőben van"; +$a->strings["Delivery to remote servers is pending"] = "A távoli kiszolgálókra történő kézbesítés függőben van"; +$a->strings["Delivery to remote servers is underway"] = "A távoli kiszolgálókra történő kézbesítés úton van"; +$a->strings["Delivery to remote servers is mostly done"] = "A távoli kiszolgálókra történő kézbesítés többnyire készen van"; +$a->strings["Delivery to remote servers is done"] = "A távoli kiszolgálókra történő kézbesítés készen van"; +$a->strings["%d comment"] = [ + 0 => "%d hozzászólás", + 1 => "%d hozzászólás", ]; -$a->strings["post"] = "bejegyzés"; -$a->strings["Content warning: %s"] = "Tartalom figyelmeztetés: %s"; -$a->strings["View Video"] = "Videó megtekintése"; -$a->strings["bytes"] = "bájt"; -$a->strings["View on separate page"] = "Megtekintés külön oldalon"; -$a->strings["view on separate page"] = "megtekintés külön oldalon"; -$a->strings["link to source"] = "hivatkozás a forráshoz"; -$a->strings["Starts:"] = "Kezdődik:"; -$a->strings["Finishes:"] = "Befejeződik:"; -$a->strings["all-day"] = "egész nap"; -$a->strings["Sept"] = "Szept"; -$a->strings["today"] = "ma"; -$a->strings["No events to display"] = "Nincsenek megjelenítendő események"; -$a->strings["l, F j"] = "F j., l"; -$a->strings["Edit event"] = "Esemény szerkesztése"; -$a->strings["Duplicate event"] = "Esemény kettőzése"; -$a->strings["Delete event"] = "Esemény törlése"; -$a->strings["D g:i A"] = "D H:i"; -$a->strings["g:i A"] = "H:i"; -$a->strings["Show map"] = "Térkép megjelenítése"; -$a->strings["Hide map"] = "Térkép elrejtése"; -$a->strings["%s's birthday"] = "%s születésnapja"; -$a->strings["Happy Birthday %s"] = "Boldog születésnapot, %s"; -$a->strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Egy ilyen névvel rendelkező törölt csoport újraéledt. Lehet, hogy a meglévő elemjogosultságok alkalmazva lesznek erre a csoportra és bármely jövőbeli tagjaira. Ha ez nem az, amit szeretett volna, akkor hozzon létre egy másik csoportot eltérő névvel."; -$a->strings["Default privacy group for new contacts"] = "Alapértelmezett adatvédelmi csoport az új partnerekhez"; -$a->strings["Everybody"] = "Mindenki"; -$a->strings["edit"] = "szerkesztés"; -$a->strings["add"] = "hozzáadás"; -$a->strings["Edit group"] = "Csoport szerkesztése"; -$a->strings["Create a new group"] = "Új csoport létrehozása"; -$a->strings["Edit groups"] = "Csoportok szerkesztése"; -$a->strings["Network Posts"] = "Hálózati bejegyzések"; -$a->strings["View Contact"] = "Partner megtekintése"; -$a->strings["Connect/Follow"] = "Kapcsolódás vagy követés"; -$a->strings["UnFollow"] = "Követés megszüntetése"; -$a->strings["View Status"] = "Állapot megtekintése"; -$a->strings["View Photos"] = "Fényképek megtekintése"; -$a->strings["Drop Contact"] = "Partner eldobása"; -$a->strings["Send PM"] = "Személyes üzenet küldése"; -$a->strings["Poke"] = "Megbökés"; -$a->strings["Organisation"] = "Szervezet"; -$a->strings["News"] = "Hírek"; -$a->strings["Forum"] = "Fórum"; -$a->strings["Disallowed profile URL."] = "Nem engedélyezett profil URL."; -$a->strings["Connect URL missing."] = "A kapcsolódási URL hiányzik."; -$a->strings["The contact could not be added. Please check the relevant network credentials in your Settings -> Social Networks page."] = "A partnert nem sikerült hozzáadni. Ellenőrizze a hozzá tartozó hálózat hitelesítési adatait a Beállítások → Közösségi hálózatok oldalon."; -$a->strings["This site is not configured to allow communications with other networks."] = "Ez az oldal nem úgy lett beállítva, hogy lehetővé tegye a kommunikációkat más hálózatokkal."; -$a->strings["No compatible communication protocols or feeds were discovered."] = "Nem lettek megfelelő kommunikációs protokollok vagy hírforrások felfedezve."; -$a->strings["The profile address specified does not provide adequate information."] = "A megadott profilcím nem biztosít elegendő információt."; -$a->strings["An author or name was not found."] = "Egy szerző vagy név nem található."; -$a->strings["No browser URL could be matched to this address."] = "Egyetlen böngésző URL-t sem sikerült illeszteni ehhez a címhez."; -$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "Nem lehet illeszteni @-stílusú személyazonosság-címet egy ismert protokollal vagy e-mailes partnerrel."; -$a->strings["Use mailto: in front of address to force email check."] = "Használja a mailto: előtagot a cím előtt az e-mail-ellenőrzés kényszerítéséhez."; -$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "A megadott profilcím egy olyan hálózathoz tartozik, amely le lett tiltva ezen az oldalon."; -$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Korlátozott profil. Ez a személy nem lesz képes közvetlen vagy személyes értesítéseket fogadni Öntől."; -$a->strings["Unable to retrieve contact information."] = "Nem lehet lekérni a partner információit."; -$a->strings["Filesystem storage failed to create \"%s\". Check you write permissions."] = "A fájlrendszer-tároló nem tudta létrehozni ezt: „%s”. Ellenőrizze az írási jogosultságait."; -$a->strings["Filesystem storage failed to save data to \"%s\". Check your write permissions"] = "A fájlrendszer-tároló nem tudta elmenteni az adatokat ide: „%s”. Ellenőrizze az írási jogosultságait."; -$a->strings["Storage base path"] = "Tároló alapútvonala"; -$a->strings["Folder where uploaded files are saved. For maximum security, This should be a path outside web server folder tree"] = "Az a mappa, ahova a feltöltött fájlok mentve lesznek. A legnagyobb biztonság érdekében ennek a webkiszolgáló mappafáján kívüli útvonalnak kell lennie."; -$a->strings["Enter a valid existing folder"] = "Adjon meg egy érvényes, létező mappát"; -$a->strings["Database storage failed to update %s"] = "Az adatbázis-tároló nem tudta frissíteni ezt: %s"; -$a->strings["Database storage failed to insert data"] = "Az adatbázis-tároló nem tudta beszúrni az adatokat"; -$a->strings["SERIOUS ERROR: Generation of security keys failed."] = "SÚLYOS HIBA: a biztonsági kulcsok előállítása nem sikerült."; -$a->strings["Login failed"] = "Bejelentkezés sikertelen"; -$a->strings["Not enough information to authenticate"] = "Nincs elegendő információ a hitelesítéshez"; -$a->strings["Password can't be empty"] = "A jelszó nem lehet üres"; -$a->strings["Empty passwords are not allowed."] = "Az üres jelszavak nem megengedettek."; -$a->strings["The new password has been exposed in a public data dump, please choose another."] = "Az új jelszót közzétették egy nyilvános adattárban. Válasszon egy másikat."; -$a->strings["The password can't contain accentuated letters, white spaces or colons (:)"] = "A jelszó nem tartalmazhat ékezetes betűket, üres karaktereket vagy kettőspontot (:)"; -$a->strings["Passwords do not match. Password unchanged."] = "A jelszavak nem egyeznek. A jelszó változatlan maradt."; -$a->strings["An invitation is required."] = "Egy meghívás szükséges."; -$a->strings["Invitation could not be verified."] = "A meghívást nem sikerült ellenőrizni."; -$a->strings["Invalid OpenID url"] = "Érvénytelen OpenID URL"; -$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Problémába ütköztünk a megadott OpenID-val történő bejelentkezés közben. Ellenőrizze az azonosító helyesírását."; -$a->strings["The error message was:"] = "A hibaüzenet ez volt:"; -$a->strings["Please enter the required information."] = "Adja meg a szükséges információkat."; -$a->strings["system.username_min_length (%s) and system.username_max_length (%s) are excluding each other, swapping values."] = "A system.username_min_length (%s) és a system.username_max_length (%s) kizárják egymást, értékek felcserélése."; -$a->strings["Username should be at least %s character."] = [ - 0 => "A felhasználónévnek legalább %s karakternek kell lennie.", - 1 => "A felhasználónévnek legalább %s karakternek kell lennie.", -]; -$a->strings["Username should be at most %s character."] = [ - 0 => "A felhasználónévnek legfeljebb %s karakternek kell lennie.", - 1 => "A felhasználónévnek legfeljebb %s karakternek kell lennie.", -]; -$a->strings["That doesn't appear to be your full (First Last) name."] = "Úgy tűnik, hogy ez nem a teljes neve (vezetéknév és keresztnév)."; -$a->strings["Your email domain is not among those allowed on this site."] = "Az e-mail tartománya nem tartozik azok közé, amelyek megengedettek ezen az oldalon."; -$a->strings["Not a valid email address."] = "Nem érvényes e-mail-cím."; -$a->strings["The nickname was blocked from registration by the nodes admin."] = "A becenevet a csomópont adminisztrátora tiltotta a regisztrációtól."; -$a->strings["Cannot use that email."] = "Nem lehet használni azt az e-mail-címet."; -$a->strings["Your nickname can only contain a-z, 0-9 and _."] = "A becenév csak a-z, 0-9 és _ karaktereket tartalmazhat."; -$a->strings["Nickname is already registered. Please choose another."] = "A becenév már regisztrálva van. Válasszon egy másikat."; -$a->strings["An error occurred during registration. Please try again."] = "Hiba történt a regisztráció során. Próbálja újra."; -$a->strings["An error occurred creating your default profile. Please try again."] = "Hiba történt az alapértelmezett profil létrehozásakor. Próbálja újra."; -$a->strings["An error occurred creating your self contact. Please try again."] = "Hiba történt a saját partnere létrehozásakor. Próbálja újra."; -$a->strings["Friends"] = "Ismerősök"; -$a->strings["An error occurred creating your default contact group. Please try again."] = "Hiba történt az alapértelmezett partnercsoport létrehozásakor. Próbálja újra."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tthe administrator of %2\$s has set up an account for you."] = "\n\t\tKedves %1\$s!\n\t\t\tA(z) %2\$s adminisztrátora beállított egy fiókot Önnek."; -$a->strings["\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%1\$s\n\t\tLogin Name:\t\t%2\$s\n\t\tPassword:\t\t%3\$s\n\n\t\tYou may change your password from your account \"Settings\" page after logging\n\t\tin.\n\n\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\tYou may also wish to add some basic information to your default profile\n\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\tWe recommend setting your full name, adding a profile photo,\n\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\tthan that.\n\n\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\tIf you are new and do not know anybody here, they may help\n\t\tyou to make some new and interesting friends.\n\n\t\tIf you ever want to delete your account, you can do so at %1\$s/removeme\n\n\t\tThank you and welcome to %4\$s."] = "\n\t\tA bejelentkezés részletei a következők:\n\n\t\tOldal címe:\t%1\$s\n\t\tBejelentkezési név:\t\t%2\$s\n\t\tJelszó:\t\t%3\$s\n\n\t\tA jelszavát a fiókja „Beállítások” oldalán változtathatja meg, miután\n\t\tbejelentkezett.\n\n\t\tSzánjon pár percet a többi fiókbeállítás felülvizsgálatára is azon az oldalon.\n\n\t\tÉrdemes lehet néhány alapvető információt is hozzáadnia az\n\t\talapértelmezett profiljához (a „Profilok” oldalon), azért hogy más\n\t\temberek egyszerűen megtalálják Önt.\n\n\t\tAzt ajánljuk, hogy állítsa be a teljes nevét, adjon hozzá\n\t\tprofilfényképet, adjon hozzá néhány profil „kulcsszót” (nagyon hasznos\n\t\túj ismerősök kereséséhez), valamint talán azt, hogy mely országban él,\n\t\tha nem szeretne annál pontosabbat megadni.\n\n\t\tTeljes mértékben tiszteletben tartjuk az adatvédelemmel kapcsolatos\n\t\tjogát, és ezen elemek egyike sem kötelező. Ha még új itt, és senkit\n\t\tsem ismer, akkor ezek segíthetnek Önnek néhány új és érdekes\n\t\tismerőst találni.\n\n\t\tHa bármikor törölni szeretné a fiókját, akkor megteheti azt a\n\t\tkövetkező címen: %1\$s/removeme\n\n\t\t\tKöszönjük, és üdvözöljük a %4\$s oldalon."; -$a->strings["Registration details for %s"] = "Regisztrációs részletek ehhez: %s"; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account is pending for approval by the administrator.\n\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%4\$s\n\t\t\tPassword:\t\t%5\$s\n\t\t"] = "\n\t\t\tKedves %1\$s!\n\t\t\t\tKöszönjük, hogy regisztrált itt: %2\$s. A fiókja adminisztrátori jóváhagyásra vár.\n\n\t\t\tA bejelentkezés részletei a következők:\n\n\t\t\tOldal címe:\t%3\$s\n\t\t\tBejelentkezési név:\t\t%4\$s\n\t\t\tJelszó:\t\t%5\$s\n\t\t"; -$a->strings["Registration at %s"] = "Regisztráció itt: %s"; -$a->strings["\n\t\t\t\tDear %1\$s,\n\t\t\t\tThank you for registering at %2\$s. Your account has been created.\n\t\t\t"] = "\n\t\t\t\tKedves %1\$s!\n\t\t\t\tKöszönjük, hogy regisztrált itt: %2\$s. A fiókja létrejött.\n\t\t\t"; -$a->strings["\n\t\t\tThe login details are as follows:\n\n\t\t\tSite Location:\t%3\$s\n\t\t\tLogin Name:\t\t%1\$s\n\t\t\tPassword:\t\t%5\$s\n\n\t\t\tYou may change your password from your account \"Settings\" page after logging\n\t\t\tin.\n\n\t\t\tPlease take a few moments to review the other account settings on that page.\n\n\t\t\tYou may also wish to add some basic information to your default profile\n\t\t\t(on the \"Profiles\" page) so that other people can easily find you.\n\n\t\t\tWe recommend setting your full name, adding a profile photo,\n\t\t\tadding some profile \"keywords\" (very useful in making new friends) - and\n\t\t\tperhaps what country you live in; if you do not wish to be more specific\n\t\t\tthan that.\n\n\t\t\tWe fully respect your right to privacy, and none of these items are necessary.\n\t\t\tIf you are new and do not know anybody here, they may help\n\t\t\tyou to make some new and interesting friends.\n\n\t\t\tIf you ever want to delete your account, you can do so at %3\$s/removeme\n\n\t\t\tThank you and welcome to %2\$s."] = "\n\t\t\tA bejelentkezés részletei a következők:\n\n\t\t\tOldal címe:\t%3\$s\n\t\t\tBejelentkezési név:\t\t%1\$s\n\t\t\tJelszó:\t\t%5\$s\n\n\t\t\tA jelszavát a fiókja „Beállítások” oldalán változtathatja meg, miután\n\t\t\tbejelentkezett.\n\n\t\t\tSzánjon pár percet a többi fiókbeállítás felülvizsgálatára is azon az oldalon.\n\n\t\t\tÉrdemes lehet néhány alapvető információt is hozzáadnia az\n\t\t\talapértelmezett profiljához (a „Profilok” oldalon), azért hogy más\n\t\t\temberek egyszerűen megtalálják Önt.\n\n\t\t\tAzt ajánljuk, hogy állítsa be a teljes nevét, adjon hozzá\n\t\t\tprofilfényképet, adjon hozzá néhány profil „kulcsszót” (nagyon hasznos\n\t\t\túj ismerősök kereséséhez), valamint talán azt, hogy mely országban él,\n\t\t\tha nem szeretne annál pontosabbat megadni.\n\n\t\t\tTeljes mértékben tiszteletben tartjuk az adatvédelemmel kapcsolatos\n\t\t\tjogát, és ezen elemek egyike sem kötelező. Ha még új itt, és senkit\n\t\t\tsem ismer, akkor ezek segíthetnek Önnek néhány új és érdekes\n\t\t\tismerőst találni.\n\n\t\t\tHa bármikor törölni szeretné a fiókját, akkor megteheti azt a\n\t\t\tkövetkező címen: %3\$s/removeme\n\n\t\t\tKöszönjük, és üdvözöljük a %2\$s oldalon."; -$a->strings["Change profile photo"] = "Profilfénykép megváltoztatása"; -$a->strings["Atom feed"] = "Atom hírforrás"; -$a->strings["g A l F d"] = "F j., l, H"; -$a->strings["F d"] = "F j."; -$a->strings["[today]"] = "[ma]"; -$a->strings["Birthday Reminders"] = "Születésnapi emlékeztető"; -$a->strings["Birthdays this week:"] = "Születésnapok ezen a héten:"; -$a->strings["[No description]"] = "[Nincs leírás]"; -$a->strings["Event Reminders"] = "Eseményemlékeztetők"; -$a->strings["Upcoming events the next 7 days:"] = "Közelgő események a következő 7 napon:"; -$a->strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s üdvözli őt: %2\$s"; -$a->strings["Legacy module file not found: %s"] = "Az örökölt modulfájl nem található: %s"; +$a->strings["Show more"] = "Több megjelenítése"; +$a->strings["Show fewer"] = "Kevesebb megjelenítése"; +$a->strings["Attachments:"] = "Mellékletek:"; +$a->strings["%s is now following %s."] = "%s mostantól követi %s partnert."; +$a->strings["following"] = "követés"; +$a->strings["%s stopped following %s."] = "%s leállította %s követését."; +$a->strings["stopped following"] = "követés leállítva"; $a->strings["The folder view/smarty3/ must be writable by webserver."] = "A „view/smarty3/” mappának írhatónak kell lennie a webkiszolgáló által."; -$a->strings["Could not find any unarchived contact entry for this URL (%s)"] = "Nem sikerült találni egyetlen archiválatlan partnerbejegyzést sem erről az URL-ről (%s)"; -$a->strings["The contact entries have been archived"] = "A partnerbejegyzések archiválva lettek"; -$a->strings["Post update version number has been set to %s."] = "A bejegyzésfrissítés verziószáma erre lett beállítva: %s."; -$a->strings["Check for pending update actions."] = "Függőben lévő frissítési műveletek ellenőrzése."; -$a->strings["Done."] = "Kész."; -$a->strings["Execute pending post updates."] = "Függőben lévő bejegyzésfrissítések végrehajtása."; -$a->strings["All pending post updates are done."] = "Az összes függőben lévő bejegyzésfrissítés kész."; -$a->strings["Enter new password: "] = "Új jelszó megadása: "; -$a->strings["Password update failed. Please try again."] = "A jelszó frissítése sikertelen. Próbálja újra."; -$a->strings["Password changed."] = "A jelszó megváltoztatva."; -$a->strings["Enter user name: "] = "Felhasználónév megadása: "; -$a->strings["Enter user nickname: "] = "Felhasználó becenevének megadása: "; -$a->strings["Enter user email address: "] = "Felhasználó e-mail-címének megadása: "; -$a->strings["Enter a language (optional): "] = "Nyelv megadása (elhagyható): "; -$a->strings["User is not pending."] = "A felhasználó nincs függőben."; -$a->strings["User has already been marked for deletion."] = "A felhasználó már meg lett jelölve törlésre."; -$a->strings["Type \"yes\" to delete %s"] = "Írja be a „yes” szót %s törléséhez"; -$a->strings["Deletion aborted."] = "Törlés megszakítva."; -$a->strings["Export"] = "Exportálás"; -$a->strings["Export calendar as ical"] = "Naptár exportálása iCal-ként"; -$a->strings["Export calendar as csv"] = "Naptár exportálása CSV-ként"; -$a->strings["Remove term"] = "Kifejezés eltávolítása"; -$a->strings["Saved Searches"] = "Mentett keresések"; -$a->strings["No contacts"] = "Nincsenek partnerek"; -$a->strings["%d Contact"] = [ - 0 => "%d partner", - 1 => "%d partner", -]; -$a->strings["View Contacts"] = "Partnerek megtekintése"; -$a->strings["Trending Tags (last %d hour)"] = [ - 0 => "Népszerű címkék (legutóbbi %d óra)", - 1 => "Népszerű címkék (legutóbbi %d óra)", -]; -$a->strings["More Trending Tags"] = "További népszerű címkék"; -$a->strings["Tags"] = "Címkék"; -$a->strings["Forums"] = "Fórumok"; -$a->strings["External link to forum"] = "Külső hivatkozás a fórumhoz"; -$a->strings["show less"] = "kevesebb megjelenítése"; -$a->strings["show more"] = "több megjelenítése"; -$a->strings["Nothing new here"] = "Semmi új nincs itt"; -$a->strings["Clear notifications"] = "Értesítések törlése"; -$a->strings["@name, !forum, #tags, content"] = "@név, !fórum, #címkék, tartalom"; -$a->strings["End this session"] = "Munkamenet befejezése"; -$a->strings["Sign in"] = "Bejelentkezés"; -$a->strings["Your posts and conversations"] = "Az Ön bejegyzései és beszélgetései"; -$a->strings["Your profile page"] = "Az Ön profiloldala"; -$a->strings["Your photos"] = "Az Ön fényképei"; -$a->strings["Your videos"] = "Az Ön videói"; -$a->strings["Your events"] = "Az Ön eseményei"; -$a->strings["Personal notes"] = "Személyes jegyzetek"; -$a->strings["Your personal notes"] = "Az Ön személyes jegyzetei"; -$a->strings["Home"] = "Kezdőlap"; -$a->strings["Home Page"] = "Kezdőlap"; -$a->strings["Create an account"] = "Fiók létrehozása"; -$a->strings["Help and documentation"] = "Súgó és dokumentáció"; -$a->strings["Apps"] = "Alkalmazások"; -$a->strings["Addon applications, utilities, games"] = "Bővítményalkalmazások, segédprogramok és játékok"; -$a->strings["Search site content"] = "Oldaltartalom keresése"; -$a->strings["Full Text"] = "Teljes szöveg"; -$a->strings["Community"] = "Közösség"; -$a->strings["Conversations on this and other servers"] = "Beszélgetések ezen és más kiszolgálókon"; -$a->strings["Directory"] = "Könyvtár"; -$a->strings["People directory"] = "Emberek könyvtár"; -$a->strings["Information about this friendica instance"] = "Információk erről a Friendica példányról"; -$a->strings["Terms of Service of this Friendica instance"] = "Ezen Friendica példány használati feltételei"; -$a->strings["Network"] = "Hálózat"; -$a->strings["Conversations from your friends"] = "Ismerősökkel való beszélgetések"; -$a->strings["Introductions"] = "Bemutatkozások"; -$a->strings["Friend Requests"] = "Ismerőskérések"; -$a->strings["See all notifications"] = "Összes értesítés megtekintése"; -$a->strings["Mark as seen"] = "Megjelölés olvasottként"; -$a->strings["Mark all system notifications seen"] = "Összes rendszerértesítés megjelölése olvasottként"; -$a->strings["Messages"] = "Üzenetek"; -$a->strings["Private mail"] = "Személyes levél"; -$a->strings["Inbox"] = "Beérkezett üzenetek"; -$a->strings["Outbox"] = "Elküldött üzenetek"; -$a->strings["New Message"] = "Új üzenet"; -$a->strings["Accounts"] = "Fiókok"; -$a->strings["Manage other pages"] = "Más oldalak kezelése"; -$a->strings["Account settings"] = "Fiókbeállítások"; -$a->strings["Manage/edit friends and contacts"] = "Ismerősök és partnerek kezelése vagy szerkesztése"; -$a->strings["Site setup and configuration"] = "Oldal beállítása és konfigurálás"; -$a->strings["Navigation"] = "Navigáció"; -$a->strings["Site map"] = "Oldaltérkép"; -$a->strings["Frequently"] = "Gyakran"; -$a->strings["Hourly"] = "Óránként"; -$a->strings["Twice daily"] = "Naponta kétszer"; -$a->strings["Daily"] = "Naponta"; -$a->strings["Weekly"] = "Hetente"; -$a->strings["Monthly"] = "Havonta"; -$a->strings["DFRN"] = "DFRN"; -$a->strings["OStatus"] = "OStatus"; -$a->strings["RSS/Atom"] = "RSS/Atom"; -$a->strings["Zot!"] = "Zot!"; -$a->strings["LinkedIn"] = "LinkedIn"; -$a->strings["XMPP/IM"] = "XMPP/IM"; -$a->strings["MySpace"] = "MySpace"; -$a->strings["Google+"] = "Google+"; -$a->strings["pump.io"] = "pump.io"; -$a->strings["Twitter"] = "Twitter"; -$a->strings["Discourse"] = "Discourse"; -$a->strings["Diaspora Connector"] = "Diaspora összekötő"; -$a->strings["GNU Social Connector"] = "GNU Social összekötő"; -$a->strings["ActivityPub"] = "ActivityPub"; -$a->strings["pnut"] = "pnut"; -$a->strings["%s (via %s)"] = "%s (ezen keresztül: %s)"; -$a->strings["newer"] = "soha"; -$a->strings["older"] = "régebbi"; -$a->strings["Add New Contact"] = "Új partner hozzáadása"; -$a->strings["Enter address or web location"] = "Cím vagy webhely megadása"; -$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Példa: bob@example.com, http://example.com/barbara"; -$a->strings["Connect"] = "Kapcsolódás"; -$a->strings["%d invitation available"] = [ - 0 => "%d meghívás érhető el", - 1 => "%d meghívás érhető el", -]; -$a->strings["Find People"] = "Emberek keresése"; -$a->strings["Enter name or interest"] = "Név vagy érdeklődés beírása"; -$a->strings["Examples: Robert Morgenstein, Fishing"] = "Példák: Szabó János, Halászat"; -$a->strings["Friend Suggestions"] = "Ismerős javaslatok"; -$a->strings["Similar Interests"] = "Hasonló érdeklődések"; -$a->strings["Random Profile"] = "Véletlen profil"; -$a->strings["Invite Friends"] = "Ismerősök meghívása"; -$a->strings["Local Directory"] = "Helyi könyvtár"; -$a->strings["Everyone"] = "Mindenki"; -$a->strings["Relationships"] = "Kapcsolatok"; -$a->strings["Protocols"] = "Protokollok"; -$a->strings["All Protocols"] = "Összes protokoll"; -$a->strings["Saved Folders"] = "Mentett mappák"; -$a->strings["Everything"] = "Minden"; -$a->strings["Categories"] = "Kategóriák"; -$a->strings["%d contact in common"] = [ - 0 => "%d partner közös", - 1 => "%d partner közös", -]; -$a->strings["Archives"] = "Archívumok"; -$a->strings["Persons"] = "Személyek"; -$a->strings["Organisations"] = "Szervezetek"; -$a->strings["Account Types"] = "Fióktípusok"; -$a->strings["first"] = "első"; -$a->strings["prev"] = "előző"; -$a->strings["next"] = "következő"; -$a->strings["last"] = "utolsó"; -$a->strings["Embedding disabled"] = "A beágyazás letiltva"; -$a->strings["Embedded content"] = "Beágyazott tartalom"; -$a->strings["Loading more entries..."] = "További bejegyzések betöltése…"; -$a->strings["The end"] = "Vége"; -$a->strings["Click to open/close"] = "Kattintson a megnyitáshoz vagy bezáráshoz"; -$a->strings["Image/photo"] = "Kép vagy fénykép"; -$a->strings["%2\$s %3\$s"] = "%2\$s %3\$s"; -$a->strings["$1 wrote:"] = "$1 írta:"; -$a->strings["Encrypted content"] = "Titkosított tartalom"; -$a->strings["Invalid source protocol"] = "Érvénytelen forrásprotokoll"; -$a->strings["Invalid link protocol"] = "Érvénytelen hivatkozási protokoll"; -$a->strings["General Features"] = "Általános funkciók"; -$a->strings["Photo Location"] = "Fénykép helye"; -$a->strings["Photo metadata is normally stripped. This extracts the location (if present) prior to stripping metadata and links it to a map."] = "A fénykép metaadatai általában ki vannak törölve. Ez kinyeri a helyet (ha meg van adva) a metaadatok törlése előtt, és hivatkozást készít rá egy térképen."; -$a->strings["Trending Tags"] = "Népszerű címkék"; -$a->strings["Show a community page widget with a list of the most popular tags in recent public posts."] = "Egy közösségi oldal felületi elem megjelenítése a legutóbbi nyilvános bejegyzésekben lévő legnépszerűbb címkék listájával."; -$a->strings["Post Composition Features"] = "Bejegyzés-összeállítási funkciók"; -$a->strings["Auto-mention Forums"] = "Fórumok automatikus említése"; -$a->strings["Add/remove mention when a forum page is selected/deselected in ACL window."] = "Említés hozzáadása vagy eltávolítása, ha egy fórumoldalt kiválasztanak vagy megszüntetik a kiválasztását az ACL ablakokban."; -$a->strings["Explicit Mentions"] = "Közvetlen említések"; -$a->strings["Add explicit mentions to comment box for manual control over who gets mentioned in replies."] = "Közvetlen említések hozzáadása a hozzászólásmezőhöz kézi vezérléssel, hogy ki lesz megemlítve a válaszokban."; -$a->strings["Post/Comment Tools"] = "Bejegyzés és hozzászólás eszközök"; -$a->strings["Post Categories"] = "Bejegyzéskategóriák"; -$a->strings["Add categories to your posts"] = "Kategóriák hozzáadása a bejegyzéseihez."; -$a->strings["Advanced Profile Settings"] = "Speciális profilbeállítások"; -$a->strings["List Forums"] = "Fórumok felsorolása"; -$a->strings["Show visitors public community forums at the Advanced Profile Page"] = "Nyilvános közösségi fórumok megjelenítése a látogatóknak a speciális profiloldalon."; -$a->strings["Tag Cloud"] = "Címkefelhő"; -$a->strings["Provide a personal tag cloud on your profile page"] = "Személyes címkefelhő biztosítása a profiloldalán."; -$a->strings["Display Membership Date"] = "Tagsági dátum megjelenítése"; -$a->strings["Display membership date in profile"] = "Tagsági dátum megjelenítése a profilban."; $a->strings["Hometown:"] = "Szülőváros:"; $a->strings["Marital Status:"] = "Családi állapot:"; $a->strings["With:"] = "Ezzel:"; @@ -1775,86 +2350,31 @@ $a->strings["Love/romance"] = "Szerelem, romantika"; $a->strings["Work/employment"] = "Munka, foglalkoztatás"; $a->strings["School/education"] = "Iskola, oktatás"; $a->strings["Contact information and Social Networks"] = "Partnerinformációk és közösségi hálózatok"; -$a->strings["This message was sent to you by %s, a member of the Friendica social network."] = "Ezt az üzenetet %s, a Friendica közösségi hálózatának tagja küldte Önnek."; -$a->strings["You may visit them online at %s"] = "Meglátogathatja őket az interneten ezen a címen: %s"; -$a->strings["Please contact the sender by replying to this post if you do not wish to receive these messages."] = "Vegye fel a kapcsolatot a küldővel erre a bejegyzésre válaszolva, ha nem szeretné megkapni ezeket az üzeneteket."; -$a->strings["%s posted an update."] = "%s frissítést küldött."; -$a->strings["This entry was edited"] = "Ezt a bejegyzést szerkesztették"; -$a->strings["Private Message"] = "Személyes üzenet"; -$a->strings["Edit"] = "Szerkesztés"; -$a->strings["pinned item"] = "kitűzött elem"; -$a->strings["Delete globally"] = "Törlés globálisan"; -$a->strings["Remove locally"] = "Eltávolítás helyileg"; -$a->strings["Select"] = "Kiválasztás"; -$a->strings["Block %s"] = "%s tiltása"; -$a->strings["save to folder"] = "mentés mappába"; -$a->strings["I will attend"] = "Részt veszek"; -$a->strings["I will not attend"] = "Nem veszek részt"; -$a->strings["I might attend"] = "Talán részt veszek"; -$a->strings["ignore thread"] = "szál mellőzése"; -$a->strings["unignore thread"] = "szál figyelmen kívül hagyása feloldva"; -$a->strings["toggle ignore status"] = "mellőzési állapot átváltása"; -$a->strings["ignored"] = "mellőzve"; -$a->strings["pin"] = "kitűzés"; -$a->strings["unpin"] = "kitűzés megszüntetése"; -$a->strings["toggle pin status"] = "kitűzés állapotának átváltása"; -$a->strings["pinned"] = "kitűzve"; -$a->strings["add star"] = "csillag hozzáadása"; -$a->strings["remove star"] = "csillag eltávolítása"; -$a->strings["toggle star status"] = "csillagállapot átváltása"; -$a->strings["starred"] = "csillagozott"; -$a->strings["add tag"] = "címke hozzáadása"; -$a->strings["I like this (toggle)"] = "Ezt kedvelem (átváltás)"; -$a->strings["like"] = "tetszik"; -$a->strings["I don't like this (toggle)"] = "Ezt nem kedvelem (átváltás)"; -$a->strings["dislike"] = "nem tetszik"; -$a->strings["Quote share this"] = "Idézett megosztás"; -$a->strings["Quote Share"] = "Idéző megosztás"; -$a->strings["Reshare this"] = "Újra megosztás"; -$a->strings["Reshare"] = "Újra megosztás"; -$a->strings["Cancel your Reshare"] = "Újra megosztás megszakítása"; -$a->strings["Unshare"] = "Megosztás megszüntetése"; -$a->strings["%s (Received %s)"] = "%s (fogadva: %s)"; -$a->strings["Comment this item on your system"] = "Hozzászólás az elemhez a saját rendszerén"; -$a->strings["remote comment"] = "távoli hozzászólás"; -$a->strings["Pushed"] = "Felküldve"; -$a->strings["Pulled"] = "Lekérve"; -$a->strings["Languages"] = "Nyelvek"; -$a->strings["Categories:"] = "Kategóriák:"; -$a->strings["Filed under:"] = "Iktatva itt:"; -$a->strings["View %s's profile @ %s"] = "%s profiljának megtekintése ezen: %s"; -$a->strings["to"] = "ide:"; -$a->strings["via"] = "ezen keresztül:"; -$a->strings["Wall-to-Wall"] = "Falról-falra"; -$a->strings["via Wall-To-Wall:"] = "falról-falra szolgáltatáson keresztül:"; -$a->strings["%s from %s"] = "%s tőle: %s"; -$a->strings["Comment"] = "Hozzászólás"; -$a->strings["Reply to %s"] = "Válasz erre: %s"; -$a->strings["More"] = "Több"; -$a->strings["Notifier task is pending"] = "Az értesítőfeladat függőben van"; -$a->strings["Delivery to remote servers is pending"] = "A távoli kiszolgálókra történő kézbesítés függőben van"; -$a->strings["Delivery to remote servers is underway"] = "A távoli kiszolgálókra történő kézbesítés úton van"; -$a->strings["Delivery to remote servers is mostly done"] = "A távoli kiszolgálókra történő kézbesítés többnyire készen van"; -$a->strings["Delivery to remote servers is done"] = "A távoli kiszolgálókra történő kézbesítés készen van"; -$a->strings["%d comment"] = [ - 0 => "%d hozzászólás", - 1 => "%d hozzászólás", -]; -$a->strings["Show more"] = "Több megjelenítése"; -$a->strings["Show fewer"] = "Kevesebb megjelenítése"; -$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Az űrlap biztonsági tokenje nem volt helyes. Ez valószínűleg azért történt, mert az űrlapot túl hosszan tartották nyitva (>3 óra), mielőtt elküldték volna."; -$a->strings["All contacts"] = "Összes partner"; -$a->strings["Common"] = "Közös"; -$a->strings["Attachments:"] = "Mellékletek:"; -$a->strings["%s is now following %s."] = "%s mostantól követi %s partnert."; -$a->strings["following"] = "követés"; -$a->strings["%s stopped following %s."] = "%s leállította %s követését."; -$a->strings["stopped following"] = "követés leállítva"; -$a->strings["No system theme config value set."] = "Nincs rendszertéma beállítási érték megadva."; $a->strings["Login failed."] = "Bejelentkezés sikertelen."; $a->strings["Login failed. Please check your credentials."] = "Bejelentkezés sikertelen. Ellenőrizze a hitelesítési adatait."; $a->strings["Welcome %s"] = "Üdvözöljük, %s!"; $a->strings["Please upload a profile photo."] = "Töltsön fel egy profilfényképet."; +$a->strings["Friendica Notification"] = "Friendica értesítés"; +$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, a(z) %2\$s adminisztrátora"; +$a->strings["%s Administrator"] = "A(z) %s adminisztrátora"; +$a->strings["thanks"] = "köszönet"; +$a->strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DD vagy MM-DD"; +$a->strings["never"] = "soha"; +$a->strings["less than a second ago"] = "kevesebb mint egy másodperce"; +$a->strings["year"] = "év"; +$a->strings["years"] = "év"; +$a->strings["months"] = "hónap"; +$a->strings["weeks"] = "hét"; +$a->strings["days"] = "nap"; +$a->strings["hour"] = "óra"; +$a->strings["hours"] = "óra"; +$a->strings["minute"] = "perc"; +$a->strings["minutes"] = "perc"; +$a->strings["second"] = "másodperc"; +$a->strings["seconds"] = "másodperc"; +$a->strings["in %1\$d %2\$s"] = "%1\$d %2\$s múlva"; +$a->strings["%1\$d %2\$s ago"] = "%1\$d %2\$s óta"; +$a->strings["(no subject)"] = "(nincs tárgy)"; $a->strings["default"] = "alapértelmezett"; $a->strings["greenzero"] = "zöld nulla"; $a->strings["purplezero"] = "lila nulla"; @@ -1863,16 +2383,6 @@ $a->strings["darkzero"] = "sötét nulla"; $a->strings["comix"] = "comix"; $a->strings["slackr"] = "slackr"; $a->strings["Variations"] = "Variációk"; -$a->strings["Top Banner"] = "Felső reklámcsík"; -$a->strings["Resize image to the width of the screen and show background color below on long pages."] = "Kép átméretezése a képernyő szélességéhez, és a lenti háttérszín megjelenítése hosszú oldalakon."; -$a->strings["Full screen"] = "Teljes képernyő"; -$a->strings["Resize image to fill entire screen, clipping either the right or the bottom."] = "Kép átméretezése a teljes képernyő kitöltéséhez, levágva a jobb szélét vagy az alját."; -$a->strings["Single row mosaic"] = "Egysoros mozaik"; -$a->strings["Resize image to repeat it on a single row, either vertical or horizontal."] = "Kép átméretezése az egy sorban való ismétléshez, függőlegesen vagy vízszintesen."; -$a->strings["Mosaic"] = "Mozaik"; -$a->strings["Repeat image to fill the screen."] = "Kép ismétlése a képernyő kitöltéséhez."; -$a->strings["Skip to main content"] = "Kihagyás a fő tartalomhoz"; -$a->strings["Back to top"] = "Vissza a tetejére"; $a->strings["Light (Accented)"] = "Világos (hangsúlyos)"; $a->strings["Dark (Accented)"] = "Sötét (hangsúlyos)"; $a->strings["Black (Accented)"] = "Fekete (hangsúlyos)"; @@ -1900,9 +2410,18 @@ $a->strings["Background image style"] = "Háttérkép stílusa"; $a->strings["Login page background image"] = "Bejelentkezési oldal háttérképe"; $a->strings["Login page background color"] = "Bejelentkezési oldal háttérszíne"; $a->strings["Leave background image and color empty for theme defaults"] = "Hagyja üresen a háttérképet és színt a téma alapértelmezettjéhez"; +$a->strings["Top Banner"] = "Felső reklámcsík"; +$a->strings["Resize image to the width of the screen and show background color below on long pages."] = "Kép átméretezése a képernyő szélességéhez, és a lenti háttérszín megjelenítése hosszú oldalakon."; +$a->strings["Full screen"] = "Teljes képernyő"; +$a->strings["Resize image to fill entire screen, clipping either the right or the bottom."] = "Kép átméretezése a teljes képernyő kitöltéséhez, levágva a jobb szélét vagy az alját."; +$a->strings["Single row mosaic"] = "Egysoros mozaik"; +$a->strings["Resize image to repeat it on a single row, either vertical or horizontal."] = "Kép átméretezése az egy sorban való ismétléshez, függőlegesen vagy vízszintesen."; +$a->strings["Mosaic"] = "Mozaik"; +$a->strings["Repeat image to fill the screen."] = "Kép ismétlése a képernyő kitöltéséhez."; +$a->strings["Skip to main content"] = "Kihagyás a fő tartalomhoz"; +$a->strings["Back to top"] = "Vissza a tetejére"; $a->strings["Guest"] = "Vendég"; $a->strings["Visitor"] = "Látogató"; -$a->strings["Follow Thread"] = "Szál követése"; $a->strings["Alignment"] = "Igazítás"; $a->strings["Left"] = "Balra"; $a->strings["Center"] = "Középre"; @@ -1920,514 +2439,3 @@ $a->strings["Connect Services"] = "Szolgáltatások hozzákapcsolása"; $a->strings["Find Friends"] = "Ismerősök keresése"; $a->strings["Last users"] = "Utolsó felhasználók"; $a->strings["Quick Start"] = "Gyors kezdés"; -$a->strings["[Friendica:Notify]"] = "[Friendica: értesítés]"; -$a->strings["%s New mail received at %s"] = "%s Új levél érkezett ekkor: %s"; -$a->strings["%1\$s sent you a new private message at %2\$s."] = "%1\$s személyes üzenetet küldött ekkor: %2\$s."; -$a->strings["a private message"] = "egy személyes üzenetet"; -$a->strings["%1\$s sent you %2\$s."] = "%1\$s küldött Önnek %2\$s."; -$a->strings["Please visit %s to view and/or reply to your private messages."] = "Látogassa meg a(z) %s oldalt a személyes üzenete megtekintéséhez és/vagy megválaszolásához."; -$a->strings["%1\$s replied to you on %2\$s's %3\$s %4\$s"] = "%1\$s válaszolt Önnek egy %2\$s által megosztott %3\$s kapcsán: %4\$s"; -$a->strings["%1\$s tagged you on %2\$s's %3\$s %4\$s"] = "%1\$s bejelölte Önt egy %2\$s által megosztott %3\$s kapcsán: %4\$s"; -$a->strings["%1\$s commented on %2\$s's %3\$s %4\$s"] = "%1\$s hozzászólt egy %2\$s által megosztott %3\$s kapcsán: %4\$s"; -$a->strings["%1\$s replied to you on your %2\$s %3\$s"] = "%1\$s válaszolt Önnek egy vele megosztott %2\$s kapcsán: %3\$s"; -$a->strings["%1\$s tagged you on your %2\$s %3\$s"] = "%1\$s bejelölte Önt egy vele megosztott %2\$s kapcsán: %3\$s"; -$a->strings["%1\$s commented on your %2\$s %3\$s"] = "%1\$s hozzászólt egy vele megosztott %2\$s kapcsán: %3\$s"; -$a->strings["%1\$s replied to you on their %2\$s %3\$s"] = "%1\$s válaszolt Önnek egy saját %2\$s kapcsán: %3\$s"; -$a->strings["%1\$s tagged you on their %2\$s %3\$s"] = "%1\$s bejelölte Önt egy saját %2\$s kapcsán: %3\$s"; -$a->strings["%1\$s commented on their %2\$s %3\$s"] = "%1\$s hozzászólt egy saját %2\$s kapcsán: %3\$s"; -$a->strings["%s %s tagged you"] = "%s %s bejelölte Önt"; -$a->strings["%1\$s tagged you at %2\$s"] = "%1\$s bejelölte Önt itt: %2\$s"; -$a->strings["%1\$s Comment to conversation #%2\$d by %3\$s"] = "%1\$s Hozzászólás a #%2\$d beszélgetéshez %3\$s által"; -$a->strings["%s commented on an item/conversation you have been following."] = "%s hozzászólt egy olyan elemhez vagy beszélgetéshez, amelyet Ön követ."; -$a->strings["Please visit %s to view and/or reply to the conversation."] = "Látogassa meg a %s oldalt a beszélgetés megtekintéséhez és/vagy megválaszolásához."; -$a->strings["%s %s posted to your profile wall"] = "%s %s bejegyzést írt az Ön profilfalára"; -$a->strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$s bejegyzést írt az Ön profilfalára itt: %2\$s"; -$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "%1\$s bejegyzést írt [url=%2\$s]az Ön falára[/url]"; -$a->strings["%s %s shared a new post"] = "%s %s megosztott egy új bejegyzést"; -$a->strings["%1\$s shared a new post at %2\$s"] = "%1\$s megosztott egy új bejegyzést itt: %2\$s"; -$a->strings["%1\$s [url=%2\$s]shared a post[/url]."] = "%1\$s [url=%2\$s]megosztott egy bejegyzést[/url]."; -$a->strings["%s %s shared a post from %s"] = "%s %s megosztott egy %s által közzétett bejegyzést"; -$a->strings["%1\$s shared a post from %2\$s at %3\$s"] = "%1\$s megosztott egy %2\$s által közzétett bejegyzést itt: %3\$s"; -$a->strings["%1\$s [url=%2\$s]shared a post[/url] from %3\$s."] = "%1\$s [url=%2\$s]megosztott egy %3\$s által közzétett bejegyzést[/url]."; -$a->strings["%1\$s %2\$s poked you"] = "%1\$s %2\$s megbökte Önt"; -$a->strings["%1\$s poked you at %2\$s"] = "%1\$s megbökte Önt itt: %2\$s"; -$a->strings["%1\$s [url=%2\$s]poked you[/url]."] = "%1\$s [url=%2\$s]megbökte Önt[/url]."; -$a->strings["%s %s tagged your post"] = "%s %s bejelölte az Ön bejegyzését"; -$a->strings["%1\$s tagged your post at %2\$s"] = "%1\$s bejelölte az Ön bejegyzését itt: %2\$s"; -$a->strings["%1\$s tagged [url=%2\$s]your post[/url]"] = "%1\$s bejelölte [url=%2\$s]az Ön bejegyzését[/url]"; -$a->strings["%s Introduction received"] = "%s Bemutatkozás érkezett"; -$a->strings["You've received an introduction from '%1\$s' at %2\$s"] = "Kapott egy %1\$s által elküldött bemutatkozását itt: %2\$s"; -$a->strings["You've received [url=%1\$s]an introduction[/url] from %2\$s."] = "Kapott egy %2\$s által elküldött [url=%1\$s]bemutatkozást[/url]."; -$a->strings["You may visit their profile at %s"] = "Meglátogathatja a profilját itt: %s"; -$a->strings["Please visit %s to approve or reject the introduction."] = "Látogassa meg a(z) %s oldalt a bemutatkozás jóváhagyásához vagy visszautasításához."; -$a->strings["%s A new person is sharing with you"] = "%s Egy új személy megoszt Önnel"; -$a->strings["%1\$s is sharing with you at %2\$s"] = "%1\$s megoszt Önnel itt: %2\$s"; -$a->strings["%s You have a new follower"] = "%s Van egy új követője"; -$a->strings["You have a new follower at %2\$s : %1\$s"] = "Van egy új követője, %1\$s itt: %2\$s"; -$a->strings["%s Friend suggestion received"] = "%s Ismerősajánlás érkezett"; -$a->strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "Kapott egy %1\$s által elküldött ismerősajánlást itt: %2\$s"; -$a->strings["You've received [url=%1\$s]a friend suggestion[/url] for %2\$s from %3\$s."] = "Kapott egy %3\$s által elküldött [url=%1\$s]ismerősajánlást[/url] %2\$s partnerhez."; -$a->strings["Name:"] = "Név:"; -$a->strings["Photo:"] = "Fénykép:"; -$a->strings["Please visit %s to approve or reject the suggestion."] = "Látogassa meg a(z) %s oldalt az ajánlás jóváhagyásához vagy visszautasításához."; -$a->strings["%s Connection accepted"] = "%s Kapcsolat elfogadva"; -$a->strings["'%1\$s' has accepted your connection request at %2\$s"] = "%1\$s elfogadta a kapcsolódási kérését itt: %2\$s"; -$a->strings["%2\$s has accepted your [url=%1\$s]connection request[/url]."] = "%2\$s elfogadta a [url=%1\$s]kapcsolódási kérését[/url]."; -$a->strings["You are now mutual friends and may exchange status updates, photos, and email without restriction."] = "Önök most már kölcsönösen ismerősök, és korlátozások nélkül megoszthatják az állapotfrissítéseiket, fényképeiket és az e-mail-címüket egymással."; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Látogassa meg a(z) %s oldalt, ha bármilyen változtatást szeretne tenni ebben a kapcsolatban."; -$a->strings["'%1\$s' has chosen to accept you a fan, which restricts some forms of communication - such as private messaging and some profile interactions. If this is a celebrity or community page, these settings were applied automatically."] = "%1\$s úgy döntött, hogy elfogadja Önt rajongóként, ami korlátozza a kommunikáció néhány formáját, mint például a személyes üzenet küldését és néhány profil-interakciót. Ha ez egy híres ember vagy egy közösségi oldal, akkor ezek a beállítások automatikusan alkalmazva lettek."; -$a->strings["'%1\$s' may choose to extend this into a two-way or more permissive relationship in the future."] = "%1\$s dönthet úgy, hogy kiterjeszti ezt egy kétirányú vagy egy megengedőbb kapcsolattá a jövőben."; -$a->strings["Please visit %s if you wish to make any changes to this relationship."] = "Látogassa meg a(z) %s oldalt, ha bármilyen változtatást szeretne tenni ebben a kapcsolatban."; -$a->strings["[Friendica System Notify]"] = "[Friendica rendszerértesítés]"; -$a->strings["registration request"] = "regisztrációs kérés"; -$a->strings["You've received a registration request from '%1\$s' at %2\$s"] = "Kapott egy regisztrációs kérést %1\$s partnertől itt: %2\$s"; -$a->strings["You've received a [url=%1\$s]registration request[/url] from %2\$s."] = "Kapott egy %2\$s által elküldött [url=%1\$s]regisztrációs kérést[/url]."; -$a->strings["Full Name:\t%s\nSite Location:\t%s\nLogin Name:\t%s (%s)"] = "Teljes név:\t%s\nOldal címe:\t%s\nBejelentkezési név:\t%s (%s)"; -$a->strings["Please visit %s to approve or reject the request."] = "Látogassa meg a(z) %s oldalt a kérés jóváhagyásához vagy visszautasításához."; -$a->strings["Daily posting limit of %d post reached. The post was rejected."] = [ - 0 => "A napi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva.", - 1 => "A napi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva.", -]; -$a->strings["Weekly posting limit of %d post reached. The post was rejected."] = [ - 0 => "A heti %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva.", - 1 => "A heti %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva.", -]; -$a->strings["Monthly posting limit of %d post reached. The post was rejected."] = "A havi %d bejegyzésből álló beküldési korlát elérve. A bejegyzés vissza lett utasítva."; -$a->strings["%1\$s poked %2\$s"] = "%1\$s megbökte őt: %2\$s"; -$a->strings["status"] = "állapot"; -$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s megjelölte %2\$s %3\$s vele: %4\$s"; -$a->strings["View in context"] = "Megtekintés környezetben"; -$a->strings["remove"] = "eltávolítás"; -$a->strings["Delete Selected Items"] = "Kijelölt elemek törlése"; -$a->strings["You had been addressed (%s)."] = "Önt megszólították (%s)."; -$a->strings["You are following %s."] = "Ön követi őt: %s."; -$a->strings["Tagged"] = "Megjelölve"; -$a->strings["%s reshared this."] = "%s újra megosztotta ezt."; -$a->strings["Reshared"] = "Újra megosztva"; -$a->strings["Reshared by %s"] = "%s újra megosztotta"; -$a->strings["%s is participating in this thread."] = "%s részt vesz ebben a szálban."; -$a->strings["Stored"] = "Tárolt"; -$a->strings["Global"] = "Globális"; -$a->strings["Relayed"] = "Továbbítva"; -$a->strings["Relayed by %s."] = "%s továbbította."; -$a->strings["Fetched"] = "Lekérve"; -$a->strings["Fetched because of %s"] = "Lekérve %s miatt"; -$a->strings["%s likes this."] = "%s kedveli ezt."; -$a->strings["%s doesn't like this."] = "%s nem kedveli ezt."; -$a->strings["%s attends."] = "%s részt vesz."; -$a->strings["%s doesn't attend."] = "%s nem vesz részt."; -$a->strings["%s attends maybe."] = "%s talán részt vesz."; -$a->strings["and"] = "és"; -$a->strings["and %d other people"] = "és %d más személy"; -$a->strings["%2\$d people like this"] = "%2\$d személy kedveli ezt"; -$a->strings["%s like this."] = "%s kedveli ezt."; -$a->strings["%2\$d people don't like this"] = "%2\$d személy nem kedveli ezt"; -$a->strings["%s don't like this."] = "%s nem kedveli ezt."; -$a->strings["%2\$d people attend"] = "%2\$d személy részt vesz"; -$a->strings["%s attend."] = "%s részt vesz."; -$a->strings["%2\$d people don't attend"] = "%2\$d személy nem vesz részt"; -$a->strings["%s don't attend."] = "%s nem vesz részt."; -$a->strings["%2\$d people attend maybe"] = "%2\$d személy talán részt vesz"; -$a->strings["%s attend maybe."] = "%s talán részt vesz."; -$a->strings["%2\$d people reshared this"] = "%2\$d személy újra megosztotta ezt"; -$a->strings["Visible to everybody"] = "Látható mindenkinek"; -$a->strings["Tag term:"] = "Címkézési kifejezés:"; -$a->strings["Where are you right now?"] = "Hol van most éppen?"; -$a->strings["Delete item(s)?"] = "Törli az elemeket?"; -$a->strings["New Post"] = "Új bejegyzés"; -$a->strings["Share"] = "Megosztás"; -$a->strings["Upload photo"] = "Fénykép feltöltése"; -$a->strings["upload photo"] = "fénykép feltöltése"; -$a->strings["Attach file"] = "Fájl csatolása"; -$a->strings["attach file"] = "fájl csatolása"; -$a->strings["set location"] = "hely beállítása"; -$a->strings["Clear browser location"] = "Böngésző helyének törlése"; -$a->strings["clear location"] = "hely törlése"; -$a->strings["Permission settings"] = "Jogosultsági beállítások"; -$a->strings["Permissions"] = "Jogosultságok"; -$a->strings["Public post"] = "Nyilvános bejegyzés"; -$a->strings["Open Compose page"] = "Írás oldal megnyitása"; -$a->strings["Invalid request."] = "Érvénytelen kérés."; -$a->strings["Wall Photos"] = "Falfényképek"; -$a->strings["User deleted their account"] = "A felhasználó törölte a fiókját"; -$a->strings["On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups."] = "Az Ön Friendica csomópontján egy felhasználó törölte a fiókját. Győződjön meg arról, hogy az adatai el lettek-e távolítva a biztonsági mentésekből."; -$a->strings["The user id is %d"] = "A felhasználó-azonosító %d"; -$a->strings["Remove My Account"] = "Saját fiók eltávolítása"; -$a->strings["This will completely remove your account. Once this has been done it is not recoverable."] = "Ez teljesen el fogja távolítani a fiókját. Miután ez megtörtént, nem lesz visszaállítható."; -$a->strings["Please enter your password for verification:"] = "Adja meg a jelszavát az ellenőrzéshez:"; -$a->strings["Subscribing to OStatus contacts"] = "Feliratkozás az OStatus partnerekre"; -$a->strings["No contact provided."] = "Nincs partner megadva."; -$a->strings["Couldn't fetch information for contact."] = "Nem sikerült lekérni a partner információit."; -$a->strings["Couldn't fetch friends for contact."] = "Nem sikerült lekérni a partner ismerőseit."; -$a->strings["Done"] = "Kész"; -$a->strings["success"] = "sikeres"; -$a->strings["failed"] = "sikertelen"; -$a->strings["Keep this window open until done."] = "Tartsa nyitva ezt az ablakot, amíg el nem készül."; -$a->strings["Recent Photos"] = "Legutóbbi fényképek"; -$a->strings["Upload New Photos"] = "Új fényképek feltöltése"; -$a->strings["Contact information unavailable"] = "A partner információi nem érhetők el"; -$a->strings["Album not found."] = "Az album nem található."; -$a->strings["Album successfully deleted"] = "Az album sikeresen törölve"; -$a->strings["Album was empty."] = "Az album üres volt."; -$a->strings["Failed to delete the photo."] = "Nem sikerült törölni a fényképet."; -$a->strings["a photo"] = "egy fényképen"; -$a->strings["%1\$s was tagged in %2\$s by %3\$s"] = "%1\$s meg lett jelölve %2\$s %3\$s által"; -$a->strings["Image upload didn't complete, please try again"] = "A kép feltöltése nem fejeződött be, próbálja újra"; -$a->strings["Image file is missing"] = "A képfájl hiányzik"; -$a->strings["Server can't accept new file upload at this time, please contact your administrator"] = "A kiszolgáló jelenleg nem tud új fájlfeltöltést fogadni, vegye fel a kapcsolatot a rendszergazdával"; -$a->strings["Image file is empty."] = "A képfájl üres."; -$a->strings["No photos selected"] = "Nincsenek fényképek kijelölve"; -$a->strings["Access to this item is restricted."] = "Az elemhez való hozzáférés korlátozott."; -$a->strings["Upload Photos"] = "Fényképek feltöltése"; -$a->strings["New album name: "] = "Új album neve: "; -$a->strings["or select existing album:"] = "vagy meglévő album kiválasztása:"; -$a->strings["Do not show a status post for this upload"] = "Ne jelenítsen meg állapotbejegyzést ehhez a feltöltéshez"; -$a->strings["Do you really want to delete this photo album and all its photos?"] = "Valóban törölni szeretné ezt a fényképalbumot és az összes fényképét?"; -$a->strings["Delete Album"] = "Album törlése"; -$a->strings["Edit Album"] = "Album szerkesztése"; -$a->strings["Drop Album"] = "Album eldobása"; -$a->strings["Show Newest First"] = "Legújabb megjelenítése először"; -$a->strings["Show Oldest First"] = "Legrégebbi megjelenítése először"; -$a->strings["View Photo"] = "Fénykép megtekintése"; -$a->strings["Permission denied. Access to this item may be restricted."] = "Hozzáférés megtagadva. Az elemhez való hozzáférés korlátozva lehet."; -$a->strings["Photo not available"] = "A fénykép nem érhető el"; -$a->strings["Do you really want to delete this photo?"] = "Valóban törölni szeretné ezt a fényképet?"; -$a->strings["Delete Photo"] = "Fénykép törlése"; -$a->strings["View photo"] = "Fénykép megtekintése"; -$a->strings["Edit photo"] = "Fénykép szerkesztése"; -$a->strings["Delete photo"] = "Fénykép törlése"; -$a->strings["Use as profile photo"] = "Használat profilfényképként"; -$a->strings["Private Photo"] = "Személyes fénykép"; -$a->strings["View Full Size"] = "Teljes méret megtekintése"; -$a->strings["Tags: "] = "Címkék: "; -$a->strings["[Select tags to remove]"] = "[Eltávolítandó címkék kiválasztása]"; -$a->strings["New album name"] = "Új album neve"; -$a->strings["Caption"] = "Felirat"; -$a->strings["Add a Tag"] = "Címke hozzáadása"; -$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"] = "Példa: @bob, @Barbara_Jensen, @jim@example.com, #Budapest, #kemping"; -$a->strings["Do not rotate"] = "Ne forgassa el"; -$a->strings["Rotate CW (right)"] = "Forgatás jobbra"; -$a->strings["Rotate CCW (left)"] = "Forgatás balra"; -$a->strings["Like"] = "Tetszik"; -$a->strings["Dislike"] = "Nem tetszik"; -$a->strings["Map"] = "Térkép"; -$a->strings["View Album"] = "Album megtekintése"; -$a->strings["This may occasionally happen if contact was requested by both persons and it has already been approved."] = "Ez olyan esetekben történhet, ha mindkét személy kéri a partnert, és az már jóvá lett hagyva."; -$a->strings["Response from remote site was not understood."] = "A távoli oldalról érkező válasz nem volt értelmezhető."; -$a->strings["Unexpected response from remote site: "] = "Váratlan válasz a távoli oldaltól: "; -$a->strings["Confirmation completed successfully."] = "A megerősítés sikeresen befejeződött."; -$a->strings["Temporary failure. Please wait and try again."] = "Átmeneti hiba. Várjon és próbálja újra."; -$a->strings["Introduction failed or was revoked."] = "A bemutatkozás sikertelen vagy visszavonták."; -$a->strings["Remote site reported: "] = "A távoli oldal jelentette: "; -$a->strings["No user record found for '%s' "] = "Nem található felhasználó-rekord ehhez: „%s” "; -$a->strings["Our site encryption key is apparently messed up."] = "Az oldal titkosítási kulcsunk nyilvánvalóan el lett rontva."; -$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Üres oldal URL lett megadva vagy az URL-t nem tudtuk visszafejteni."; -$a->strings["Contact record was not found for you on our site."] = "A partner rekordja nem található Önnek a mi oldalunkon."; -$a->strings["Site public key not available in contact record for URL %s."] = "Az oldal nyilvános kulcsa nem érhető el a partner rekordjában a(z) %s URL-hez."; -$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "Az rendszere által szolgáltatott azonosító kettőzve van a mi rendszerünkön. Működnie kell, ha megpróbálja újra."; -$a->strings["Unable to set your contact credentials on our system."] = "Nem lehet beállítani a partnere hitelesítési adatait a mi rendszerünkön."; -$a->strings["Unable to update your contact profile details on our system"] = "Nem lehet frissíteni a partnere profiljának részleteit a mi rendszerünkön"; -$a->strings["Missing some important data!"] = "Néhány fontos adat hiányzik!"; -$a->strings["Failed to connect with email account using the settings provided."] = "Nem sikerült kapcsolódni a megadott beállításokat használó e-mail-fiókkal."; -$a->strings["Contact CSV file upload error"] = "Partner CSV-fájl feltöltési hiba"; -$a->strings["Importing Contacts done"] = "A partnerek importálása kész"; -$a->strings["Relocate message has been send to your contacts"] = "Az áthelyezési üzenet el lett küldve a partnereknek"; -$a->strings["Passwords do not match."] = "A jelszavak nem egyeznek."; -$a->strings["Password unchanged."] = "A jelszó nincs megváltoztatva."; -$a->strings["Please use a shorter name."] = "Használjon rövidebb nevet."; -$a->strings["Name too short."] = "A név túl rövid."; -$a->strings["Wrong Password."] = "Hibás jelszó."; -$a->strings["Invalid email."] = "Érvénytelen e-mail-cím."; -$a->strings["Cannot change to that email."] = "Nem lehet megváltoztatni arra az e-mail-címre."; -$a->strings["Private forum has no privacy permissions. Using default privacy group."] = "A személyes fórumnak nincsenek adatvédelmi jogosultságai. Alapértelmezett adatvédelmi csoport használata."; -$a->strings["Private forum has no privacy permissions and no default privacy group."] = "A személyes fórumnak nincsenek adatvédelmi jogosultságai és nincs alapértelmezett adatvédelmi csoportja."; -$a->strings["Settings were not updated."] = "A beállítások nem lettek frissítve."; -$a->strings["Add application"] = "Alkalmazás hozzáadása"; -$a->strings["Consumer Key"] = "Fogyasztói kulcs"; -$a->strings["Consumer Secret"] = "Fogyasztói titok"; -$a->strings["Redirect"] = "Átirányítás"; -$a->strings["Icon url"] = "Ikon URL"; -$a->strings["You can't edit this application."] = "Nem szerkesztheti ezt az alkalmazást."; -$a->strings["Connected Apps"] = "Kapcsolt alkalmazások"; -$a->strings["Client key starts with"] = "Az ügyfélkulcs ezzel kezdődik"; -$a->strings["No name"] = "Nincs név"; -$a->strings["Remove authorization"] = "Felhatalmazás eltávolítása"; -$a->strings["No Addon settings configured"] = "Nincsenek bővítménybeállítások meghatározva"; -$a->strings["Addon Settings"] = "Bővítménybeállítások"; -$a->strings["Additional Features"] = "További funkciók"; -$a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora (Socialhome, Hubzilla)"; -$a->strings["enabled"] = "engedélyezve"; -$a->strings["disabled"] = "letiltva"; -$a->strings["Built-in support for %s connectivity is %s"] = "A(z) %s összekapcsolhatóságának beépített támogatása %s"; -$a->strings["OStatus (GNU Social)"] = "OStatus (GNU Social)"; -$a->strings["Email access is disabled on this site."] = "Az e-mailes hozzáférés le van tiltva ezen az oldalon."; -$a->strings["None"] = "Nincs"; -$a->strings["General Social Media Settings"] = "Általános közösségimédia-beállítások"; -$a->strings["Accept only top level posts by contacts you follow"] = "Csak felső szintű bejegyzések elfogadása azoktól a partnerektől, akiket követ"; -$a->strings["The system does an auto completion of threads when a comment arrives. This has got the side effect that you can receive posts that had been started by a non-follower but had been commented by someone you follow. This setting deactivates this behaviour. When activated, you strictly only will receive posts from people you really do follow."] = "A rendszer elvégezi a szálak automatikus kiegészítést, ha egy hozzászólás érkezik. Ennek az a mellékhatása, hogy olyan bejegyzéseket is kaphat, amelyeket egy nem követő indított el, de valaki olyan szólt hozzá, akit Ön követ. Ez a beállítás kikapcsolja ezt a viselkedést. Ha be van kapcsolva, akkor szigorúan csak olyan emberektől fog bejegyzéseket kapni, akiket valóban követ."; -$a->strings["Disable Content Warning"] = "Tartalomfigyelmeztetés letiltása"; -$a->strings["Users on networks like Mastodon or Pleroma are able to set a content warning field which collapse their post by default. This disables the automatic collapsing and sets the content warning as the post title. Doesn't affect any other content filtering you eventually set up."] = "Például a Mastodon vagy a Pleroma hálózatán lévő felhasználók képesek egy olyan tartalomfigyelmeztetési mezőt beállítani, amely alapértelmezetten összecsukja a bejegyzéseiket. Ez letiltja az automatikus összecsukást, és beállítja a tartalomfigyelmeztetést a bejegyzés címeként. Nincs hatással semmilyen más tartalomszűrésre, amelyet végül beállított."; -$a->strings["Disable intelligent shortening"] = "Intelligens rövidítés letiltása"; -$a->strings["Normally the system tries to find the best link to add to shortened posts. If this option is enabled then every shortened post will always point to the original friendica post."] = "Általában a rendszer megpróbálja megkeresni a legjobb hivatkozást a rövidített bejegyzésekhez történő hozzáadáshoz. Ha ez a beállítás engedélyezve van, akkor minden egyes rövidített bejegyzés mindig az eredeti Friendica bejegyzésre fog mutatni."; -$a->strings["Attach the link title"] = "A hivatkozás címének csatolása"; -$a->strings["When activated, the title of the attached link will be added as a title on posts to Diaspora. This is mostly helpful with \"remote-self\" contacts that share feed content."] = "Ha be van kapcsolva, akkor a csatolt hivatkozás címe címként lesz hozzáadva a Diaspora hálózatra küldött bejegyzéseknél. Ez többnyire az olyan „távoli önmaga” partnerekkel hasznos, amelyek megosztják a hírforrás tartalmát."; -$a->strings["Automatically follow any GNU Social (OStatus) followers/mentioners"] = "Bármely GNU Social (OStatus) követő vagy megemlítő automatikus követése"; -$a->strings["If you receive a message from an unknown OStatus user, this option decides what to do. If it is checked, a new contact will be created for every unknown user."] = "Ha üzenetet kap egy ismeretlen OStatus felhasználótól, akkor ez a beállítás dönti el, hogy mit kell tenni. Ha be van jelölve, akkor új partner lesz létrehozva minden egyes ismeretlen felhasználóhoz."; -$a->strings["Default group for OStatus contacts"] = "Alapértelmezett csoport az OStatus partnerekhez"; -$a->strings["Your legacy GNU Social account"] = "Az örökölt GNU Social fiókja"; -$a->strings["If you enter your old GNU Social/Statusnet account name here (in the format user@domain.tld), your contacts will be added automatically. The field will be emptied when done."] = "Ha megadja itt a régi GNU Social vagy Statusnet fiókja nevét (felhasználó@tartomány.tld formátumban), akkor a partnerei automatikusan hozzá lesznek adva. A mező ki lesz ürítve, ha elkészült."; -$a->strings["Repair OStatus subscriptions"] = "OStatus feliratkozások javítása"; -$a->strings["Email/Mailbox Setup"] = "E-mail vagy postafiók-beállítások"; -$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Ha e-mailes partnerekkel szeretne kommunikálni ezen szolgáltatás használatával (opcionális), akkor adja meg, hogy hogyan kell kapcsolódni a postafiókjához."; -$a->strings["Last successful email check:"] = "Legutóbbi sikeres e-mail-ellenőrzés:"; -$a->strings["IMAP server name:"] = "IMAP-kiszolgáló neve:"; -$a->strings["IMAP port:"] = "IMAP port:"; -$a->strings["Security:"] = "Biztonság:"; -$a->strings["Email login name:"] = "E-mail bejelentkezési neve:"; -$a->strings["Email password:"] = "E-mail jelszava:"; -$a->strings["Reply-to address:"] = "Válaszcím:"; -$a->strings["Send public posts to all email contacts:"] = "Nyilvános bejegyzések küldése az összes e-mail partnernek:"; -$a->strings["Action after import:"] = "Importálás utáni művelet:"; -$a->strings["Move to folder"] = "Áthelyezés mappába"; -$a->strings["Move to folder:"] = "Áthelyezés mappába:"; -$a->strings["Unable to find your profile. Please contact your admin."] = "Nem található a profilja. Vegye fel a kapcsolatot a rendszergazdával."; -$a->strings["Personal Page Subtypes"] = "Személyes oldal altípusai"; -$a->strings["Community Forum Subtypes"] = "Közösségi fórum altípusai"; -$a->strings["Account for a personal profile."] = "Egy személyes profil fiókja."; -$a->strings["Account for an organisation that automatically approves contact requests as \"Followers\"."] = "Egy szervezet fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például a „követőket”."; -$a->strings["Account for a news reflector that automatically approves contact requests as \"Followers\"."] = "Egy hírportál fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például a „követőket”."; -$a->strings["Account for community discussions."] = "Közösségi beszélgetések fiókja."; -$a->strings["Account for a regular personal profile that requires manual approval of \"Friends\" and \"Followers\"."] = "Egy szokásos személyes profil fiókja, amely az „ismerősök” és a „követők” kézi jóváhagyását igényli."; -$a->strings["Account for a public profile that automatically approves contact requests as \"Followers\"."] = "Egy nyilvános profil fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például a „követőket”."; -$a->strings["Automatically approves all contact requests."] = "Automatikusan jóváhagyja az összes partnerkérést."; -$a->strings["Account for a popular profile that automatically approves contact requests as \"Friends\"."] = "Egy népszerű profil fiókja, amely automatikusan jóváhagyja a partnerkéréseket, mint például az „ismerősöket”."; -$a->strings["Private Forum [Experimental]"] = "Személyes fórum [kísérleti]"; -$a->strings["Requires manual approval of contact requests."] = "A partnerkérések kézi jóváhagyását igényli."; -$a->strings["OpenID:"] = "OpenID:"; -$a->strings["(Optional) Allow this OpenID to login to this account."] = "(Kihagyható) Lehetővé teszi ezen OpenID számára, hogy bejelentkezzen ebbe a fiókba."; -$a->strings["Publish your profile in your local site directory?"] = "Közzéteszi a profilját a helyi oldal könyvtárában?"; -$a->strings["Your profile will be published in this node's local directory. Your profile details may be publicly visible depending on the system settings."] = "A profilja közzé lesz téve ennek a csomópontnak a helyi könyvtárában. A profilrészletei esetleg nyilvánosan láthatóak lehetnek a rendszerbeállításoktól függően."; -$a->strings["Your profile will also be published in the global friendica directories (e.g. %s)."] = "A profilja közzé lesz téve a globális Friendica könyvtárakban is (például itt: %s)."; -$a->strings["Your Identity Address is '%s' or '%s'."] = "Az Ön személyazonosság-címe „%s” vagy „%s”."; -$a->strings["Account Settings"] = "Fiókbeállítások"; -$a->strings["Password Settings"] = "Jelszóbeállítások"; -$a->strings["Allowed characters are a-z, A-Z, 0-9 and special characters except white spaces, accentuated letters and colon (:)."] = "Az engedélyezett karakterek az a-z, A-Z, 0-9 tartományokban lévők és a különleges karakterek, kivéve az üres karaktereket, ékezetes betűket és a kettőspontot (:)."; -$a->strings["Leave password fields blank unless changing"] = "Hagyja üresen a jelszómezőket, különben megváltozik"; -$a->strings["Current Password:"] = "Jelenlegi jelszó:"; -$a->strings["Your current password to confirm the changes"] = "A jelenlegi jelszava a változtatások megerősítéséhez"; -$a->strings["Password:"] = "Jelszó:"; -$a->strings["Your current password to confirm the changes of the email address"] = "A jelenlegi jelszava az e-mail-címe megváltoztatásának megerősítéséhez"; -$a->strings["Delete OpenID URL"] = "OpenID URL törlése"; -$a->strings["Basic Settings"] = "Alapvető beállítások"; -$a->strings["Email Address:"] = "E-mail-cím:"; -$a->strings["Your Timezone:"] = "Az Ön időzónája:"; -$a->strings["Your Language:"] = "Az Ön nyelve:"; -$a->strings["Set the language we use to show you friendica interface and to send you emails"] = "Annak a nyelvnek a beállítása, amelyet a Friendica felületének megjelenítéséhez és a levelek küldéséhez használunk"; -$a->strings["Default Post Location:"] = "Alapértelmezett bejegyzésküldési hely:"; -$a->strings["Use Browser Location:"] = "Böngésző helyének használata:"; -$a->strings["Security and Privacy Settings"] = "Biztonsági és adatvédelmi beállítások"; -$a->strings["Maximum Friend Requests/Day:"] = "Legtöbb ismerőskérés naponta:"; -$a->strings["(to prevent spam abuse)"] = "(a levélszeméttel való visszaélés elkerüléséhez)"; -$a->strings["Allow your profile to be searchable globally?"] = "Engedélyezi, hogy a profilja globálisan kereshető legyen?"; -$a->strings["Activate this setting if you want others to easily find and follow you. Your profile will be searchable on remote systems. This setting also determines whether Friendica will inform search engines that your profile should be indexed or not."] = "Akkor kapcsolja be ezt a beállítást, ha azt szeretné, hogy mások egyszerűen megtalálják és kövessék Önt. A profilja kereshető lesz a távoli rendszereken. Ez a beállítás azt is meghatározza, hogy a Friendica tájékoztatja-e a keresőmotorokat arról, hogy a profilját indexelni kell-e vagy sem."; -$a->strings["Hide your contact/friend list from viewers of your profile?"] = "Elrejti a partnerlistáját vagy ismerőslistáját a profilja megtekintői elől?"; -$a->strings["A list of your contacts is displayed on your profile page. Activate this option to disable the display of your contact list."] = "A partnereinek listája a profiloldalán van megjelenítve. Kapcsolja be ezt a beállítást, hogy letiltsa a partnerlistája megjelenítését."; -$a->strings["Hide your profile details from anonymous viewers?"] = "Elrejti a profilja részleteit a névtelen megtekintők elől?"; -$a->strings["Anonymous visitors will only see your profile picture, your display name and the nickname you are using on your profile page. Your public posts and replies will still be accessible by other means."] = "A névtelen látogatók csak azt profilfényképét, megjelenített nevét és becenevét láthatják, amelyet a profiloldalán használ. A nyilvános bejegyzései és válaszai továbbra is elérhetők lesznek más eszközökkel."; -$a->strings["Make public posts unlisted"] = "Nyilvános bejegyzések felsorolatlanná tétele"; -$a->strings["Your public posts will not appear on the community pages or in search results, nor be sent to relay servers. However they can still appear on public feeds on remote servers."] = "A nyilvános bejegyzései nem fognak megjelenni a közösségi oldalakon vagy a keresési találatokban, és nem lesznek elküldve az átjátszó kiszolgálóknak. Azonban továbbra is megjelenhetnek a nyilvános hírforrásokban a távoli kiszolgálókon."; -$a->strings["Make all posted pictures accessible"] = "Az összes beküldött fénykép elérhetővé tétele"; -$a->strings["This option makes every posted picture accessible via the direct link. This is a workaround for the problem that most other networks can't handle permissions on pictures. Non public pictures still won't be visible for the public on your photo albums though."] = "Ez a beállítás elérhetővé tesz minden egyes beküldött fényképet a közvetlen hivatkozáson keresztül. Ez egy kerülőmegoldás arra a problémára, hogy a legtöbb más hálózat nem tudja kezelni a fényképek jogosultságait. A nem nyilvános fényképek továbbra sem lesznek láthatóak a nyilvánosság számára a fényképalbumán keresztül."; -$a->strings["Allow friends to post to your profile page?"] = "Engedélyezi az ismerősöknek, hogy beküldjenek a profiloldalára?"; -$a->strings["Your contacts may write posts on your profile wall. These posts will be distributed to your contacts"] = "A partnerei bejegyzéseket írhatnak az Ön profilfalára. Ezek a bejegyzések továbbítva lesznek a partnereinek."; -$a->strings["Allow friends to tag your posts?"] = "Engedélyezi az ismerőseinek, hogy címkézzék a bejegyzéseit?"; -$a->strings["Your contacts can add additional tags to your posts."] = "A partnerei további címkéket adhatnak a bejegyzéseihez."; -$a->strings["Permit unknown people to send you private mail?"] = "Engedélyt ad ismeretlen embereknek, hogy személyes levelet küldjenek Önnek?"; -$a->strings["Friendica network users may send you private messages even if they are not in your contact list."] = "A Friendica hálózat felhasználói akkor is küldhetnek Önnek személyes üzeneteket, ha nincsenek a partnerlistáján."; -$a->strings["Maximum private messages per day from unknown people:"] = "Legtöbb személyes üzenet naponta az ismeretlen emberektől:"; -$a->strings["Default Post Permissions"] = "Alapértelmezett bejegyzés-jogosultságok"; -$a->strings["Expiration settings"] = "Lejárati jogosultságok"; -$a->strings["Automatically expire posts after this many days:"] = "Bejegyzések automatikus lejárata ennyi nap után:"; -$a->strings["If empty, posts will not expire. Expired posts will be deleted"] = "Ha üres, akkor a bejegyzések nem járnak le. A lejárt bejegyzések törölve lesznek."; -$a->strings["Expire posts"] = "Bejegyzések lejárata"; -$a->strings["When activated, posts and comments will be expired."] = "Ha be van kapcsolva, akkor a bejegyzések és a hozzászólások le fognak járni."; -$a->strings["Expire personal notes"] = "Személyes jegyzetek lejárata"; -$a->strings["When activated, the personal notes on your profile page will be expired."] = "Ha be van kapcsolva, akkor a profiloldalán lévő személyes jegyzetek le fognak járni."; -$a->strings["Expire starred posts"] = "Csillagozott bejegyzések lejárata"; -$a->strings["Starring posts keeps them from being expired. That behaviour is overwritten by this setting."] = "A bejegyzések csillagozása megakadályozza azok lejáratát. Ez a viselkedés felülírható ezzel a beállítással."; -$a->strings["Expire photos"] = "Fényképek lejárata"; -$a->strings["When activated, photos will be expired."] = "Ha be van kapcsolva, akkor a fényképek le fognak járni."; -$a->strings["Only expire posts by others"] = "Csak a másoktól származó bejegyzések lejárata"; -$a->strings["When activated, your own posts never expire. Then the settings above are only valid for posts you received."] = "Ha be van kapcsolva, akkor a saját bejegyzései sosem járnak le. Ekkor a fenti beállítás csak azokra a bejegyzésekre érvényes, amelyeket megkap."; -$a->strings["Notification Settings"] = "Értesítési beállítások"; -$a->strings["Send a notification email when:"] = "Értesítési e-mail küldése a következő esetekben:"; -$a->strings["You receive an introduction"] = "Egy bemutatkozást fogad"; -$a->strings["Your introductions are confirmed"] = "A bemutatkozásait jóváhagyták"; -$a->strings["Someone writes on your profile wall"] = "Valaki ír a profilfalára"; -$a->strings["Someone writes a followup comment"] = "Valaki egy követő hozzászólást ír"; -$a->strings["You receive a private message"] = "Személyes üzenetet kap"; -$a->strings["You receive a friend suggestion"] = "Ismerősajánlást kap"; -$a->strings["You are tagged in a post"] = "Bejelölték egy bejegyzésben"; -$a->strings["You are poked/prodded/etc. in a post"] = "Megbökték, megdöfték, stb. egy bejegyzésben"; -$a->strings["Activate desktop notifications"] = "Asztali értesítések bekapcsolása"; -$a->strings["Show desktop popup on new notifications"] = "Felugró üzenet megjelenítése az asztalon új értesítések esetén."; -$a->strings["Text-only notification emails"] = "Csak szöveges értesítési e-mailek"; -$a->strings["Send text only notification emails, without the html part"] = "Csak szöveges értesítési e-mailek küldése a HTML rész nélkül."; -$a->strings["Show detailled notifications"] = "Részletes értesítések megjelenítése"; -$a->strings["Per default, notifications are condensed to a single notification per item. When enabled every notification is displayed."] = "Alapértelmezetten az értesítések elemenként egyetlen értesítésbe vannak összevonva. Ha engedélyezve van, akkor minden értesítés megjelenik."; -$a->strings["Show notifications of ignored contacts"] = "Figyelmen kívül hagyott partnerek értesítéseinek megjelenítése"; -$a->strings["You don't see posts from ignored contacts. But you still see their comments. This setting controls if you want to still receive regular notifications that are caused by ignored contacts or not."] = "Nem látja a figyelmen kívül hagyott partnerektől érkező bejegyzéseket. Viszont továbbra is látja a hozzászólásaikat. Ez a beállítás azt vezérli, hogy továbbra is szeretne-e olyan normál értesítéseket kapni vagy sem, amelyeket figyelmen kívül hagyott partnerek okoznak."; -$a->strings["Advanced Account/Page Type Settings"] = "Speciális fióktípus vagy oldaltípus beállítások"; -$a->strings["Change the behaviour of this account for special situations"] = "A fiók viselkedésének megváltoztatása bizonyos helyzetekre."; -$a->strings["Import Contacts"] = "Partnerek importálása"; -$a->strings["Upload a CSV file that contains the handle of your followed accounts in the first column you exported from the old account."] = "Töltsön fel egy olyan CSV-fájlt, amely a követett fiókok kezelőjét tartalmazza az első oszlopban, ahogy a régi fiókból exportálta."; -$a->strings["Upload File"] = "Fájl feltöltése"; -$a->strings["Relocate"] = "Áthelyezés"; -$a->strings["If you have moved this profile from another server, and some of your contacts don't receive your updates, try pushing this button."] = "Ha áthelyezte ezt a profilt egy másik kiszolgálóról, és néhány partnere nem kapta meg a frissítéseket, akkor próbálja meg megnyomni ezt a gombot."; -$a->strings["Resend relocate message to contacts"] = "Áthelyezési üzenet küldése a partnereknek"; -$a->strings["Item not found"] = "Az elem nem található"; -$a->strings["Edit post"] = "Bejegyzés szerkesztése"; -$a->strings["Insert web link"] = "Webhivatkozás beszúrása"; -$a->strings["web link"] = "webhivatkozás"; -$a->strings["Insert video link"] = "Videohivatkozás beszúrása"; -$a->strings["video link"] = "videohivatkozás"; -$a->strings["Insert audio link"] = "Hanghivatkozás beszúrása"; -$a->strings["audio link"] = "hanghivatkozás"; -$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nem érhetők el javaslatok. Ha ez egy új oldal, akkor próbálja újra 24 óra múlva."; -$a->strings["Files"] = "Fájlok"; -$a->strings["{0} wants to be your friend"] = "{0} az ismerőse szeretne lenni"; -$a->strings["{0} requested registration"] = "{0} regisztrációt kért"; -$a->strings["{0} and %d others requested registration"] = "{0} és még %d személy regisztrációt kért"; -$a->strings["Authorize application connection"] = "Alkalmazáskapcsolat felhatalmazása"; -$a->strings["Return to your app and insert this Securty Code:"] = "Térjen vissza az alkalmazásához, és szúrja be ezt a biztonsági kódot:"; -$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Szeretné felhatalmazni ezt az alkalmazást, hogy hozzáférjen a bejegyzéseihez és a partnereihez, és/vagy új bejegyzéseket hozzon létre Önnek?"; -$a->strings["The requested item doesn't exist or has been deleted."] = "A kért elem nem létezik vagy törölték."; -$a->strings["The feed for this item is unavailable."] = "Ennek az elemnek a hírforrása nem érhető el."; -$a->strings["Sorry, maybe your upload is bigger than the PHP configuration allows"] = "Elnézést, talán a feltöltése nagyobb annál, amit a PHP beállítása megenged"; -$a->strings["Or - did you try to upload an empty file?"] = "Vagy – egy üres fájlt próbált meg feltölteni?"; -$a->strings["File exceeds size limit of %s"] = "A fájl meghaladja a beállított %s méretkorlátot"; -$a->strings["File upload failed."] = "A fájl feltöltése sikertelen."; -$a->strings["No keywords to match. Please add keywords to your profile."] = "Nincs illesztendő kulcsszó. Adjon kulcsszavakat a profiljához."; -$a->strings["Profile Match"] = "Profilegyezés"; -$a->strings["You already added this contact."] = "Már hozzáadta ezt a partnert."; -$a->strings["The network type couldn't be detected. Contact can't be added."] = "A hálózat típusát nem sikerült felismerni. A partnert nem lehet hozzáadni."; -$a->strings["Diaspora support isn't enabled. Contact can't be added."] = "A Diaspora támogatása nincs engedélyezve. A partnert nem lehet hozzáadni."; -$a->strings["OStatus support is disabled. Contact can't be added."] = "Az OStatus támogatása le van tiltva. A partnert nem lehet hozzáadni."; -$a->strings["Your Identity Address:"] = "Az Ön személyazonosság-címe:"; -$a->strings["%s knows you"] = "%s ismeri Önt"; -$a->strings["Add a personal note:"] = "Személyes jegyzet hozzáadása:"; -$a->strings["The contact could not be added."] = "A partnert nem sikerült hozzáadni."; -$a->strings["Unable to locate original post."] = "Nem lehet megtalálni az eredeti bejegyzést."; -$a->strings["Empty post discarded."] = "Az üres bejegyzés elvetve."; -$a->strings["Post updated."] = "Bejegyzés frissítve."; -$a->strings["Item wasn't stored."] = "Az elem nem lett eltárolva."; -$a->strings["Item couldn't be fetched."] = "Az elemet nem sikerült lekérni."; -$a->strings["This introduction has already been accepted."] = "Ez a bemutatkozás már el lett fogadva."; -$a->strings["Profile location is not valid or does not contain profile information."] = "A profil helye nem érvényes vagy nem tartalmaz profilinformációkat."; -$a->strings["Warning: profile location has no identifiable owner name."] = "Figyelmeztetés: a profil helyének nincs azonosítható tulajdonosneve."; -$a->strings["Warning: profile location has no profile photo."] = "Figyelmeztetés: a profil helyének nincs profilfényképe."; -$a->strings["%d required parameter was not found at the given location"] = [ - 0 => "%d szükséges paraméter nem található a megadott helyen", - 1 => "%d szükséges paraméter nem található a megadott helyen", -]; -$a->strings["Introduction complete."] = "A bemutatkozás befejeződött."; -$a->strings["Unrecoverable protocol error."] = "Helyrehozhatatlan protokollhiba."; -$a->strings["%s has received too many connection requests today."] = "%s túl sok kapcsolódási kérést kapott ma."; -$a->strings["Spam protection measures have been invoked."] = "A kéretlen adatok elleni védekezési intézkedések meghívásra kerültek."; -$a->strings["Friends are advised to please try again in 24 hours."] = "Az ismerősöknek azt javasoljuk, hogy próbálják újra 24 óra múlva."; -$a->strings["You have already introduced yourself here."] = "Ön már bemutatkozott itt."; -$a->strings["Apparently you are already friends with %s."] = "Úgy tűnik, hogy Ön és %s már ismerősök."; -$a->strings["Invalid profile URL."] = "Érvénytelen profil URL."; -$a->strings["Your introduction has been sent."] = "A bemutatkozása el lett küldve."; -$a->strings["Please login to confirm introduction."] = "Jelentkezzen be a bemutatkozás megerősítéséhez."; -$a->strings["Incorrect identity currently logged in. Please login to this profile."] = "Hibás személyazonosság van jelenleg bejelentkezve. Jelentkezzen be ebbe a profilba."; -$a->strings["Confirm"] = "Megerősítés"; -$a->strings["Hide this contact"] = "A partner elrejtése"; -$a->strings["Welcome home %s."] = "Üdvözöljük itthon, %s!"; -$a->strings["Please confirm your introduction/connection request to %s."] = "Erősítse meg a bemutatkozását vagy a kapcsolódási kérését ehhez: %s."; -$a->strings["Enter your Webfinger address (user@domain.tld) or profile URL here. If this isn't supported by your system (for example it doesn't work with Diaspora), you have to subscribe to %s directly on your system"] = "Adja meg itt a WebFinger-címét (felhasználó@tartomány.tld) vagy a profil URL-jét. Ha ezt nem támogatja a rendszere (például nem működik a Diaspora hálózatával), akkor fel kell iratkoznia a(z) %s címre közvetlenül a rendszerén."; -$a->strings["View"] = "Nézet"; -$a->strings["Previous"] = "Előző"; -$a->strings["list"] = "lista"; -$a->strings["This calendar format is not supported"] = "Ez a naptárformátum nem támogatott"; -$a->strings["No exportable data found"] = "Nem található exportálható adat"; -$a->strings["calendar"] = "naptár"; -$a->strings["User imports on closed servers can only be done by an administrator."] = "A lezárt kiszolgálókon történő felhasználó-importálásokat csak egy adminisztrátor végezheti el."; -$a->strings["Move account"] = "Fiók áthelyezése"; -$a->strings["You can import an account from another Friendica server."] = "Importálhat egy fiókot egy másik Friendica kiszolgálóról."; -$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "Exportálnia kell a fiókját a régi kiszolgálóról, és fel kell töltenie ide. Itt újra létre fogjuk hozni a régi fiókját az összes partnerével. Megpróbáljuk tájékoztatni az ismerőseit arról is, hogy átköltözött ide."; -$a->strings["This feature is experimental. We can't import contacts from the OStatus network (GNU Social/Statusnet) or from Diaspora"] = "Ez a funkció kísérleti. Nem tudunk partnereket importálni az OStatus hálózatból (GNU Social/Statusnet) vagy Diaspora hálózatból."; -$a->strings["Account file"] = "Fiókfájl"; -$a->strings["To export your account, go to \"Settings->Export your personal data\" and select \"Export account\""] = "A fiókja exportálásához menjen a „Beállítások → Személyes adatok exportálása” oldalra, és válassza a „Fiók exportálása” lehetőséget."; -$a->strings["No valid account found."] = "Nem található érvényes fiók."; -$a->strings["Password reset request issued. Check your email."] = "A jelszó-visszaállítási kérés el lett küldve. Nézze meg a leveleit."; -$a->strings["\n\t\tDear %1\$s,\n\t\t\tA request was recently received at \"%2\$s\" to reset your account\n\t\tpassword. In order to confirm this request, please select the verification link\n\t\tbelow or paste it into your web browser address bar.\n\n\t\tIf you did NOT request this change, please DO NOT follow the link\n\t\tprovided and ignore and/or delete this email, the request will expire shortly.\n\n\t\tYour password will not be changed unless we can verify that you\n\t\tissued this request."] = "\n\t\tKedves %1\$s!\n\t\t\tNemrég kérés érkezett a „%2\$s” oldalról a fiókja jelszavának\n\t\tvisszaállítására. A kérés megerősítése érdekében kattintson a lenti\n\t\tellenőrző hivatkozásra, vagy illessze be a webböngészője címsávjába.\n\n\t\tHa NEM Ön kérte ezt a változtatást, akkor NE kövesse a megadott\n\t\thivatkozást, illetve hagyja figyelmen kívül és/vagy törölje ezt az\n\t\te-mailt. A kérés hamarosan le fog járni.\n\n\t\tA jelszava nem lesz megváltoztatva, hacsak nem tudjuk ellenőrizni, hogy\n\t\tÖn indította ezt a kérést."; -$a->strings["\n\t\tFollow this link soon to verify your identity:\n\n\t\t%1\$s\n\n\t\tYou will then receive a follow-up message containing the new password.\n\t\tYou may change that password from your account settings page after logging in.\n\n\t\tThe login details are as follows:\n\n\t\tSite Location:\t%2\$s\n\t\tLogin Name:\t%3\$s"] = "\n\t\tKövesse ezt a hivatkozást a személyazonossága ellenőrzéséhez:\n\n\t\t%1\$s\n\n\t\tEzután kapni fog egy követő üzenetet, amely az új jelszavát tartalmazza.\n\t\tA jelszót a fiókja beállításainak oldalán változtathatja meg, miután bejelentkezett.\n\n\t\tA bejelentkezés részletei a következők:\n\n\t\tOldal címe:\t%2\$s\n\t\tBejelentkezési név:\t%3\$s"; -$a->strings["Password reset requested at %s"] = "Jelszó-visszaállítás kérve itt: %s"; -$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "A kérést nem sikerült ellenőrizni (lehet, hogy korábban már elküldte). A jelszó-visszaállítás sikertelen."; -$a->strings["Request has expired, please make a new one."] = "A kérés lejárt, készítsen egy újat."; -$a->strings["Forgot your Password?"] = "Elfelejtette a jelszavát?"; -$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Adja meg az e-mail-címét, és küldje el a jelszó-visszaállítás kéréséhez. Azután nézze meg a postafiókját a további utasításokért."; -$a->strings["Reset"] = "Visszaállítás"; -$a->strings["Your password has been reset as requested."] = "A jelszava vissza lett állítva a kérés alapján."; -$a->strings["Your new password is"] = "Az új jelszava"; -$a->strings["Save or copy your new password - and then"] = "Mentse el vagy másolja le az új jelszavát – majd"; -$a->strings["click here to login"] = "kattintson ide a bejelentkezéshez"; -$a->strings["Your password may be changed from the Settings page after successful login."] = "A jelszava megváltoztatható a Beállítások oldalon, miután sikeresen bejelentkezett."; -$a->strings["Your password has been reset."] = "A jelszava vissza lett állítva."; -$a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requested. Please retain this\n\t\t\tinformation for your records (or change your password immediately to\n\t\t\tsomething that you will remember).\n\t\t"] = "\n\t\t\tKedves %1\$s!\n\t\t\t\tA jelszava vissza lett állítva a kérés alapján. Őrizze meg ezt az\n\t\t\tinformációt a feljegyzéséhez (vagy változtassa meg a jelszót azonnal\n\t\t\tvalami olyanra, amelyre emlékezni fog).\n\t\t"; -$a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\tA bejelentkezés részletei a következők:\n\n\t\t\tOldal címe:\t%1\$s\n\t\t\tBejelentkezési név:\t%2\$s\n\t\t\tJelszó:\t%3\$s\n\n\t\t\tMegváltoztathatja a jelszót a fiókbeállítások oldalon, miután bejelentkezett.\n\t\t"; -$a->strings["Your password has been changed at %s"] = "A jelszava meg lett változtatva itt: %s"; -$a->strings["Event can not end before it has started."] = "Az esemény nem fejeződhet be, mielőtt elkezdődött volna."; -$a->strings["Event title and start time are required."] = "Az esemény címe és a kezdési idő kötelező."; -$a->strings["Create New Event"] = "Új esemény létrehozása"; -$a->strings["Event details"] = "Esemény részletei"; -$a->strings["Starting date and Title are required."] = "A kezdési dátum és a cím kötelező."; -$a->strings["Event Starts:"] = "Esemény kezdete:"; -$a->strings["Finish date/time is not known or not relevant"] = "A befejezési dátum vagy idő nem ismert vagy nem fontos"; -$a->strings["Event Finishes:"] = "Esemény befejezése:"; -$a->strings["Adjust for viewer timezone"] = "Igazítás a néző időzónájához"; -$a->strings["Title:"] = "Cím:"; -$a->strings["Share this event"] = "Az esemény megosztása"; -$a->strings["Failed to remove event"] = "Nem sikerült eltávolítani az eseményt"; -$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "A(z) %s napi falüzeneteinek száma túllépve. Az üzenet sikertelen."; -$a->strings["No recipient selected."] = "Nincs címzett kiválasztva."; -$a->strings["Unable to check your home location."] = "Nem lehet ellenőrizni az otthona helyét."; -$a->strings["Message could not be sent."] = "Az üzenetet nem sikerült elküldeni."; -$a->strings["Message collection failure."] = "Üzenet-összegyűjtési hiba."; -$a->strings["No recipient."] = "Nincs címzett."; -$a->strings["Please enter a link URL:"] = "Írjon be egy hivatkozás URL-t:"; -$a->strings["Send Private Message"] = "Személyes üzenet küldése"; -$a->strings["If you wish for %s to respond, please check that the privacy settings on your site allow private mail from unknown senders."] = "Ha azt szeretné, hogy %s válaszoljon, ellenőrizze, hogy az Ön oldalán lévő adatvédelmi beállítások lehetővé teszik-e az ismeretlen küldőktől származó személyes leveleket."; -$a->strings["To:"] = "Címzett:"; -$a->strings["Subject:"] = "Tárgy:"; -$a->strings["No videos selected"] = "Nincsenek videók kiválasztva"; -$a->strings["Recent Videos"] = "Legutóbbi videók"; -$a->strings["Upload New Videos"] = "Új videók feltöltése"; -$a->strings["Unable to locate contact information."] = "Nem lehet megtalálni a partner információit."; -$a->strings["Conversation not found."] = "A beszélgetés nem található."; -$a->strings["Message was not deleted."] = "Az üzenet nem lett törölve."; -$a->strings["Conversation was not removed."] = "A beszélgetés nem lett eltávolítva."; -$a->strings["No messages."] = "Nincsenek üzenetek."; -$a->strings["Message not available."] = "Az üzenet nem érhető el."; -$a->strings["Delete message"] = "Üzenet törlése"; -$a->strings["D, d M Y - g:i A"] = "Y. M. j., D. – H:i"; -$a->strings["Delete conversation"] = "Beszélgetés törlése"; -$a->strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Nem érhető el biztonságos kommunikáció. Esetleg válaszolhat a küldő profiloldaláról."; -$a->strings["Send Reply"] = "Válasz küldése"; -$a->strings["Unknown sender - %s"] = "Ismeretlen küldő – %s"; -$a->strings["You and %s"] = "Ön és %s"; -$a->strings["%s and You"] = "%s és Ön"; -$a->strings["%d message"] = [ - 0 => "%d üzenet", - 1 => "%d üzenet", -]; -$a->strings["Remove Item Tag"] = "Elem címkéjének eltávolítása"; -$a->strings["Select a tag to remove: "] = "Eltávolítandó címke kiválasztása: "; -$a->strings["Bad Request."] = "Hibás kérés."; -$a->strings["%1\$s welcomes %2\$s"] = "%1\$s üdvözli őt: %2\$s"; -$a->strings["Resubscribing to OStatus contacts"] = "Újrafeliratkozás az OStatus partnerekre"; -$a->strings["You aren't following this contact."] = "Ön nem követi ezt a partnert."; -$a->strings["Unfollowing is currently not supported by your network."] = "A követés megszüntetését jelenleg nem támogatja a hálózata."; -$a->strings["Disconnect/Unfollow"] = "Leválasztás vagy követés megszüntetése"; -$a->strings["Personal notes are visible only by yourself."] = "A személyes jegyzetek csak az Ön számára láthatók."; diff --git a/view/lang/ja/messages.po b/view/lang/ja/messages.po index aebe08154..2da935d79 100644 --- a/view/lang/ja/messages.po +++ b/view/lang/ja/messages.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-16 07:41+0000\n" -"PO-Revision-Date: 2021-05-19 09:06+0000\n" -"Last-Translator: XMPPはいいぞ\n" +"POT-Creation-Date: 2021-06-15 17:22+0000\n" +"PO-Revision-Date: 2021-06-14 03:25+0000\n" +"Last-Translator: Transifex Bot <>\n" "Language-Team: Japanese (http://www.transifex.com/Friendica/friendica/language/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,28 +21,28 @@ msgstr "" "Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: include/api.php:1137 +#: include/api.php:1135 #, 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] "一日の最大投稿数 %d 件を超えたため、投稿できませんでした。" -#: include/api.php:1151 +#: include/api.php:1149 #, php-format msgid "Weekly posting limit of %d post reached. The post was rejected." msgid_plural "" "Weekly posting limit of %d posts reached. The post was rejected." msgstr[0] "一週間の最大投稿数 %d 件を超えたため、投稿できませんでした。" -#: include/api.php:1165 +#: include/api.php:1163 #, php-format msgid "Monthly posting limit of %d post reached. The post was rejected." msgstr "月間の最大投稿数 %d 件を超えたため、投稿できませんでした。" -#: include/api.php:4528 mod/photos.php:107 mod/photos.php:211 +#: include/api.php:4526 mod/photos.php:107 mod/photos.php:211 #: mod/photos.php:639 mod/photos.php:1043 mod/photos.php:1060 -#: mod/photos.php:1609 src/Model/User.php:1045 src/Model/User.php:1053 -#: src/Model/User.php:1061 src/Module/Settings/Profile/Photo/Crop.php:97 +#: mod/photos.php:1609 src/Model/User.php:1100 src/Model/User.php:1108 +#: src/Model/User.php:1116 src/Module/Settings/Profile/Photo/Crop.php:97 #: src/Module/Settings/Profile/Photo/Crop.php:113 #: src/Module/Settings/Profile/Photo/Crop.php:129 #: src/Module/Settings/Profile/Photo/Crop.php:178 @@ -56,7 +56,7 @@ msgstr "プロフィール写真" msgid "%1$s poked %2$s" msgstr "%1$s が %2$s にpokeを送りました" -#: include/conversation.php:227 src/Model/Item.php:2523 +#: include/conversation.php:227 src/Model/Item.php:2605 msgid "event" msgstr "イベント" @@ -64,7 +64,7 @@ msgstr "イベント" msgid "status" msgstr "ステータス" -#: include/conversation.php:235 mod/tagger.php:90 src/Model/Item.php:2525 +#: include/conversation.php:235 mod/tagger.php:90 src/Model/Item.php:2607 msgid "photo" msgstr "写真" @@ -84,21 +84,21 @@ msgstr "選択" msgid "Delete" msgstr "削除" -#: include/conversation.php:600 src/Object/Post.php:449 -#: src/Object/Post.php:450 +#: include/conversation.php:600 src/Object/Post.php:453 +#: src/Object/Post.php:454 #, php-format msgid "View %s's profile @ %s" msgstr "%sのプロフィールを確認 @ %s" -#: include/conversation.php:613 src/Object/Post.php:437 +#: include/conversation.php:613 src/Object/Post.php:441 msgid "Categories:" msgstr "カテゴリ:" -#: include/conversation.php:614 src/Object/Post.php:438 +#: include/conversation.php:614 src/Object/Post.php:442 msgid "Filed under:" msgstr "格納先:" -#: include/conversation.php:621 src/Object/Post.php:463 +#: include/conversation.php:621 src/Object/Post.php:467 #, php-format msgid "%s from %s" msgstr "%s から %s" @@ -107,10 +107,10 @@ msgstr "%s から %s" msgid "View in context" msgstr "文脈で表示する" -#: include/conversation.php:638 include/conversation.php:1224 +#: include/conversation.php:638 include/conversation.php:1222 #: mod/editpost.php:104 mod/message.php:204 mod/message.php:374 #: mod/photos.php:1536 mod/wallmessage.php:155 src/Module/Item/Compose.php:159 -#: src/Object/Post.php:497 +#: src/Object/Post.php:501 msgid "Please wait" msgstr "お待ち下さい" @@ -122,108 +122,108 @@ msgstr "削除" msgid "Delete Selected Items" msgstr "選択した項目を削除" -#: include/conversation.php:744 include/conversation.php:747 -#: include/conversation.php:750 include/conversation.php:753 +#: include/conversation.php:742 include/conversation.php:745 +#: include/conversation.php:748 include/conversation.php:751 #, php-format msgid "You had been addressed (%s)." msgstr "" -#: include/conversation.php:756 +#: include/conversation.php:754 #, php-format msgid "You are following %s." msgstr "" -#: include/conversation.php:759 +#: include/conversation.php:757 msgid "Tagged" msgstr "" -#: include/conversation.php:772 include/conversation.php:1116 -#: include/conversation.php:1154 +#: include/conversation.php:770 include/conversation.php:1114 +#: include/conversation.php:1152 #, php-format msgid "%s reshared this." msgstr "%s が再共有しました。" -#: include/conversation.php:774 +#: include/conversation.php:772 msgid "Reshared" msgstr "" -#: include/conversation.php:774 +#: include/conversation.php:772 #, php-format -msgid "Reshared by %s" +msgid "Reshared by %s <%s>" msgstr "" -#: include/conversation.php:777 +#: include/conversation.php:775 #, php-format msgid "%s is participating in this thread." msgstr "" -#: include/conversation.php:780 +#: include/conversation.php:778 msgid "Stored" msgstr "" -#: include/conversation.php:783 +#: include/conversation.php:781 msgid "Global" msgstr "" -#: include/conversation.php:786 +#: include/conversation.php:784 msgid "Relayed" msgstr "" -#: include/conversation.php:786 +#: include/conversation.php:784 #, php-format -msgid "Relayed by %s." +msgid "Relayed by %s <%s>" msgstr "" -#: include/conversation.php:789 +#: include/conversation.php:787 msgid "Fetched" msgstr "" -#: include/conversation.php:789 +#: include/conversation.php:787 #, php-format -msgid "Fetched because of %s" +msgid "Fetched because of %s <%s>" msgstr "" -#: include/conversation.php:949 view/theme/frio/theme.php:323 +#: include/conversation.php:947 view/theme/frio/theme.php:323 msgid "Follow Thread" msgstr "このスレッドをフォロー" -#: include/conversation.php:950 src/Model/Contact.php:986 +#: include/conversation.php:948 src/Model/Contact.php:999 msgid "View Status" msgstr "ステータスを見る" -#: include/conversation.php:951 include/conversation.php:973 -#: src/Model/Contact.php:912 src/Model/Contact.php:978 -#: src/Model/Contact.php:987 src/Module/Directory.php:166 +#: include/conversation.php:949 include/conversation.php:971 +#: src/Model/Contact.php:925 src/Model/Contact.php:991 +#: src/Model/Contact.php:1000 src/Module/Directory.php:166 #: src/Module/Settings/Profile/Index.php:240 msgid "View Profile" msgstr "プロフィールを見る" -#: include/conversation.php:952 src/Model/Contact.php:988 +#: include/conversation.php:950 src/Model/Contact.php:1001 msgid "View Photos" msgstr "写真を見る" -#: include/conversation.php:953 src/Model/Contact.php:979 -#: src/Model/Contact.php:989 +#: include/conversation.php:951 src/Model/Contact.php:992 +#: src/Model/Contact.php:1002 msgid "Network Posts" msgstr "ネットワーク投稿" -#: include/conversation.php:954 src/Model/Contact.php:980 -#: src/Model/Contact.php:990 +#: include/conversation.php:952 src/Model/Contact.php:993 +#: src/Model/Contact.php:1003 msgid "View Contact" msgstr "コンタクトを見る" -#: include/conversation.php:955 src/Model/Contact.php:992 +#: include/conversation.php:953 src/Model/Contact.php:1005 msgid "Send PM" msgstr "PMを送る" -#: include/conversation.php:956 src/Module/Admin/Blocklist/Contact.php:84 +#: include/conversation.php:954 src/Module/Admin/Blocklist/Contact.php:84 #: src/Module/Admin/Users/Active.php:140 src/Module/Admin/Users/Index.php:154 #: src/Module/Contact.php:633 src/Module/Contact.php:891 #: src/Module/Contact.php:1173 msgid "Block" msgstr "ブロック" -#: include/conversation.php:957 src/Module/Contact.php:634 +#: include/conversation.php:955 src/Module/Contact.php:634 #: src/Module/Contact.php:892 src/Module/Contact.php:1181 #: src/Module/Notifications/Introductions.php:113 #: src/Module/Notifications/Introductions.php:191 @@ -231,273 +231,273 @@ msgstr "ブロック" msgid "Ignore" msgstr "無視" -#: include/conversation.php:961 src/Object/Post.php:424 +#: include/conversation.php:959 src/Object/Post.php:428 msgid "Languages" msgstr "言語" -#: include/conversation.php:965 src/Model/Contact.php:993 +#: include/conversation.php:963 src/Model/Contact.php:1006 msgid "Poke" msgstr "Pokeを送る" -#: include/conversation.php:970 mod/follow.php:146 src/Content/Widget.php:76 -#: src/Model/Contact.php:981 src/Model/Contact.php:994 +#: include/conversation.php:968 mod/follow.php:146 src/Content/Widget.php:76 +#: src/Model/Contact.php:994 src/Model/Contact.php:1007 #: view/theme/vier/theme.php:172 msgid "Connect/Follow" msgstr "つながる/フォローする" -#: include/conversation.php:1101 +#: include/conversation.php:1099 #, php-format msgid "%s likes this." msgstr "%s がいいねしました" -#: include/conversation.php:1104 +#: include/conversation.php:1102 #, php-format msgid "%s doesn't like this." msgstr "%s はこれを好きではないようです" -#: include/conversation.php:1107 +#: include/conversation.php:1105 #, php-format msgid "%s attends." msgstr "%s が参加します。" -#: include/conversation.php:1110 +#: include/conversation.php:1108 #, php-format msgid "%s doesn't attend." msgstr "%s は欠席します。" -#: include/conversation.php:1113 +#: include/conversation.php:1111 #, php-format msgid "%s attends maybe." msgstr "%s は様子見しています。" -#: include/conversation.php:1122 +#: include/conversation.php:1120 msgid "and" msgstr "と" -#: include/conversation.php:1125 +#: include/conversation.php:1123 #, php-format msgid "and %d other people" msgstr "と他 %d 人" -#: include/conversation.php:1133 +#: include/conversation.php:1131 #, php-format msgid "%2$d people like this" msgstr "%2$d 人 がいいねしました" -#: include/conversation.php:1134 +#: include/conversation.php:1132 #, php-format msgid "%s like this." msgstr "%s がいいねしました" -#: include/conversation.php:1137 +#: include/conversation.php:1135 #, php-format msgid "%2$d people don't like this" msgstr "%2$d 人 がこれを好きでは無いようです" -#: include/conversation.php:1138 +#: include/conversation.php:1136 #, php-format msgid "%s don't like this." msgstr "%s はこれを好きではないようです" -#: include/conversation.php:1141 +#: include/conversation.php:1139 #, php-format msgid "%2$d people attend" msgstr "%2$d 人 が参加します" -#: include/conversation.php:1142 +#: include/conversation.php:1140 #, php-format msgid "%s attend." msgstr "%s が参加します。" -#: include/conversation.php:1145 +#: include/conversation.php:1143 #, php-format msgid "%2$d people don't attend" msgstr "%2$d 人 が欠席します" -#: include/conversation.php:1146 +#: include/conversation.php:1144 #, php-format msgid "%s don't attend." msgstr "%s は欠席します。" -#: include/conversation.php:1149 +#: include/conversation.php:1147 #, php-format msgid "%2$d people attend maybe" msgstr "%2$d 人 が様子見しています" -#: include/conversation.php:1150 +#: include/conversation.php:1148 #, php-format msgid "%s attend maybe." msgstr "%s は様子見しています。" -#: include/conversation.php:1153 +#: include/conversation.php:1151 #, php-format msgid "%2$d people reshared this" msgstr "%2$d 人 が再共有しました" -#: include/conversation.php:1183 +#: include/conversation.php:1181 msgid "Visible to everybody" msgstr "すべての人 が閲覧可能です" -#: include/conversation.php:1184 src/Module/Item/Compose.php:153 -#: src/Object/Post.php:966 +#: include/conversation.php:1182 src/Module/Item/Compose.php:153 +#: src/Object/Post.php:970 msgid "Please enter a image/video/audio/webpage URL:" msgstr "画像/動画/音声/ウェブページのURLを入力してください:" -#: include/conversation.php:1185 +#: include/conversation.php:1183 msgid "Tag term:" msgstr "用語のタグ付け:" -#: include/conversation.php:1186 src/Module/Filer/SaveTag.php:69 +#: include/conversation.php:1184 src/Module/Filer/SaveTag.php:69 msgid "Save to Folder:" msgstr "保存先のフォルダ:" -#: include/conversation.php:1187 +#: include/conversation.php:1185 msgid "Where are you right now?" msgstr "どこにいますか?:" -#: include/conversation.php:1188 +#: include/conversation.php:1186 msgid "Delete item(s)?" msgstr "これ(ら)の項目を削除しますか?" -#: include/conversation.php:1198 +#: include/conversation.php:1196 msgid "New Post" msgstr "新しい投稿" -#: include/conversation.php:1201 +#: include/conversation.php:1199 msgid "Share" msgstr "共有" -#: include/conversation.php:1202 mod/editpost.php:89 mod/photos.php:1382 -#: src/Module/Contact/Poke.php:154 src/Object/Post.php:957 +#: include/conversation.php:1200 mod/editpost.php:89 mod/photos.php:1382 +#: src/Module/Contact/Poke.php:154 src/Object/Post.php:961 msgid "Loading..." msgstr "読み込み中…" -#: include/conversation.php:1203 mod/editpost.php:90 mod/message.php:202 +#: include/conversation.php:1201 mod/editpost.php:90 mod/message.php:202 #: mod/message.php:371 mod/wallmessage.php:153 msgid "Upload photo" msgstr "写真をアップロード" -#: include/conversation.php:1204 mod/editpost.php:91 +#: include/conversation.php:1202 mod/editpost.php:91 msgid "upload photo" msgstr "写真をアップロード" -#: include/conversation.php:1205 mod/editpost.php:92 +#: include/conversation.php:1203 mod/editpost.php:92 msgid "Attach file" msgstr "ファイルを添付" -#: include/conversation.php:1206 mod/editpost.php:93 +#: include/conversation.php:1204 mod/editpost.php:93 msgid "attach file" msgstr "ファイルを添付" -#: include/conversation.php:1207 src/Module/Item/Compose.php:145 -#: src/Object/Post.php:958 +#: include/conversation.php:1205 src/Module/Item/Compose.php:145 +#: src/Object/Post.php:962 msgid "Bold" msgstr "太字" -#: include/conversation.php:1208 src/Module/Item/Compose.php:146 -#: src/Object/Post.php:959 +#: include/conversation.php:1206 src/Module/Item/Compose.php:146 +#: src/Object/Post.php:963 msgid "Italic" msgstr "斜体" -#: include/conversation.php:1209 src/Module/Item/Compose.php:147 -#: src/Object/Post.php:960 +#: include/conversation.php:1207 src/Module/Item/Compose.php:147 +#: src/Object/Post.php:964 msgid "Underline" msgstr "下線" -#: include/conversation.php:1210 src/Module/Item/Compose.php:148 -#: src/Object/Post.php:961 +#: include/conversation.php:1208 src/Module/Item/Compose.php:148 +#: src/Object/Post.php:965 msgid "Quote" msgstr "引用" -#: include/conversation.php:1211 src/Module/Item/Compose.php:149 -#: src/Object/Post.php:962 +#: include/conversation.php:1209 src/Module/Item/Compose.php:149 +#: src/Object/Post.php:966 msgid "Code" msgstr "コード" -#: include/conversation.php:1212 src/Module/Item/Compose.php:150 -#: src/Object/Post.php:963 +#: include/conversation.php:1210 src/Module/Item/Compose.php:150 +#: src/Object/Post.php:967 msgid "Image" msgstr "画像" -#: include/conversation.php:1213 src/Module/Item/Compose.php:151 -#: src/Object/Post.php:964 +#: include/conversation.php:1211 src/Module/Item/Compose.php:151 +#: src/Object/Post.php:968 msgid "Link" msgstr "リンク" -#: include/conversation.php:1214 src/Module/Item/Compose.php:152 -#: src/Object/Post.php:965 +#: include/conversation.php:1212 src/Module/Item/Compose.php:152 +#: src/Object/Post.php:969 msgid "Link or Media" msgstr "リンク/メディア" -#: include/conversation.php:1215 +#: include/conversation.php:1213 msgid "Video" msgstr "動画" -#: include/conversation.php:1216 mod/editpost.php:100 +#: include/conversation.php:1214 mod/editpost.php:100 #: src/Module/Item/Compose.php:155 msgid "Set your location" msgstr "現在地を設定" -#: include/conversation.php:1217 mod/editpost.php:101 +#: include/conversation.php:1215 mod/editpost.php:101 msgid "set location" msgstr "現在地を設定" -#: include/conversation.php:1218 mod/editpost.php:102 +#: include/conversation.php:1216 mod/editpost.php:102 msgid "Clear browser location" msgstr "ブラウザの現在地を解除" -#: include/conversation.php:1219 mod/editpost.php:103 +#: include/conversation.php:1217 mod/editpost.php:103 msgid "clear location" msgstr "現在地を解除" -#: include/conversation.php:1221 mod/editpost.php:117 +#: include/conversation.php:1219 mod/editpost.php:117 #: src/Module/Item/Compose.php:160 msgid "Set title" msgstr "件名を設定" -#: include/conversation.php:1223 mod/editpost.php:119 +#: include/conversation.php:1221 mod/editpost.php:119 #: src/Module/Item/Compose.php:161 msgid "Categories (comma-separated list)" msgstr "カテゴリ(半角カンマ区切り)" -#: include/conversation.php:1225 mod/editpost.php:105 +#: include/conversation.php:1223 mod/editpost.php:105 msgid "Permission settings" msgstr "権限設定" -#: include/conversation.php:1226 mod/editpost.php:134 mod/events.php:578 +#: include/conversation.php:1224 mod/editpost.php:134 mod/events.php:578 #: mod/photos.php:969 mod/photos.php:1335 msgid "Permissions" msgstr "許可" -#: include/conversation.php:1235 mod/editpost.php:114 +#: include/conversation.php:1233 mod/editpost.php:114 msgid "Public post" msgstr "一般公開の投稿" -#: include/conversation.php:1239 mod/editpost.php:125 mod/events.php:573 +#: include/conversation.php:1237 mod/editpost.php:125 mod/events.php:573 #: mod/photos.php:1381 mod/photos.php:1438 mod/photos.php:1513 -#: src/Module/Item/Compose.php:154 src/Object/Post.php:967 +#: src/Module/Item/Compose.php:154 src/Object/Post.php:971 msgid "Preview" msgstr "プレビュー" -#: include/conversation.php:1243 mod/dfrn_request.php:642 mod/editpost.php:128 +#: include/conversation.php:1241 mod/dfrn_request.php:642 mod/editpost.php:128 #: mod/fbrowser.php:105 mod/fbrowser.php:134 mod/follow.php:152 -#: mod/photos.php:1037 mod/photos.php:1143 mod/tagrm.php:37 mod/tagrm.php:127 +#: mod/photos.php:1037 mod/photos.php:1143 mod/tagrm.php:37 mod/tagrm.php:129 #: mod/unfollow.php:100 src/Module/Contact.php:467 #: src/Module/RemoteFollow.php:110 msgid "Cancel" msgstr "キャンセル" -#: include/conversation.php:1250 mod/editpost.php:132 -#: src/Model/Profile.php:450 src/Module/Contact.php:344 +#: include/conversation.php:1248 mod/editpost.php:132 +#: src/Model/Profile.php:460 src/Module/Contact.php:344 msgid "Message" msgstr "メッセージ" -#: include/conversation.php:1251 mod/editpost.php:133 +#: include/conversation.php:1249 mod/editpost.php:133 #: src/Module/Settings/TwoFactor/Trusted.php:101 msgid "Browser" msgstr "ブラウザ" -#: include/conversation.php:1253 mod/editpost.php:136 +#: include/conversation.php:1251 mod/editpost.php:136 msgid "Open Compose page" msgstr "作成ページを開く" @@ -828,8 +828,8 @@ msgid "Please visit %s to approve or reject the request." msgstr "%s を開いて、リクエストを承諾・拒否してください。" #: mod/api.php:52 mod/api.php:57 mod/dfrn_confirm.php:78 mod/editpost.php:37 -#: mod/events.php:231 mod/follow.php:55 mod/follow.php:135 mod/item.php:184 -#: mod/item.php:189 mod/item.php:909 mod/message.php:69 mod/message.php:112 +#: mod/events.php:231 mod/follow.php:55 mod/follow.php:135 mod/item.php:185 +#: mod/item.php:190 mod/item.php:910 mod/message.php:69 mod/message.php:112 #: mod/notes.php:44 mod/ostatus_subscribe.php:30 mod/photos.php:176 #: mod/photos.php:922 mod/repair_ostatus.php:31 mod/settings.php:47 #: mod/settings.php:65 mod/settings.php:498 mod/suggest.php:34 @@ -837,11 +837,9 @@ msgstr "%s を開いて、リクエストを承諾・拒否してください。 #: mod/unfollow.php:82 mod/wall_attach.php:78 mod/wall_attach.php:81 #: mod/wall_upload.php:99 mod/wall_upload.php:102 mod/wallmessage.php:35 #: mod/wallmessage.php:59 mod/wallmessage.php:96 mod/wallmessage.php:120 -#: src/Module/Attach.php:56 src/Module/BaseApi.php:74 -#: src/Module/BaseApi.php:80 src/Module/BaseApi.php:87 -#: src/Module/BaseApi.php:93 src/Module/BaseApi.php:100 -#: src/Module/BaseApi.php:106 src/Module/BaseApi.php:113 -#: src/Module/BaseApi.php:119 src/Module/BaseNotifications.php:88 +#: src/Module/Attach.php:56 src/Module/BaseApi.php:69 +#: src/Module/BaseApi.php:80 src/Module/BaseApi.php:91 +#: src/Module/BaseApi.php:102 src/Module/BaseNotifications.php:88 #: src/Module/Contact.php:385 src/Module/Contact/Advanced.php:43 #: src/Module/Delegation.php:118 src/Module/FollowConfirm.php:16 #: src/Module/FriendSuggest.php:44 src/Module/Group.php:45 @@ -908,7 +906,7 @@ msgstr "アクセスが拒否されました。" msgid "User not found." msgstr "ユーザーが見つかりません。" -#: mod/cal.php:143 mod/display.php:283 src/Module/Profile/Profile.php:94 +#: mod/cal.php:143 mod/display.php:284 src/Module/Profile/Profile.php:94 #: src/Module/Profile/Profile.php:109 src/Module/Profile/Status.php:109 #: src/Module/Update/Profile.php:55 msgid "Access to this profile has been restricted." @@ -956,10 +954,10 @@ msgstr "日" msgid "list" msgstr "リスト" -#: mod/cal.php:297 src/Console/User.php:182 src/Model/User.php:607 +#: mod/cal.php:297 src/Console/User.php:182 src/Model/User.php:662 #: src/Module/Admin/Users/Active.php:73 src/Module/Admin/Users/Blocked.php:74 #: src/Module/Admin/Users/Index.php:80 src/Module/Admin/Users/Pending.php:71 -#: src/Module/Api/Twitter/ContactEndpoint.php:73 +#: src/Module/Api/Twitter/ContactEndpoint.php:71 msgid "User not found" msgstr "ユーザーが見つかりません" @@ -1023,7 +1021,7 @@ msgstr "' %s 'のユーザーレコードが見つかりません" #: mod/dfrn_confirm.php:398 msgid "Our site encryption key is apparently messed up." -msgstr "当サイトの暗号化キーが破損しているようです。" +msgstr "当サイトの暗号化鍵が破損しているようです。" #: mod/dfrn_confirm.php:409 msgid "Empty site URL was provided or URL could not be decrypted by us." @@ -1052,7 +1050,7 @@ msgstr "このサーバ上のあなたのコンタクトの資格情報を設定 msgid "Unable to update your contact profile details on our system" msgstr "このサーバ上のあなたのコンタクトプロフィールの詳細を更新できません" -#: mod/dfrn_poll.php:135 mod/dfrn_poll.php:506 +#: mod/dfrn_poll.php:136 mod/dfrn_poll.php:509 #, php-format msgid "%1$s welcomes %2$s" msgstr "%2$sさん、%1$sへようこそ" @@ -1121,11 +1119,11 @@ msgstr "どうやらあなたはすでに%sと友達です。" msgid "Invalid profile URL." msgstr "無効なプロフィールURL。" -#: mod/dfrn_request.php:355 src/Model/Contact.php:2159 +#: mod/dfrn_request.php:355 src/Model/Contact.php:2177 msgid "Disallowed profile URL." msgstr "許可されていないプロフィールURL。" -#: mod/dfrn_request.php:361 src/Model/Contact.php:2164 +#: mod/dfrn_request.php:361 src/Model/Contact.php:2182 #: src/Module/Friendica.php:80 msgid "Blocked domain" msgstr "ブロックされたドメイン" @@ -1221,11 +1219,11 @@ msgstr "%sはあなたを知っています" msgid "Add a personal note:" msgstr "個人メモを追加します。" -#: mod/display.php:235 mod/display.php:319 +#: mod/display.php:235 mod/display.php:320 msgid "The requested item doesn't exist or has been deleted." msgstr "要求された項目は存在しないか、削除されました。" -#: mod/display.php:399 +#: mod/display.php:400 msgid "The feed for this item is unavailable." msgstr "この項目のフィードは利用できません。" @@ -1335,7 +1333,7 @@ msgid "Description:" msgstr "説明:" #: mod/events.php:563 src/Model/Event.php:84 src/Model/Event.php:111 -#: src/Model/Event.php:472 src/Model/Event.php:959 src/Model/Profile.php:358 +#: src/Model/Event.php:472 src/Model/Event.php:959 src/Model/Profile.php:368 #: src/Module/Contact.php:654 src/Module/Directory.php:156 #: src/Module/Notifications/Introductions.php:172 #: src/Module/Profile/Profile.php:190 @@ -1362,7 +1360,7 @@ msgstr "このイベントを共有する" #: src/Module/Install.php:245 src/Module/Install.php:287 #: src/Module/Install.php:324 src/Module/Invite.php:174 #: src/Module/Item/Compose.php:144 src/Module/Profile/Profile.php:243 -#: src/Module/Settings/Profile/Index.php:237 src/Object/Post.php:956 +#: src/Module/Settings/Profile/Index.php:237 src/Object/Post.php:960 #: view/theme/duepuntozero/config.php:69 view/theme/frio/config.php:160 #: view/theme/quattro/config.php:71 view/theme/vier/config.php:119 msgid "Submit" @@ -1372,7 +1370,7 @@ msgstr "送信する" msgid "Basic" msgstr "ベーシック" -#: mod/events.php:577 src/Module/Admin/Site.php:587 src/Module/Contact.php:961 +#: mod/events.php:577 src/Module/Admin/Site.php:584 src/Module/Contact.php:961 #: src/Module/Profile/Profile.php:245 msgid "Advanced" msgstr "詳細" @@ -1401,7 +1399,7 @@ msgstr "このコンタクトは既に追加されています。" #: mod/follow.php:100 msgid "The network type couldn't be detected. Contact can't be added." -msgstr "ネットワークタイプを検出できませんでした。コンタクトを追加できません。" +msgstr "ネットワークの種類を検出できませんでした。コンタクトを追加できません。" #: mod/follow.php:108 msgid "Diaspora support isn't enabled. Contact can't be added." @@ -1437,27 +1435,27 @@ msgstr "ステータスメッセージと投稿" msgid "The contact could not be added." msgstr "コンタクトを追加できませんでした。" -#: mod/item.php:135 mod/item.php:139 +#: mod/item.php:136 mod/item.php:140 msgid "Unable to locate original post." msgstr "元の投稿が見つかりません。" -#: mod/item.php:340 mod/item.php:345 +#: mod/item.php:341 mod/item.php:346 msgid "Empty post discarded." msgstr "空の投稿は破棄されました。" -#: mod/item.php:709 +#: mod/item.php:717 msgid "Post updated." msgstr "投稿が更新されました。" -#: mod/item.php:726 mod/item.php:731 +#: mod/item.php:727 mod/item.php:732 msgid "Item wasn't stored." msgstr "項目が保存されませんでした。" -#: mod/item.php:742 +#: mod/item.php:743 msgid "Item couldn't be fetched." msgstr "項目を取得できませんでした。" -#: mod/item.php:888 src/Module/Admin/Themes/Details.php:39 +#: mod/item.php:889 src/Module/Admin/Themes/Details.php:39 #: src/Module/Admin/Themes/Index.php:59 src/Module/Debug/ItemBody.php:47 #: src/Module/Debug/ItemBody.php:60 msgid "Item not found." @@ -1601,19 +1599,11 @@ msgstr "パスワードは%s変更されました" msgid "No keywords to match. Please add keywords to your profile." msgstr "合致するキーワードが有りません。あなたのプロフィールにキーワードを追加してください。" -#: mod/match.php:105 src/Content/Pager.php:216 -msgid "first" -msgstr "最初" - -#: mod/match.php:110 src/Content/Pager.php:276 -msgid "next" -msgstr "次" - -#: mod/match.php:120 src/Module/BaseSearch.php:117 +#: mod/match.php:93 src/Module/BaseSearch.php:117 msgid "No matches" msgstr "一致する項目がありません" -#: mod/match.php:125 +#: mod/match.php:98 msgid "Profile Match" msgstr "一致するプロフィール" @@ -1985,12 +1975,12 @@ msgstr "CCWを回転(左)" #: mod/photos.php:1377 mod/photos.php:1434 mod/photos.php:1509 #: src/Module/Contact.php:1104 src/Module/Item/Compose.php:142 -#: src/Object/Post.php:953 +#: src/Object/Post.php:957 msgid "This is you" msgstr "これはあなたです" #: mod/photos.php:1379 mod/photos.php:1436 mod/photos.php:1511 -#: src/Object/Post.php:491 src/Object/Post.php:955 +#: src/Object/Post.php:495 src/Object/Post.php:959 msgid "Comment" msgstr "コメント" @@ -2185,7 +2175,7 @@ msgstr "追加機能" #: mod/settings.php:564 mod/settings.php:662 mod/settings.php:797 #: src/Module/Admin/Addons/Index.php:69 src/Module/Admin/Features.php:87 -#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:582 +#: src/Module/Admin/Logs/Settings.php:82 src/Module/Admin/Site.php:579 #: src/Module/Admin/Themes/Index.php:113 src/Module/Admin/Tos.php:66 #: src/Module/Settings/Delegation.php:170 src/Module/Settings/Display.php:189 msgid "Save Settings" @@ -2210,7 +2200,7 @@ msgstr "%s接続の組み込みサポートは%s" #: mod/settings.php:588 msgid "OStatus (GNU Social)" -msgstr "" +msgstr "OStatus (GNU Social)" #: mod/settings.php:619 msgid "Email access is disabled on this site." @@ -2772,7 +2762,7 @@ msgstr "あなたは投稿でタグ付けされています" #: mod/settings.php:856 msgid "You are poked/prodded/etc. in a post" -msgstr "あなたは突かれた/突かれた/などです。投稿で" +msgstr "" #: mod/settings.php:858 msgid "Activate desktop notifications" @@ -2857,15 +2847,15 @@ msgstr "利用可能な提案はありません。新しいサイトの場合は msgid "Friend Suggestions" msgstr "友達の提案" -#: mod/tagrm.php:113 +#: mod/tagrm.php:115 msgid "Remove Item Tag" msgstr "タグの削除" -#: mod/tagrm.php:115 +#: mod/tagrm.php:117 msgid "Select a tag to remove: " msgstr "削除するタグを選択:" -#: mod/tagrm.php:126 src/Module/Settings/Delegation.php:179 +#: mod/tagrm.php:128 src/Module/Settings/Delegation.php:179 #: src/Module/Settings/TwoFactor/Trusted.php:104 msgid "Remove" msgstr "削除" @@ -2966,7 +2956,7 @@ msgstr "ファイルサイズ上限 %s を超えています。" msgid "File upload failed." msgstr "アップロードが失敗しました。" -#: mod/wall_upload.php:233 +#: mod/wall_upload.php:233 src/Model/Photo.php:953 msgid "Wall Photos" msgstr "ウォール写真" @@ -2990,7 +2980,7 @@ msgid "" "your site allow private mail from unknown senders." msgstr "%s からの返信を受け取りたい場合は、サイトのプライバシー設定で「不明な送信者からのプライベートメール」を許可しているか確認してください。" -#: src/App.php:311 +#: src/App.php:312 msgid "No system theme config value set." msgstr "システムテーマの構成値が設定されていません。" @@ -3006,18 +2996,18 @@ msgstr "この項目を削除しますか?" 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 "" +msgstr "この作者をブロックしますか?その人はあなたをフォローできなくなり、あなたの公開された投稿を見ることができなくなります。また、あなたはその人の投稿や通知を見ることができなくなります。" #: src/App/Page.php:299 msgid "toggle mobile" msgstr "モバイルを切り替え" -#: src/App/Router.php:234 +#: src/App/Router.php:236 #, php-format msgid "Method not allowed for this module. Allowed method(s): %s" msgstr "そのメソッドは、このモジュールでは許可されていません。 このメソッド(たち)が許可されています: %s" -#: src/App/Router.php:236 src/Module/HTTPException/PageNotFound.php:32 +#: src/App/Router.php:238 src/Module/HTTPException/PageNotFound.php:32 msgid "Page not found." msgstr "ページが見つかりません。" @@ -3630,46 +3620,54 @@ msgstr "埋め込みが無効です" msgid "Embedded content" msgstr "埋め込みコンテンツ" +#: src/Content/Pager.php:216 +msgid "first" +msgstr "最初" + #: src/Content/Pager.php:221 msgid "prev" msgstr "前の" +#: src/Content/Pager.php:276 +msgid "next" +msgstr "次" + #: src/Content/Pager.php:281 msgid "last" msgstr "最終" -#: src/Content/Text/BBCode.php:942 src/Content/Text/BBCode.php:1605 -#: src/Content/Text/BBCode.php:1606 +#: src/Content/Text/BBCode.php:942 src/Content/Text/BBCode.php:1607 +#: src/Content/Text/BBCode.php:1608 msgid "Image/photo" msgstr "画像/写真" -#: src/Content/Text/BBCode.php:1064 +#: src/Content/Text/BBCode.php:1066 #, php-format msgid "%2$s %3$s" msgstr "" -#: src/Content/Text/BBCode.php:1089 src/Model/Item.php:3024 -#: src/Model/Item.php:3030 src/Model/Item.php:3031 +#: src/Content/Text/BBCode.php:1091 src/Model/Item.php:3113 +#: src/Model/Item.php:3119 src/Model/Item.php:3120 msgid "Link to source" msgstr "" -#: src/Content/Text/BBCode.php:1523 src/Content/Text/HTML.php:951 +#: src/Content/Text/BBCode.php:1525 src/Content/Text/HTML.php:951 msgid "Click to open/close" msgstr "クリックして開閉" -#: src/Content/Text/BBCode.php:1554 +#: src/Content/Text/BBCode.php:1556 msgid "$1 wrote:" msgstr "$1 の投稿:" -#: src/Content/Text/BBCode.php:1608 src/Content/Text/BBCode.php:1609 +#: src/Content/Text/BBCode.php:1610 src/Content/Text/BBCode.php:1611 msgid "Encrypted content" msgstr "暗号化されたコンテンツ" -#: src/Content/Text/BBCode.php:1822 +#: src/Content/Text/BBCode.php:1824 msgid "Invalid source protocol" msgstr "無効なソースプロトコル" -#: src/Content/Text/BBCode.php:1837 +#: src/Content/Text/BBCode.php:1839 msgid "Invalid link protocol" msgstr "無効なリンクプロトコル" @@ -3681,7 +3679,7 @@ msgstr "さらにエントリを読み込んでいます..." msgid "The end" msgstr "終わり" -#: src/Content/Text/HTML.php:893 src/Model/Profile.php:444 +#: src/Content/Text/HTML.php:893 src/Model/Profile.php:454 #: src/Module/Contact.php:340 msgid "Follow" msgstr "フォロー" @@ -3802,7 +3800,7 @@ msgstr "" msgid "Organisations" msgstr "" -#: src/Content/Widget.php:532 src/Model/Contact.php:1410 +#: src/Content/Widget.php:532 src/Model/Contact.php:1423 msgid "News" msgstr "ニュース" @@ -3810,15 +3808,15 @@ msgstr "ニュース" msgid "All" msgstr "" -#: src/Content/Widget/CalendarExport.php:63 +#: src/Content/Widget/CalendarExport.php:54 msgid "Export" msgstr "輸出する" -#: src/Content/Widget/CalendarExport.php:64 +#: src/Content/Widget/CalendarExport.php:55 msgid "Export calendar as ical" msgstr "カレンダーをicalとしてエクスポート" -#: src/Content/Widget/CalendarExport.php:65 +#: src/Content/Widget/CalendarExport.php:56 msgid "Export calendar as csv" msgstr "カレンダーをcsvとしてエクスポート" @@ -3974,7 +3972,7 @@ msgstr "PHP register_argc_argv" msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" -msgstr "エラー:このシステムの\"openssl_pkey_new \"関数は暗号化キーを生成できません" +msgstr "エラー:このシステムの\"openssl_pkey_new \"関数は暗号化鍵を生成できません" #: src/Core/Installer.php:335 msgid "" @@ -3984,7 +3982,7 @@ msgstr "Windowsで実行している場合は、「 http://www.php.net/manual/en #: src/Core/Installer.php:338 msgid "Generate encryption keys" -msgstr "暗号化キーを生成する" +msgstr "暗号化鍵を生成する" #: src/Core/Installer.php:390 msgid "" @@ -4069,7 +4067,8 @@ msgid "Program execution functions" msgstr "" #: src/Core/Installer.php:468 -msgid "Error: Program execution functions required but not enabled." +msgid "" +"Error: Program execution functions (proc_open) required but not enabled." msgstr "" #: src/Core/Installer.php:474 @@ -4486,33 +4485,33 @@ msgstr "ユーザープロフィール作成エラー" msgid "Done. You can now login with your username and password" msgstr "完了しました。これでであなたのユーザー名とパスワードでログインできます。 " -#: src/Database/DBStructure.php:64 +#: src/Database/DBStructure.php:65 #, php-format msgid "The database version had been set to %s." msgstr "" -#: src/Database/DBStructure.php:77 +#: src/Database/DBStructure.php:78 #, 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:89 +#: src/Database/DBStructure.php:90 msgid "No unused tables found." msgstr "" -#: src/Database/DBStructure.php:94 +#: src/Database/DBStructure.php:95 msgid "" "These tables are not used for friendica and will be deleted when you execute" " \"dbstructure drop -e\":" msgstr "" -#: src/Database/DBStructure.php:132 +#: src/Database/DBStructure.php:133 msgid "There are no tables on MyISAM or InnoDB with the Antelope file format." msgstr "" -#: src/Database/DBStructure.php:156 +#: src/Database/DBStructure.php:157 #, php-format msgid "" "\n" @@ -4520,43 +4519,43 @@ msgid "" "%s\n" msgstr "\nデータベースの更新中にエラー%dが発生しました:\n%s\n" -#: src/Database/DBStructure.php:159 +#: src/Database/DBStructure.php:160 msgid "Errors encountered performing database changes: " msgstr "データベース変更の実行中に発生したエラー:" -#: src/Database/DBStructure.php:439 +#: src/Database/DBStructure.php:550 msgid "Another database update is currently running." msgstr "" -#: src/Database/DBStructure.php:443 +#: src/Database/DBStructure.php:554 #, php-format msgid "%s: Database update" msgstr "%s :データベースの更新" -#: src/Database/DBStructure.php:743 +#: src/Database/DBStructure.php:854 #, php-format msgid "%s: updating %s table." msgstr "%s : %sテーブルを更新しています。" -#: src/Factory/Api/Mastodon/Error.php:32 +#: src/Factory/Api/Mastodon/Error.php:38 msgid "Record not found" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:41 +#: src/Factory/Api/Mastodon/Error.php:48 msgid "Unprocessable Entity" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:50 +#: src/Factory/Api/Mastodon/Error.php:58 #: src/Module/Special/HTTPException.php:50 msgid "Unauthorized" msgstr "認証されていません" -#: src/Factory/Api/Mastodon/Error.php:59 +#: src/Factory/Api/Mastodon/Error.php:68 msgid "" "Token is not authorized with a valid user or is missing a required scope" msgstr "" -#: src/Factory/Api/Mastodon/Error.php:68 +#: src/Factory/Api/Mastodon/Error.php:78 #: src/Module/Special/HTTPException.php:53 msgid "Internal Server Error" msgstr "内部サーバーエラー" @@ -4619,82 +4618,82 @@ msgstr "%sは%sと友達になりました" msgid "Legacy module file not found: %s" msgstr "レガシーモジュールファイルが見つかりません: %s" -#: src/Model/Contact.php:982 src/Model/Contact.php:995 +#: src/Model/Contact.php:995 src/Model/Contact.php:1008 msgid "UnFollow" msgstr "フォロー解除" -#: src/Model/Contact.php:991 +#: src/Model/Contact.php:1004 msgid "Drop Contact" msgstr "コンタクトを削除" -#: src/Model/Contact.php:1001 src/Module/Admin/Users/Pending.php:107 +#: src/Model/Contact.php:1014 src/Module/Admin/Users/Pending.php:107 #: src/Module/Notifications/Introductions.php:111 #: src/Module/Notifications/Introductions.php:189 msgid "Approve" msgstr "承認する" -#: src/Model/Contact.php:1406 +#: src/Model/Contact.php:1419 msgid "Organisation" msgstr "組織" -#: src/Model/Contact.php:1414 +#: src/Model/Contact.php:1427 msgid "Forum" msgstr "フォーラム" -#: src/Model/Contact.php:2169 +#: src/Model/Contact.php:2187 msgid "Connect URL missing." msgstr "接続URLがありません。" -#: src/Model/Contact.php:2178 +#: src/Model/Contact.php:2196 msgid "" "The contact could not be added. Please check the relevant network " "credentials in your Settings -> Social Networks page." msgstr "コンタクトを追加できませんでした。ページの \"設定\" -> \"ソーシャルネットワーク\" で、関連するネットワーク認証情報を確認してください。" -#: src/Model/Contact.php:2219 +#: src/Model/Contact.php:2237 msgid "" "This site is not configured to allow communications with other networks." msgstr "このサイトは、他のネットワークとの通信を許可するように構成されていません。" -#: src/Model/Contact.php:2220 src/Model/Contact.php:2233 +#: src/Model/Contact.php:2238 src/Model/Contact.php:2251 msgid "No compatible communication protocols or feeds were discovered." msgstr "互換性のある通信プロトコルまたはフィードは見つかりませんでした。" -#: src/Model/Contact.php:2231 +#: src/Model/Contact.php:2249 msgid "The profile address specified does not provide adequate information." msgstr "指定されたプロフィールアドレスは、適切な情報を提供しません。" -#: src/Model/Contact.php:2236 +#: src/Model/Contact.php:2254 msgid "An author or name was not found." msgstr "著者または名前が見つかりませんでした。" -#: src/Model/Contact.php:2239 +#: src/Model/Contact.php:2257 msgid "No browser URL could be matched to this address." msgstr "このアドレスに一致するブラウザURLはありません。" -#: src/Model/Contact.php:2242 +#: src/Model/Contact.php:2260 msgid "" "Unable to match @-style Identity Address with a known protocol or email " "contact." msgstr "@スタイルのIDアドレスを既知のプロトコルまたは電子メールのコンタクトと一致させることができません。" -#: src/Model/Contact.php:2243 +#: src/Model/Contact.php:2261 msgid "Use mailto: in front of address to force email check." msgstr "メールチェックを強制するには、アドレスの前にmailto:を使用します。" -#: src/Model/Contact.php:2249 +#: src/Model/Contact.php:2267 msgid "" "The profile address specified belongs to a network which has been disabled " "on this site." msgstr "指定されたプロフィールアドレスは、このサイトで無効にされたネットワークに属します。" -#: src/Model/Contact.php:2254 +#: src/Model/Contact.php:2272 msgid "" "Limited profile. This person will be unable to receive direct/personal " "notifications from you." msgstr "限定公開のプロフィールです。この人はあなたから直接/個人的な通知を受け取ることができません。" -#: src/Model/Contact.php:2313 +#: src/Model/Contact.php:2331 msgid "Unable to retrieve contact information." msgstr "コンタクト情報を取得できません。" @@ -4811,110 +4810,110 @@ msgstr "グループ名:" msgid "Edit groups" msgstr "グループを編集" -#: src/Model/Item.php:1582 +#: src/Model/Item.php:1659 #, php-format msgid "Detected languages in this post:\\n%s" msgstr "" -#: src/Model/Item.php:2527 +#: src/Model/Item.php:2609 msgid "activity" msgstr "アクティビティ" -#: src/Model/Item.php:2529 +#: src/Model/Item.php:2611 msgid "comment" msgstr "" -#: src/Model/Item.php:2532 +#: src/Model/Item.php:2614 msgid "post" msgstr "投稿" -#: src/Model/Item.php:2646 +#: src/Model/Item.php:2728 #, php-format msgid "Content warning: %s" msgstr "コンテンツの警告: %s" -#: src/Model/Item.php:2989 +#: src/Model/Item.php:3078 msgid "bytes" msgstr "バイト" -#: src/Model/Item.php:3018 src/Model/Item.php:3019 +#: src/Model/Item.php:3107 src/Model/Item.php:3108 msgid "View on separate page" msgstr "個別のページで見る" -#: src/Model/Mail.php:120 src/Model/Mail.php:258 +#: src/Model/Mail.php:136 src/Model/Mail.php:268 msgid "[no subject]" msgstr "[件名なし]" -#: src/Model/Profile.php:346 src/Module/Profile/Profile.php:252 +#: src/Model/Profile.php:356 src/Module/Profile/Profile.php:252 #: src/Module/Profile/Profile.php:254 msgid "Edit profile" msgstr "プロフィール編集" -#: src/Model/Profile.php:348 +#: src/Model/Profile.php:358 msgid "Change profile photo" msgstr "プロフィール写真を変更" -#: src/Model/Profile.php:361 src/Module/Directory.php:161 +#: src/Model/Profile.php:371 src/Module/Directory.php:161 #: src/Module/Profile/Profile.php:180 msgid "Homepage:" msgstr "ホームページ:" -#: src/Model/Profile.php:362 src/Module/Contact.php:658 +#: src/Model/Profile.php:372 src/Module/Contact.php:658 #: src/Module/Notifications/Introductions.php:174 msgid "About:" msgstr "この場所について:" -#: src/Model/Profile.php:363 src/Module/Contact.php:656 +#: src/Model/Profile.php:373 src/Module/Contact.php:656 #: src/Module/Profile/Profile.php:176 msgid "XMPP:" msgstr "XMPP:" -#: src/Model/Profile.php:446 src/Module/Contact.php:342 +#: src/Model/Profile.php:456 src/Module/Contact.php:342 msgid "Unfollow" msgstr "フォロー解除" -#: src/Model/Profile.php:448 +#: src/Model/Profile.php:458 msgid "Atom feed" msgstr "Atomフィード" -#: src/Model/Profile.php:456 src/Module/Contact.php:338 +#: src/Model/Profile.php:466 src/Module/Contact.php:338 #: src/Module/Notifications/Introductions.php:186 msgid "Network:" msgstr "ネットワーク:" -#: src/Model/Profile.php:486 src/Model/Profile.php:583 +#: src/Model/Profile.php:496 src/Model/Profile.php:593 msgid "g A l F d" msgstr "g A l F d" -#: src/Model/Profile.php:487 +#: src/Model/Profile.php:497 msgid "F d" msgstr "F d" -#: src/Model/Profile.php:549 src/Model/Profile.php:634 +#: src/Model/Profile.php:559 src/Model/Profile.php:644 msgid "[today]" msgstr "[今日]" -#: src/Model/Profile.php:559 +#: src/Model/Profile.php:569 msgid "Birthday Reminders" msgstr "誕生日のリマインダー" -#: src/Model/Profile.php:560 +#: src/Model/Profile.php:570 msgid "Birthdays this week:" msgstr "今週の誕生日:" -#: src/Model/Profile.php:621 +#: src/Model/Profile.php:631 msgid "[No description]" msgstr "[説明なし]" -#: src/Model/Profile.php:647 +#: src/Model/Profile.php:657 msgid "Event Reminders" msgstr "イベントリマインダー" -#: src/Model/Profile.php:648 +#: src/Model/Profile.php:658 msgid "Upcoming events the next 7 days:" msgstr "今後7日間の今後のイベント:" -#: src/Model/Profile.php:823 +#: src/Model/Profile.php:833 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %2$sさん、%1$sへようこそ" @@ -4954,136 +4953,136 @@ msgstr "アップロードされたファイルが保存されるフォルダで msgid "Enter a valid existing folder" msgstr "有効な既存のフォルダを入力してください" -#: src/Model/User.php:186 src/Model/User.php:931 +#: src/Model/User.php:186 src/Model/User.php:986 msgid "SERIOUS ERROR: Generation of security keys failed." msgstr "重大なエラー:セキュリティキーの生成に失敗しました。" -#: src/Model/User.php:549 +#: src/Model/User.php:571 src/Model/User.php:604 msgid "Login failed" msgstr "ログインに失敗しました" -#: src/Model/User.php:581 +#: src/Model/User.php:636 msgid "Not enough information to authenticate" msgstr "認証に十分な情報がありません" -#: src/Model/User.php:676 +#: src/Model/User.php:731 msgid "Password can't be empty" msgstr "パスワードは空にできません" -#: src/Model/User.php:695 +#: src/Model/User.php:750 msgid "Empty passwords are not allowed." msgstr "空のパスワードは許可されていません。" -#: src/Model/User.php:699 +#: src/Model/User.php:754 msgid "" "The new password has been exposed in a public data dump, please choose " "another." msgstr "新しいパスワードは公開データダンプで公開されています。別のパスワードを選択してください。" -#: src/Model/User.php:705 +#: src/Model/User.php:760 msgid "" "The password can't contain accentuated letters, white spaces or colons (:)" msgstr "パスワードには、アクセント文字、空白、またはコロン(:)を含めることはできません" -#: src/Model/User.php:811 +#: src/Model/User.php:866 msgid "Passwords do not match. Password unchanged." msgstr "パスワードが一致していません。パスワードは変更されていません。" -#: src/Model/User.php:818 +#: src/Model/User.php:873 msgid "An invitation is required." msgstr "招待状が必要です。" -#: src/Model/User.php:822 +#: src/Model/User.php:877 msgid "Invitation could not be verified." msgstr "招待を確認できませんでした。" -#: src/Model/User.php:830 +#: src/Model/User.php:885 msgid "Invalid OpenID url" msgstr "無効なOpenID URL" -#: src/Model/User.php:843 src/Security/Authentication.php:224 +#: src/Model/User.php:898 src/Security/Authentication.php:224 msgid "" "We encountered a problem while logging in with the OpenID you provided. " "Please check the correct spelling of the ID." msgstr "指定したOpenIDでログイン中に問題が発生しました。 IDの正しいスペルを確認してください。" -#: src/Model/User.php:843 src/Security/Authentication.php:224 +#: src/Model/User.php:898 src/Security/Authentication.php:224 msgid "The error message was:" msgstr "エラーメッセージは次のとおりです。" -#: src/Model/User.php:849 +#: src/Model/User.php:904 msgid "Please enter the required information." msgstr "必要な情報を入力してください。" -#: src/Model/User.php:863 +#: src/Model/User.php:918 #, 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 )とsystem.username_max_length( %s )は、お互いを除外し、値を交換しています。" -#: src/Model/User.php:870 +#: src/Model/User.php:925 #, php-format msgid "Username should be at least %s character." msgid_plural "Username should be at least %s characters." msgstr[0] "ユーザー名は少なくとも%s文字である必要があります。" -#: src/Model/User.php:874 +#: src/Model/User.php:929 #, php-format msgid "Username should be at most %s character." msgid_plural "Username should be at most %s characters." msgstr[0] "ユーザー名は最大で%s文字にする必要があります。" -#: src/Model/User.php:882 +#: src/Model/User.php:937 msgid "That doesn't appear to be your full (First Last) name." msgstr "それはあなたのフルネーム(ファースト/ラスト)ではないようです。" -#: src/Model/User.php:887 +#: src/Model/User.php:942 msgid "Your email domain is not among those allowed on this site." msgstr "あなたのメールドメインは、このサイトで許可されているものではありません。" -#: src/Model/User.php:891 +#: src/Model/User.php:946 msgid "Not a valid email address." msgstr "有効な電子メールアドレスではありません。" -#: src/Model/User.php:894 +#: src/Model/User.php:949 msgid "The nickname was blocked from registration by the nodes admin." msgstr "そのニックネームは、ノード管理者によって登録がブロックされました。" -#: src/Model/User.php:898 src/Model/User.php:906 +#: src/Model/User.php:953 src/Model/User.php:961 msgid "Cannot use that email." msgstr "そのメールは使用できません。" -#: src/Model/User.php:913 +#: src/Model/User.php:968 msgid "Your nickname can only contain a-z, 0-9 and _." msgstr "ニックネームにはa-z、0-9、および _ のみを含めることができます。" -#: src/Model/User.php:921 src/Model/User.php:978 +#: src/Model/User.php:976 src/Model/User.php:1033 msgid "Nickname is already registered. Please choose another." msgstr "ニックネームはすでに登録されています。別のものを選択してください。" -#: src/Model/User.php:965 src/Model/User.php:969 +#: src/Model/User.php:1020 src/Model/User.php:1024 msgid "An error occurred during registration. Please try again." msgstr "登録中にエラーが発生しました。もう一度試してください。" -#: src/Model/User.php:992 +#: src/Model/User.php:1047 msgid "An error occurred creating your default profile. Please try again." msgstr "既定のプロフィールの作成中にエラーが発生しました。もう一度試してください。" -#: src/Model/User.php:999 +#: src/Model/User.php:1054 msgid "An error occurred creating your self contact. Please try again." msgstr "自己コンタクトの作成中にエラーが発生しました。もう一度試してください。" -#: src/Model/User.php:1004 +#: src/Model/User.php:1059 msgid "Friends" msgstr "友だち" -#: src/Model/User.php:1008 +#: src/Model/User.php:1063 msgid "" "An error occurred creating your default contact group. Please try again." msgstr "既定のコンタクトグループの作成中にエラーが発生しました。もう一度試してください。" -#: src/Model/User.php:1199 +#: src/Model/User.php:1256 #, php-format msgid "" "\n" @@ -5091,7 +5090,7 @@ msgid "" "\t\t\tthe administrator of %2$s has set up an account for you." msgstr "" -#: src/Model/User.php:1202 +#: src/Model/User.php:1259 #, php-format msgid "" "\n" @@ -5123,12 +5122,12 @@ msgid "" "\t\tThank you and welcome to %4$s." msgstr "" -#: src/Model/User.php:1235 src/Model/User.php:1342 +#: src/Model/User.php:1292 src/Model/User.php:1399 #, php-format msgid "Registration details for %s" msgstr "%s の登録の詳細" -#: src/Model/User.php:1255 +#: src/Model/User.php:1312 #, php-format msgid "" "\n" @@ -5143,12 +5142,12 @@ msgid "" "\t\t" msgstr "\n\t\t\t%1$s さん、\n\t\t\t\t%2$s に登録していただきありがとうございます。アカウントは管理者による承認待ちです。\n\n\t\t\tログインの詳細は次のとおりです。\n\n\t\t\tサイトの場所:\t%3$s\n\t\t\tログイン名:\t\t%4$s\n\t\t\tパスワード:\t\t%5$s\n\t\t" -#: src/Model/User.php:1274 +#: src/Model/User.php:1331 #, php-format msgid "Registration at %s" msgstr "%s登録" -#: src/Model/User.php:1298 +#: src/Model/User.php:1355 #, php-format msgid "" "\n" @@ -5157,7 +5156,7 @@ msgid "" "\t\t\t" msgstr "\n\t\t\t%1$sさん、\n\t\t\t\t%2$sで登録していただきありがとうございます。アカウントが作成されました。\n\t\t" -#: src/Model/User.php:1306 +#: src/Model/User.php:1363 #, php-format msgid "" "\n" @@ -5217,9 +5216,9 @@ msgstr "有効にする" #: src/Module/Admin/Addons/Index.php:67 #: src/Module/Admin/Blocklist/Contact.php:78 #: src/Module/Admin/Blocklist/Server.php:88 -#: src/Module/Admin/Federation.php:141 src/Module/Admin/Item/Delete.php:65 +#: src/Module/Admin/Federation.php:159 src/Module/Admin/Item/Delete.php:65 #: src/Module/Admin/Logs/Settings.php:80 src/Module/Admin/Logs/View.php:64 -#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:579 +#: src/Module/Admin/Queue.php:72 src/Module/Admin/Site.php:576 #: src/Module/Admin/Summary.php:232 src/Module/Admin/Themes/Details.php:90 #: src/Module/Admin/Themes/Index.php:111 src/Module/Admin/Tos.php:58 #: src/Module/Admin/Users/Active.php:136 @@ -5549,26 +5548,26 @@ msgstr "機能 %s をロック" msgid "Manage Additional Features" msgstr "追加機能を管理する" -#: src/Module/Admin/Federation.php:54 +#: src/Module/Admin/Federation.php:56 msgid "Other" msgstr "その他" -#: src/Module/Admin/Federation.php:108 src/Module/Admin/Federation.php:268 +#: src/Module/Admin/Federation.php:118 src/Module/Admin/Federation.php:348 msgid "unknown" msgstr "未知の" -#: src/Module/Admin/Federation.php:136 +#: src/Module/Admin/Federation.php:154 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 "このページでは、Friendicaノードが属するフェデレーションソーシャルネットワークの既知の部分について統計を提供します。これらの数値は完全なものではなく、ノードが認識しているネットワークの部分のみを反映しています。" -#: src/Module/Admin/Federation.php:142 src/Module/BaseAdmin.php:87 +#: src/Module/Admin/Federation.php:160 src/Module/BaseAdmin.php:87 msgid "Federation Statistics" msgstr "フェデレーション統計" -#: src/Module/Admin/Federation.php:146 +#: src/Module/Admin/Federation.php:164 #, php-format msgid "" "Currently this node is aware of %d nodes with %d registered users from the " @@ -5765,275 +5764,289 @@ msgstr "ジョブパラメータ" msgid "Priority" msgstr "優先度" -#: src/Module/Admin/Site.php:69 +#: src/Module/Admin/Site.php:70 msgid "Can not parse base url. Must have at least ://" msgstr "ベースURLを解析できません。少なくとも://が必要です" -#: src/Module/Admin/Site.php:123 +#: src/Module/Admin/Site.php:124 msgid "Relocation started. Could take a while to complete." msgstr "" -#: src/Module/Admin/Site.php:249 +#: src/Module/Admin/Site.php:248 msgid "Invalid storage backend setting value." msgstr "無効なストレージバックエンド設定値です。" -#: src/Module/Admin/Site.php:449 src/Module/Settings/Display.php:134 +#: src/Module/Admin/Site.php:446 src/Module/Settings/Display.php:134 msgid "No special theme for mobile devices" msgstr "モバイルデバイス向けの特別なテーマはありません" -#: src/Module/Admin/Site.php:466 src/Module/Settings/Display.php:144 +#: src/Module/Admin/Site.php:463 src/Module/Settings/Display.php:144 #, php-format msgid "%s - (Experimental)" msgstr "%s (実験的)" -#: src/Module/Admin/Site.php:478 +#: src/Module/Admin/Site.php:475 msgid "No community page for local users" msgstr "ローカルユーザー向けのコミュニティページはありません" -#: src/Module/Admin/Site.php:479 +#: src/Module/Admin/Site.php:476 msgid "No community page" msgstr "コミュニティページなし" -#: src/Module/Admin/Site.php:480 +#: src/Module/Admin/Site.php:477 msgid "Public postings from users of this site" msgstr "このサイトのユーザーからの一般公開投稿" -#: src/Module/Admin/Site.php:481 +#: src/Module/Admin/Site.php:478 msgid "Public postings from the federated network" msgstr "フェデレーションネットワークからの一般公開投稿" -#: src/Module/Admin/Site.php:482 +#: src/Module/Admin/Site.php:479 msgid "Public postings from local users and the federated network" msgstr "ローカルユーザーとフェデレーションネットワークからの一般公開投稿" -#: src/Module/Admin/Site.php:488 +#: src/Module/Admin/Site.php:485 msgid "Multi user instance" msgstr "マルチユーザーインスタンス" -#: src/Module/Admin/Site.php:516 +#: src/Module/Admin/Site.php:513 msgid "Closed" msgstr "閉まっている" -#: src/Module/Admin/Site.php:517 +#: src/Module/Admin/Site.php:514 msgid "Requires approval" msgstr "承認が必要" -#: src/Module/Admin/Site.php:518 +#: src/Module/Admin/Site.php:515 msgid "Open" msgstr "開いた" -#: src/Module/Admin/Site.php:522 src/Module/Install.php:215 +#: src/Module/Admin/Site.php:519 src/Module/Install.php:215 msgid "No SSL policy, links will track page SSL state" msgstr "SSLポリシーはありません。リンクはページのSSL状態を追跡します" -#: src/Module/Admin/Site.php:523 src/Module/Install.php:216 +#: src/Module/Admin/Site.php:520 src/Module/Install.php:216 msgid "Force all links to use SSL" msgstr "すべてのリンクに強制的にSSLを使用させる" -#: src/Module/Admin/Site.php:524 src/Module/Install.php:217 +#: src/Module/Admin/Site.php:521 src/Module/Install.php:217 msgid "Self-signed certificate, use SSL for local links only (discouraged)" msgstr "自己署名証明書、ローカルリンクのみにSSLを使用(非開示)" -#: src/Module/Admin/Site.php:528 +#: src/Module/Admin/Site.php:525 msgid "Don't check" msgstr "チェックしない" -#: src/Module/Admin/Site.php:529 +#: src/Module/Admin/Site.php:526 msgid "check the stable version" msgstr "安定版を確認してください" -#: src/Module/Admin/Site.php:530 +#: src/Module/Admin/Site.php:527 msgid "check the development version" msgstr "開発バージョンを確認する" -#: src/Module/Admin/Site.php:534 +#: src/Module/Admin/Site.php:531 msgid "none" msgstr "" -#: src/Module/Admin/Site.php:535 +#: src/Module/Admin/Site.php:532 msgid "Local contacts" msgstr "" -#: src/Module/Admin/Site.php:536 +#: src/Module/Admin/Site.php:533 msgid "Interactors" msgstr "" -#: src/Module/Admin/Site.php:549 +#: src/Module/Admin/Site.php:546 msgid "Database (legacy)" msgstr "データベース(レガシー)" -#: src/Module/Admin/Site.php:580 src/Module/BaseAdmin.php:90 +#: src/Module/Admin/Site.php:577 src/Module/BaseAdmin.php:90 msgid "Site" msgstr "サイト" -#: src/Module/Admin/Site.php:581 +#: src/Module/Admin/Site.php:578 msgid "General Information" msgstr "" -#: src/Module/Admin/Site.php:583 +#: src/Module/Admin/Site.php:580 msgid "Republish users to directory" msgstr "ユーザーをディレクトリに再公開する" -#: src/Module/Admin/Site.php:584 src/Module/Register.php:139 +#: src/Module/Admin/Site.php:581 src/Module/Register.php:139 msgid "Registration" msgstr "登録" -#: src/Module/Admin/Site.php:585 +#: src/Module/Admin/Site.php:582 msgid "File upload" msgstr "ファイルのアップロード" -#: src/Module/Admin/Site.php:586 +#: src/Module/Admin/Site.php:583 msgid "Policies" msgstr "ポリシー" -#: src/Module/Admin/Site.php:588 +#: src/Module/Admin/Site.php:585 msgid "Auto Discovered Contact Directory" msgstr "自動検出されたコンタクトディレクトリ" -#: src/Module/Admin/Site.php:589 +#: src/Module/Admin/Site.php:586 msgid "Performance" msgstr "性能" -#: src/Module/Admin/Site.php:590 +#: src/Module/Admin/Site.php:587 msgid "Worker" msgstr "ワーカー" -#: src/Module/Admin/Site.php:591 +#: src/Module/Admin/Site.php:588 msgid "Message Relay" msgstr "メッセージ中継" -#: src/Module/Admin/Site.php:592 +#: src/Module/Admin/Site.php:589 +msgid "" +"Use the command \"console relay\" in the command line to add or remove " +"relays." +msgstr "" + +#: src/Module/Admin/Site.php:590 +msgid "The system is not subscribed to any relays at the moment." +msgstr "" + +#: src/Module/Admin/Site.php:591 +msgid "The system is currently subscribed to the following relays:" +msgstr "" + +#: src/Module/Admin/Site.php:593 msgid "Relocate Instance" msgstr "インスタンスの再配置" -#: src/Module/Admin/Site.php:593 +#: src/Module/Admin/Site.php:594 msgid "" "Warning! Advanced function. Could make this server " "unreachable." msgstr "" -#: src/Module/Admin/Site.php:597 +#: src/Module/Admin/Site.php:598 msgid "Site name" msgstr "サイト名" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:599 msgid "Sender Email" msgstr "送信者のメール" -#: src/Module/Admin/Site.php:598 +#: src/Module/Admin/Site.php:599 msgid "" "The email address your server shall use to send notification emails from." msgstr "サーバーが通知メールの送信に使用するメールアドレス。" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:600 msgid "Name of the system actor" msgstr "" -#: src/Module/Admin/Site.php:599 +#: src/Module/Admin/Site.php:600 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:600 +#: src/Module/Admin/Site.php:601 msgid "Banner/Logo" msgstr "バナー/ロゴ" -#: src/Module/Admin/Site.php:601 +#: src/Module/Admin/Site.php:602 msgid "Email Banner/Logo" msgstr "" -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:603 msgid "Shortcut icon" msgstr "ショートカットアイコン" -#: src/Module/Admin/Site.php:602 +#: src/Module/Admin/Site.php:603 msgid "Link to an icon that will be used for browsers." msgstr "ブラウザーに使用されるアイコンへのリンク。" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:604 msgid "Touch icon" msgstr "タッチアイコン" -#: src/Module/Admin/Site.php:603 +#: src/Module/Admin/Site.php:604 msgid "Link to an icon that will be used for tablets and mobiles." msgstr "タブレットやモバイルで使用されるアイコンへのリンク。" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:605 msgid "Additional Info" msgstr "追加情報" -#: src/Module/Admin/Site.php:604 +#: src/Module/Admin/Site.php:605 #, php-format msgid "" "For public servers: you can add additional information here that will be " "listed at %s/servers." msgstr "パブリックサーバーの場合:追加の情報をここに追加して、 %s/servers にリストできます。" -#: src/Module/Admin/Site.php:605 +#: src/Module/Admin/Site.php:606 msgid "System language" msgstr "システム言語" -#: src/Module/Admin/Site.php:606 +#: src/Module/Admin/Site.php:607 msgid "System theme" msgstr "システムテーマ" -#: src/Module/Admin/Site.php:606 +#: src/Module/Admin/Site.php:607 msgid "" "Default system theme - may be over-ridden by user profiles - Change default theme settings" msgstr "既定のシステムテーマ - ユーザープロフィールによって上書きされる場合があります -既定のテーマ設定を変更します" -#: src/Module/Admin/Site.php:607 +#: src/Module/Admin/Site.php:608 msgid "Mobile system theme" msgstr "モバイルシステムのテーマ" -#: src/Module/Admin/Site.php:607 +#: src/Module/Admin/Site.php:608 msgid "Theme for mobile devices" msgstr "モバイルデバイスのテーマ" -#: src/Module/Admin/Site.php:608 src/Module/Install.php:225 +#: src/Module/Admin/Site.php:609 src/Module/Install.php:225 msgid "SSL link policy" msgstr "SSLリンクポリシー" -#: src/Module/Admin/Site.php:608 src/Module/Install.php:227 +#: src/Module/Admin/Site.php:609 src/Module/Install.php:227 msgid "Determines whether generated links should be forced to use SSL" msgstr "生成されたリンクにSSLの使用を強制する必要があるかどうかを決定します" -#: src/Module/Admin/Site.php:609 +#: src/Module/Admin/Site.php:610 msgid "Force SSL" msgstr "SSLを強制する" -#: src/Module/Admin/Site.php:609 +#: src/Module/Admin/Site.php:610 msgid "" "Force all Non-SSL requests to SSL - Attention: on some systems it could lead" " to endless loops." msgstr "すべての非SSL要求をSSLに強制する-注意:一部のシステムでは、無限ループにつながる可能性があります。" -#: src/Module/Admin/Site.php:610 +#: src/Module/Admin/Site.php:611 msgid "Hide help entry from navigation menu" msgstr "ナビゲーションメニューからヘルプエントリを非表示にする" -#: src/Module/Admin/Site.php:610 +#: src/Module/Admin/Site.php:611 msgid "" "Hides the menu entry for the Help pages from the navigation menu. You can " "still access it calling /help directly." msgstr "ナビゲーションメニューからヘルプページのメニューエントリを非表示にします。 / helpを直接呼び出してアクセスできます。" -#: src/Module/Admin/Site.php:611 +#: src/Module/Admin/Site.php:612 msgid "Single user instance" msgstr "シングルユーザーインスタンス" -#: src/Module/Admin/Site.php:611 +#: src/Module/Admin/Site.php:612 msgid "Make this instance multi-user or single-user for the named user" msgstr "指定されたユーザーに対してこのインスタンスをマルチユーザーまたはシングルユーザーにします" -#: src/Module/Admin/Site.php:613 +#: src/Module/Admin/Site.php:614 msgid "File storage backend" msgstr "ファイルストレージバックエンド" -#: src/Module/Admin/Site.php:613 +#: src/Module/Admin/Site.php:614 msgid "" "The backend used to store uploaded data. If you change the storage backend, " "you can manually move the existing files. If you do not do so, the files " @@ -6042,191 +6055,191 @@ msgid "" " for more information about the choices and the moving procedure." msgstr "アップロードされたデータを保存するために使用されるバックエンド。ストレージバックエンドを変更する場合、既存のファイルを手動で移動できます。変更しない場合、変更前にアップロードされたファイルは古いバックエンドで引き続き利用できます。選択肢と移動手順の詳細については、設定ドキュメントをご覧ください。" -#: src/Module/Admin/Site.php:615 +#: src/Module/Admin/Site.php:616 msgid "Maximum image size" msgstr "最大画像サイズ" -#: src/Module/Admin/Site.php:615 +#: src/Module/Admin/Site.php:616 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "アップロードされる画像の最大サイズ(バイト単位)。デフォルトは0で、制限がないことを意味します。" -#: src/Module/Admin/Site.php:616 +#: src/Module/Admin/Site.php:617 msgid "Maximum image length" msgstr "最大画像長" -#: src/Module/Admin/Site.php:616 +#: src/Module/Admin/Site.php:617 msgid "" "Maximum length in pixels of the longest side of uploaded images. Default is " "-1, which means no limits." msgstr "アップロードされた画像の最長辺のピクセル単位の最大長。デフォルトは-1で、制限がないことを意味します。" -#: src/Module/Admin/Site.php:617 +#: src/Module/Admin/Site.php:618 msgid "JPEG image quality" msgstr "JPEG画像品質" -#: src/Module/Admin/Site.php:617 +#: src/Module/Admin/Site.php:618 msgid "" "Uploaded JPEGS will be saved at this quality setting [0-100]. Default is " "100, which is full quality." msgstr "アップロードされたJPEGSは、この品質設定[0-100]で保存されます。デフォルトは100で、完全な品質です。" -#: src/Module/Admin/Site.php:619 +#: src/Module/Admin/Site.php:620 msgid "Register policy" msgstr "登録ポリシー" -#: src/Module/Admin/Site.php:620 +#: src/Module/Admin/Site.php:621 msgid "Maximum Daily Registrations" msgstr "毎日の最大登録数" -#: src/Module/Admin/Site.php:620 +#: src/Module/Admin/Site.php:621 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 "上記で登録が許可されている場合、これは1日に受け入れる新しいユーザー登録の最大数を設定します。レジスタがクローズに設定されている場合、この設定は効果がありません。" -#: src/Module/Admin/Site.php:621 +#: src/Module/Admin/Site.php:622 msgid "Register text" msgstr "登録テキスト" -#: src/Module/Admin/Site.php:621 +#: src/Module/Admin/Site.php:622 msgid "" "Will be displayed prominently on the registration page. You can use BBCode " "here." msgstr "登録ページに目立つように表示されます。ここでBBCodeを使用できます。" -#: src/Module/Admin/Site.php:622 +#: src/Module/Admin/Site.php:623 msgid "Forbidden Nicknames" msgstr "禁止されたニックネーム" -#: src/Module/Admin/Site.php:622 +#: src/Module/Admin/Site.php:623 msgid "" "Comma separated list of nicknames that are forbidden from registration. " "Preset is a list of role names according RFC 2142." msgstr "登録が禁止されているニックネームのカンマ区切りリスト。プリセットは、RFC 2142に基づくロール名のリストです。" -#: src/Module/Admin/Site.php:623 +#: src/Module/Admin/Site.php:624 msgid "Accounts abandoned after x days" msgstr "x日の間 放置されたアカウント" -#: src/Module/Admin/Site.php:623 +#: src/Module/Admin/Site.php:624 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "放置アカウントの外部サイトについてポーリングを停止しシステムリソースを節約します。時間制限なしの場合は0を入力します。" -#: src/Module/Admin/Site.php:624 +#: src/Module/Admin/Site.php:625 msgid "Allowed friend domains" msgstr "許可された友達ドメイン" -#: src/Module/Admin/Site.php:624 +#: src/Module/Admin/Site.php:625 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "このサイトとの友達関係を確立できるドメインのカンマ区切りリスト。ワイルドカードが使用できます。すべてのドメインを許可するには空白にしてください。" -#: src/Module/Admin/Site.php:625 +#: src/Module/Admin/Site.php:626 msgid "Allowed email domains" msgstr "許可されたメールドメイン" -#: src/Module/Admin/Site.php:625 +#: src/Module/Admin/Site.php:626 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 "このサイトへの登録用の電子メールアドレスで許可されるドメインのカンマ区切りリスト。ワイルドカードが使用できます。すべてのドメインを許可するには空白にしてください。" -#: src/Module/Admin/Site.php:626 +#: src/Module/Admin/Site.php:627 msgid "No OEmbed rich content" msgstr "OEmbed リッチコンテンツなし" -#: src/Module/Admin/Site.php:626 +#: src/Module/Admin/Site.php:627 msgid "" "Don't show the rich content (e.g. embedded PDF), except from the domains " "listed below." msgstr "以下にリストされているドメインを除き、リッチコンテンツ(埋め込みPDFなど)を表示しないでください。" -#: src/Module/Admin/Site.php:627 +#: src/Module/Admin/Site.php:628 msgid "Trusted third-party domains" msgstr "" -#: src/Module/Admin/Site.php:627 +#: src/Module/Admin/Site.php:628 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:628 +#: src/Module/Admin/Site.php:629 msgid "Block public" msgstr "一般公開をブロック" -#: src/Module/Admin/Site.php:628 +#: src/Module/Admin/Site.php:629 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "このサイトの一般公開済み個人ページを除き、すべてのページで非ログイン状態のアクセスをブロックするには、ここをチェックします。" -#: src/Module/Admin/Site.php:629 +#: src/Module/Admin/Site.php:630 msgid "Force publish" msgstr "公開を強制する" -#: src/Module/Admin/Site.php:629 +#: src/Module/Admin/Site.php:630 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "このサイトのすべてのプロフィールがサイトディレクトリにリストされるように強制するには、チェックします。" -#: src/Module/Admin/Site.php:629 +#: src/Module/Admin/Site.php:630 msgid "Enabling this may violate privacy laws like the GDPR" msgstr "これを有効にすると、GDPRなどのプライバシー法に違反する可能性があります。" -#: src/Module/Admin/Site.php:630 +#: src/Module/Admin/Site.php:631 msgid "Global directory URL" msgstr "グローバルディレクトリURL" -#: src/Module/Admin/Site.php:630 +#: src/Module/Admin/Site.php:631 msgid "" "URL to the global directory. If this is not set, the global directory is " "completely unavailable to the application." msgstr "グローバルディレクトリへのURL。これが設定されていない場合、グローバルディレクトリはアプリケーションで全く利用できなくなります。" -#: src/Module/Admin/Site.php:631 +#: src/Module/Admin/Site.php:632 msgid "Private posts by default for new users" msgstr "新規ユーザー向けの 既定のプライベート投稿" -#: src/Module/Admin/Site.php:631 +#: src/Module/Admin/Site.php:632 msgid "" "Set default post permissions for all new members to the default privacy " "group rather than public." msgstr "すべての新しいメンバーの既定の投稿許可を、一般公開ではなく既定のプライバシーグループに設定します。" -#: src/Module/Admin/Site.php:632 +#: src/Module/Admin/Site.php:633 msgid "Don't include post content in email notifications" msgstr "メール通知に投稿本文を含めないでください" -#: src/Module/Admin/Site.php:632 +#: src/Module/Admin/Site.php:633 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 "プライバシー対策として、このサイトから送信されるメール通知に投稿/コメント/プライベートメッセージなどのコンテンツを含めないでください。" -#: src/Module/Admin/Site.php:633 +#: src/Module/Admin/Site.php:634 msgid "Disallow public access to addons listed in the apps menu." msgstr "アプリメニューにリストされているアドオンへの公開アクセスを許可しません。" -#: src/Module/Admin/Site.php:633 +#: src/Module/Admin/Site.php:634 msgid "" "Checking this box will restrict addons listed in the apps menu to members " "only." msgstr "このチェックボックスをオンにすると、アプリメニューにリストされているアドオンがメンバーのみに制限されます。" -#: src/Module/Admin/Site.php:634 +#: src/Module/Admin/Site.php:635 msgid "Don't embed private images in posts" msgstr "投稿にプライベート画像を埋め込まないでください" -#: src/Module/Admin/Site.php:634 +#: src/Module/Admin/Site.php:635 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 " @@ -6234,11 +6247,11 @@ msgid "" "while." msgstr "投稿内のローカルでホストされているプライベート写真を画像の埋め込みコピーで置き換えないでください。つまり、プライベート写真を含む投稿を受け取ったコンタクトは、各画像を認証して読み込む必要があり、時間がかかる場合があります。" -#: src/Module/Admin/Site.php:635 +#: src/Module/Admin/Site.php:636 msgid "Explicit Content" msgstr "明示的なコンテンツ" -#: src/Module/Admin/Site.php:635 +#: src/Module/Admin/Site.php:636 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 " @@ -6247,234 +6260,234 @@ msgid "" "will be shown at the user registration page." msgstr "これを設定して、このノードが主に未成年者には適さない可能性のある露骨なコンテンツを目的とすることを通知します。この情報はノード情報で公開され、たとえばグローバルディレクトリによって使用され、参加するノードのリストからノードをフィルタリングします。さらに、これに関するメモがユーザー登録ページに表示されます。" -#: src/Module/Admin/Site.php:636 +#: src/Module/Admin/Site.php:637 msgid "Allow Users to set remote_self" msgstr "ユーザーがremote_selfを設定できるようにする" -#: src/Module/Admin/Site.php:636 +#: src/Module/Admin/Site.php:637 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 "これをチェックすると、すべてのユーザーがコンタクトの修復ダイアログですべてのコンタクトをremote_selfとしてマークできます。コンタクトにこのフラグを設定すると、ユーザーストリームでそのコンタクトのすべての投稿がミラーリングされます。" -#: src/Module/Admin/Site.php:637 +#: src/Module/Admin/Site.php:638 msgid "Block multiple registrations" msgstr "複数の登録をブロックする" -#: src/Module/Admin/Site.php:637 +#: src/Module/Admin/Site.php:638 msgid "Disallow users to register additional accounts for use as pages." msgstr "ユーザーがページとして使用する追加のアカウントを登録できないようにします。" -#: src/Module/Admin/Site.php:638 +#: src/Module/Admin/Site.php:639 msgid "Disable OpenID" msgstr "OpenIDを無効にする" -#: src/Module/Admin/Site.php:638 +#: src/Module/Admin/Site.php:639 msgid "Disable OpenID support for registration and logins." msgstr "登録とログインのOpenIDサポートを無効にします。" -#: src/Module/Admin/Site.php:639 +#: src/Module/Admin/Site.php:640 msgid "No Fullname check" msgstr "氏名チェックなし" -#: src/Module/Admin/Site.php:639 +#: src/Module/Admin/Site.php:640 msgid "" "Allow users to register without a space between the first name and the last " "name in their full name." msgstr "ユーザーがフルネームの名と姓の間にスペースを入れずに登録できるようにします。" -#: src/Module/Admin/Site.php:640 +#: src/Module/Admin/Site.php:641 msgid "Community pages for visitors" msgstr "訪問者向けのコミュニティページ" -#: src/Module/Admin/Site.php:640 +#: src/Module/Admin/Site.php:641 msgid "" "Which community pages should be available for visitors. Local users always " "see both pages." msgstr "訪問者が利用できるコミュニティページ。ローカルユーザーには常に両方のページが表示されます。" -#: src/Module/Admin/Site.php:641 +#: src/Module/Admin/Site.php:642 msgid "Posts per user on community page" msgstr "コミュニティページのユーザーごとの投稿" -#: src/Module/Admin/Site.php:641 +#: src/Module/Admin/Site.php:642 msgid "" "The maximum number of posts per user on the community page. (Not valid for " "\"Global Community\")" msgstr "コミュニティページのユーザーごとの投稿の最大数。 (「グローバルコミュニティ」には無効)" -#: src/Module/Admin/Site.php:642 +#: src/Module/Admin/Site.php:643 msgid "Disable OStatus support" msgstr "OStatusサポートを無効にする" -#: src/Module/Admin/Site.php:642 +#: src/Module/Admin/Site.php:643 msgid "" "Disable built-in OStatus (StatusNet, GNU Social etc.) compatibility. All " "communications in OStatus are public, so privacy warnings will be " "occasionally displayed." msgstr "組み込みのOStatus(StatusNet、GNU Socialなど)互換機能を無効にします。 OStatusの通信はすべて公開されているため、プライバシーに関する警告がときどき表示されます。" -#: src/Module/Admin/Site.php:643 +#: src/Module/Admin/Site.php:644 msgid "OStatus support can only be enabled if threading is enabled." msgstr "OStatusサポートは、スレッドが有効な場合にのみ有効にできます。" -#: src/Module/Admin/Site.php:645 +#: src/Module/Admin/Site.php:646 msgid "" "Diaspora support can't be enabled because Friendica was installed into a sub" " directory." msgstr "Friendicaがサブディレクトリにインストールされたため、Diasporaサポートを有効にできません。" -#: src/Module/Admin/Site.php:646 +#: src/Module/Admin/Site.php:647 msgid "Enable Diaspora support" msgstr "Diasporaサポートを有効にする" -#: src/Module/Admin/Site.php:646 +#: src/Module/Admin/Site.php:647 msgid "Provide built-in Diaspora network compatibility." msgstr "組み込みのDiasporaネットワーク互換機能を提供します。" -#: src/Module/Admin/Site.php:647 +#: src/Module/Admin/Site.php:648 msgid "Only allow Friendica contacts" msgstr "Friendicaコンタクトのみを許可する" -#: src/Module/Admin/Site.php:647 +#: src/Module/Admin/Site.php:648 msgid "" "All contacts must use Friendica protocols. All other built-in communication " "protocols disabled." msgstr "すべてのコンタクトはFriendicaプロトコルを使用する必要があります。他のすべての組み込み通信プロトコルは無効です。" -#: src/Module/Admin/Site.php:648 +#: src/Module/Admin/Site.php:649 msgid "Verify SSL" msgstr "SSLを検証する" -#: src/Module/Admin/Site.php:648 +#: src/Module/Admin/Site.php:649 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 "必要に応じて、厳密な証明書チェックをオンにすることができます。これは、自己署名SSLサイトに(まったく)接続できないことを意味します。" -#: src/Module/Admin/Site.php:649 +#: src/Module/Admin/Site.php:650 msgid "Proxy user" msgstr "プロキシユーザー" -#: src/Module/Admin/Site.php:650 +#: src/Module/Admin/Site.php:651 msgid "Proxy URL" msgstr "プロキシURL" -#: src/Module/Admin/Site.php:651 +#: src/Module/Admin/Site.php:652 msgid "Network timeout" msgstr "ネットワークタイムアウト" -#: src/Module/Admin/Site.php:651 +#: src/Module/Admin/Site.php:652 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "値は秒単位です。無制限の場合は0に設定します(推奨されません)。" -#: src/Module/Admin/Site.php:652 +#: src/Module/Admin/Site.php:653 msgid "Maximum Load Average" msgstr "最大負荷平均" -#: src/Module/Admin/Site.php:652 +#: src/Module/Admin/Site.php:653 #, php-format msgid "" "Maximum system load before delivery and poll processes are deferred - " "default %d." msgstr "このシステム 負荷/Load を超えると、配信・ポーリングプロセスの実行は延期されます。 - 既定の値は%dです。" -#: src/Module/Admin/Site.php:653 +#: src/Module/Admin/Site.php:654 msgid "Maximum Load Average (Frontend)" msgstr "最大負荷平均(フロントエンド)" -#: src/Module/Admin/Site.php:653 +#: src/Module/Admin/Site.php:654 msgid "Maximum system load before the frontend quits service - default 50." msgstr "フロントエンドがサービスを終了する前の最大システム負荷-デフォルト50" -#: src/Module/Admin/Site.php:654 +#: src/Module/Admin/Site.php:655 msgid "Minimal Memory" msgstr "最小限のメモリ" -#: src/Module/Admin/Site.php:654 +#: src/Module/Admin/Site.php:655 msgid "" "Minimal free memory in MB for the worker. Needs access to /proc/meminfo - " "default 0 (deactivated)." msgstr "ワーカーの最小空きメモリ(MB)。 / proc / meminfoへのアクセスが必要-デフォルトは0(無効)。" -#: src/Module/Admin/Site.php:655 +#: src/Module/Admin/Site.php:656 msgid "Periodically optimize tables" msgstr "" -#: src/Module/Admin/Site.php:655 +#: src/Module/Admin/Site.php:656 msgid "Periodically optimize tables like the cache and the workerqueue" msgstr "" -#: src/Module/Admin/Site.php:657 +#: src/Module/Admin/Site.php:658 msgid "Discover followers/followings from contacts" msgstr "" -#: src/Module/Admin/Site.php:657 +#: src/Module/Admin/Site.php:658 msgid "" "If enabled, contacts are checked for their followers and following contacts." msgstr "" -#: src/Module/Admin/Site.php:658 +#: src/Module/Admin/Site.php:659 msgid "None - deactivated" msgstr "" -#: src/Module/Admin/Site.php:659 +#: src/Module/Admin/Site.php:660 msgid "" "Local contacts - contacts of our local contacts are discovered for their " "followers/followings." msgstr "" -#: src/Module/Admin/Site.php:660 +#: src/Module/Admin/Site.php:661 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:662 +#: src/Module/Admin/Site.php:663 msgid "Synchronize the contacts with the directory server" msgstr "" -#: src/Module/Admin/Site.php:662 +#: src/Module/Admin/Site.php:663 msgid "" "if enabled, the system will check periodically for new contacts on the " "defined directory server." msgstr "" -#: src/Module/Admin/Site.php:664 +#: src/Module/Admin/Site.php:665 msgid "Days between requery" msgstr "再クエリの間隔" -#: src/Module/Admin/Site.php:664 +#: src/Module/Admin/Site.php:665 msgid "Number of days after which a server is requeried for his contacts." msgstr "コンタクトについてサーバーが再照会されるまでの日数。" -#: src/Module/Admin/Site.php:665 +#: src/Module/Admin/Site.php:666 msgid "Discover contacts from other servers" msgstr "他のサーバーからコンタクトを発見する" -#: src/Module/Admin/Site.php:665 +#: src/Module/Admin/Site.php:666 msgid "" "Periodically query other servers for contacts. The system queries Friendica," " Mastodon and Hubzilla servers." msgstr "" -#: src/Module/Admin/Site.php:666 +#: src/Module/Admin/Site.php:667 msgid "Search the local directory" msgstr "ローカルディレクトリを検索する" -#: src/Module/Admin/Site.php:666 +#: src/Module/Admin/Site.php:667 msgid "" "Search the local directory instead of the global directory. When searching " "locally, every search will be executed on the global directory in the " "background. This improves the search results when the search is repeated." msgstr "グローバルディレクトリではなくローカルディレクトリを検索します。ローカルで検索する場合、すべての検索はバックグラウンドでグローバルディレクトリで実行されます。これにより、同じ検索を繰り返した場合の検索結果が改善されます。" -#: src/Module/Admin/Site.php:668 +#: src/Module/Admin/Site.php:669 msgid "Publish server information" msgstr "サーバー情報を公開する" -#: src/Module/Admin/Site.php:668 +#: src/Module/Admin/Site.php:669 msgid "" "If enabled, general server and usage data will be published. The data " "contains the name and version of the server, number of users with public " @@ -6482,50 +6495,50 @@ msgid "" " href=\"http://the-federation.info/\">the-federation.info for details." msgstr "有効にすると、一般的なサーバーと使用状況データが公開されます。データには、サーバーの名前とバージョン、パブリックプロフィールを持つユーザーの数、投稿の数、およびアクティブ化されたプロトコルとコネクタが含まれます。詳細については、 the-federation.info をご覧ください。" -#: src/Module/Admin/Site.php:670 +#: src/Module/Admin/Site.php:671 msgid "Check upstream version" msgstr "アップストリームバージョンを確認する" -#: src/Module/Admin/Site.php:670 +#: src/Module/Admin/Site.php:671 msgid "" "Enables checking for new Friendica versions at github. If there is a new " "version, you will be informed in the admin panel overview." msgstr "githubで新しいFriendicaバージョンのチェックを有効にします。新しいバージョンがある場合は、管理パネルの概要で通知されます。" -#: src/Module/Admin/Site.php:671 +#: src/Module/Admin/Site.php:672 msgid "Suppress Tags" msgstr "タグを非表示" -#: src/Module/Admin/Site.php:671 +#: src/Module/Admin/Site.php:672 msgid "Suppress showing a list of hashtags at the end of the posting." msgstr "投稿の最後にハッシュタグのリストを表示しないようにします。" -#: src/Module/Admin/Site.php:672 +#: src/Module/Admin/Site.php:673 msgid "Clean database" msgstr "データベースを消去" -#: src/Module/Admin/Site.php:672 +#: src/Module/Admin/Site.php:673 msgid "" "Remove old remote items, orphaned database records and old content from some" " other helper tables." msgstr "古いリモート項目、孤立したデータベースレコード、および古いコンテンツを他のヘルパーテーブルから削除します。" -#: src/Module/Admin/Site.php:673 +#: src/Module/Admin/Site.php:674 msgid "Lifespan of remote items" msgstr "リモート項目の寿命" -#: src/Module/Admin/Site.php:673 +#: src/Module/Admin/Site.php:674 msgid "" "When the database cleanup is enabled, this defines the days after which " "remote items will be deleted. Own items, and marked or filed items are " "always kept. 0 disables this behaviour." msgstr "データベースのクリーンアップが有効な場合、これはリモート項目が削除されるまでの日数を定義します。自身の項目、およびマークまたはファイルされた項目は常に保持されます。 0はこの動作を無効にします。" -#: src/Module/Admin/Site.php:674 +#: src/Module/Admin/Site.php:675 msgid "Lifespan of unclaimed items" msgstr "請求されていない項目の寿命" -#: src/Module/Admin/Site.php:674 +#: src/Module/Admin/Site.php:675 msgid "" "When the database cleanup is enabled, this defines the days after which " "unclaimed remote items (mostly content from the relay) will be deleted. " @@ -6533,206 +6546,184 @@ msgid "" "items if set to 0." msgstr "データベースのクリーンアップが有効になっている場合、これは、要求されていないリモート項目(主に中継からのコンテンツ)が削除されるまでの日数を定義します。デフォルト値は90日です。 0に設定されている場合、リモート項目の一般的なライフスパン値がデフォルトになります。" -#: src/Module/Admin/Site.php:675 +#: src/Module/Admin/Site.php:676 msgid "Lifespan of raw conversation data" msgstr "Raw会話データの寿命" -#: src/Module/Admin/Site.php:675 +#: src/Module/Admin/Site.php:676 msgid "" "The conversation data is used for ActivityPub and OStatus, as well as for " "debug purposes. It should be safe to remove it after 14 days, default is 90 " "days." msgstr "会話データは、ActivityPubおよびOStatusに使用されるほか、デバッグにも使用されます。 14日後に削除しても安全です。デフォルトは90日です。" -#: src/Module/Admin/Site.php:676 +#: src/Module/Admin/Site.php:677 msgid "Path to item cache" msgstr "項目キャッシュへのパス" -#: src/Module/Admin/Site.php:676 +#: src/Module/Admin/Site.php:677 msgid "The item caches buffers generated bbcode and external images." msgstr "項目は、生成されたbbcodeと外部画像のバッファーをキャッシュします。" -#: src/Module/Admin/Site.php:677 +#: src/Module/Admin/Site.php:678 msgid "Cache duration in seconds" msgstr "秒単位のキャッシュ期間" -#: src/Module/Admin/Site.php:677 +#: src/Module/Admin/Site.php:678 msgid "" "How long should the cache files be hold? Default value is 86400 seconds (One" " day). To disable the item cache, set the value to -1." msgstr "キャッシュファイルを保持する期間デフォルト値は86400秒(1日)です。項目キャッシュを無効にするには、値を-1に設定します。" -#: src/Module/Admin/Site.php:678 +#: src/Module/Admin/Site.php:679 msgid "Maximum numbers of comments per post" msgstr "投稿あたりのコメントの最大数" -#: src/Module/Admin/Site.php:678 +#: src/Module/Admin/Site.php:679 msgid "How much comments should be shown for each post? Default value is 100." msgstr "各投稿に表示されるコメントの数は?デフォルト値は100です。" -#: src/Module/Admin/Site.php:679 +#: src/Module/Admin/Site.php:680 msgid "Maximum numbers of comments per post on the display page" msgstr "" -#: src/Module/Admin/Site.php:679 +#: src/Module/Admin/Site.php:680 msgid "" "How many comments should be shown on the single view for each post? Default " "value is 1000." msgstr "" -#: src/Module/Admin/Site.php:680 +#: src/Module/Admin/Site.php:681 msgid "Temp path" msgstr "一時パス" -#: src/Module/Admin/Site.php:680 +#: src/Module/Admin/Site.php:681 msgid "" "If you have a restricted system where the webserver can't access the system " "temp path, enter another path here." msgstr "Webサーバーがシステムの一時パスにアクセスできない制限されたシステムがある場合は、ここに別のパスを入力します。" -#: src/Module/Admin/Site.php:681 +#: src/Module/Admin/Site.php:682 msgid "Disable picture proxy" msgstr "画像プロキシを無効にする" -#: src/Module/Admin/Site.php:681 +#: src/Module/Admin/Site.php:682 msgid "" "The picture proxy increases performance and privacy. It shouldn't be used on" " systems with very low bandwidth." msgstr "画像プロキシは、パフォーマンスとプライバシーを向上させます。帯域幅が非常に低いシステムでは使用しないでください。" -#: src/Module/Admin/Site.php:682 +#: src/Module/Admin/Site.php:683 msgid "Only search in tags" msgstr "タグでのみ検索" -#: src/Module/Admin/Site.php:682 +#: src/Module/Admin/Site.php:683 msgid "On large systems the text search can slow down the system extremely." msgstr "大規模なシステムでは、テキスト検索によりシステムの速度が著しく低下する可能性があります。" -#: src/Module/Admin/Site.php:684 +#: src/Module/Admin/Site.php:685 msgid "New base url" msgstr "新しいベースURL" -#: src/Module/Admin/Site.php:684 +#: src/Module/Admin/Site.php:685 msgid "" "Change base url for this server. Sends relocate message to all Friendica and" " Diaspora* contacts of all users." msgstr "このサーバーのベースURLを変更します。すべてのユーザーのFriendicaおよびDiaspora *のすべてのコンタクトに再配置メッセージを送信します。" -#: src/Module/Admin/Site.php:686 +#: src/Module/Admin/Site.php:687 msgid "RINO Encryption" msgstr "RINO暗号化" -#: src/Module/Admin/Site.php:686 +#: src/Module/Admin/Site.php:687 msgid "Encryption layer between nodes." msgstr "ノード間の暗号化レイヤー。" -#: src/Module/Admin/Site.php:686 src/Module/Admin/Site.php:694 +#: src/Module/Admin/Site.php:687 src/Module/Admin/Site.php:693 #: src/Module/Contact.php:562 src/Module/Settings/TwoFactor/Index.php:118 msgid "Disabled" msgstr "無効" -#: src/Module/Admin/Site.php:686 +#: src/Module/Admin/Site.php:687 msgid "Enabled" msgstr "有効化" -#: src/Module/Admin/Site.php:688 +#: src/Module/Admin/Site.php:689 msgid "Maximum number of parallel workers" msgstr "並列ワーカーの最大数" -#: src/Module/Admin/Site.php:688 +#: src/Module/Admin/Site.php:689 #, php-format msgid "" "On shared hosters set this to %d. On larger systems, values of %d are great." " Default value is %d." msgstr "共有ホスティング事業者では、これを%dに設定します。大規模なシステムでは、 %dの値は素晴らしいでしょう。既定の値は%dです。" -#: src/Module/Admin/Site.php:689 +#: src/Module/Admin/Site.php:690 msgid "Enable fastlane" msgstr "fastlaneを有効にする" -#: src/Module/Admin/Site.php:689 +#: src/Module/Admin/Site.php:690 msgid "" "When enabed, the fastlane mechanism starts an additional worker if processes" " with higher priority are blocked by processes of lower priority." msgstr "有効にすると、優先度の高いプロセスが優先度の低いプロセスによってブロックされた場合、fastlaneメカニズムは追加のワーカーを開始します。" -#: src/Module/Admin/Site.php:691 -msgid "Use relay servers" -msgstr "中継サーバーを使用する" - -#: src/Module/Admin/Site.php:691 -msgid "" -"Enables the receiving of public posts from relay servers. They will be " -"included in the search, subscribed tags and on the global community page." -msgstr "中継サーバーからの公開投稿の受信を有効にします。それらは、検索や購読しているタグ、グローバルコミュニティのページに掲載されます。" - #: src/Module/Admin/Site.php:692 -msgid "\"Social Relay\" server" -msgstr "" - -#: src/Module/Admin/Site.php:692 -#, php-format -msgid "" -"Address of the \"Social Relay\" server where public posts should be send to." -" For example %s. ActivityRelay servers are administrated via the \"console " -"relay\" command line command." -msgstr "" - -#: src/Module/Admin/Site.php:693 msgid "Direct relay transfer" msgstr "直接中継転送" -#: src/Module/Admin/Site.php:693 +#: src/Module/Admin/Site.php:692 msgid "" "Enables the direct transfer to other servers without using the relay servers" msgstr "中継サーバーを使用せずに他のサーバーに直接転送できるようにします" -#: src/Module/Admin/Site.php:694 +#: src/Module/Admin/Site.php:693 msgid "Relay scope" msgstr "中継スコープ" -#: src/Module/Admin/Site.php:694 +#: src/Module/Admin/Site.php:693 msgid "" "Can be \"all\" or \"tags\". \"all\" means that every public post should be " "received. \"tags\" means that only posts with selected tags should be " "received." msgstr "\"all \"または\"tags \"にすることができます。 「すべて」は、すべての一般公開投稿を受信することを意味します。 「タグ」は、選択したタグのある投稿のみを受信することを意味します。" -#: src/Module/Admin/Site.php:694 +#: src/Module/Admin/Site.php:693 msgid "all" msgstr "すべて" -#: src/Module/Admin/Site.php:694 +#: src/Module/Admin/Site.php:693 msgid "tags" msgstr "タグ" -#: src/Module/Admin/Site.php:695 +#: src/Module/Admin/Site.php:694 msgid "Server tags" msgstr "サーバータグ" -#: src/Module/Admin/Site.php:695 +#: src/Module/Admin/Site.php:694 msgid "Comma separated list of tags for the \"tags\" subscription." msgstr "\"tags \"サブスクリプションのタグのコンマ区切りリスト。" -#: src/Module/Admin/Site.php:696 +#: src/Module/Admin/Site.php:695 msgid "Deny Server tags" msgstr "" -#: src/Module/Admin/Site.php:696 +#: src/Module/Admin/Site.php:695 msgid "Comma separated list of tags that are rejected." msgstr "" -#: src/Module/Admin/Site.php:697 +#: src/Module/Admin/Site.php:696 msgid "Allow user tags" msgstr "ユーザータグを許可する" -#: src/Module/Admin/Site.php:697 +#: src/Module/Admin/Site.php:696 msgid "" "If enabled, the tags from the saved searches will used for the \"tags\" " "subscription in addition to the \"relay_server_tags\"." msgstr "有効にすると、保存された検索のタグが、\"relay_server_tags \"に加えて\"tags \"サブスクリプションに使用されます。" -#: src/Module/Admin/Site.php:700 +#: src/Module/Admin/Site.php:699 msgid "Start Relocation" msgstr "再配置を開始" @@ -7182,7 +7173,7 @@ msgstr "ユーザーからのメモ" msgid "Deny" msgstr "拒否する" -#: src/Module/Api/Mastodon/Apps.php:47 src/Module/Api/Mastodon/Apps.php:58 +#: src/Module/Api/Mastodon/Apps.php:58 msgid "Missing parameters" msgstr "" @@ -7217,11 +7208,11 @@ msgstr "" msgid "Posts from %s can't be unshared" msgstr "" -#: src/Module/Api/Twitter/ContactEndpoint.php:65 src/Module/Contact.php:400 +#: src/Module/Api/Twitter/ContactEndpoint.php:63 src/Module/Contact.php:400 msgid "Contact not found" msgstr "コンタクトが見つかりません" -#: src/Module/Api/Twitter/ContactEndpoint.php:135 +#: src/Module/Api/Twitter/ContactEndpoint.php:133 msgid "Profile not found" msgstr "" @@ -7319,12 +7310,12 @@ msgstr "アドオン機能" msgid "User registrations waiting for confirmation" msgstr "確認待ちのユーザー登録" -#: src/Module/BaseApi.php:133 +#: src/Module/BaseApi.php:116 #, php-format msgid "API endpoint %s %s is not implemented" msgstr "" -#: src/Module/BaseApi.php:134 +#: src/Module/BaseApi.php:117 msgid "" "The API endpoint is currently not implemented but might be in the future." msgstr "" @@ -7683,7 +7674,7 @@ msgstr "コンタクトグループを整理する" msgid "Search your contacts" msgstr "コンタクトを検索する" -#: src/Module/Contact.php:883 src/Module/Search/Index.php:192 +#: src/Module/Contact.php:883 src/Module/Search/Index.php:194 #, php-format msgid "Results for: %s" msgstr "結果: %s" @@ -7812,7 +7803,7 @@ msgstr "ポーリング/フィードURL" msgid "New photo from this URL" msgstr "このURLからの新しい写真" -#: src/Module/Contact/Contacts.php:31 src/Module/Conversation/Network.php:175 +#: src/Module/Contact/Contacts.php:31 src/Module/Conversation/Network.php:177 msgid "Invalid contact." msgstr "無効なコンタクト。" @@ -7919,7 +7910,7 @@ msgid "Hide" msgstr "" #: src/Module/Conversation/Community.php:149 src/Module/Search/Index.php:139 -#: src/Module/Search/Index.php:179 +#: src/Module/Search/Index.php:181 msgid "No results." msgstr "結果がありません。" @@ -7937,45 +7928,45 @@ msgstr "コミュニティオプションは利用できません。" msgid "Not available." msgstr "利用不可。" -#: src/Module/Conversation/Network.php:161 +#: src/Module/Conversation/Network.php:163 msgid "No such group" msgstr "そのようなグループはありません" -#: src/Module/Conversation/Network.php:165 +#: src/Module/Conversation/Network.php:167 #, php-format msgid "Group: %s" msgstr "グループ: %s" -#: src/Module/Conversation/Network.php:241 +#: src/Module/Conversation/Network.php:243 msgid "Latest Activity" msgstr "最近の操作" -#: src/Module/Conversation/Network.php:244 +#: src/Module/Conversation/Network.php:246 msgid "Sort by latest activity" msgstr "最終更新順に並び替え" -#: src/Module/Conversation/Network.php:249 +#: src/Module/Conversation/Network.php:251 msgid "Latest Posts" msgstr "最新の投稿" -#: src/Module/Conversation/Network.php:252 +#: src/Module/Conversation/Network.php:254 msgid "Sort by post received date" msgstr "投稿を受信した順に並び替え" -#: src/Module/Conversation/Network.php:257 +#: src/Module/Conversation/Network.php:259 #: src/Module/Settings/Profile/Index.php:242 msgid "Personal" msgstr "パーソナル" -#: src/Module/Conversation/Network.php:260 +#: src/Module/Conversation/Network.php:262 msgid "Posts that mention or involve you" msgstr "あなたに言及または関与している投稿" -#: src/Module/Conversation/Network.php:265 src/Object/Post.php:334 +#: src/Module/Conversation/Network.php:267 src/Object/Post.php:334 msgid "Starred" msgstr "スター付き" -#: src/Module/Conversation/Network.php:268 +#: src/Module/Conversation/Network.php:270 msgid "Favourite Posts" msgstr "お気に入りの投稿" @@ -8769,7 +8760,7 @@ msgstr "" #: src/Module/Manifest.php:42 msgid "A Decentralized Social Network" -msgstr "" +msgstr "分権化されたソーシャルネットワーク" #: src/Module/Notifications/Introductions.php:78 msgid "Show Ignored Requests" @@ -8782,7 +8773,7 @@ msgstr "無視されたリクエストを隠す" #: src/Module/Notifications/Introductions.php:94 #: src/Module/Notifications/Introductions.php:163 msgid "Notification type:" -msgstr "通知タイプ:" +msgstr "通知の種類:" #: src/Module/Notifications/Introductions.php:97 msgid "Suggested by:" @@ -8856,15 +8847,22 @@ msgstr "未読を表示" msgid "Show all" msgstr "すべて表示する" -#: src/Module/OAuth/Authorize.php:49 +#: src/Module/OAuth/Authorize.php:54 msgid "Unsupported or missing response type" msgstr "" -#: src/Module/OAuth/Authorize.php:54 src/Module/OAuth/Token.php:55 +#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:58 msgid "Incomplete request data" msgstr "" -#: src/Module/OAuth/Token.php:79 +#: src/Module/OAuth/Authorize.php:106 +#, php-format +msgid "" +"Please copy the following authentication code into your application and " +"close this window: %s" +msgstr "" + +#: src/Module/OAuth/Token.php:82 msgid "Unsupported or missing grant type" msgstr "" @@ -9007,7 +9005,7 @@ msgstr "招待コード:" #: src/Module/Register.php:145 msgid "Your Full Name (e.g. Joe Smith, real or real-looking): " -msgstr "あなたの氏名(例:ジョー・スミス、本物または本物の見た目):" +msgstr "あなたの氏名(例:ジョー・スミス、本物または本物のような):" #: src/Module/Register.php:146 msgid "" @@ -9119,7 +9117,7 @@ msgstr "ログインしたユーザーのみが検索を実行できます。" msgid "Only one search per minute is permitted for not logged in users." msgstr "ログインしていないユーザーには、1分間に1つの検索のみが許可されます。" -#: src/Module/Search/Index.php:190 +#: src/Module/Search/Index.php:192 #, php-format msgid "Items tagged with: %s" msgstr "タグ付けされた項目: %s" @@ -9529,7 +9527,7 @@ msgstr "プロフィール写真をアップロード" #: src/Module/Settings/Profile/Index.php:252 msgid "Display name:" -msgstr "" +msgstr "表示名:" #: src/Module/Settings/Profile/Index.php:255 msgid "Street Address:" @@ -9644,7 +9642,7 @@ msgstr "" #: src/Module/Settings/Profile/Photo/Index.php:128 msgid "Upload Profile Picture" -msgstr "" +msgstr "プロフィール画像をアップロード" #: src/Module/Settings/Profile/Photo/Index.php:129 msgid "Upload Picture:" @@ -10392,70 +10390,70 @@ msgstr "" msgid "Remote comment" msgstr "" -#: src/Object/Post.php:417 +#: src/Object/Post.php:421 msgid "Pushed" msgstr "" -#: src/Object/Post.php:417 +#: src/Object/Post.php:421 msgid "Pulled" msgstr "" -#: src/Object/Post.php:451 +#: src/Object/Post.php:455 msgid "to" msgstr "に" -#: src/Object/Post.php:452 +#: src/Object/Post.php:456 msgid "via" msgstr "投稿先:" -#: src/Object/Post.php:453 +#: src/Object/Post.php:457 msgid "Wall-to-Wall" msgstr "壁間" -#: src/Object/Post.php:454 +#: src/Object/Post.php:458 msgid "via Wall-To-Wall:" msgstr "Wall-to-Wall経由:" -#: src/Object/Post.php:492 +#: src/Object/Post.php:496 #, php-format msgid "Reply to %s" msgstr "%sへの返信" -#: src/Object/Post.php:495 +#: src/Object/Post.php:499 msgid "More" msgstr "更に" -#: src/Object/Post.php:513 +#: src/Object/Post.php:517 msgid "Notifier task is pending" msgstr "通知タスクは保留中です" -#: src/Object/Post.php:514 +#: src/Object/Post.php:518 msgid "Delivery to remote servers is pending" msgstr "リモートサーバーへの配信は保留中です" -#: src/Object/Post.php:515 +#: src/Object/Post.php:519 msgid "Delivery to remote servers is underway" msgstr "リモートサーバーへの配信が進行中です" -#: src/Object/Post.php:516 +#: src/Object/Post.php:520 msgid "Delivery to remote servers is mostly done" msgstr "リモートサーバーへの配信はもうすぐ完了します" -#: src/Object/Post.php:517 +#: src/Object/Post.php:521 msgid "Delivery to remote servers is done" msgstr "リモートサーバーへの配信が完了しました" -#: src/Object/Post.php:537 +#: src/Object/Post.php:541 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%dコメント" -#: src/Object/Post.php:538 +#: src/Object/Post.php:542 msgid "Show more" msgstr "もっと見せる" -#: src/Object/Post.php:539 +#: src/Object/Post.php:543 msgid "Show fewer" msgstr "表示を減らす" @@ -10561,20 +10559,20 @@ msgstr "学校教育" msgid "Contact information and Social Networks" msgstr "コンタクト情報とソーシャルネットワーク" -#: src/Security/Authentication.php:210 src/Security/Authentication.php:262 +#: src/Security/Authentication.php:210 msgid "Login failed." msgstr "ログインに失敗しました。" -#: src/Security/Authentication.php:273 +#: src/Security/Authentication.php:251 msgid "Login failed. Please check your credentials." msgstr "ログインに失敗しました。認証情報を確かめてください。" -#: src/Security/Authentication.php:392 +#: src/Security/Authentication.php:370 #, php-format msgid "Welcome %s" msgstr "ようこそ%s" -#: src/Security/Authentication.php:393 +#: src/Security/Authentication.php:371 msgid "Please upload a profile photo." msgstr "プロフィール写真をアップロードしてください。" @@ -10667,7 +10665,7 @@ msgstr "" msgid "%1$d %2$s ago" msgstr "%1$d%2$s前" -#: src/Worker/Delivery.php:570 +#: src/Worker/Delivery.php:529 msgid "(no subject)" msgstr "" diff --git a/view/lang/ja/strings.php b/view/lang/ja/strings.php index 7b333f1a4..177c4eec3 100644 --- a/view/lang/ja/strings.php +++ b/view/lang/ja/strings.php @@ -169,7 +169,7 @@ $a->strings["Temporary failure. Please wait and try again."] = "一時的な障 $a->strings["Introduction failed or was revoked."] = "招待が失敗したか取り消されました。"; $a->strings["Remote site reported: "] = "報告されたリモートサイト:"; $a->strings["No user record found for '%s' "] = "' %s 'のユーザーレコードが見つかりません"; -$a->strings["Our site encryption key is apparently messed up."] = "当サイトの暗号化キーが破損しているようです。"; +$a->strings["Our site encryption key is apparently messed up."] = "当サイトの暗号化鍵が破損しているようです。"; $a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "空のサイトURLが提供されたか、URLを解読できませんでした。"; $a->strings["Contact record was not found for you on our site."] = "私たちのサイトでコンタクトレコードが見つかりませんでした。"; $a->strings["Site public key not available in contact record for URL %s."] = "URL %sのコンタクトレコードに対応したサイトの公開鍵がありません。"; @@ -247,7 +247,7 @@ $a->strings["Photos"] = "写真"; $a->strings["Upload"] = "アップロードする"; $a->strings["Files"] = "ファイル"; $a->strings["You already added this contact."] = "このコンタクトは既に追加されています。"; -$a->strings["The network type couldn't be detected. Contact can't be added."] = "ネットワークタイプを検出できませんでした。コンタクトを追加できません。"; +$a->strings["The network type couldn't be detected. Contact can't be added."] = "ネットワークの種類を検出できませんでした。コンタクトを追加できません。"; $a->strings["Diaspora support isn't enabled. Contact can't be added."] = "Diasporaのサポートは有効になっていません。コンタクトを追加できません。"; $a->strings["OStatus support is disabled. Contact can't be added."] = "OStatusサポートは無効です。コンタクトを追加できません。"; $a->strings["Your Identity Address:"] = "あなたのIdentityアドレス:"; @@ -283,8 +283,6 @@ $a->strings["\n\t\t\tDear %1\$s,\n\t\t\t\tYour password has been changed as requ $a->strings["\n\t\t\tYour login details are as follows:\n\n\t\t\tSite Location:\t%1\$s\n\t\t\tLogin Name:\t%2\$s\n\t\t\tPassword:\t%3\$s\n\n\t\t\tYou may change that password from your account settings page after logging in.\n\t\t"] = "\n\t\t\tログインの詳細は次のとおりです:\n\n\t\t\tサイトの場所:\t%1\$s\n\t\t\tログイン名:\t%2\$s\n\t\t\tパスワード:\t%3\$s\n\n\t\t\tログイン後にアカウント設定ページからパスワードを変更できます。\n\t\t"; $a->strings["Your password has been changed at %s"] = "パスワードは%s変更されました"; $a->strings["No keywords to match. Please add keywords to your profile."] = "合致するキーワードが有りません。あなたのプロフィールにキーワードを追加してください。"; -$a->strings["first"] = "最初"; -$a->strings["next"] = "次"; $a->strings["No matches"] = "一致する項目がありません"; $a->strings["Profile Match"] = "一致するプロフィール"; $a->strings["New Message"] = "新しいメッセージ"; @@ -428,6 +426,7 @@ $a->strings["Diaspora (Socialhome, Hubzilla)"] = "Diaspora(Socialhome、Hubzil $a->strings["enabled"] = "有効"; $a->strings["disabled"] = "無効"; $a->strings["Built-in support for %s connectivity is %s"] = "%s接続の組み込みサポートは%s"; +$a->strings["OStatus (GNU Social)"] = "OStatus (GNU Social)"; $a->strings["Email access is disabled on this site."] = "このサイトではメールアクセスが無効になっています。"; $a->strings["None"] = "無し"; $a->strings["Social Networks"] = "ソーシャルネットワーク"; @@ -550,7 +549,6 @@ $a->strings["Someone writes a followup comment"] = "誰かがフォローアッ $a->strings["You receive a private message"] = "プライベートメッセージを受け取ります"; $a->strings["You receive a friend suggestion"] = "友達の提案を受け取ります"; $a->strings["You are tagged in a post"] = "あなたは投稿でタグ付けされています"; -$a->strings["You are poked/prodded/etc. in a post"] = "あなたは突かれた/突かれた/などです。投稿で"; $a->strings["Activate desktop notifications"] = "デスクトップ通知を有効にする"; $a->strings["Show desktop popup on new notifications"] = "新しい通知にデスクトップポップアップを表示する"; $a->strings["Text-only notification emails"] = "テキストのみの通知メール"; @@ -601,6 +599,7 @@ $a->strings["If you wish for %s to respond, please check that the privacy settin $a->strings["No system theme config value set."] = "システムテーマの構成値が設定されていません。"; $a->strings["You must be logged in to use addons. "] = "アドオンを使用するにはログインする必要があります。"; $a->strings["Delete this item?"] = "この項目を削除しますか?"; +$a->strings["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."] = "この作者をブロックしますか?その人はあなたをフォローできなくなり、あなたの公開された投稿を見ることができなくなります。また、あなたはその人の投稿や通知を見ることができなくなります。"; $a->strings["toggle mobile"] = "モバイルを切り替え"; $a->strings["Method not allowed for this module. Allowed method(s): %s"] = "そのメソッドは、このモジュールでは許可されていません。 このメソッド(たち)が許可されています: %s"; $a->strings["Page not found."] = "ページが見つかりません。"; @@ -727,7 +726,9 @@ $a->strings["Navigation"] = "ナビゲーション"; $a->strings["Site map"] = "サイトマップ"; $a->strings["Embedding disabled"] = "埋め込みが無効です"; $a->strings["Embedded content"] = "埋め込みコンテンツ"; +$a->strings["first"] = "最初"; $a->strings["prev"] = "前の"; +$a->strings["next"] = "次"; $a->strings["last"] = "最終"; $a->strings["Image/photo"] = "画像/写真"; $a->strings["Click to open/close"] = "クリックして開閉"; @@ -802,9 +803,9 @@ $a->strings["PHP cli binary"] = "PHP CLIバイナリ"; $a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "ご使用のシステムのコマンドラインバージョンのPHPでは、\"register_argc_argv \"が有効になっていません。"; $a->strings["This is required for message delivery to work."] = "これは、メッセージ配信が機能するために必要です。"; $a->strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "エラー:このシステムの\"openssl_pkey_new \"関数は暗号化キーを生成できません"; +$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "エラー:このシステムの\"openssl_pkey_new \"関数は暗号化鍵を生成できません"; $a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Windowsで実行している場合は、「 http://www.php.net/manual/en/openssl.installation.php 」を参照してください。"; -$a->strings["Generate encryption keys"] = "暗号化キーを生成する"; +$a->strings["Generate encryption keys"] = "暗号化鍵を生成する"; $a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "エラー:Apache webserver mod-rewriteモジュールが必要ですが、インストールされていません。"; $a->strings["Apache mod_rewrite module"] = "Apache mod_rewriteモジュール"; $a->strings["Error: PDO or MySQLi PHP module required but not installed."] = "エラー:PDOまたはMySQLi PHPモジュールが必要ですが、インストールされていません。"; @@ -1305,8 +1306,6 @@ $a->strings["Maximum number of parallel workers"] = "並列ワーカーの最大 $a->strings["On shared hosters set this to %d. On larger systems, values of %d are great. Default value is %d."] = "共有ホスティング事業者では、これを%dに設定します。大規模なシステムでは、 %dの値は素晴らしいでしょう。既定の値は%dです。"; $a->strings["Enable fastlane"] = "fastlaneを有効にする"; $a->strings["When enabed, the fastlane mechanism starts an additional worker if processes with higher priority are blocked by processes of lower priority."] = "有効にすると、優先度の高いプロセスが優先度の低いプロセスによってブロックされた場合、fastlaneメカニズムは追加のワーカーを開始します。"; -$a->strings["Use relay servers"] = "中継サーバーを使用する"; -$a->strings["Enables the receiving of public posts from relay servers. They will be included in the search, subscribed tags and on the global community page."] = "中継サーバーからの公開投稿の受信を有効にします。それらは、検索や購読しているタグ、グローバルコミュニティのページに掲載されます。"; $a->strings["Direct relay transfer"] = "直接中継転送"; $a->strings["Enables the direct transfer to other servers without using the relay servers"] = "中継サーバーを使用せずに他のサーバーに直接転送できるようにします"; $a->strings["Relay scope"] = "中継スコープ"; @@ -1721,9 +1720,10 @@ $a->strings["Clear the location"] = "場所をクリアする"; $a->strings["Location services are unavailable on your device"] = "デバイスで位置情報サービスを利用できません"; $a->strings["Location services are disabled. Please check the website's permissions on your device"] = "位置情報サービスは無効になっています。お使いのデバイスでウェブサイトの権限を確認してください"; $a->strings["System down for maintenance"] = "メンテナンスのためのシステムダウン"; +$a->strings["A Decentralized Social Network"] = "分権化されたソーシャルネットワーク"; $a->strings["Show Ignored Requests"] = "無視されたリクエストを表示"; $a->strings["Hide Ignored Requests"] = "無視されたリクエストを隠す"; -$a->strings["Notification type:"] = "通知タイプ:"; +$a->strings["Notification type:"] = "通知の種類:"; $a->strings["Suggested by:"] = "によって提案されました:"; $a->strings["Claims to be known to you: "] = "あなたに知られているという主張:"; $a->strings["Shall your connection be bidirectional or not?"] = "つながりを相互フォローにしてもよいですか?"; @@ -1767,7 +1767,7 @@ $a->strings["Note for the admin"] = "管理者への注意"; $a->strings["Leave a message for the admin, why you want to join this node"] = "このノードに参加する理由、管理者へのメッセージを残す"; $a->strings["Membership on this site is by invitation only."] = "このサイトのメンバーシップは招待のみです。"; $a->strings["Your invitation code: "] = "招待コード:"; -$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "あなたの氏名(例:ジョー・スミス、本物または本物の見た目):"; +$a->strings["Your Full Name (e.g. Joe Smith, real or real-looking): "] = "あなたの氏名(例:ジョー・スミス、本物または本物のような):"; $a->strings["Your Email Address: (Initial information will be send there, so this has to be an existing address.)"] = "あなたのメールアドレス:(初回の情報はそこに送信されますので、これは既存のアドレスでなければなりません。)"; $a->strings["Please repeat your e-mail address:"] = "メールアドレスを再入力してください。"; $a->strings["Leave empty for an auto generated password."] = "自動生成されたパスワードの場合は空のままにします。"; @@ -1870,6 +1870,7 @@ $a->strings["Profile picture"] = "プロフィールの写真"; $a->strings["Location"] = "位置情報"; $a->strings["Miscellaneous"] = "その他"; $a->strings["Upload Profile Photo"] = "プロフィール写真をアップロード"; +$a->strings["Display name:"] = "表示名:"; $a->strings["Street Address:"] = "住所:"; $a->strings["Locality/City:"] = "地域/市:"; $a->strings["Region/State:"] = "地域/州:"; @@ -1887,6 +1888,7 @@ $a->strings["Shift-reload the page or clear browser cache if the new photo does $a->strings["Unable to process image"] = "画像を処理できません"; $a->strings["Crop Image"] = "クロップ画像"; $a->strings["Please adjust the image cropping for optimum viewing."] = "最適な表示になるように画像のトリミングを調整してください。"; +$a->strings["Upload Profile Picture"] = "プロフィール画像をアップロード"; $a->strings["or"] = "または"; $a->strings["skip this step"] = "このステップを飛ばす"; $a->strings["select a photo from your photo albums"] = "フォトアルバムから写真を選択する"; diff --git a/view/templates/admin/site.tpl b/view/templates/admin/site.tpl index c44553d6d..75d9437d7 100644 --- a/view/templates/admin/site.tpl +++ b/view/templates/admin/site.tpl @@ -127,13 +127,22 @@

{{$relay_title}}

- {{include file="field_checkbox.tpl" field=$relay_subscribe}} - {{include file="field_input.tpl" field=$relay_server}} - {{include file="field_checkbox.tpl" field=$relay_directly}} + {{if $relay_list}} +

{{$relay_list_title}}

+
    + {{foreach $relay_list as $relay}} +
  • {{$relay.url}}
  • + {{/foreach}} +
+ {{else}} +

{{$no_relay_list}}

+ {{/if}} +

{{$relay_description}}

{{include file="field_select.tpl" field=$relay_scope}} {{include file="field_input.tpl" field=$relay_server_tags}} {{include file="field_input.tpl" field=$relay_deny_tags}} {{include file="field_checkbox.tpl" field=$relay_user_tags}} + {{include file="field_checkbox.tpl" field=$relay_directly}}
diff --git a/view/templates/settings/addons.tpl b/view/templates/settings/addons.tpl index 567ac81b7..e30732d17 100644 --- a/view/templates/settings/addons.tpl +++ b/view/templates/settings/addons.tpl @@ -1,11 +1,14 @@ -

{{$title}}

+{{foreach $addon_settings_forms as $addon_settings_form}}
- - -{{$settings_addons nofilter}} - + + {{$addon_settings_form nofilter}}
+{{foreachelse}} + +

{{$no_addon_settings_configured}}

+ +{{/foreach}} diff --git a/view/templates/structure.tpl b/view/templates/structure.tpl new file mode 100644 index 000000000..f6a647b79 --- /dev/null +++ b/view/templates/structure.tpl @@ -0,0 +1,31 @@ +Table {{$name nofilter}} +=========== + +{{$comment nofilter}} + +Fields +------ + +{{foreach $fields as $field}} +| {{$field.name nofilter}} | {{$field.comment nofilter}} | {{$field.type nofilter}} | {{$field.null nofilter}} | {{$field.primary nofilter}} | {{$field.default nofilter}} | {{$field.extra nofilter}} | +{{/foreach}} + +Indexes +------------ + +{{foreach $indexes as $index}} +| {{$index.name nofilter}} | {{$index.fields nofilter}} | +{{/foreach}} + +{{if $foreign}} +Foreign Keys +------------ + +| Field | Target Table | Target Field | +|-------|--------------|--------------| +{{foreach $foreign as $key}} +| {{$key.field nofilter}} | [{{$key.targettable nofilter}}](help/database/db_{{$key.targettable nofilter}}) | {{$key.targetfield nofilter}} | +{{/foreach}} +{{/if}} + +Return to [database documentation](help/database) diff --git a/view/templates/tables.tpl b/view/templates/tables.tpl new file mode 100644 index 000000000..2bf38c9f1 --- /dev/null +++ b/view/templates/tables.tpl @@ -0,0 +1,10 @@ +Database Tables +=============== + +* [Home](help) + +| Table | Description | +|-------|-------------| +{{foreach $tables as $table}} +| [{{$table.name nofilter}}](help/database/db_{{$table.name nofilter}}) | {{$table.comment nofilter}} | +{{/foreach}} diff --git a/view/theme/frio/templates/admin/site.tpl b/view/theme/frio/templates/admin/site.tpl index 57f43cefb..69076833d 100644 --- a/view/theme/frio/templates/admin/site.tpl +++ b/view/theme/frio/templates/admin/site.tpl @@ -297,13 +297,22 @@
- {{include file="field_checkbox.tpl" field=$relay_subscribe}} - {{include file="field_input.tpl" field=$relay_server}} - {{include file="field_checkbox.tpl" field=$relay_directly}} + {{if $relay_list}} +

{{$relay_list_title}}

+
    + {{foreach $relay_list as $relay}} +
  • {{$relay.url}}
  • + {{/foreach}} +
+ {{else}} +

{{$no_relay_list}}

+ {{/if}} +

{{$relay_description}}

{{include file="field_select.tpl" field=$relay_scope}} {{include file="field_input.tpl" field=$relay_server_tags}} {{include file="field_input.tpl" field=$relay_deny_tags}} {{include file="field_checkbox.tpl" field=$relay_user_tags}} + {{include file="field_checkbox.tpl" field=$relay_directly}}
\ No newline at end of file diff --git a/view/theme/vier/templates/nav.tpl b/view/theme/vier/templates/nav.tpl index 32a588f3d..b2da2b0d7 100644 --- a/view/theme/vier/templates/nav.tpl +++ b/view/theme/vier/templates/nav.tpl @@ -81,7 +81,7 @@ {{$userinfo.name}}{{$userinfo.name}}